Lines Matching full:accel
32 return kasprintf(GFP_KERNEL, "accel/%s", dev_name(dev)); in accel_devnode()
37 accel_class = class_create("accel"); in accel_sysfs_init()
82 * accel_debugfs_init() - Initialize debugfs for accel minor
108 * accel_set_device_instance_params() - Set some device parameters for accel device
112 * This function creates the dev_t of the device using the accel major and
114 * device instance to the accel sysfs class and device type, respectively.
124 * accel_minor_alloc() - Allocates a new accel minor
126 * This function access the accel minors idr and allocates from it
127 * a new id to represent a new accel minor
144 * accel_minor_remove() - Remove an accel minor
147 * This function access the accel minors idr and removes from
160 * accel_minor_replace() - Replace minor pointer in accel minors idr.
164 * This function access the accel minors idr structure and replaces the pointer
184 * The object can be only a drm_minor that represents an accel device.
217 * accel_open - open method for ACCEL file
222 * It looks up the correct ACCEL device and instantiates all the per-file
293 unregister_chrdev(ACCEL_MAJOR, "accel"); in accel_core_exit()
307 DRM_ERROR("Cannot create ACCEL class: %d\n", ret); in accel_core_init()
311 accel_debugfs_root = debugfs_create_dir("accel", NULL); in accel_core_init()
313 ret = register_chrdev(ACCEL_MAJOR, "accel", &accel_stub_fops); in accel_core_init()
315 DRM_ERROR("Cannot register ACCEL major: %d\n", ret); in accel_core_init()