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