drm: use anon-inode instead of relying on cdevs
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / gpu / drm / drm_fops.c
1 /**
2  * \file drm_fops.c
3  * File operations for DRM
4  *
5  * \author Rickard E. (Rik) Faith <faith@valinux.com>
6  * \author Daryll Strauss <daryll@valinux.com>
7  * \author Gareth Hughes <gareth@valinux.com>
8  */
9
10 /*
11  * Created: Mon Jan  4 08:58:31 1999 by faith@valinux.com
12  *
13  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
14  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
15  * All Rights Reserved.
16  *
17  * Permission is hereby granted, free of charge, to any person obtaining a
18  * copy of this software and associated documentation files (the "Software"),
19  * to deal in the Software without restriction, including without limitation
20  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
21  * and/or sell copies of the Software, and to permit persons to whom the
22  * Software is furnished to do so, subject to the following conditions:
23  *
24  * The above copyright notice and this permission notice (including the next
25  * paragraph) shall be included in all copies or substantial portions of the
26  * Software.
27  *
28  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
31  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
32  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
33  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
34  * OTHER DEALINGS IN THE SOFTWARE.
35  */
36
37 #include <drm/drmP.h>
38 #include <linux/poll.h>
39 #include <linux/slab.h>
40 #include <linux/module.h>
41
42 /* from BKL pushdown: note that nothing else serializes idr_find() */
43 DEFINE_MUTEX(drm_global_mutex);
44 EXPORT_SYMBOL(drm_global_mutex);
45
46 static int drm_open_helper(struct inode *inode, struct file *filp,
47                            struct drm_device * dev);
48
49 static int drm_setup(struct drm_device * dev)
50 {
51         int ret;
52
53         if (dev->driver->firstopen &&
54             !drm_core_check_feature(dev, DRIVER_MODESET)) {
55                 ret = dev->driver->firstopen(dev);
56                 if (ret != 0)
57                         return ret;
58         }
59
60         ret = drm_legacy_dma_setup(dev);
61         if (ret < 0)
62                 return ret;
63
64
65         DRM_DEBUG("\n");
66         return 0;
67 }
68
69 /**
70  * Open file.
71  *
72  * \param inode device inode
73  * \param filp file pointer.
74  * \return zero on success or a negative number on failure.
75  *
76  * Searches the DRM device with the same minor number, calls open_helper(), and
77  * increments the device open count. If the open count was previous at zero,
78  * i.e., it's the first that the device is open, then calls setup().
79  */
80 int drm_open(struct inode *inode, struct file *filp)
81 {
82         struct drm_device *dev;
83         struct drm_minor *minor;
84         int retcode;
85         int need_setup = 0;
86
87         minor = drm_minor_acquire(iminor(inode));
88         if (IS_ERR(minor))
89                 return PTR_ERR(minor);
90
91         dev = minor->dev;
92         if (drm_device_is_unplugged(dev)) {
93                 retcode = -ENODEV;
94                 goto err_release;
95         }
96
97         if (!dev->open_count++)
98                 need_setup = 1;
99
100         /* share address_space across all char-devs of a single device */
101         filp->f_mapping = dev->anon_inode->i_mapping;
102
103         retcode = drm_open_helper(inode, filp, dev);
104         if (retcode)
105                 goto err_undo;
106         if (need_setup) {
107                 retcode = drm_setup(dev);
108                 if (retcode)
109                         goto err_undo;
110         }
111         return 0;
112
113 err_undo:
114         dev->open_count--;
115 err_release:
116         drm_minor_release(minor);
117         return retcode;
118 }
119 EXPORT_SYMBOL(drm_open);
120
121 /**
122  * File \c open operation.
123  *
124  * \param inode device inode.
125  * \param filp file pointer.
126  *
127  * Puts the dev->fops corresponding to the device minor number into
128  * \p filp, call the \c open method, and restore the file operations.
129  */
130 int drm_stub_open(struct inode *inode, struct file *filp)
131 {
132         struct drm_device *dev;
133         struct drm_minor *minor;
134         int err = -ENODEV;
135         const struct file_operations *new_fops;
136
137         DRM_DEBUG("\n");
138
139         mutex_lock(&drm_global_mutex);
140         minor = drm_minor_acquire(iminor(inode));
141         if (IS_ERR(minor))
142                 goto out_unlock;
143
144         dev = minor->dev;
145         if (drm_device_is_unplugged(dev))
146                 goto out_release;
147
148         new_fops = fops_get(dev->driver->fops);
149         if (!new_fops)
150                 goto out_release;
151
152         replace_fops(filp, new_fops);
153         if (filp->f_op->open)
154                 err = filp->f_op->open(inode, filp);
155
156 out_release:
157         drm_minor_release(minor);
158 out_unlock:
159         mutex_unlock(&drm_global_mutex);
160         return err;
161 }
162
163 /**
164  * Check whether DRI will run on this CPU.
165  *
166  * \return non-zero if the DRI will run on this CPU, or zero otherwise.
167  */
168 static int drm_cpu_valid(void)
169 {
170 #if defined(__i386__)
171         if (boot_cpu_data.x86 == 3)
172                 return 0;       /* No cmpxchg on a 386 */
173 #endif
174 #if defined(__sparc__) && !defined(__sparc_v9__)
175         return 0;               /* No cmpxchg before v9 sparc. */
176 #endif
177         return 1;
178 }
179
180 /**
181  * Called whenever a process opens /dev/drm.
182  *
183  * \param inode device inode.
184  * \param filp file pointer.
185  * \param dev device.
186  * \return zero on success or a negative number on failure.
187  *
188  * Creates and initializes a drm_file structure for the file private data in \p
189  * filp and add it into the double linked list in \p dev.
190  */
191 static int drm_open_helper(struct inode *inode, struct file *filp,
192                            struct drm_device * dev)
193 {
194         int minor_id = iminor(inode);
195         struct drm_file *priv;
196         int ret;
197
198         if (filp->f_flags & O_EXCL)
199                 return -EBUSY;  /* No exclusive opens */
200         if (!drm_cpu_valid())
201                 return -EINVAL;
202         if (dev->switch_power_state != DRM_SWITCH_POWER_ON && dev->switch_power_state != DRM_SWITCH_POWER_DYNAMIC_OFF)
203                 return -EINVAL;
204
205         DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor_id);
206
207         priv = kzalloc(sizeof(*priv), GFP_KERNEL);
208         if (!priv)
209                 return -ENOMEM;
210
211         filp->private_data = priv;
212         priv->filp = filp;
213         priv->uid = current_euid();
214         priv->pid = get_pid(task_pid(current));
215         priv->minor = idr_find(&drm_minors_idr, minor_id);
216         if (!priv->minor) {
217                 ret = -ENODEV;
218                 goto out_put_pid;
219         }
220
221         /* for compatibility root is always authenticated */
222         priv->always_authenticated = capable(CAP_SYS_ADMIN);
223         priv->authenticated = priv->always_authenticated;
224         priv->lock_count = 0;
225
226         INIT_LIST_HEAD(&priv->lhead);
227         INIT_LIST_HEAD(&priv->fbs);
228         mutex_init(&priv->fbs_lock);
229         INIT_LIST_HEAD(&priv->event_list);
230         init_waitqueue_head(&priv->event_wait);
231         priv->event_space = 4096; /* set aside 4k for event buffer */
232
233         if (dev->driver->driver_features & DRIVER_GEM)
234                 drm_gem_open(dev, priv);
235
236         if (drm_core_check_feature(dev, DRIVER_PRIME))
237                 drm_prime_init_file_private(&priv->prime);
238
239         if (dev->driver->open) {
240                 ret = dev->driver->open(dev, priv);
241                 if (ret < 0)
242                         goto out_prime_destroy;
243         }
244
245         /* if there is no current master make this fd it, but do not create
246          * any master object for render clients */
247         mutex_lock(&dev->struct_mutex);
248         if (!priv->minor->master && !drm_is_render_client(priv)) {
249                 /* create a new master */
250                 priv->minor->master = drm_master_create(priv->minor);
251                 if (!priv->minor->master) {
252                         mutex_unlock(&dev->struct_mutex);
253                         ret = -ENOMEM;
254                         goto out_close;
255                 }
256
257                 priv->is_master = 1;
258                 /* take another reference for the copy in the local file priv */
259                 priv->master = drm_master_get(priv->minor->master);
260
261                 priv->authenticated = 1;
262
263                 mutex_unlock(&dev->struct_mutex);
264                 if (dev->driver->master_create) {
265                         ret = dev->driver->master_create(dev, priv->master);
266                         if (ret) {
267                                 mutex_lock(&dev->struct_mutex);
268                                 /* drop both references if this fails */
269                                 drm_master_put(&priv->minor->master);
270                                 drm_master_put(&priv->master);
271                                 mutex_unlock(&dev->struct_mutex);
272                                 goto out_close;
273                         }
274                 }
275                 mutex_lock(&dev->struct_mutex);
276                 if (dev->driver->master_set) {
277                         ret = dev->driver->master_set(dev, priv, true);
278                         if (ret) {
279                                 /* drop both references if this fails */
280                                 drm_master_put(&priv->minor->master);
281                                 drm_master_put(&priv->master);
282                                 mutex_unlock(&dev->struct_mutex);
283                                 goto out_close;
284                         }
285                 }
286         } else if (!drm_is_render_client(priv)) {
287                 /* get a reference to the master */
288                 priv->master = drm_master_get(priv->minor->master);
289         }
290         mutex_unlock(&dev->struct_mutex);
291
292         mutex_lock(&dev->struct_mutex);
293         list_add(&priv->lhead, &dev->filelist);
294         mutex_unlock(&dev->struct_mutex);
295
296 #ifdef __alpha__
297         /*
298          * Default the hose
299          */
300         if (!dev->hose) {
301                 struct pci_dev *pci_dev;
302                 pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL);
303                 if (pci_dev) {
304                         dev->hose = pci_dev->sysdata;
305                         pci_dev_put(pci_dev);
306                 }
307                 if (!dev->hose) {
308                         struct pci_bus *b = pci_bus_b(pci_root_buses.next);
309                         if (b)
310                                 dev->hose = b->sysdata;
311                 }
312         }
313 #endif
314
315         return 0;
316
317 out_close:
318         if (dev->driver->postclose)
319                 dev->driver->postclose(dev, priv);
320 out_prime_destroy:
321         if (drm_core_check_feature(dev, DRIVER_PRIME))
322                 drm_prime_destroy_file_private(&priv->prime);
323         if (dev->driver->driver_features & DRIVER_GEM)
324                 drm_gem_release(dev, priv);
325 out_put_pid:
326         put_pid(priv->pid);
327         kfree(priv);
328         filp->private_data = NULL;
329         return ret;
330 }
331
332 static void drm_master_release(struct drm_device *dev, struct file *filp)
333 {
334         struct drm_file *file_priv = filp->private_data;
335
336         if (drm_i_have_hw_lock(dev, file_priv)) {
337                 DRM_DEBUG("File %p released, freeing lock for context %d\n",
338                           filp, _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock));
339                 drm_lock_free(&file_priv->master->lock,
340                               _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock));
341         }
342 }
343
344 static void drm_events_release(struct drm_file *file_priv)
345 {
346         struct drm_device *dev = file_priv->minor->dev;
347         struct drm_pending_event *e, *et;
348         struct drm_pending_vblank_event *v, *vt;
349         unsigned long flags;
350
351         spin_lock_irqsave(&dev->event_lock, flags);
352
353         /* Remove pending flips */
354         list_for_each_entry_safe(v, vt, &dev->vblank_event_list, base.link)
355                 if (v->base.file_priv == file_priv) {
356                         list_del(&v->base.link);
357                         drm_vblank_put(dev, v->pipe);
358                         v->base.destroy(&v->base);
359                 }
360
361         /* Remove unconsumed events */
362         list_for_each_entry_safe(e, et, &file_priv->event_list, link) {
363                 list_del(&e->link);
364                 e->destroy(e);
365         }
366
367         spin_unlock_irqrestore(&dev->event_lock, flags);
368 }
369
370 /**
371  * drm_legacy_dev_reinit
372  *
373  * Reinitializes a legacy/ums drm device in it's lastclose function.
374  */
375 static void drm_legacy_dev_reinit(struct drm_device *dev)
376 {
377         if (drm_core_check_feature(dev, DRIVER_MODESET))
378                 return;
379
380         dev->sigdata.lock = NULL;
381
382         dev->context_flag = 0;
383         dev->last_context = 0;
384         dev->if_version = 0;
385 }
386
387 /**
388  * Take down the DRM device.
389  *
390  * \param dev DRM device structure.
391  *
392  * Frees every resource in \p dev.
393  *
394  * \sa drm_device
395  */
396 int drm_lastclose(struct drm_device * dev)
397 {
398         struct drm_vma_entry *vma, *vma_temp;
399
400         DRM_DEBUG("\n");
401
402         if (dev->driver->lastclose)
403                 dev->driver->lastclose(dev);
404         DRM_DEBUG("driver lastclose completed\n");
405
406         if (dev->irq_enabled && !drm_core_check_feature(dev, DRIVER_MODESET))
407                 drm_irq_uninstall(dev);
408
409         mutex_lock(&dev->struct_mutex);
410
411         drm_agp_clear(dev);
412
413         drm_legacy_sg_cleanup(dev);
414
415         /* Clear vma list (only built for debugging) */
416         list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
417                 list_del(&vma->head);
418                 kfree(vma);
419         }
420
421         drm_legacy_dma_takedown(dev);
422
423         mutex_unlock(&dev->struct_mutex);
424
425         drm_legacy_dev_reinit(dev);
426
427         DRM_DEBUG("lastclose completed\n");
428         return 0;
429 }
430
431 /**
432  * Release file.
433  *
434  * \param inode device inode
435  * \param file_priv DRM file private.
436  * \return zero on success or a negative number on failure.
437  *
438  * If the hardware lock is held then free it, and take it again for the kernel
439  * context since it's necessary to reclaim buffers. Unlink the file private
440  * data from its list and free it. Decreases the open count and if it reaches
441  * zero calls drm_lastclose().
442  */
443 int drm_release(struct inode *inode, struct file *filp)
444 {
445         struct drm_file *file_priv = filp->private_data;
446         struct drm_minor *minor = file_priv->minor;
447         struct drm_device *dev = minor->dev;
448         int retcode = 0;
449
450         mutex_lock(&drm_global_mutex);
451
452         DRM_DEBUG("open_count = %d\n", dev->open_count);
453
454         if (dev->driver->preclose)
455                 dev->driver->preclose(dev, file_priv);
456
457         /* ========================================================
458          * Begin inline drm_release
459          */
460
461         DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
462                   task_pid_nr(current),
463                   (long)old_encode_dev(file_priv->minor->device),
464                   dev->open_count);
465
466         /* Release any auth tokens that might point to this file_priv,
467            (do that under the drm_global_mutex) */
468         if (file_priv->magic)
469                 (void) drm_remove_magic(file_priv->master, file_priv->magic);
470
471         /* if the master has gone away we can't do anything with the lock */
472         if (file_priv->minor->master)
473                 drm_master_release(dev, filp);
474
475         if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
476                 drm_core_reclaim_buffers(dev, file_priv);
477
478         drm_events_release(file_priv);
479
480         if (dev->driver->driver_features & DRIVER_MODESET)
481                 drm_fb_release(file_priv);
482
483         if (dev->driver->driver_features & DRIVER_GEM)
484                 drm_gem_release(dev, file_priv);
485
486         mutex_lock(&dev->ctxlist_mutex);
487         if (!list_empty(&dev->ctxlist)) {
488                 struct drm_ctx_list *pos, *n;
489
490                 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
491                         if (pos->tag == file_priv &&
492                             pos->handle != DRM_KERNEL_CONTEXT) {
493                                 if (dev->driver->context_dtor)
494                                         dev->driver->context_dtor(dev,
495                                                                   pos->handle);
496
497                                 drm_ctxbitmap_free(dev, pos->handle);
498
499                                 list_del(&pos->head);
500                                 kfree(pos);
501                         }
502                 }
503         }
504         mutex_unlock(&dev->ctxlist_mutex);
505
506         mutex_lock(&dev->struct_mutex);
507
508         if (file_priv->is_master) {
509                 struct drm_master *master = file_priv->master;
510                 struct drm_file *temp;
511                 list_for_each_entry(temp, &dev->filelist, lhead) {
512                         if ((temp->master == file_priv->master) &&
513                             (temp != file_priv))
514                                 temp->authenticated = temp->always_authenticated;
515                 }
516
517                 /**
518                  * Since the master is disappearing, so is the
519                  * possibility to lock.
520                  */
521
522                 if (master->lock.hw_lock) {
523                         if (dev->sigdata.lock == master->lock.hw_lock)
524                                 dev->sigdata.lock = NULL;
525                         master->lock.hw_lock = NULL;
526                         master->lock.file_priv = NULL;
527                         wake_up_interruptible_all(&master->lock.lock_queue);
528                 }
529
530                 if (file_priv->minor->master == file_priv->master) {
531                         /* drop the reference held my the minor */
532                         if (dev->driver->master_drop)
533                                 dev->driver->master_drop(dev, file_priv, true);
534                         drm_master_put(&file_priv->minor->master);
535                 }
536         }
537
538         /* drop the reference held my the file priv */
539         if (file_priv->master)
540                 drm_master_put(&file_priv->master);
541         file_priv->is_master = 0;
542         list_del(&file_priv->lhead);
543         mutex_unlock(&dev->struct_mutex);
544
545         if (dev->driver->postclose)
546                 dev->driver->postclose(dev, file_priv);
547
548
549         if (drm_core_check_feature(dev, DRIVER_PRIME))
550                 drm_prime_destroy_file_private(&file_priv->prime);
551
552         put_pid(file_priv->pid);
553         kfree(file_priv);
554
555         /* ========================================================
556          * End inline drm_release
557          */
558
559         if (!--dev->open_count) {
560                 retcode = drm_lastclose(dev);
561                 if (drm_device_is_unplugged(dev))
562                         drm_put_dev(dev);
563         }
564         mutex_unlock(&drm_global_mutex);
565
566         drm_minor_release(minor);
567
568         return retcode;
569 }
570 EXPORT_SYMBOL(drm_release);
571
572 static bool
573 drm_dequeue_event(struct drm_file *file_priv,
574                   size_t total, size_t max, struct drm_pending_event **out)
575 {
576         struct drm_device *dev = file_priv->minor->dev;
577         struct drm_pending_event *e;
578         unsigned long flags;
579         bool ret = false;
580
581         spin_lock_irqsave(&dev->event_lock, flags);
582
583         *out = NULL;
584         if (list_empty(&file_priv->event_list))
585                 goto out;
586         e = list_first_entry(&file_priv->event_list,
587                              struct drm_pending_event, link);
588         if (e->event->length + total > max)
589                 goto out;
590
591         file_priv->event_space += e->event->length;
592         list_del(&e->link);
593         *out = e;
594         ret = true;
595
596 out:
597         spin_unlock_irqrestore(&dev->event_lock, flags);
598         return ret;
599 }
600
601 ssize_t drm_read(struct file *filp, char __user *buffer,
602                  size_t count, loff_t *offset)
603 {
604         struct drm_file *file_priv = filp->private_data;
605         struct drm_pending_event *e;
606         size_t total;
607         ssize_t ret;
608
609         ret = wait_event_interruptible(file_priv->event_wait,
610                                        !list_empty(&file_priv->event_list));
611         if (ret < 0)
612                 return ret;
613
614         total = 0;
615         while (drm_dequeue_event(file_priv, total, count, &e)) {
616                 if (copy_to_user(buffer + total,
617                                  e->event, e->event->length)) {
618                         total = -EFAULT;
619                         break;
620                 }
621
622                 total += e->event->length;
623                 e->destroy(e);
624         }
625
626         return total;
627 }
628 EXPORT_SYMBOL(drm_read);
629
630 unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait)
631 {
632         struct drm_file *file_priv = filp->private_data;
633         unsigned int mask = 0;
634
635         poll_wait(filp, &file_priv->event_wait, wait);
636
637         if (!list_empty(&file_priv->event_list))
638                 mask |= POLLIN | POLLRDNORM;
639
640         return mask;
641 }
642 EXPORT_SYMBOL(drm_poll);