Daniel Vetter | 1888299 | 2014-09-10 08:16:10 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2014 Intel Corporation |
| 3 | * Daniel Vetter <daniel.vetter@ffwll.ch> |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice shall be included in |
| 13 | * all copies or substantial portions of the Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 19 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 20 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 21 | * OTHER DEALINGS IN THE SOFTWARE. |
| 22 | */ |
| 23 | |
Daniel Vetter | 99f45e3 | 2018-09-05 15:57:06 +0200 | [diff] [blame] | 24 | #include <drm/drm_ioctl.h> |
| 25 | |
David Herrmann | 82d5e73 | 2016-09-01 14:48:36 +0200 | [diff] [blame] | 26 | #define DRM_IF_MAJOR 1 |
| 27 | #define DRM_IF_MINOR 4 |
| 28 | |
Sam Ravnborg | ecb2e2f | 2018-12-26 22:03:47 +0100 | [diff] [blame] | 29 | #define DRM_IF_VERSION(maj, min) (maj << 16 | min) |
| 30 | |
Daniel Vetter | 99f45e3 | 2018-09-05 15:57:06 +0200 | [diff] [blame] | 31 | struct drm_prime_file_private; |
| 32 | struct dma_buf; |
| 33 | |
Daniel Vetter | 9acdac6 | 2017-03-08 15:12:40 +0100 | [diff] [blame] | 34 | /* drm_file.c */ |
Daniel Vetter | 44af3f5 | 2014-09-10 12:43:54 +0200 | [diff] [blame] | 35 | extern struct mutex drm_global_mutex; |
David Herrmann | 1572042 | 2018-06-18 16:17:28 +0200 | [diff] [blame] | 36 | struct drm_file *drm_file_alloc(struct drm_minor *minor); |
| 37 | void drm_file_free(struct drm_file *file); |
Daniel Vetter | 68dfbeb | 2016-04-26 19:29:35 +0200 | [diff] [blame] | 38 | void drm_lastclose(struct drm_device *dev); |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 39 | |
| 40 | /* drm_pci.c */ |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 41 | int drm_irq_by_busid(struct drm_device *dev, void *data, |
| 42 | struct drm_file *file_priv); |
Daniel Vetter | 2ce0264 | 2017-01-25 07:26:52 +0100 | [diff] [blame] | 43 | void drm_pci_agp_destroy(struct drm_device *dev); |
Daniel Vetter | 5c484ce | 2017-05-24 16:51:39 +0200 | [diff] [blame] | 44 | int drm_pci_set_busid(struct drm_device *dev, struct drm_master *master); |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 45 | |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 46 | /* drm_prime.c */ |
| 47 | int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data, |
| 48 | struct drm_file *file_priv); |
| 49 | int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data, |
| 50 | struct drm_file *file_priv); |
| 51 | |
| 52 | void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv); |
| 53 | void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv); |
| 54 | void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv, |
| 55 | struct dma_buf *dma_buf); |
| 56 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 57 | /* drm_drv.c */ |
| 58 | struct drm_minor *drm_minor_acquire(unsigned int minor_id); |
| 59 | void drm_minor_release(struct drm_minor *minor); |
| 60 | |
Daniel Vetter | 3ed4351 | 2017-05-31 11:21:46 +0200 | [diff] [blame] | 61 | /* drm_vblank.c */ |
Daniel Vetter | 3ed4351 | 2017-05-31 11:21:46 +0200 | [diff] [blame] | 62 | void drm_vblank_disable_and_save(struct drm_device *dev, unsigned int pipe); |
Daniel Vetter | b4164d6 | 2017-06-26 18:19:49 +0200 | [diff] [blame] | 63 | void drm_vblank_cleanup(struct drm_device *dev); |
Daniel Vetter | b9876d5 | 2016-11-14 10:02:55 +0100 | [diff] [blame] | 64 | |
| 65 | /* IOCTLS */ |
Daniel Vetter | b6dcaaac | 2017-05-24 16:51:46 +0200 | [diff] [blame] | 66 | int drm_wait_vblank_ioctl(struct drm_device *dev, void *data, |
| 67 | struct drm_file *filp); |
| 68 | int drm_legacy_modeset_ctl_ioctl(struct drm_device *dev, void *data, |
| 69 | struct drm_file *file_priv); |
| 70 | |
| 71 | /* drm_irq.c */ |
| 72 | |
| 73 | /* IOCTLS */ |
Dave Airlie | 61ae227 | 2019-04-18 17:10:40 +1000 | [diff] [blame] | 74 | #if IS_ENABLED(CONFIG_DRM_LEGACY) |
Daniel Vetter | 25a9939 | 2016-12-14 00:08:02 +0100 | [diff] [blame] | 75 | int drm_legacy_irq_control(struct drm_device *dev, void *data, |
| 76 | struct drm_file *file_priv); |
Dave Airlie | 61ae227 | 2019-04-18 17:10:40 +1000 | [diff] [blame] | 77 | #endif |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 78 | |
Keith Packard | 3064abf | 2017-06-29 22:49:31 -0700 | [diff] [blame] | 79 | int drm_crtc_get_sequence_ioctl(struct drm_device *dev, void *data, |
| 80 | struct drm_file *filp); |
| 81 | |
| 82 | int drm_crtc_queue_sequence_ioctl(struct drm_device *dev, void *data, |
| 83 | struct drm_file *filp); |
| 84 | |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 85 | /* drm_auth.c */ |
| 86 | int drm_getmagic(struct drm_device *dev, void *data, |
| 87 | struct drm_file *file_priv); |
| 88 | int drm_authmagic(struct drm_device *dev, void *data, |
| 89 | struct drm_file *file_priv); |
Daniel Vetter | 6548f4e | 2016-06-14 20:50:59 +0200 | [diff] [blame] | 90 | int drm_setmaster_ioctl(struct drm_device *dev, void *data, |
| 91 | struct drm_file *file_priv); |
| 92 | int drm_dropmaster_ioctl(struct drm_device *dev, void *data, |
| 93 | struct drm_file *file_priv); |
Daniel Vetter | 2cbae7e | 2016-06-14 20:51:00 +0200 | [diff] [blame] | 94 | int drm_master_open(struct drm_file *file_priv); |
Daniel Vetter | 14d71eb | 2016-06-14 20:51:01 +0200 | [diff] [blame] | 95 | void drm_master_release(struct drm_file *file_priv); |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 96 | |
| 97 | /* drm_sysfs.c */ |
Daniel Vetter | 00285be | 2014-09-10 12:43:59 +0200 | [diff] [blame] | 98 | extern struct class *drm_class; |
| 99 | |
David Herrmann | fcc9021 | 2015-09-09 14:21:30 +0200 | [diff] [blame] | 100 | int drm_sysfs_init(void); |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 101 | void drm_sysfs_destroy(void); |
| 102 | struct device *drm_sysfs_minor_alloc(struct drm_minor *minor); |
| 103 | int drm_sysfs_connector_add(struct drm_connector *connector); |
| 104 | void drm_sysfs_connector_remove(struct drm_connector *connector); |
| 105 | |
Daniel Vetter | ce85882 | 2018-11-29 10:42:26 +0100 | [diff] [blame] | 106 | void drm_sysfs_lease_event(struct drm_device *dev); |
| 107 | |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 108 | /* drm_gem.c */ |
| 109 | int drm_gem_init(struct drm_device *dev); |
| 110 | void drm_gem_destroy(struct drm_device *dev); |
| 111 | int drm_gem_handle_create_tail(struct drm_file *file_priv, |
| 112 | struct drm_gem_object *obj, |
| 113 | u32 *handlep); |
| 114 | int drm_gem_close_ioctl(struct drm_device *dev, void *data, |
| 115 | struct drm_file *file_priv); |
| 116 | int drm_gem_flink_ioctl(struct drm_device *dev, void *data, |
| 117 | struct drm_file *file_priv); |
| 118 | int drm_gem_open_ioctl(struct drm_device *dev, void *data, |
| 119 | struct drm_file *file_priv); |
| 120 | void drm_gem_open(struct drm_device *dev, struct drm_file *file_private); |
| 121 | void drm_gem_release(struct drm_device *dev, struct drm_file *file_private); |
Noralf Trønnes | 45d58b4 | 2017-11-07 20:13:40 +0100 | [diff] [blame] | 122 | void drm_gem_print_info(struct drm_printer *p, unsigned int indent, |
| 123 | const struct drm_gem_object *obj); |
Daniel Vetter | e7f0a88 | 2014-09-23 15:46:51 +0200 | [diff] [blame] | 124 | |
Daniel Vetter | 0cad7f7 | 2017-03-22 21:54:01 +0100 | [diff] [blame] | 125 | /* drm_debugfs.c drm_debugfs_crc.c */ |
Daniel Vetter | c261103 | 2014-09-23 15:46:52 +0200 | [diff] [blame] | 126 | #if defined(CONFIG_DEBUG_FS) |
| 127 | int drm_debugfs_init(struct drm_minor *minor, int minor_id, |
| 128 | struct dentry *root); |
| 129 | int drm_debugfs_cleanup(struct drm_minor *minor); |
| 130 | int drm_debugfs_connector_add(struct drm_connector *connector); |
| 131 | void drm_debugfs_connector_remove(struct drm_connector *connector); |
Tomeu Vizoso | 9edbf1f | 2016-10-06 17:21:06 +0200 | [diff] [blame] | 132 | int drm_debugfs_crtc_add(struct drm_crtc *crtc); |
| 133 | void drm_debugfs_crtc_remove(struct drm_crtc *crtc); |
| 134 | int drm_debugfs_crtc_crc_add(struct drm_crtc *crtc); |
Daniel Vetter | c261103 | 2014-09-23 15:46:52 +0200 | [diff] [blame] | 135 | #else |
| 136 | static inline int drm_debugfs_init(struct drm_minor *minor, int minor_id, |
| 137 | struct dentry *root) |
| 138 | { |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | static inline int drm_debugfs_cleanup(struct drm_minor *minor) |
| 143 | { |
| 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | static inline int drm_debugfs_connector_add(struct drm_connector *connector) |
| 148 | { |
| 149 | return 0; |
| 150 | } |
| 151 | static inline void drm_debugfs_connector_remove(struct drm_connector *connector) |
| 152 | { |
| 153 | } |
Tomeu Vizoso | 9edbf1f | 2016-10-06 17:21:06 +0200 | [diff] [blame] | 154 | |
| 155 | static inline int drm_debugfs_crtc_add(struct drm_crtc *crtc) |
| 156 | { |
| 157 | return 0; |
| 158 | } |
| 159 | static inline void drm_debugfs_crtc_remove(struct drm_crtc *crtc) |
| 160 | { |
| 161 | } |
| 162 | |
| 163 | static inline int drm_debugfs_crtc_crc_add(struct drm_crtc *crtc) |
| 164 | { |
| 165 | return 0; |
| 166 | } |
Dave Airlie | e908342 | 2017-04-04 13:26:24 +1000 | [diff] [blame] | 167 | |
Daniel Vetter | c261103 | 2014-09-23 15:46:52 +0200 | [diff] [blame] | 168 | #endif |
Dave Airlie | e908342 | 2017-04-04 13:26:24 +1000 | [diff] [blame] | 169 | |
Al Viro | 012c674 | 2017-05-24 14:11:03 -0400 | [diff] [blame] | 170 | drm_ioctl_t drm_version; |
Al Viro | 17e3dad | 2017-05-24 14:15:20 -0400 | [diff] [blame] | 171 | drm_ioctl_t drm_getunique; |
Al Viro | 9e92662 | 2017-05-24 19:10:32 -0400 | [diff] [blame] | 172 | drm_ioctl_t drm_getclient; |
Linus Torvalds | af3c8d9 | 2017-07-09 18:48:37 -0700 | [diff] [blame] | 173 | |
Dave Airlie | e908342 | 2017-04-04 13:26:24 +1000 | [diff] [blame] | 174 | /* drm_syncobj.c */ |
| 175 | void drm_syncobj_open(struct drm_file *file_private); |
| 176 | void drm_syncobj_release(struct drm_file *file_private); |
| 177 | int drm_syncobj_create_ioctl(struct drm_device *dev, void *data, |
| 178 | struct drm_file *file_private); |
| 179 | int drm_syncobj_destroy_ioctl(struct drm_device *dev, void *data, |
| 180 | struct drm_file *file_private); |
| 181 | int drm_syncobj_handle_to_fd_ioctl(struct drm_device *dev, void *data, |
| 182 | struct drm_file *file_private); |
| 183 | int drm_syncobj_fd_to_handle_ioctl(struct drm_device *dev, void *data, |
| 184 | struct drm_file *file_private); |
Chunming Zhou | ea56991 | 2019-04-01 17:51:01 +0800 | [diff] [blame] | 185 | int drm_syncobj_transfer_ioctl(struct drm_device *dev, void *data, |
| 186 | struct drm_file *file_private); |
Dave Airlie | 5e60a10 | 2017-08-25 10:52:22 -0700 | [diff] [blame] | 187 | int drm_syncobj_wait_ioctl(struct drm_device *dev, void *data, |
| 188 | struct drm_file *file_private); |
Chunming Zhou | 01d6c35 | 2019-04-01 17:50:57 +0800 | [diff] [blame] | 189 | int drm_syncobj_timeline_wait_ioctl(struct drm_device *dev, void *data, |
| 190 | struct drm_file *file_private); |
Jason Ekstrand | aa4035d | 2017-08-28 14:10:27 -0700 | [diff] [blame] | 191 | int drm_syncobj_reset_ioctl(struct drm_device *dev, void *data, |
| 192 | struct drm_file *file_private); |
Jason Ekstrand | ffa9443 | 2017-08-28 14:10:28 -0700 | [diff] [blame] | 193 | int drm_syncobj_signal_ioctl(struct drm_device *dev, void *data, |
| 194 | struct drm_file *file_private); |
Chunming Zhou | 50d1ebe | 2019-04-01 17:51:02 +0800 | [diff] [blame] | 195 | int drm_syncobj_timeline_signal_ioctl(struct drm_device *dev, void *data, |
| 196 | struct drm_file *file_private); |
Chunming Zhou | 27b575a | 2019-04-01 17:50:58 +0800 | [diff] [blame] | 197 | int drm_syncobj_query_ioctl(struct drm_device *dev, void *data, |
| 198 | struct drm_file *file_private); |
Noralf Trønnes | 45d58b4 | 2017-11-07 20:13:40 +0100 | [diff] [blame] | 199 | |
| 200 | /* drm_framebuffer.c */ |
| 201 | void drm_framebuffer_print_info(struct drm_printer *p, unsigned int indent, |
| 202 | const struct drm_framebuffer *fb); |
| 203 | int drm_framebuffer_debugfs_init(struct drm_minor *minor); |