Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Red Hat Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | * |
| 22 | * Authors: Dave Airlie |
| 23 | * Alon Levy |
| 24 | */ |
| 25 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 26 | #ifndef QXL_DRV_H |
| 27 | #define QXL_DRV_H |
| 28 | |
| 29 | /* |
| 30 | * Definitions taken from spice-protocol, plus kernel driver specific bits. |
| 31 | */ |
| 32 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 33 | #include <linux/dma-fence.h> |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 34 | #include <linux/firmware.h> |
| 35 | #include <linux/platform_device.h> |
Sam Ravnborg | c0f4b75 | 2019-06-30 08:18:58 +0200 | [diff] [blame] | 36 | #include <linux/workqueue.h> |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 37 | |
Masahiro Yamada | edaf492 | 2017-04-24 13:50:30 +0900 | [diff] [blame] | 38 | #include <drm/drm_crtc.h> |
Laurent Pinchart | 9338203 | 2016-11-28 20:51:09 +0200 | [diff] [blame] | 39 | #include <drm/drm_encoder.h> |
Peter Wu | bf8744e | 2018-09-10 15:21:56 +0200 | [diff] [blame] | 40 | #include <drm/drm_fb_helper.h> |
Gerd Hoffmann | 78d54f1 | 2019-09-04 07:47:39 +0200 | [diff] [blame] | 41 | #include <drm/drm_gem_ttm_helper.h> |
Sam Ravnborg | c0f4b75 | 2019-06-30 08:18:58 +0200 | [diff] [blame] | 42 | #include <drm/drm_ioctl.h> |
Daniel Vetter | d9fc941 | 2014-09-23 15:46:53 +0200 | [diff] [blame] | 43 | #include <drm/drm_gem.h> |
Sam Ravnborg | c0f4b75 | 2019-06-30 08:18:58 +0200 | [diff] [blame] | 44 | #include <drm/qxl_drm.h> |
Masahiro Yamada | edaf492 | 2017-04-24 13:50:30 +0900 | [diff] [blame] | 45 | #include <drm/ttm/ttm_bo_api.h> |
| 46 | #include <drm/ttm/ttm_bo_driver.h> |
Masahiro Yamada | edaf492 | 2017-04-24 13:50:30 +0900 | [diff] [blame] | 47 | #include <drm/ttm/ttm_execbuf_util.h> |
| 48 | #include <drm/ttm/ttm_module.h> |
| 49 | #include <drm/ttm/ttm_placement.h> |
Masahiro Yamada | edaf492 | 2017-04-24 13:50:30 +0900 | [diff] [blame] | 50 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 51 | #include "qxl_dev.h" |
| 52 | |
| 53 | #define DRIVER_AUTHOR "Dave Airlie" |
| 54 | |
| 55 | #define DRIVER_NAME "qxl" |
| 56 | #define DRIVER_DESC "RH QXL" |
| 57 | #define DRIVER_DATE "20120117" |
| 58 | |
| 59 | #define DRIVER_MAJOR 0 |
| 60 | #define DRIVER_MINOR 1 |
| 61 | #define DRIVER_PATCHLEVEL 0 |
| 62 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 63 | #define QXL_DEBUGFS_MAX_COMPONENTS 32 |
| 64 | |
Dave Airlie | 07f8d9b | 2013-07-02 06:37:13 +0100 | [diff] [blame] | 65 | extern int qxl_num_crtc; |
Gerd Hoffmann | 747fddd | 2017-06-20 13:39:16 +0200 | [diff] [blame] | 66 | extern int qxl_max_ioctls; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 67 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 68 | #define QXL_INTERRUPT_MASK (\ |
| 69 | QXL_INTERRUPT_DISPLAY |\ |
| 70 | QXL_INTERRUPT_CURSOR |\ |
| 71 | QXL_INTERRUPT_IO_CMD |\ |
| 72 | QXL_INTERRUPT_CLIENT_MONITORS_CONFIG) |
| 73 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 74 | struct qxl_bo { |
Gerd Hoffmann | e0828d5 | 2019-08-05 16:01:05 +0200 | [diff] [blame] | 75 | struct ttm_buffer_object tbo; |
| 76 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 77 | /* Protected by gem.mutex */ |
| 78 | struct list_head list; |
| 79 | /* Protected by tbo.reserved */ |
Christian König | f1217ed | 2014-08-27 13:16:04 +0200 | [diff] [blame] | 80 | struct ttm_place placements[3]; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 81 | struct ttm_placement placement; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 82 | struct ttm_bo_kmap_obj kmap; |
Shayenne da Luz Moura | 1b00049 | 2018-10-26 16:23:49 -0300 | [diff] [blame] | 83 | unsigned int pin_count; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 84 | void *kptr; |
Gerd Hoffmann | 9b36911 | 2019-01-18 13:20:13 +0100 | [diff] [blame] | 85 | unsigned int map_count; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 86 | int type; |
Maarten Lankhorst | 2f453ed | 2014-04-02 12:40:05 +0200 | [diff] [blame] | 87 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 88 | /* Constant after initialization */ |
Shayenne da Luz Moura | 94feeaa | 2018-10-26 16:24:58 -0300 | [diff] [blame] | 89 | unsigned int is_primary:1; /* is this now a primary surface */ |
| 90 | unsigned int is_dumb:1; |
Gerd Hoffmann | 62676d1 | 2017-10-19 08:21:50 +0200 | [diff] [blame] | 91 | struct qxl_bo *shadow; |
Shayenne da Luz Moura | 94feeaa | 2018-10-26 16:24:58 -0300 | [diff] [blame] | 92 | unsigned int hw_surf_alloc:1; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 93 | struct qxl_surface surf; |
| 94 | uint32_t surface_id; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 95 | struct qxl_release *surf_create; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 96 | }; |
Gerd Hoffmann | e0828d5 | 2019-08-05 16:01:05 +0200 | [diff] [blame] | 97 | #define gem_to_qxl_bo(gobj) container_of((gobj), struct qxl_bo, tbo.base) |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 98 | #define to_qxl_bo(tobj) container_of((tobj), struct qxl_bo, tbo) |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 99 | |
| 100 | struct qxl_gem { |
| 101 | struct mutex mutex; |
| 102 | struct list_head objects; |
| 103 | }; |
| 104 | |
| 105 | struct qxl_bo_list { |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 106 | struct ttm_validate_buffer tv; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | struct qxl_crtc { |
| 110 | struct drm_crtc base; |
Dave Airlie | 07f8d9b | 2013-07-02 06:37:13 +0100 | [diff] [blame] | 111 | int index; |
Ray Strode | 9428088 | 2017-11-27 16:50:10 -0500 | [diff] [blame] | 112 | |
| 113 | struct qxl_bo *cursor_bo; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | struct qxl_output { |
| 117 | int index; |
| 118 | struct drm_connector base; |
| 119 | struct drm_encoder enc; |
| 120 | }; |
| 121 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 122 | #define to_qxl_crtc(x) container_of(x, struct qxl_crtc, base) |
| 123 | #define drm_connector_to_qxl_output(x) container_of(x, struct qxl_output, base) |
Dave Airlie | 07f8d9b | 2013-07-02 06:37:13 +0100 | [diff] [blame] | 124 | #define drm_encoder_to_qxl_output(x) container_of(x, struct qxl_output, enc) |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 125 | |
| 126 | struct qxl_mman { |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 127 | struct ttm_bo_device bdev; |
| 128 | }; |
| 129 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 130 | struct qxl_memslot { |
Gerd Hoffmann | 2ec6bd6 | 2019-01-18 13:20:00 +0100 | [diff] [blame] | 131 | int index; |
| 132 | const char *name; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 133 | uint8_t generation; |
| 134 | uint64_t start_phys_addr; |
Gerd Hoffmann | 2ec6bd6 | 2019-01-18 13:20:00 +0100 | [diff] [blame] | 135 | uint64_t size; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 136 | uint64_t high_bits; |
| 137 | }; |
| 138 | |
| 139 | enum { |
| 140 | QXL_RELEASE_DRAWABLE, |
| 141 | QXL_RELEASE_SURFACE_CMD, |
| 142 | QXL_RELEASE_CURSOR_CMD, |
| 143 | }; |
| 144 | |
| 145 | /* drm_ prefix to differentiate from qxl_release_info in |
| 146 | * spice-protocol/qxl_dev.h */ |
| 147 | #define QXL_MAX_RES 96 |
| 148 | struct qxl_release { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 149 | struct dma_fence base; |
Maarten Lankhorst | 2f453ed | 2014-04-02 12:40:05 +0200 | [diff] [blame] | 150 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 151 | int id; |
| 152 | int type; |
Gerd Hoffmann | 7a31805 | 2018-04-18 07:42:57 +0200 | [diff] [blame] | 153 | struct qxl_bo *release_bo; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 154 | uint32_t release_offset; |
| 155 | uint32_t surface_release_id; |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 156 | struct ww_acquire_ctx ticket; |
| 157 | struct list_head bos; |
| 158 | }; |
| 159 | |
| 160 | struct qxl_drm_chunk { |
| 161 | struct list_head head; |
| 162 | struct qxl_bo *bo; |
| 163 | }; |
| 164 | |
| 165 | struct qxl_drm_image { |
| 166 | struct qxl_bo *bo; |
| 167 | struct list_head chunk_list; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 168 | }; |
| 169 | |
| 170 | struct qxl_fb_image { |
| 171 | struct qxl_device *qdev; |
| 172 | uint32_t pseudo_palette[16]; |
| 173 | struct fb_image fb_image; |
| 174 | uint32_t visual; |
| 175 | }; |
| 176 | |
| 177 | struct qxl_draw_fill { |
| 178 | struct qxl_device *qdev; |
| 179 | struct qxl_rect rect; |
| 180 | uint32_t color; |
| 181 | uint16_t rop; |
| 182 | }; |
| 183 | |
| 184 | /* |
| 185 | * Debugfs |
| 186 | */ |
| 187 | struct qxl_debugfs { |
| 188 | struct drm_info_list *files; |
Shayenne da Luz Moura | 1b00049 | 2018-10-26 16:23:49 -0300 | [diff] [blame] | 189 | unsigned int num_files; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 190 | }; |
| 191 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 192 | int qxl_debugfs_fence_init(struct qxl_device *rdev); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 193 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 194 | struct qxl_device { |
Gabriel Krisman Bertazi | cbdded7 | 2017-01-26 23:05:48 -0200 | [diff] [blame] | 195 | struct drm_device ddev; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 196 | |
| 197 | resource_size_t vram_base, vram_size; |
| 198 | resource_size_t surfaceram_base, surfaceram_size; |
| 199 | resource_size_t rom_base, rom_size; |
| 200 | struct qxl_rom *rom; |
| 201 | |
| 202 | struct qxl_mode *modes; |
| 203 | struct qxl_bo *monitors_config_bo; |
| 204 | struct qxl_monitors_config *monitors_config; |
| 205 | |
| 206 | /* last received client_monitors_config */ |
| 207 | struct qxl_monitors_config *client_monitors_config; |
| 208 | |
| 209 | int io_base; |
| 210 | void *ram; |
| 211 | struct qxl_mman mman; |
| 212 | struct qxl_gem gem; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 213 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 214 | void *ram_physical; |
| 215 | |
| 216 | struct qxl_ring *release_ring; |
| 217 | struct qxl_ring *command_ring; |
| 218 | struct qxl_ring *cursor_ring; |
| 219 | |
| 220 | struct qxl_ram_header *ram_header; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 221 | |
Gerd Hoffmann | 1662054 | 2019-01-18 13:20:09 +0100 | [diff] [blame] | 222 | struct qxl_bo *primary_bo; |
Gerd Hoffmann | 90adda2 | 2019-01-18 13:20:11 +0100 | [diff] [blame] | 223 | struct qxl_bo *dumb_shadow_bo; |
| 224 | struct qxl_head *dumb_heads; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 225 | |
Gerd Hoffmann | 2ec6bd6 | 2019-01-18 13:20:00 +0100 | [diff] [blame] | 226 | struct qxl_memslot main_slot; |
| 227 | struct qxl_memslot surfaces_slot; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 228 | |
Maarten Lankhorst | 2f453ed | 2014-04-02 12:40:05 +0200 | [diff] [blame] | 229 | spinlock_t release_lock; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 230 | struct idr release_idr; |
Maarten Lankhorst | 2f453ed | 2014-04-02 12:40:05 +0200 | [diff] [blame] | 231 | uint32_t release_seqno; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 232 | spinlock_t release_idr_lock; |
| 233 | struct mutex async_io_mutex; |
| 234 | unsigned int last_sent_io_cmd; |
| 235 | |
| 236 | /* interrupt handling */ |
| 237 | atomic_t irq_received; |
| 238 | atomic_t irq_received_display; |
| 239 | atomic_t irq_received_cursor; |
| 240 | atomic_t irq_received_io_cmd; |
Shayenne da Luz Moura | 1b00049 | 2018-10-26 16:23:49 -0300 | [diff] [blame] | 241 | unsigned int irq_received_error; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 242 | wait_queue_head_t display_event; |
| 243 | wait_queue_head_t cursor_event; |
| 244 | wait_queue_head_t io_cmd_event; |
| 245 | struct work_struct client_monitors_config_work; |
| 246 | |
| 247 | /* debugfs */ |
| 248 | struct qxl_debugfs debugfs[QXL_DEBUGFS_MAX_COMPONENTS]; |
Shayenne da Luz Moura | 1b00049 | 2018-10-26 16:23:49 -0300 | [diff] [blame] | 249 | unsigned int debugfs_count; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 250 | |
| 251 | struct mutex update_area_mutex; |
| 252 | |
| 253 | struct idr surf_id_idr; |
| 254 | spinlock_t surf_id_idr_lock; |
| 255 | int last_alloced_surf_id; |
| 256 | |
| 257 | struct mutex surf_evict_mutex; |
| 258 | struct io_mapping *vram_mapping; |
| 259 | struct io_mapping *surface_mapping; |
| 260 | |
| 261 | /* */ |
| 262 | struct mutex release_mutex; |
| 263 | struct qxl_bo *current_release_bo[3]; |
| 264 | int current_release_bo_offset[3]; |
| 265 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 266 | struct work_struct gc_work; |
| 267 | |
Dave Airlie | 4695b03 | 2013-10-11 11:05:00 +1000 | [diff] [blame] | 268 | struct drm_property *hotplug_mode_update_property; |
Jonathon Jongsma | bd3e1c7 | 2015-08-20 14:04:32 -0500 | [diff] [blame] | 269 | int monitors_config_width; |
| 270 | int monitors_config_height; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 271 | }; |
| 272 | |
Daniel Vetter | e304f8a | 2020-04-15 09:40:02 +0200 | [diff] [blame] | 273 | #define to_qxl(dev) container_of(dev, struct qxl_device, ddev) |
| 274 | |
Rob Clark | baa7094 | 2013-08-02 13:27:49 -0400 | [diff] [blame] | 275 | extern const struct drm_ioctl_desc qxl_ioctls[]; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 276 | extern int qxl_max_ioctl; |
| 277 | |
Daniel Vetter | a9b0b24 | 2020-04-15 09:40:01 +0200 | [diff] [blame] | 278 | int qxl_device_init(struct qxl_device *qdev, struct pci_dev *pdev); |
Gabriel Krisman Bertazi | 2b65d56 | 2017-01-19 11:48:05 -0200 | [diff] [blame] | 279 | void qxl_device_fini(struct qxl_device *qdev); |
| 280 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 281 | int qxl_modeset_init(struct qxl_device *qdev); |
| 282 | void qxl_modeset_fini(struct qxl_device *qdev); |
| 283 | |
| 284 | int qxl_bo_init(struct qxl_device *qdev); |
| 285 | void qxl_bo_fini(struct qxl_device *qdev); |
| 286 | |
Dave Airlie | c9fdda2 | 2013-07-04 14:57:58 +1000 | [diff] [blame] | 287 | void qxl_reinit_memslots(struct qxl_device *qdev); |
Dave Airlie | b86487a | 2013-07-04 14:59:34 +1000 | [diff] [blame] | 288 | int qxl_surf_evict(struct qxl_device *qdev); |
Dave Airlie | d84300b | 2013-07-04 15:02:33 +1000 | [diff] [blame] | 289 | int qxl_vram_evict(struct qxl_device *qdev); |
Dave Airlie | c9fdda2 | 2013-07-04 14:57:58 +1000 | [diff] [blame] | 290 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 291 | struct qxl_ring *qxl_ring_create(struct qxl_ring_header *header, |
| 292 | int element_size, |
| 293 | int n_elements, |
| 294 | int prod_notify, |
| 295 | bool set_prod_notify, |
| 296 | wait_queue_head_t *push_event); |
| 297 | void qxl_ring_free(struct qxl_ring *ring); |
Dave Airlie | 1e20911 | 2013-07-04 14:58:45 +1000 | [diff] [blame] | 298 | void qxl_ring_init_hdr(struct qxl_ring *ring); |
| 299 | int qxl_check_idle(struct qxl_ring *ring); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 300 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 301 | static inline uint64_t |
| 302 | qxl_bo_physical_address(struct qxl_device *qdev, struct qxl_bo *bo, |
| 303 | unsigned long offset) |
| 304 | { |
Frediano Ziglio | a8dc4214 | 2019-01-18 13:20:01 +0100 | [diff] [blame] | 305 | struct qxl_memslot *slot = |
| 306 | (bo->tbo.mem.mem_type == TTM_PL_VRAM) |
Gerd Hoffmann | 2ec6bd6 | 2019-01-18 13:20:00 +0100 | [diff] [blame] | 307 | ? &qdev->main_slot : &qdev->surfaces_slot; |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 308 | |
Nirmoy Das | 8ef963b | 2020-06-24 20:26:45 +0200 | [diff] [blame] | 309 | /* TODO - need to hold one of the locks to read bo->tbo.mem.start */ |
Gerd Hoffmann | 96e8f15 | 2019-01-18 13:20:03 +0100 | [diff] [blame] | 310 | |
Nirmoy Das | 8ef963b | 2020-06-24 20:26:45 +0200 | [diff] [blame] | 311 | return slot->high_bits | ((bo->tbo.mem.start << PAGE_SHIFT) + offset); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 312 | } |
| 313 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 314 | /* qxl_display.c */ |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 315 | void qxl_display_read_client_monitors_config(struct qxl_device *qdev); |
Dave Airlie | 2bd6ce8 | 2013-07-04 14:46:46 +1000 | [diff] [blame] | 316 | int qxl_create_monitors_object(struct qxl_device *qdev); |
| 317 | int qxl_destroy_monitors_object(struct qxl_device *qdev); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 318 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 319 | /* qxl_gem.c */ |
Christophe Fergeau | ae4b9a0 | 2016-11-08 10:12:07 +0100 | [diff] [blame] | 320 | void qxl_gem_init(struct qxl_device *qdev); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 321 | void qxl_gem_fini(struct qxl_device *qdev); |
| 322 | int qxl_gem_object_create(struct qxl_device *qdev, int size, |
| 323 | int alignment, int initial_domain, |
| 324 | bool discardable, bool kernel, |
| 325 | struct qxl_surface *surf, |
| 326 | struct drm_gem_object **obj); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 327 | int qxl_gem_object_create_with_handle(struct qxl_device *qdev, |
| 328 | struct drm_file *file_priv, |
| 329 | u32 domain, |
| 330 | size_t size, |
| 331 | struct qxl_surface *surf, |
| 332 | struct qxl_bo **qobj, |
| 333 | uint32_t *handle); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 334 | void qxl_gem_object_free(struct drm_gem_object *gobj); |
| 335 | int qxl_gem_object_open(struct drm_gem_object *obj, struct drm_file *file_priv); |
| 336 | void qxl_gem_object_close(struct drm_gem_object *obj, |
| 337 | struct drm_file *file_priv); |
| 338 | void qxl_bo_force_delete(struct qxl_device *qdev); |
| 339 | int qxl_bo_kmap(struct qxl_bo *bo, void **ptr); |
| 340 | |
| 341 | /* qxl_dumb.c */ |
| 342 | int qxl_mode_dumb_create(struct drm_file *file_priv, |
| 343 | struct drm_device *dev, |
| 344 | struct drm_mode_create_dumb *args); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 345 | int qxl_mode_dumb_mmap(struct drm_file *filp, |
| 346 | struct drm_device *dev, |
| 347 | uint32_t handle, uint64_t *offset_p); |
| 348 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 349 | /* qxl ttm */ |
| 350 | int qxl_ttm_init(struct qxl_device *qdev); |
| 351 | void qxl_ttm_fini(struct qxl_device *qdev); |
Christian König | 51ea742 | 2019-09-27 15:06:22 +0200 | [diff] [blame] | 352 | int qxl_ttm_io_mem_reserve(struct ttm_bo_device *bdev, |
| 353 | struct ttm_mem_reg *mem); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 354 | |
| 355 | /* qxl image */ |
| 356 | |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 357 | int qxl_image_init(struct qxl_device *qdev, |
| 358 | struct qxl_release *release, |
| 359 | struct qxl_drm_image *dimage, |
| 360 | const uint8_t *data, |
| 361 | int x, int y, int width, int height, |
| 362 | int depth, int stride); |
| 363 | int |
| 364 | qxl_image_alloc_objects(struct qxl_device *qdev, |
| 365 | struct qxl_release *release, |
| 366 | struct qxl_drm_image **image_ptr, |
| 367 | int height, int stride); |
| 368 | void qxl_image_free_objects(struct qxl_device *qdev, struct qxl_drm_image *dimage); |
| 369 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 370 | void qxl_update_screen(struct qxl_device *qxl); |
| 371 | |
| 372 | /* qxl io operations (qxl_cmd.c) */ |
| 373 | |
| 374 | void qxl_io_create_primary(struct qxl_device *qdev, |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 375 | struct qxl_bo *bo); |
| 376 | void qxl_io_destroy_primary(struct qxl_device *qdev); |
| 377 | void qxl_io_memslot_add(struct qxl_device *qdev, uint8_t id); |
| 378 | void qxl_io_notify_oom(struct qxl_device *qdev); |
| 379 | |
| 380 | int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf, |
| 381 | const struct qxl_rect *area); |
| 382 | |
| 383 | void qxl_io_reset(struct qxl_device *qdev); |
| 384 | void qxl_io_monitors_config(struct qxl_device *qdev); |
| 385 | int qxl_ring_push(struct qxl_ring *ring, const void *new_elt, bool interruptible); |
| 386 | void qxl_io_flush_release(struct qxl_device *qdev); |
| 387 | void qxl_io_flush_surfaces(struct qxl_device *qdev); |
| 388 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 389 | union qxl_release_info *qxl_release_map(struct qxl_device *qdev, |
| 390 | struct qxl_release *release); |
| 391 | void qxl_release_unmap(struct qxl_device *qdev, |
| 392 | struct qxl_release *release, |
| 393 | union qxl_release_info *info); |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 394 | int qxl_release_list_add(struct qxl_release *release, struct qxl_bo *bo); |
| 395 | int qxl_release_reserve_list(struct qxl_release *release, bool no_intr); |
| 396 | void qxl_release_backoff_reserve_list(struct qxl_release *release); |
| 397 | void qxl_release_fence_buffer_objects(struct qxl_release *release); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 398 | |
| 399 | int qxl_alloc_surface_release_reserved(struct qxl_device *qdev, |
| 400 | enum qxl_surface_cmd_type surface_cmd_type, |
| 401 | struct qxl_release *create_rel, |
| 402 | struct qxl_release **release); |
| 403 | int qxl_alloc_release_reserved(struct qxl_device *qdev, unsigned long size, |
| 404 | int type, struct qxl_release **release, |
| 405 | struct qxl_bo **rbo); |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 406 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 407 | int |
| 408 | qxl_push_command_ring_release(struct qxl_device *qdev, struct qxl_release *release, |
| 409 | uint32_t type, bool interruptible); |
| 410 | int |
| 411 | qxl_push_cursor_ring_release(struct qxl_device *qdev, struct qxl_release *release, |
| 412 | uint32_t type, bool interruptible); |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 413 | int qxl_alloc_bo_reserved(struct qxl_device *qdev, |
| 414 | struct qxl_release *release, |
| 415 | unsigned long size, |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 416 | struct qxl_bo **_bo); |
| 417 | /* qxl drawing commands */ |
| 418 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 419 | void qxl_draw_dirty_fb(struct qxl_device *qdev, |
Peter Wu | bf8744e | 2018-09-10 15:21:56 +0200 | [diff] [blame] | 420 | struct drm_framebuffer *fb, |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 421 | struct qxl_bo *bo, |
Shayenne da Luz Moura | 1b00049 | 2018-10-26 16:23:49 -0300 | [diff] [blame] | 422 | unsigned int flags, unsigned int color, |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 423 | struct drm_clip_rect *clips, |
Gerd Hoffmann | 90adda2 | 2019-01-18 13:20:11 +0100 | [diff] [blame] | 424 | unsigned int num_clips, int inc, |
| 425 | uint32_t dumb_shadow_offset); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 426 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 427 | void qxl_release_free(struct qxl_device *qdev, |
| 428 | struct qxl_release *release); |
Dave Airlie | 8002db6 | 2013-07-23 14:16:42 +1000 | [diff] [blame] | 429 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 430 | /* used by qxl_debugfs_release */ |
| 431 | struct qxl_release *qxl_release_from_id_locked(struct qxl_device *qdev, |
| 432 | uint64_t id); |
| 433 | |
| 434 | bool qxl_queue_garbage_collect(struct qxl_device *qdev, bool flush); |
| 435 | int qxl_garbage_collect(struct qxl_device *qdev); |
| 436 | |
| 437 | /* debugfs */ |
| 438 | |
Wambui Karuga | 7ce84471 | 2020-03-10 16:31:21 +0300 | [diff] [blame] | 439 | void qxl_debugfs_init(struct drm_minor *minor); |
| 440 | void qxl_ttm_debugfs_init(struct qxl_device *qdev); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 441 | |
Andreas Pokorny | 47c1296 | 2014-08-08 10:40:56 +0200 | [diff] [blame] | 442 | /* qxl_prime.c */ |
| 443 | int qxl_gem_prime_pin(struct drm_gem_object *obj); |
| 444 | void qxl_gem_prime_unpin(struct drm_gem_object *obj); |
| 445 | struct sg_table *qxl_gem_prime_get_sg_table(struct drm_gem_object *obj); |
| 446 | struct drm_gem_object *qxl_gem_prime_import_sg_table( |
Maarten Lankhorst | b5e9c1a | 2014-01-09 11:03:14 +0100 | [diff] [blame] | 447 | struct drm_device *dev, struct dma_buf_attachment *attach, |
Andreas Pokorny | 47c1296 | 2014-08-08 10:40:56 +0200 | [diff] [blame] | 448 | struct sg_table *sgt); |
| 449 | void *qxl_gem_prime_vmap(struct drm_gem_object *obj); |
| 450 | void qxl_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr); |
| 451 | int qxl_gem_prime_mmap(struct drm_gem_object *obj, |
| 452 | struct vm_area_struct *vma); |
| 453 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 454 | /* qxl_irq.c */ |
| 455 | int qxl_irq_init(struct qxl_device *qdev); |
Daniel Vetter | e9f0d76 | 2013-12-11 11:34:42 +0100 | [diff] [blame] | 456 | irqreturn_t qxl_irq_handler(int irq, void *arg); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 457 | |
Wambui Karuga | 7ce84471 | 2020-03-10 16:31:21 +0300 | [diff] [blame] | 458 | void qxl_debugfs_add_files(struct qxl_device *qdev, |
| 459 | struct drm_info_list *files, |
| 460 | unsigned int nfiles); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 461 | |
| 462 | int qxl_surface_id_alloc(struct qxl_device *qdev, |
| 463 | struct qxl_bo *surf); |
| 464 | void qxl_surface_id_dealloc(struct qxl_device *qdev, |
| 465 | uint32_t surface_id); |
| 466 | int qxl_hw_surface_alloc(struct qxl_device *qdev, |
Gerd Hoffmann | edd38a1 | 2019-01-18 13:19:58 +0100 | [diff] [blame] | 467 | struct qxl_bo *surf); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 468 | int qxl_hw_surface_dealloc(struct qxl_device *qdev, |
| 469 | struct qxl_bo *surf); |
| 470 | |
| 471 | int qxl_bo_check_id(struct qxl_device *qdev, struct qxl_bo *bo); |
| 472 | |
| 473 | struct qxl_drv_surface * |
| 474 | qxl_surface_lookup(struct drm_device *dev, int surface_id); |
| 475 | void qxl_surface_evict(struct qxl_device *qdev, struct qxl_bo *surf, bool freeing); |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 476 | |
Dave Airlie | f64122c | 2013-02-25 14:47:55 +1000 | [diff] [blame] | 477 | #endif |