Lines Matching full:host1x
53 struct host1x *m = dev_get_drvdata(ch->dev->parent); in show_channel()
70 static void show_syncpts(struct host1x *m, struct output *o) in show_syncpts()
99 static void show_all(struct host1x *m, struct output *o, bool show_fifo) in show_all()
165 static void host1x_debugfs_init(struct host1x *host1x) in host1x_debugfs_init() argument
167 struct dentry *de = debugfs_create_dir("tegra-host1x", NULL); in host1x_debugfs_init()
170 host1x->debugfs = de; in host1x_debugfs_init()
172 debugfs_create_file("status", S_IRUGO, de, host1x, &host1x_debug_fops); in host1x_debugfs_init()
173 debugfs_create_file("status_all", S_IRUGO, de, host1x, in host1x_debugfs_init()
179 host1x_hw_debug_init(host1x, de); in host1x_debugfs_init()
189 static void host1x_debugfs_exit(struct host1x *host1x) in host1x_debugfs_exit() argument
191 debugfs_remove_recursive(host1x->debugfs); in host1x_debugfs_exit()
194 void host1x_debug_init(struct host1x *host1x) in host1x_debug_init() argument
197 host1x_debugfs_init(host1x); in host1x_debug_init()
200 void host1x_debug_deinit(struct host1x *host1x) in host1x_debug_deinit() argument
203 host1x_debugfs_exit(host1x); in host1x_debug_deinit()
206 void host1x_debug_dump(struct host1x *host1x) in host1x_debug_dump() argument
212 show_all(host1x, &o, true); in host1x_debug_dump()
215 void host1x_debug_dump_syncpts(struct host1x *host1x) in host1x_debug_dump_syncpts() argument
221 show_syncpts(host1x, &o); in host1x_debug_dump_syncpts()