host1x            336 drivers/gpu/drm/tegra/drm.c 	struct host1x *host1x = dev_get_drvdata(drm->dev->parent);
host1x            466 drivers/gpu/drm/tegra/drm.c 	sp = host1x_syncpt_get(host1x, syncpt.id);
host1x            543 drivers/gpu/drm/tegra/drm.c 	struct host1x *host = dev_get_drvdata(drm->dev->parent);
host1x            558 drivers/gpu/drm/tegra/drm.c 	struct host1x *host1x = dev_get_drvdata(drm->dev->parent);
host1x            562 drivers/gpu/drm/tegra/drm.c 	sp = host1x_syncpt_get(host1x, args->id);
host1x            572 drivers/gpu/drm/tegra/drm.c 	struct host1x *host1x = dev_get_drvdata(drm->dev->parent);
host1x            576 drivers/gpu/drm/tegra/drm.c 	sp = host1x_syncpt_get(host1x, args->id);
host1x            259 drivers/gpu/host1x/bus.c static int host1x_add_client(struct host1x *host1x,
host1x            265 drivers/gpu/host1x/bus.c 	mutex_lock(&host1x->devices_lock);
host1x            267 drivers/gpu/host1x/bus.c 	list_for_each_entry(device, &host1x->devices, list) {
host1x            271 drivers/gpu/host1x/bus.c 				mutex_unlock(&host1x->devices_lock);
host1x            277 drivers/gpu/host1x/bus.c 	mutex_unlock(&host1x->devices_lock);
host1x            281 drivers/gpu/host1x/bus.c static int host1x_del_client(struct host1x *host1x,
host1x            287 drivers/gpu/host1x/bus.c 	mutex_lock(&host1x->devices_lock);
host1x            289 drivers/gpu/host1x/bus.c 	list_for_each_entry_safe(device, dt, &host1x->devices, list) {
host1x            293 drivers/gpu/host1x/bus.c 				mutex_unlock(&host1x->devices_lock);
host1x            299 drivers/gpu/host1x/bus.c 	mutex_unlock(&host1x->devices_lock);
host1x            416 drivers/gpu/host1x/bus.c static int host1x_device_add(struct host1x *host1x,
host1x            438 drivers/gpu/host1x/bus.c 	device->dev.coherent_dma_mask = host1x->dev->coherent_dma_mask;
host1x            443 drivers/gpu/host1x/bus.c 	device->dev.parent = host1x->dev;
host1x            445 drivers/gpu/host1x/bus.c 	of_dma_configure(&device->dev, host1x->dev->of_node, true);
host1x            456 drivers/gpu/host1x/bus.c 	list_add_tail(&device->list, &host1x->devices);
host1x            480 drivers/gpu/host1x/bus.c static void host1x_device_del(struct host1x *host1x,
host1x            491 drivers/gpu/host1x/bus.c static void host1x_attach_driver(struct host1x *host1x,
host1x            497 drivers/gpu/host1x/bus.c 	mutex_lock(&host1x->devices_lock);
host1x            499 drivers/gpu/host1x/bus.c 	list_for_each_entry(device, &host1x->devices, list) {
host1x            501 drivers/gpu/host1x/bus.c 			mutex_unlock(&host1x->devices_lock);
host1x            506 drivers/gpu/host1x/bus.c 	err = host1x_device_add(host1x, driver);
host1x            508 drivers/gpu/host1x/bus.c 		dev_err(host1x->dev, "failed to allocate device: %d\n", err);
host1x            510 drivers/gpu/host1x/bus.c 	mutex_unlock(&host1x->devices_lock);
host1x            513 drivers/gpu/host1x/bus.c static void host1x_detach_driver(struct host1x *host1x,
host1x            518 drivers/gpu/host1x/bus.c 	mutex_lock(&host1x->devices_lock);
host1x            520 drivers/gpu/host1x/bus.c 	list_for_each_entry_safe(device, tmp, &host1x->devices, list)
host1x            522 drivers/gpu/host1x/bus.c 			host1x_device_del(host1x, device);
host1x            524 drivers/gpu/host1x/bus.c 	mutex_unlock(&host1x->devices_lock);
host1x            529 drivers/gpu/host1x/bus.c 	struct host1x *host1x = s->private;
host1x            532 drivers/gpu/host1x/bus.c 	mutex_lock(&host1x->devices_lock);
host1x            534 drivers/gpu/host1x/bus.c 	list_for_each_entry(device, &host1x->devices, list) {
host1x            551 drivers/gpu/host1x/bus.c 	mutex_unlock(&host1x->devices_lock);
host1x            565 drivers/gpu/host1x/bus.c int host1x_register(struct host1x *host1x)
host1x            570 drivers/gpu/host1x/bus.c 	list_add_tail(&host1x->list, &devices);
host1x            576 drivers/gpu/host1x/bus.c 		host1x_attach_driver(host1x, driver);
host1x            580 drivers/gpu/host1x/bus.c 	debugfs_create_file("devices", S_IRUGO, host1x->debugfs, host1x,
host1x            593 drivers/gpu/host1x/bus.c int host1x_unregister(struct host1x *host1x)
host1x            600 drivers/gpu/host1x/bus.c 		host1x_detach_driver(host1x, driver);
host1x            605 drivers/gpu/host1x/bus.c 	list_del_init(&host1x->list);
host1x            655 drivers/gpu/host1x/bus.c 	struct host1x *host1x;
host1x            665 drivers/gpu/host1x/bus.c 	list_for_each_entry(host1x, &devices, list)
host1x            666 drivers/gpu/host1x/bus.c 		host1x_attach_driver(host1x, driver);
host1x            710 drivers/gpu/host1x/bus.c 	struct host1x *host1x;
host1x            715 drivers/gpu/host1x/bus.c 	list_for_each_entry(host1x, &devices, list) {
host1x            716 drivers/gpu/host1x/bus.c 		err = host1x_add_client(host1x, client);
host1x            743 drivers/gpu/host1x/bus.c 	struct host1x *host1x;
host1x            748 drivers/gpu/host1x/bus.c 	list_for_each_entry(host1x, &devices, list) {
host1x            749 drivers/gpu/host1x/bus.c 		err = host1x_del_client(host1x, client);
host1x             11 drivers/gpu/host1x/bus.h struct host1x;
host1x             15 drivers/gpu/host1x/bus.h int host1x_register(struct host1x *host1x);
host1x             16 drivers/gpu/host1x/bus.h int host1x_unregister(struct host1x *host1x);
host1x             51 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x             56 drivers/gpu/host1x/cdma.c 	if (host1x->domain) {
host1x             57 drivers/gpu/host1x/cdma.c 		iommu_unmap(host1x->domain, pb->dma, pb->alloc_size);
host1x             58 drivers/gpu/host1x/cdma.c 		free_iova(&host1x->iova, iova_pfn(&host1x->iova, pb->dma));
host1x             61 drivers/gpu/host1x/cdma.c 	dma_free_wc(host1x->dev, pb->alloc_size, pb->mapped, pb->phys);
host1x             73 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x             88 drivers/gpu/host1x/cdma.c 	if (host1x->domain) {
host1x             91 drivers/gpu/host1x/cdma.c 		size = iova_align(&host1x->iova, size);
host1x             93 drivers/gpu/host1x/cdma.c 		pb->mapped = dma_alloc_wc(host1x->dev, size, &pb->phys,
host1x             98 drivers/gpu/host1x/cdma.c 		shift = iova_shift(&host1x->iova);
host1x             99 drivers/gpu/host1x/cdma.c 		alloc = alloc_iova(&host1x->iova, size >> shift,
host1x            100 drivers/gpu/host1x/cdma.c 				   host1x->iova_end >> shift, true);
host1x            106 drivers/gpu/host1x/cdma.c 		pb->dma = iova_dma_addr(&host1x->iova, alloc);
host1x            107 drivers/gpu/host1x/cdma.c 		err = iommu_map(host1x->domain, pb->dma, pb->phys, size,
host1x            112 drivers/gpu/host1x/cdma.c 		pb->mapped = dma_alloc_wc(host1x->dev, size, &pb->phys,
host1x            122 drivers/gpu/host1x/cdma.c 	host1x_hw_pushbuffer_init(host1x, pb);
host1x            127 drivers/gpu/host1x/cdma.c 	__free_iova(&host1x->iova, alloc);
host1x            129 drivers/gpu/host1x/cdma.c 	dma_free_wc(host1x->dev, size, pb->mapped, pb->phys);
host1x            235 drivers/gpu/host1x/cdma.c int host1x_cdma_wait_pushbuffer_space(struct host1x *host1x,
host1x            250 drivers/gpu/host1x/cdma.c 		host1x_hw_cdma_flush(host1x, cdma);
host1x            276 drivers/gpu/host1x/cdma.c 	struct host1x *host = cdma_to_host1x(cdma);
host1x            315 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            328 drivers/gpu/host1x/cdma.c 			host1x_syncpt_get(host1x, job->syncpt_id);
host1x            373 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            434 drivers/gpu/host1x/cdma.c 		host1x_hw_cdma_timeout_cpu_incr(host1x, cdma, job->first_get,
host1x            443 drivers/gpu/host1x/cdma.c 	host1x_hw_cdma_resume(host1x, cdma, restart_addr);
host1x            475 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            483 drivers/gpu/host1x/cdma.c 	host1x_hw_cdma_timeout_destroy(host1x, cdma);
host1x            493 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            502 drivers/gpu/host1x/cdma.c 			err = host1x_hw_cdma_timeout_init(host1x, cdma,
host1x            512 drivers/gpu/host1x/cdma.c 		host1x_hw_cdma_start(host1x, cdma);
host1x            528 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            537 drivers/gpu/host1x/cdma.c 		host1x_hw_cdma_flush(host1x, cdma);
host1x            560 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            575 drivers/gpu/host1x/cdma.c 	host1x_cdma_wait_pushbuffer_space(host1x, cdma, needed);
host1x            609 drivers/gpu/host1x/cdma.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            612 drivers/gpu/host1x/cdma.c 	host1x_hw_cdma_flush(host1x, cdma);
host1x             45 drivers/gpu/host1x/channel.c 	struct host1x *host = dev_get_drvdata(job->channel->dev->parent);
host1x             67 drivers/gpu/host1x/channel.c struct host1x_channel *host1x_channel_get_index(struct host1x *host,
host1x             82 drivers/gpu/host1x/channel.c 	struct host1x *host = dev_get_drvdata(channel->dev->parent);
host1x             97 drivers/gpu/host1x/channel.c static struct host1x_channel *acquire_unused_channel(struct host1x *host)
host1x            125 drivers/gpu/host1x/channel.c 	struct host1x *host = dev_get_drvdata(dev->parent);
host1x             16 drivers/gpu/host1x/channel.h struct host1x;
host1x             37 drivers/gpu/host1x/channel.h struct host1x_channel *host1x_channel_get_index(struct host1x *host,
host1x             51 drivers/gpu/host1x/debug.c 	struct host1x *m = dev_get_drvdata(ch->dev->parent);
host1x             66 drivers/gpu/host1x/debug.c static void show_syncpts(struct host1x *m, struct output *o)
host1x             95 drivers/gpu/host1x/debug.c static void show_all(struct host1x *m, struct output *o, bool show_fifo)
host1x            161 drivers/gpu/host1x/debug.c static void host1x_debugfs_init(struct host1x *host1x)
host1x            166 drivers/gpu/host1x/debug.c 	host1x->debugfs = de;
host1x            168 drivers/gpu/host1x/debug.c 	debugfs_create_file("status", S_IRUGO, de, host1x, &host1x_debug_fops);
host1x            169 drivers/gpu/host1x/debug.c 	debugfs_create_file("status_all", S_IRUGO, de, host1x,
host1x            175 drivers/gpu/host1x/debug.c 	host1x_hw_debug_init(host1x, de);
host1x            185 drivers/gpu/host1x/debug.c static void host1x_debugfs_exit(struct host1x *host1x)
host1x            187 drivers/gpu/host1x/debug.c 	debugfs_remove_recursive(host1x->debugfs);
host1x            190 drivers/gpu/host1x/debug.c void host1x_debug_init(struct host1x *host1x)
host1x            193 drivers/gpu/host1x/debug.c 		host1x_debugfs_init(host1x);
host1x            196 drivers/gpu/host1x/debug.c void host1x_debug_deinit(struct host1x *host1x)
host1x            199 drivers/gpu/host1x/debug.c 		host1x_debugfs_exit(host1x);
host1x            202 drivers/gpu/host1x/debug.c void host1x_debug_dump(struct host1x *host1x)
host1x            208 drivers/gpu/host1x/debug.c 	show_all(host1x, &o, true);
host1x            211 drivers/gpu/host1x/debug.c void host1x_debug_dump_syncpts(struct host1x *host1x)
host1x            217 drivers/gpu/host1x/debug.c 	show_syncpts(host1x, &o);
host1x             13 drivers/gpu/host1x/debug.h struct host1x;
host1x             41 drivers/gpu/host1x/debug.h void host1x_debug_init(struct host1x *host1x);
host1x             42 drivers/gpu/host1x/debug.h void host1x_debug_deinit(struct host1x *host1x);
host1x             43 drivers/gpu/host1x/debug.h void host1x_debug_dump(struct host1x *host1x);
host1x             44 drivers/gpu/host1x/debug.h void host1x_debug_dump_syncpts(struct host1x *host1x);
host1x             38 drivers/gpu/host1x/dev.c void host1x_hypervisor_writel(struct host1x *host1x, u32 v, u32 r)
host1x             40 drivers/gpu/host1x/dev.c 	writel(v, host1x->hv_regs + r);
host1x             43 drivers/gpu/host1x/dev.c u32 host1x_hypervisor_readl(struct host1x *host1x, u32 r)
host1x             45 drivers/gpu/host1x/dev.c 	return readl(host1x->hv_regs + r);
host1x             48 drivers/gpu/host1x/dev.c void host1x_sync_writel(struct host1x *host1x, u32 v, u32 r)
host1x             50 drivers/gpu/host1x/dev.c 	void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
host1x             55 drivers/gpu/host1x/dev.c u32 host1x_sync_readl(struct host1x *host1x, u32 r)
host1x             57 drivers/gpu/host1x/dev.c 	void __iomem *sync_regs = host1x->regs + host1x->info->sync_offset;
host1x            168 drivers/gpu/host1x/dev.c static void host1x_setup_sid_table(struct host1x *host)
host1x            183 drivers/gpu/host1x/dev.c 	struct host1x *host;
host1x            387 drivers/gpu/host1x/dev.c 	struct host1x *host = platform_get_drvdata(pdev);
host1x             31 drivers/gpu/host1x/dev.h 	int (*init)(struct host1x_channel *channel, struct host1x *host,
host1x             54 drivers/gpu/host1x/dev.h 	void (*show_channel_cdma)(struct host1x *host,
host1x             57 drivers/gpu/host1x/dev.h 	void (*show_channel_fifo)(struct host1x *host,
host1x             60 drivers/gpu/host1x/dev.h 	void (*show_mlocks)(struct host1x *host, struct output *output);
host1x             72 drivers/gpu/host1x/dev.h 	void (*enable_protection)(struct host1x *host);
host1x             76 drivers/gpu/host1x/dev.h 	int (*init_host_sync)(struct host1x *host, u32 cpm,
host1x             79 drivers/gpu/host1x/dev.h 		struct host1x *host, unsigned int id, u32 thresh);
host1x             80 drivers/gpu/host1x/dev.h 	void (*enable_syncpt_intr)(struct host1x *host, unsigned int id);
host1x             81 drivers/gpu/host1x/dev.h 	void (*disable_syncpt_intr)(struct host1x *host, unsigned int id);
host1x             82 drivers/gpu/host1x/dev.h 	void (*disable_all_syncpt_intrs)(struct host1x *host);
host1x             83 drivers/gpu/host1x/dev.h 	int (*free_syncpt_irq)(struct host1x *host);
host1x             97 drivers/gpu/host1x/dev.h 	int (*init)(struct host1x *host1x); /* initialize per SoC ops */
host1x            145 drivers/gpu/host1x/dev.h void host1x_hypervisor_writel(struct host1x *host1x, u32 r, u32 v);
host1x            146 drivers/gpu/host1x/dev.h u32 host1x_hypervisor_readl(struct host1x *host1x, u32 r);
host1x            147 drivers/gpu/host1x/dev.h void host1x_sync_writel(struct host1x *host1x, u32 r, u32 v);
host1x            148 drivers/gpu/host1x/dev.h u32 host1x_sync_readl(struct host1x *host1x, u32 r);
host1x            152 drivers/gpu/host1x/dev.h static inline void host1x_hw_syncpt_restore(struct host1x *host,
host1x            158 drivers/gpu/host1x/dev.h static inline void host1x_hw_syncpt_restore_wait_base(struct host1x *host,
host1x            164 drivers/gpu/host1x/dev.h static inline void host1x_hw_syncpt_load_wait_base(struct host1x *host,
host1x            170 drivers/gpu/host1x/dev.h static inline u32 host1x_hw_syncpt_load(struct host1x *host,
host1x            176 drivers/gpu/host1x/dev.h static inline int host1x_hw_syncpt_cpu_incr(struct host1x *host,
host1x            183 drivers/gpu/host1x/dev.h 	struct host1x *host, struct host1x_syncpt *sp,
host1x            189 drivers/gpu/host1x/dev.h static inline void host1x_hw_syncpt_enable_protection(struct host1x *host)
host1x            194 drivers/gpu/host1x/dev.h static inline int host1x_hw_intr_init_host_sync(struct host1x *host, u32 cpm,
host1x            200 drivers/gpu/host1x/dev.h static inline void host1x_hw_intr_set_syncpt_threshold(struct host1x *host,
host1x            207 drivers/gpu/host1x/dev.h static inline void host1x_hw_intr_enable_syncpt_intr(struct host1x *host,
host1x            213 drivers/gpu/host1x/dev.h static inline void host1x_hw_intr_disable_syncpt_intr(struct host1x *host,
host1x            219 drivers/gpu/host1x/dev.h static inline void host1x_hw_intr_disable_all_syncpt_intrs(struct host1x *host)
host1x            224 drivers/gpu/host1x/dev.h static inline int host1x_hw_intr_free_syncpt_irq(struct host1x *host)
host1x            229 drivers/gpu/host1x/dev.h static inline int host1x_hw_channel_init(struct host1x *host,
host1x            236 drivers/gpu/host1x/dev.h static inline int host1x_hw_channel_submit(struct host1x *host,
host1x            242 drivers/gpu/host1x/dev.h static inline void host1x_hw_cdma_start(struct host1x *host,
host1x            248 drivers/gpu/host1x/dev.h static inline void host1x_hw_cdma_stop(struct host1x *host,
host1x            254 drivers/gpu/host1x/dev.h static inline void host1x_hw_cdma_flush(struct host1x *host,
host1x            260 drivers/gpu/host1x/dev.h static inline int host1x_hw_cdma_timeout_init(struct host1x *host,
host1x            267 drivers/gpu/host1x/dev.h static inline void host1x_hw_cdma_timeout_destroy(struct host1x *host,
host1x            273 drivers/gpu/host1x/dev.h static inline void host1x_hw_cdma_freeze(struct host1x *host,
host1x            279 drivers/gpu/host1x/dev.h static inline void host1x_hw_cdma_resume(struct host1x *host,
host1x            285 drivers/gpu/host1x/dev.h static inline void host1x_hw_cdma_timeout_cpu_incr(struct host1x *host,
host1x            295 drivers/gpu/host1x/dev.h static inline void host1x_hw_pushbuffer_init(struct host1x *host,
host1x            301 drivers/gpu/host1x/dev.h static inline void host1x_hw_debug_init(struct host1x *host, struct dentry *de)
host1x            307 drivers/gpu/host1x/dev.h static inline void host1x_hw_show_channel_cdma(struct host1x *host,
host1x            314 drivers/gpu/host1x/dev.h static inline void host1x_hw_show_channel_fifo(struct host1x *host,
host1x            321 drivers/gpu/host1x/dev.h static inline void host1x_hw_show_mlocks(struct host1x *host, struct output *o)
host1x             91 drivers/gpu/host1x/hw/cdma_hw.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            123 drivers/gpu/host1x/hw/cdma_hw.c 	dev_dbg(host1x->dev,
host1x            170 drivers/gpu/host1x/hw/cdma_hw.c static void cdma_hw_cmdproc_stop(struct host1x *host, struct host1x_channel *ch,
host1x            185 drivers/gpu/host1x/hw/cdma_hw.c static void cdma_hw_teardown(struct host1x *host, struct host1x_channel *ch)
host1x            200 drivers/gpu/host1x/hw/cdma_hw.c 	struct host1x *host = cdma_to_host1x(cdma);
host1x            228 drivers/gpu/host1x/hw/cdma_hw.c 	struct host1x *host1x = cdma_to_host1x(cdma);
host1x            231 drivers/gpu/host1x/hw/cdma_hw.c 	dev_dbg(host1x->dev,
host1x            235 drivers/gpu/host1x/hw/cdma_hw.c 	cdma_hw_cmdproc_stop(host1x, ch, false);
host1x            250 drivers/gpu/host1x/hw/cdma_hw.c 	struct host1x *host1x;
host1x            255 drivers/gpu/host1x/hw/cdma_hw.c 	host1x = cdma_to_host1x(cdma);
host1x            263 drivers/gpu/host1x/hw/cdma_hw.c 		dev_dbg(host1x->dev,
host1x            270 drivers/gpu/host1x/hw/cdma_hw.c 	cdma_hw_cmdproc_stop(host1x, ch, true);
host1x            276 drivers/gpu/host1x/hw/cdma_hw.c 		dev_dbg(host1x->dev,
host1x            279 drivers/gpu/host1x/hw/cdma_hw.c 		cdma_hw_cmdproc_stop(host1x, ch, false);
host1x            284 drivers/gpu/host1x/hw/cdma_hw.c 	dev_warn(host1x->dev, "%s: timeout: %u (%s), HW thresh %d, done %d\n",
host1x            289 drivers/gpu/host1x/hw/cdma_hw.c 	host1x_hw_cdma_freeze(host1x, cdma);
host1x             89 drivers/gpu/host1x/hw/channel_hw.c 	struct host1x *host = dev_get_drvdata(job->channel->dev->parent);
host1x            127 drivers/gpu/host1x/hw/channel_hw.c 	struct host1x *host = dev_get_drvdata(ch->dev->parent);
host1x            209 drivers/gpu/host1x/hw/channel_hw.c static void enable_gather_filter(struct host1x *host,
host1x            230 drivers/gpu/host1x/hw/channel_hw.c static int host1x_channel_init(struct host1x_channel *ch, struct host1x *dev,
host1x             14 drivers/gpu/host1x/hw/debug_hw_1x01.c static void host1x_debug_show_channel_cdma(struct host1x *host,
host1x             67 drivers/gpu/host1x/hw/debug_hw_1x01.c static void host1x_debug_show_channel_fifo(struct host1x *host,
host1x            126 drivers/gpu/host1x/hw/debug_hw_1x01.c static void host1x_debug_show_mlocks(struct host1x *host, struct output *o)
host1x             14 drivers/gpu/host1x/hw/debug_hw_1x06.c static void host1x_debug_show_channel_cdma(struct host1x *host,
host1x             52 drivers/gpu/host1x/hw/debug_hw_1x06.c static void host1x_debug_show_channel_fifo(struct host1x *host,
host1x            128 drivers/gpu/host1x/hw/debug_hw_1x06.c static void host1x_debug_show_mlocks(struct host1x *host, struct output *o)
host1x             23 drivers/gpu/host1x/hw/host1x01.c int host1x01_init(struct host1x *host)
host1x             10 drivers/gpu/host1x/hw/host1x01.h struct host1x;
host1x             12 drivers/gpu/host1x/hw/host1x01.h int host1x01_init(struct host1x *host);
host1x             23 drivers/gpu/host1x/hw/host1x02.c int host1x02_init(struct host1x *host)
host1x             11 drivers/gpu/host1x/hw/host1x02.h struct host1x;
host1x             13 drivers/gpu/host1x/hw/host1x02.h int host1x02_init(struct host1x *host);
host1x             23 drivers/gpu/host1x/hw/host1x04.c int host1x04_init(struct host1x *host)
host1x             11 drivers/gpu/host1x/hw/host1x04.h struct host1x;
host1x             13 drivers/gpu/host1x/hw/host1x04.h int host1x04_init(struct host1x *host);
host1x             23 drivers/gpu/host1x/hw/host1x05.c int host1x05_init(struct host1x *host)
host1x             11 drivers/gpu/host1x/hw/host1x05.h struct host1x;
host1x             13 drivers/gpu/host1x/hw/host1x05.h int host1x05_init(struct host1x *host);
host1x             23 drivers/gpu/host1x/hw/host1x06.c int host1x06_init(struct host1x *host)
host1x             11 drivers/gpu/host1x/hw/host1x06.h struct host1x;
host1x             13 drivers/gpu/host1x/hw/host1x06.h int host1x06_init(struct host1x *host);
host1x             23 drivers/gpu/host1x/hw/host1x07.c int host1x07_init(struct host1x *host)
host1x             11 drivers/gpu/host1x/hw/host1x07.h struct host1x;
host1x             13 drivers/gpu/host1x/hw/host1x07.h int host1x07_init(struct host1x *host);
host1x             23 drivers/gpu/host1x/hw/intr_hw.c 	struct host1x *host = syncpt->host;
host1x             35 drivers/gpu/host1x/hw/intr_hw.c 	struct host1x *host = dev_id;
host1x             52 drivers/gpu/host1x/hw/intr_hw.c static void _host1x_intr_disable_all_syncpt_intrs(struct host1x *host)
host1x             64 drivers/gpu/host1x/hw/intr_hw.c static void intr_hw_init(struct host1x *host, u32 cpm)
host1x             82 drivers/gpu/host1x/hw/intr_hw.c _host1x_intr_init_host_sync(struct host1x *host, u32 cpm,
host1x            106 drivers/gpu/host1x/hw/intr_hw.c static void _host1x_intr_set_syncpt_threshold(struct host1x *host,
host1x            113 drivers/gpu/host1x/hw/intr_hw.c static void _host1x_intr_enable_syncpt_intr(struct host1x *host,
host1x            120 drivers/gpu/host1x/hw/intr_hw.c static void _host1x_intr_disable_syncpt_intr(struct host1x *host,
host1x            129 drivers/gpu/host1x/hw/intr_hw.c static int _host1x_free_syncpt_irq(struct host1x *host)
host1x             19 drivers/gpu/host1x/hw/syncpt_hw.c 	struct host1x *host = sp->host;
host1x             30 drivers/gpu/host1x/hw/syncpt_hw.c 	struct host1x *host = sp->host;
host1x             43 drivers/gpu/host1x/hw/syncpt_hw.c 	struct host1x *host = sp->host;
host1x             55 drivers/gpu/host1x/hw/syncpt_hw.c 	struct host1x *host = sp->host;
host1x             78 drivers/gpu/host1x/hw/syncpt_hw.c 	struct host1x *host = sp->host;
host1x            107 drivers/gpu/host1x/hw/syncpt_hw.c 	struct host1x *host = sp->host;
host1x            125 drivers/gpu/host1x/hw/syncpt_hw.c static void syncpt_enable_protection(struct host1x *host)
host1x             88 drivers/gpu/host1x/intr.c static void reset_threshold_interrupt(struct host1x *host,
host1x            155 drivers/gpu/host1x/intr.c static int process_wait_list(struct host1x *host,
host1x            197 drivers/gpu/host1x/intr.c 	struct host1x *host = syncpt->host;
host1x            203 drivers/gpu/host1x/intr.c int host1x_intr_add_action(struct host1x *host, struct host1x_syncpt *syncpt,
host1x            246 drivers/gpu/host1x/intr.c void host1x_intr_put_ref(struct host1x *host, unsigned int id, void *ref)
host1x            262 drivers/gpu/host1x/intr.c int host1x_intr_init(struct host1x *host, unsigned int irq_sync)
host1x            285 drivers/gpu/host1x/intr.c void host1x_intr_deinit(struct host1x *host)
host1x            290 drivers/gpu/host1x/intr.c void host1x_intr_start(struct host1x *host)
host1x            305 drivers/gpu/host1x/intr.c void host1x_intr_stop(struct host1x *host)
host1x             15 drivers/gpu/host1x/intr.h struct host1x;
host1x             68 drivers/gpu/host1x/intr.h int host1x_intr_add_action(struct host1x *host, struct host1x_syncpt *syncpt,
host1x             78 drivers/gpu/host1x/intr.h void host1x_intr_put_ref(struct host1x *host, unsigned int id, void *ref);
host1x             81 drivers/gpu/host1x/intr.h int host1x_intr_init(struct host1x *host, unsigned int irq_sync);
host1x             84 drivers/gpu/host1x/intr.h void host1x_intr_deinit(struct host1x *host);
host1x             87 drivers/gpu/host1x/intr.h void host1x_intr_start(struct host1x *host);
host1x             90 drivers/gpu/host1x/intr.h void host1x_intr_stop(struct host1x *host);
host1x            100 drivers/gpu/host1x/job.c static unsigned int pin_job(struct host1x *host, struct host1x_job *job)
host1x            508 drivers/gpu/host1x/job.c 	struct host1x *host = dev_get_drvdata(dev->parent);
host1x            556 drivers/gpu/host1x/job.c 	struct host1x *host = dev_get_drvdata(job->channel->dev->parent);
host1x             23 drivers/gpu/host1x/syncpt.c host1x_syncpt_base_request(struct host1x *host)
host1x             45 drivers/gpu/host1x/syncpt.c static struct host1x_syncpt *host1x_syncpt_alloc(struct host1x *host,
host1x            119 drivers/gpu/host1x/syncpt.c void host1x_syncpt_restore(struct host1x *host)
host1x            137 drivers/gpu/host1x/syncpt.c void host1x_syncpt_save(struct host1x *host)
host1x            365 drivers/gpu/host1x/syncpt.c int host1x_syncpt_init(struct host1x *host)
host1x            424 drivers/gpu/host1x/syncpt.c 	struct host1x *host = dev_get_drvdata(client->parent->parent);
host1x            458 drivers/gpu/host1x/syncpt.c void host1x_syncpt_deinit(struct host1x *host)
host1x            507 drivers/gpu/host1x/syncpt.c unsigned int host1x_syncpt_nb_pts(struct host1x *host)
host1x            512 drivers/gpu/host1x/syncpt.c unsigned int host1x_syncpt_nb_bases(struct host1x *host)
host1x            517 drivers/gpu/host1x/syncpt.c unsigned int host1x_syncpt_nb_mlocks(struct host1x *host)
host1x            527 drivers/gpu/host1x/syncpt.c struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, unsigned int id)
host1x             18 drivers/gpu/host1x/syncpt.h struct host1x;
host1x             35 drivers/gpu/host1x/syncpt.h 	struct host1x *host;
host1x             44 drivers/gpu/host1x/syncpt.h int host1x_syncpt_init(struct host1x *host);
host1x             47 drivers/gpu/host1x/syncpt.h void host1x_syncpt_deinit(struct host1x *host);
host1x             50 drivers/gpu/host1x/syncpt.h unsigned int host1x_syncpt_nb_pts(struct host1x *host);
host1x             53 drivers/gpu/host1x/syncpt.h unsigned int host1x_syncpt_nb_bases(struct host1x *host);
host1x             56 drivers/gpu/host1x/syncpt.h unsigned int host1x_syncpt_nb_mlocks(struct host1x *host);
host1x             99 drivers/gpu/host1x/syncpt.h void host1x_syncpt_save(struct host1x *host);
host1x            102 drivers/gpu/host1x/syncpt.h void host1x_syncpt_restore(struct host1x *host);
host1x            136 include/linux/host1x.h struct host1x;
host1x            138 include/linux/host1x.h struct host1x_syncpt *host1x_syncpt_get(struct host1x *host, u32 id);
host1x             11 include/trace/events/host1x.h #define TRACE_SYSTEM host1x
host1x             21 include/trace/events/host1x.h DECLARE_EVENT_CLASS(host1x,
host1x             29 include/trace/events/host1x.h DEFINE_EVENT(host1x, host1x_channel_open,
host1x             34 include/trace/events/host1x.h DEFINE_EVENT(host1x, host1x_channel_release,
host1x             39 include/trace/events/host1x.h DEFINE_EVENT(host1x, host1x_cdma_begin,
host1x             44 include/trace/events/host1x.h DEFINE_EVENT(host1x, host1x_cdma_end,