1 // SPDX-License-Identifier: GPL-2.0 2 3 /* 4 * Copyright 2022 HabanaLabs, Ltd. 5 * All Rights Reserved. 6 * 7 */ 8 9 #include <linux/debugfs.h> 10 #include <linux/device.h> 11 #include <linux/idr.h> 12 13 #include <drm/drm_accel.h> 14 #include <drm/drm_debugfs.h> 15 #include <drm/drm_drv.h> 16 #include <drm/drm_file.h> 17 #include <drm/drm_ioctl.h> 18 #include <drm/drm_print.h> 19 20 static DEFINE_SPINLOCK(accel_minor_lock); 21 static struct idr accel_minors_idr; 22 23 static struct dentry *accel_debugfs_root; 24 static struct class *accel_class; 25 26 static struct device_type accel_sysfs_device_minor = { 27 .name = "accel_minor" 28 }; 29 30 static char *accel_devnode(const struct device *dev, umode_t *mode) 31 { 32 return kasprintf(GFP_KERNEL, "accel/%s", dev_name(dev)); 33 } 34 35 static int accel_sysfs_init(void) 36 { 37 accel_class = class_create("accel"); 38 if (IS_ERR(accel_class)) 39 return PTR_ERR(accel_class); 40 41 accel_class->devnode = accel_devnode; 42 43 return 0; 44 } 45 46 static void accel_sysfs_destroy(void) 47 { 48 if (IS_ERR_OR_NULL(accel_class)) 49 return; 50 class_destroy(accel_class); 51 accel_class = NULL; 52 } 53 54 static int accel_name_info(struct seq_file *m, void *data) 55 { 56 struct drm_info_node *node = (struct drm_info_node *) m->private; 57 struct drm_minor *minor = node->minor; 58 struct drm_device *dev = minor->dev; 59 struct drm_master *master; 60 61 mutex_lock(&dev->master_mutex); 62 master = dev->master; 63 seq_printf(m, "%s", dev->driver->name); 64 if (dev->dev) 65 seq_printf(m, " dev=%s", dev_name(dev->dev)); 66 if (master && master->unique) 67 seq_printf(m, " master=%s", master->unique); 68 if (dev->unique) 69 seq_printf(m, " unique=%s", dev->unique); 70 seq_puts(m, "\n"); 71 mutex_unlock(&dev->master_mutex); 72 73 return 0; 74 } 75 76 static const struct drm_info_list accel_debugfs_list[] = { 77 {"name", accel_name_info, 0} 78 }; 79 #define ACCEL_DEBUGFS_ENTRIES ARRAY_SIZE(accel_debugfs_list) 80 81 /** 82 * accel_debugfs_init() - Initialize debugfs for device 83 * @dev: Pointer to the device instance. 84 * 85 * This function creates a root directory for the device in debugfs. 86 */ 87 void accel_debugfs_init(struct drm_device *dev) 88 { 89 drm_debugfs_dev_init(dev, accel_debugfs_root); 90 } 91 92 /** 93 * accel_debugfs_register() - Register debugfs for device 94 * @dev: Pointer to the device instance. 95 * 96 * Creates common files for accelerators. 97 */ 98 void accel_debugfs_register(struct drm_device *dev) 99 { 100 struct drm_minor *minor = dev->accel; 101 102 minor->debugfs_root = dev->debugfs_root; 103 104 drm_debugfs_create_files(accel_debugfs_list, ACCEL_DEBUGFS_ENTRIES, 105 dev->debugfs_root, minor); 106 } 107 108 /** 109 * accel_set_device_instance_params() - Set some device parameters for accel device 110 * @kdev: Pointer to the device instance. 111 * @index: The minor's index 112 * 113 * This function creates the dev_t of the device using the accel major and 114 * the device's minor number. In addition, it sets the class and type of the 115 * device instance to the accel sysfs class and device type, respectively. 116 */ 117 void accel_set_device_instance_params(struct device *kdev, int index) 118 { 119 kdev->devt = MKDEV(ACCEL_MAJOR, index); 120 kdev->class = accel_class; 121 kdev->type = &accel_sysfs_device_minor; 122 } 123 124 /** 125 * accel_minor_alloc() - Allocates a new accel minor 126 * 127 * This function access the accel minors idr and allocates from it 128 * a new id to represent a new accel minor 129 * 130 * Return: A new id on success or error code in case idr_alloc failed 131 */ 132 int accel_minor_alloc(void) 133 { 134 unsigned long flags; 135 int r; 136 137 spin_lock_irqsave(&accel_minor_lock, flags); 138 r = idr_alloc(&accel_minors_idr, NULL, 0, ACCEL_MAX_MINORS, GFP_NOWAIT); 139 spin_unlock_irqrestore(&accel_minor_lock, flags); 140 141 return r; 142 } 143 144 /** 145 * accel_minor_remove() - Remove an accel minor 146 * @index: The minor id to remove. 147 * 148 * This function access the accel minors idr and removes from 149 * it the member with the id that is passed to this function. 150 */ 151 void accel_minor_remove(int index) 152 { 153 unsigned long flags; 154 155 spin_lock_irqsave(&accel_minor_lock, flags); 156 idr_remove(&accel_minors_idr, index); 157 spin_unlock_irqrestore(&accel_minor_lock, flags); 158 } 159 160 /** 161 * accel_minor_replace() - Replace minor pointer in accel minors idr. 162 * @minor: Pointer to the new minor. 163 * @index: The minor id to replace. 164 * 165 * This function access the accel minors idr structure and replaces the pointer 166 * that is associated with an existing id. Because the minor pointer can be 167 * NULL, we need to explicitly pass the index. 168 * 169 * Return: 0 for success, negative value for error 170 */ 171 void accel_minor_replace(struct drm_minor *minor, int index) 172 { 173 unsigned long flags; 174 175 spin_lock_irqsave(&accel_minor_lock, flags); 176 idr_replace(&accel_minors_idr, minor, index); 177 spin_unlock_irqrestore(&accel_minor_lock, flags); 178 } 179 180 /* 181 * Looks up the given minor-ID and returns the respective DRM-minor object. The 182 * refence-count of the underlying device is increased so you must release this 183 * object with accel_minor_release(). 184 * 185 * The object can be only a drm_minor that represents an accel device. 186 * 187 * As long as you hold this minor, it is guaranteed that the object and the 188 * minor->dev pointer will stay valid! However, the device may get unplugged and 189 * unregistered while you hold the minor. 190 */ 191 static struct drm_minor *accel_minor_acquire(unsigned int minor_id) 192 { 193 struct drm_minor *minor; 194 unsigned long flags; 195 196 spin_lock_irqsave(&accel_minor_lock, flags); 197 minor = idr_find(&accel_minors_idr, minor_id); 198 if (minor) 199 drm_dev_get(minor->dev); 200 spin_unlock_irqrestore(&accel_minor_lock, flags); 201 202 if (!minor) { 203 return ERR_PTR(-ENODEV); 204 } else if (drm_dev_is_unplugged(minor->dev)) { 205 drm_dev_put(minor->dev); 206 return ERR_PTR(-ENODEV); 207 } 208 209 return minor; 210 } 211 212 static void accel_minor_release(struct drm_minor *minor) 213 { 214 drm_dev_put(minor->dev); 215 } 216 217 /** 218 * accel_open - open method for ACCEL file 219 * @inode: device inode 220 * @filp: file pointer. 221 * 222 * This function must be used by drivers as their &file_operations.open method. 223 * It looks up the correct ACCEL device and instantiates all the per-file 224 * resources for it. It also calls the &drm_driver.open driver callback. 225 * 226 * Return: 0 on success or negative errno value on failure. 227 */ 228 int accel_open(struct inode *inode, struct file *filp) 229 { 230 struct drm_device *dev; 231 struct drm_minor *minor; 232 int retcode; 233 234 minor = accel_minor_acquire(iminor(inode)); 235 if (IS_ERR(minor)) 236 return PTR_ERR(minor); 237 238 dev = minor->dev; 239 240 atomic_fetch_inc(&dev->open_count); 241 242 /* share address_space across all char-devs of a single device */ 243 filp->f_mapping = dev->anon_inode->i_mapping; 244 245 retcode = drm_open_helper(filp, minor); 246 if (retcode) 247 goto err_undo; 248 249 return 0; 250 251 err_undo: 252 atomic_dec(&dev->open_count); 253 accel_minor_release(minor); 254 return retcode; 255 } 256 EXPORT_SYMBOL_GPL(accel_open); 257 258 static int accel_stub_open(struct inode *inode, struct file *filp) 259 { 260 const struct file_operations *new_fops; 261 struct drm_minor *minor; 262 int err; 263 264 minor = accel_minor_acquire(iminor(inode)); 265 if (IS_ERR(minor)) 266 return PTR_ERR(minor); 267 268 new_fops = fops_get(minor->dev->driver->fops); 269 if (!new_fops) { 270 err = -ENODEV; 271 goto out; 272 } 273 274 replace_fops(filp, new_fops); 275 if (filp->f_op->open) 276 err = filp->f_op->open(inode, filp); 277 else 278 err = 0; 279 280 out: 281 accel_minor_release(minor); 282 283 return err; 284 } 285 286 static const struct file_operations accel_stub_fops = { 287 .owner = THIS_MODULE, 288 .open = accel_stub_open, 289 .llseek = noop_llseek, 290 }; 291 292 void accel_core_exit(void) 293 { 294 unregister_chrdev(ACCEL_MAJOR, "accel"); 295 debugfs_remove(accel_debugfs_root); 296 accel_sysfs_destroy(); 297 idr_destroy(&accel_minors_idr); 298 } 299 300 int __init accel_core_init(void) 301 { 302 int ret; 303 304 idr_init(&accel_minors_idr); 305 306 ret = accel_sysfs_init(); 307 if (ret < 0) { 308 DRM_ERROR("Cannot create ACCEL class: %d\n", ret); 309 goto error; 310 } 311 312 accel_debugfs_root = debugfs_create_dir("accel", NULL); 313 314 ret = register_chrdev(ACCEL_MAJOR, "accel", &accel_stub_fops); 315 if (ret < 0) 316 DRM_ERROR("Cannot register ACCEL major: %d\n", ret); 317 318 error: 319 /* 320 * Any cleanup due to errors will be done in drm_core_exit() that 321 * will call accel_core_exit() 322 */ 323 return ret; 324 } 325