blob: 9691449aefdb463b1cda576f96f9fb423f874a1e [file] [log] [blame]
Dave Airlief64122c2013-02-25 14:47:55 +10001/*
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 Airlief64122c2013-02-25 14:47:55 +100026#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 Wilsonf54d1862016-10-25 13:00:45 +010033#include <linux/dma-fence.h>
Dave Airlief64122c2013-02-25 14:47:55 +100034#include <linux/firmware.h>
35#include <linux/platform_device.h>
Sam Ravnborgc0f4b752019-06-30 08:18:58 +020036#include <linux/workqueue.h>
Dave Airlief64122c2013-02-25 14:47:55 +100037
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090038#include <drm/drm_crtc.h>
Laurent Pinchart93382032016-11-28 20:51:09 +020039#include <drm/drm_encoder.h>
Peter Wubf8744e2018-09-10 15:21:56 +020040#include <drm/drm_fb_helper.h>
Gerd Hoffmann78d54f12019-09-04 07:47:39 +020041#include <drm/drm_gem_ttm_helper.h>
Sam Ravnborgc0f4b752019-06-30 08:18:58 +020042#include <drm/drm_ioctl.h>
Daniel Vetterd9fc9412014-09-23 15:46:53 +020043#include <drm/drm_gem.h>
Sam Ravnborgc0f4b752019-06-30 08:18:58 +020044#include <drm/qxl_drm.h>
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090045#include <drm/ttm/ttm_bo_api.h>
46#include <drm/ttm/ttm_bo_driver.h>
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090047#include <drm/ttm/ttm_execbuf_util.h>
48#include <drm/ttm/ttm_module.h>
49#include <drm/ttm/ttm_placement.h>
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090050
Dave Airlief64122c2013-02-25 14:47:55 +100051#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 Airlief64122c2013-02-25 14:47:55 +100063#define QXL_DEBUGFS_MAX_COMPONENTS 32
64
Dave Airlie07f8d9b2013-07-02 06:37:13 +010065extern int qxl_num_crtc;
Gerd Hoffmann747fddd2017-06-20 13:39:16 +020066extern int qxl_max_ioctls;
Dave Airlief64122c2013-02-25 14:47:55 +100067
Dave Airlief64122c2013-02-25 14:47:55 +100068#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 Airlief64122c2013-02-25 14:47:55 +100074struct qxl_bo {
Gerd Hoffmanne0828d52019-08-05 16:01:05 +020075 struct ttm_buffer_object tbo;
76
Dave Airlief64122c2013-02-25 14:47:55 +100077 /* Protected by gem.mutex */
78 struct list_head list;
79 /* Protected by tbo.reserved */
Christian Königf1217ed2014-08-27 13:16:04 +020080 struct ttm_place placements[3];
Dave Airlief64122c2013-02-25 14:47:55 +100081 struct ttm_placement placement;
Dave Airlief64122c2013-02-25 14:47:55 +100082 struct ttm_bo_kmap_obj kmap;
Shayenne da Luz Moura1b000492018-10-26 16:23:49 -030083 unsigned int pin_count;
Dave Airlief64122c2013-02-25 14:47:55 +100084 void *kptr;
Gerd Hoffmann9b369112019-01-18 13:20:13 +010085 unsigned int map_count;
Dave Airlief64122c2013-02-25 14:47:55 +100086 int type;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +020087
Dave Airlief64122c2013-02-25 14:47:55 +100088 /* Constant after initialization */
Shayenne da Luz Moura94feeaa2018-10-26 16:24:58 -030089 unsigned int is_primary:1; /* is this now a primary surface */
90 unsigned int is_dumb:1;
Gerd Hoffmann62676d12017-10-19 08:21:50 +020091 struct qxl_bo *shadow;
Shayenne da Luz Moura94feeaa2018-10-26 16:24:58 -030092 unsigned int hw_surf_alloc:1;
Dave Airlief64122c2013-02-25 14:47:55 +100093 struct qxl_surface surf;
94 uint32_t surface_id;
Dave Airlief64122c2013-02-25 14:47:55 +100095 struct qxl_release *surf_create;
Dave Airlief64122c2013-02-25 14:47:55 +100096};
Gerd Hoffmanne0828d52019-08-05 16:01:05 +020097#define gem_to_qxl_bo(gobj) container_of((gobj), struct qxl_bo, tbo.base)
Dave Airlie8002db62013-07-23 14:16:42 +100098#define to_qxl_bo(tobj) container_of((tobj), struct qxl_bo, tbo)
Dave Airlief64122c2013-02-25 14:47:55 +100099
100struct qxl_gem {
101 struct mutex mutex;
102 struct list_head objects;
103};
104
105struct qxl_bo_list {
Dave Airlie8002db62013-07-23 14:16:42 +1000106 struct ttm_validate_buffer tv;
Dave Airlief64122c2013-02-25 14:47:55 +1000107};
108
109struct qxl_crtc {
110 struct drm_crtc base;
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100111 int index;
Ray Strode94280882017-11-27 16:50:10 -0500112
113 struct qxl_bo *cursor_bo;
Dave Airlief64122c2013-02-25 14:47:55 +1000114};
115
116struct qxl_output {
117 int index;
118 struct drm_connector base;
119 struct drm_encoder enc;
120};
121
Dave Airlief64122c2013-02-25 14:47:55 +1000122#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 Airlie07f8d9b2013-07-02 06:37:13 +0100124#define drm_encoder_to_qxl_output(x) container_of(x, struct qxl_output, enc)
Dave Airlief64122c2013-02-25 14:47:55 +1000125
126struct qxl_mman {
Dave Airlief64122c2013-02-25 14:47:55 +1000127 struct ttm_bo_device bdev;
128};
129
Dave Airlief64122c2013-02-25 14:47:55 +1000130struct qxl_memslot {
Gerd Hoffmann2ec6bd62019-01-18 13:20:00 +0100131 int index;
132 const char *name;
Dave Airlief64122c2013-02-25 14:47:55 +1000133 uint8_t generation;
134 uint64_t start_phys_addr;
Gerd Hoffmann2ec6bd62019-01-18 13:20:00 +0100135 uint64_t size;
Dave Airlief64122c2013-02-25 14:47:55 +1000136 uint64_t high_bits;
137};
138
139enum {
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
148struct qxl_release {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100149 struct dma_fence base;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200150
Dave Airlief64122c2013-02-25 14:47:55 +1000151 int id;
152 int type;
Gerd Hoffmann7a318052018-04-18 07:42:57 +0200153 struct qxl_bo *release_bo;
Dave Airlief64122c2013-02-25 14:47:55 +1000154 uint32_t release_offset;
155 uint32_t surface_release_id;
Dave Airlie8002db62013-07-23 14:16:42 +1000156 struct ww_acquire_ctx ticket;
157 struct list_head bos;
158};
159
160struct qxl_drm_chunk {
161 struct list_head head;
162 struct qxl_bo *bo;
163};
164
165struct qxl_drm_image {
166 struct qxl_bo *bo;
167 struct list_head chunk_list;
Dave Airlief64122c2013-02-25 14:47:55 +1000168};
169
170struct 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
177struct 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 */
187struct qxl_debugfs {
188 struct drm_info_list *files;
Shayenne da Luz Moura1b000492018-10-26 16:23:49 -0300189 unsigned int num_files;
Dave Airlief64122c2013-02-25 14:47:55 +1000190};
191
Dave Airlief64122c2013-02-25 14:47:55 +1000192int qxl_debugfs_fence_init(struct qxl_device *rdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000193
Dave Airlief64122c2013-02-25 14:47:55 +1000194struct qxl_device {
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200195 struct drm_device ddev;
Dave Airlief64122c2013-02-25 14:47:55 +1000196
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 Airlief64122c2013-02-25 14:47:55 +1000213
Dave Airlief64122c2013-02-25 14:47:55 +1000214 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 Airlief64122c2013-02-25 14:47:55 +1000221
Gerd Hoffmann16620542019-01-18 13:20:09 +0100222 struct qxl_bo *primary_bo;
Gerd Hoffmann90adda22019-01-18 13:20:11 +0100223 struct qxl_bo *dumb_shadow_bo;
224 struct qxl_head *dumb_heads;
Dave Airlief64122c2013-02-25 14:47:55 +1000225
Gerd Hoffmann2ec6bd62019-01-18 13:20:00 +0100226 struct qxl_memslot main_slot;
227 struct qxl_memslot surfaces_slot;
Dave Airlief64122c2013-02-25 14:47:55 +1000228
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200229 spinlock_t release_lock;
Dave Airlief64122c2013-02-25 14:47:55 +1000230 struct idr release_idr;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200231 uint32_t release_seqno;
Dave Airlief64122c2013-02-25 14:47:55 +1000232 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 Moura1b000492018-10-26 16:23:49 -0300241 unsigned int irq_received_error;
Dave Airlief64122c2013-02-25 14:47:55 +1000242 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 Moura1b000492018-10-26 16:23:49 -0300249 unsigned int debugfs_count;
Dave Airlief64122c2013-02-25 14:47:55 +1000250
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 Airlief64122c2013-02-25 14:47:55 +1000266 struct work_struct gc_work;
267
Dave Airlie4695b032013-10-11 11:05:00 +1000268 struct drm_property *hotplug_mode_update_property;
Jonathon Jongsmabd3e1c72015-08-20 14:04:32 -0500269 int monitors_config_width;
270 int monitors_config_height;
Dave Airlief64122c2013-02-25 14:47:55 +1000271};
272
Daniel Vettere304f8a2020-04-15 09:40:02 +0200273#define to_qxl(dev) container_of(dev, struct qxl_device, ddev)
274
Rob Clarkbaa70942013-08-02 13:27:49 -0400275extern const struct drm_ioctl_desc qxl_ioctls[];
Dave Airlief64122c2013-02-25 14:47:55 +1000276extern int qxl_max_ioctl;
277
Daniel Vettera9b0b242020-04-15 09:40:01 +0200278int qxl_device_init(struct qxl_device *qdev, struct pci_dev *pdev);
Gabriel Krisman Bertazi2b65d562017-01-19 11:48:05 -0200279void qxl_device_fini(struct qxl_device *qdev);
280
Dave Airlief64122c2013-02-25 14:47:55 +1000281int qxl_modeset_init(struct qxl_device *qdev);
282void qxl_modeset_fini(struct qxl_device *qdev);
283
284int qxl_bo_init(struct qxl_device *qdev);
285void qxl_bo_fini(struct qxl_device *qdev);
286
Dave Airliec9fdda22013-07-04 14:57:58 +1000287void qxl_reinit_memslots(struct qxl_device *qdev);
Dave Airlieb86487a2013-07-04 14:59:34 +1000288int qxl_surf_evict(struct qxl_device *qdev);
Dave Airlied84300b2013-07-04 15:02:33 +1000289int qxl_vram_evict(struct qxl_device *qdev);
Dave Airliec9fdda22013-07-04 14:57:58 +1000290
Dave Airlief64122c2013-02-25 14:47:55 +1000291struct 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);
297void qxl_ring_free(struct qxl_ring *ring);
Dave Airlie1e209112013-07-04 14:58:45 +1000298void qxl_ring_init_hdr(struct qxl_ring *ring);
299int qxl_check_idle(struct qxl_ring *ring);
Dave Airlief64122c2013-02-25 14:47:55 +1000300
Dave Airlief64122c2013-02-25 14:47:55 +1000301static inline uint64_t
302qxl_bo_physical_address(struct qxl_device *qdev, struct qxl_bo *bo,
303 unsigned long offset)
304{
Frediano Ziglioa8dc42142019-01-18 13:20:01 +0100305 struct qxl_memslot *slot =
306 (bo->tbo.mem.mem_type == TTM_PL_VRAM)
Gerd Hoffmann2ec6bd62019-01-18 13:20:00 +0100307 ? &qdev->main_slot : &qdev->surfaces_slot;
Dave Airlief64122c2013-02-25 14:47:55 +1000308
Nirmoy Das8ef963b2020-06-24 20:26:45 +0200309 /* TODO - need to hold one of the locks to read bo->tbo.mem.start */
Gerd Hoffmann96e8f152019-01-18 13:20:03 +0100310
Nirmoy Das8ef963b2020-06-24 20:26:45 +0200311 return slot->high_bits | ((bo->tbo.mem.start << PAGE_SHIFT) + offset);
Dave Airlief64122c2013-02-25 14:47:55 +1000312}
313
Dave Airlief64122c2013-02-25 14:47:55 +1000314/* qxl_display.c */
Dave Airlief64122c2013-02-25 14:47:55 +1000315void qxl_display_read_client_monitors_config(struct qxl_device *qdev);
Dave Airlie2bd6ce82013-07-04 14:46:46 +1000316int qxl_create_monitors_object(struct qxl_device *qdev);
317int qxl_destroy_monitors_object(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000318
Dave Airlief64122c2013-02-25 14:47:55 +1000319/* qxl_gem.c */
Christophe Fergeauae4b9a02016-11-08 10:12:07 +0100320void qxl_gem_init(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000321void qxl_gem_fini(struct qxl_device *qdev);
322int 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 Airlief64122c2013-02-25 14:47:55 +1000327int 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 Airlief64122c2013-02-25 14:47:55 +1000334void qxl_gem_object_free(struct drm_gem_object *gobj);
335int qxl_gem_object_open(struct drm_gem_object *obj, struct drm_file *file_priv);
336void qxl_gem_object_close(struct drm_gem_object *obj,
337 struct drm_file *file_priv);
338void qxl_bo_force_delete(struct qxl_device *qdev);
339int qxl_bo_kmap(struct qxl_bo *bo, void **ptr);
340
341/* qxl_dumb.c */
342int qxl_mode_dumb_create(struct drm_file *file_priv,
343 struct drm_device *dev,
344 struct drm_mode_create_dumb *args);
Dave Airlief64122c2013-02-25 14:47:55 +1000345int qxl_mode_dumb_mmap(struct drm_file *filp,
346 struct drm_device *dev,
347 uint32_t handle, uint64_t *offset_p);
348
Dave Airlief64122c2013-02-25 14:47:55 +1000349/* qxl ttm */
350int qxl_ttm_init(struct qxl_device *qdev);
351void qxl_ttm_fini(struct qxl_device *qdev);
Christian König51ea7422019-09-27 15:06:22 +0200352int qxl_ttm_io_mem_reserve(struct ttm_bo_device *bdev,
353 struct ttm_mem_reg *mem);
Dave Airlief64122c2013-02-25 14:47:55 +1000354
355/* qxl image */
356
Dave Airlie8002db62013-07-23 14:16:42 +1000357int 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);
363int
364qxl_image_alloc_objects(struct qxl_device *qdev,
365 struct qxl_release *release,
366 struct qxl_drm_image **image_ptr,
367 int height, int stride);
368void qxl_image_free_objects(struct qxl_device *qdev, struct qxl_drm_image *dimage);
369
Dave Airlief64122c2013-02-25 14:47:55 +1000370void qxl_update_screen(struct qxl_device *qxl);
371
372/* qxl io operations (qxl_cmd.c) */
373
374void qxl_io_create_primary(struct qxl_device *qdev,
Dave Airlief64122c2013-02-25 14:47:55 +1000375 struct qxl_bo *bo);
376void qxl_io_destroy_primary(struct qxl_device *qdev);
377void qxl_io_memslot_add(struct qxl_device *qdev, uint8_t id);
378void qxl_io_notify_oom(struct qxl_device *qdev);
379
380int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf,
381 const struct qxl_rect *area);
382
383void qxl_io_reset(struct qxl_device *qdev);
384void qxl_io_monitors_config(struct qxl_device *qdev);
385int qxl_ring_push(struct qxl_ring *ring, const void *new_elt, bool interruptible);
386void qxl_io_flush_release(struct qxl_device *qdev);
387void qxl_io_flush_surfaces(struct qxl_device *qdev);
388
Dave Airlief64122c2013-02-25 14:47:55 +1000389union qxl_release_info *qxl_release_map(struct qxl_device *qdev,
390 struct qxl_release *release);
391void qxl_release_unmap(struct qxl_device *qdev,
392 struct qxl_release *release,
393 union qxl_release_info *info);
Dave Airlie8002db62013-07-23 14:16:42 +1000394int qxl_release_list_add(struct qxl_release *release, struct qxl_bo *bo);
395int qxl_release_reserve_list(struct qxl_release *release, bool no_intr);
396void qxl_release_backoff_reserve_list(struct qxl_release *release);
397void qxl_release_fence_buffer_objects(struct qxl_release *release);
Dave Airlief64122c2013-02-25 14:47:55 +1000398
399int 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);
403int qxl_alloc_release_reserved(struct qxl_device *qdev, unsigned long size,
404 int type, struct qxl_release **release,
405 struct qxl_bo **rbo);
Dave Airlie8002db62013-07-23 14:16:42 +1000406
Dave Airlief64122c2013-02-25 14:47:55 +1000407int
408qxl_push_command_ring_release(struct qxl_device *qdev, struct qxl_release *release,
409 uint32_t type, bool interruptible);
410int
411qxl_push_cursor_ring_release(struct qxl_device *qdev, struct qxl_release *release,
412 uint32_t type, bool interruptible);
Dave Airlie8002db62013-07-23 14:16:42 +1000413int qxl_alloc_bo_reserved(struct qxl_device *qdev,
414 struct qxl_release *release,
415 unsigned long size,
Dave Airlief64122c2013-02-25 14:47:55 +1000416 struct qxl_bo **_bo);
417/* qxl drawing commands */
418
Dave Airlief64122c2013-02-25 14:47:55 +1000419void qxl_draw_dirty_fb(struct qxl_device *qdev,
Peter Wubf8744e2018-09-10 15:21:56 +0200420 struct drm_framebuffer *fb,
Dave Airlief64122c2013-02-25 14:47:55 +1000421 struct qxl_bo *bo,
Shayenne da Luz Moura1b000492018-10-26 16:23:49 -0300422 unsigned int flags, unsigned int color,
Dave Airlief64122c2013-02-25 14:47:55 +1000423 struct drm_clip_rect *clips,
Gerd Hoffmann90adda22019-01-18 13:20:11 +0100424 unsigned int num_clips, int inc,
425 uint32_t dumb_shadow_offset);
Dave Airlief64122c2013-02-25 14:47:55 +1000426
Dave Airlief64122c2013-02-25 14:47:55 +1000427void qxl_release_free(struct qxl_device *qdev,
428 struct qxl_release *release);
Dave Airlie8002db62013-07-23 14:16:42 +1000429
Dave Airlief64122c2013-02-25 14:47:55 +1000430/* used by qxl_debugfs_release */
431struct qxl_release *qxl_release_from_id_locked(struct qxl_device *qdev,
432 uint64_t id);
433
434bool qxl_queue_garbage_collect(struct qxl_device *qdev, bool flush);
435int qxl_garbage_collect(struct qxl_device *qdev);
436
437/* debugfs */
438
Wambui Karuga7ce844712020-03-10 16:31:21 +0300439void qxl_debugfs_init(struct drm_minor *minor);
440void qxl_ttm_debugfs_init(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000441
Andreas Pokorny47c12962014-08-08 10:40:56 +0200442/* qxl_prime.c */
443int qxl_gem_prime_pin(struct drm_gem_object *obj);
444void qxl_gem_prime_unpin(struct drm_gem_object *obj);
445struct sg_table *qxl_gem_prime_get_sg_table(struct drm_gem_object *obj);
446struct drm_gem_object *qxl_gem_prime_import_sg_table(
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +0100447 struct drm_device *dev, struct dma_buf_attachment *attach,
Andreas Pokorny47c12962014-08-08 10:40:56 +0200448 struct sg_table *sgt);
449void *qxl_gem_prime_vmap(struct drm_gem_object *obj);
450void qxl_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
451int qxl_gem_prime_mmap(struct drm_gem_object *obj,
452 struct vm_area_struct *vma);
453
Dave Airlief64122c2013-02-25 14:47:55 +1000454/* qxl_irq.c */
455int qxl_irq_init(struct qxl_device *qdev);
Daniel Vettere9f0d762013-12-11 11:34:42 +0100456irqreturn_t qxl_irq_handler(int irq, void *arg);
Dave Airlief64122c2013-02-25 14:47:55 +1000457
Wambui Karuga7ce844712020-03-10 16:31:21 +0300458void qxl_debugfs_add_files(struct qxl_device *qdev,
459 struct drm_info_list *files,
460 unsigned int nfiles);
Dave Airlief64122c2013-02-25 14:47:55 +1000461
462int qxl_surface_id_alloc(struct qxl_device *qdev,
463 struct qxl_bo *surf);
464void qxl_surface_id_dealloc(struct qxl_device *qdev,
465 uint32_t surface_id);
466int qxl_hw_surface_alloc(struct qxl_device *qdev,
Gerd Hoffmannedd38a12019-01-18 13:19:58 +0100467 struct qxl_bo *surf);
Dave Airlief64122c2013-02-25 14:47:55 +1000468int qxl_hw_surface_dealloc(struct qxl_device *qdev,
469 struct qxl_bo *surf);
470
471int qxl_bo_check_id(struct qxl_device *qdev, struct qxl_bo *bo);
472
473struct qxl_drv_surface *
474qxl_surface_lookup(struct drm_device *dev, int surface_id);
475void qxl_surface_evict(struct qxl_device *qdev, struct qxl_bo *surf, bool freeing);
Dave Airlief64122c2013-02-25 14:47:55 +1000476
Dave Airlief64122c2013-02-25 14:47:55 +1000477#endif