blob: d707b351875cc9b9542011ee201de148fdd6d364 [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
26
27#ifndef QXL_DRV_H
28#define QXL_DRV_H
29
30/*
31 * Definitions taken from spice-protocol, plus kernel driver specific bits.
32 */
33
Chris Wilsonf54d1862016-10-25 13:00:45 +010034#include <linux/dma-fence.h>
Dave Airlief64122c2013-02-25 14:47:55 +100035#include <linux/workqueue.h>
36#include <linux/firmware.h>
37#include <linux/platform_device.h>
38
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090039#include <drm/drm_crtc.h>
Laurent Pinchart93382032016-11-28 20:51:09 +020040#include <drm/drm_encoder.h>
Daniel Vetterd9fc9412014-09-23 15:46:53 +020041#include <drm/drm_gem.h>
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090042#include <drm/drmP.h>
43#include <drm/ttm/ttm_bo_api.h>
44#include <drm/ttm/ttm_bo_driver.h>
Dave Airlie8002db62013-07-23 14:16:42 +100045/* just for ttm_validate_buffer */
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090046#include <drm/ttm/ttm_execbuf_util.h>
47#include <drm/ttm/ttm_module.h>
48#include <drm/ttm/ttm_placement.h>
Dave Airlief64122c2013-02-25 14:47:55 +100049#include <drm/qxl_drm.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 DRM_FILE_OFFSET 0x100000000ULL
69#define DRM_FILE_PAGE_OFFSET (DRM_FILE_OFFSET >> PAGE_SHIFT)
70
71#define QXL_INTERRUPT_MASK (\
72 QXL_INTERRUPT_DISPLAY |\
73 QXL_INTERRUPT_CURSOR |\
74 QXL_INTERRUPT_IO_CMD |\
75 QXL_INTERRUPT_CLIENT_MONITORS_CONFIG)
76
Dave Airlief64122c2013-02-25 14:47:55 +100077struct qxl_bo {
78 /* Protected by gem.mutex */
79 struct list_head list;
80 /* Protected by tbo.reserved */
Christian Königf1217ed2014-08-27 13:16:04 +020081 struct ttm_place placements[3];
Dave Airlief64122c2013-02-25 14:47:55 +100082 struct ttm_placement placement;
83 struct ttm_buffer_object tbo;
84 struct ttm_bo_kmap_obj kmap;
85 unsigned pin_count;
86 void *kptr;
87 int type;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +020088
Dave Airlief64122c2013-02-25 14:47:55 +100089 /* Constant after initialization */
90 struct drm_gem_object gem_base;
91 bool is_primary; /* is this now a primary surface */
92 bool hw_surf_alloc;
93 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};
97#define gem_to_qxl_bo(gobj) container_of((gobj), struct qxl_bo, gem_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;
Dave Airlief64122c2013-02-25 14:47:55 +1000112};
113
114struct qxl_output {
115 int index;
116 struct drm_connector base;
117 struct drm_encoder enc;
118};
119
120struct qxl_framebuffer {
121 struct drm_framebuffer base;
122 struct drm_gem_object *obj;
123};
124
125#define to_qxl_crtc(x) container_of(x, struct qxl_crtc, base)
126#define drm_connector_to_qxl_output(x) container_of(x, struct qxl_output, base)
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100127#define drm_encoder_to_qxl_output(x) container_of(x, struct qxl_output, enc)
Dave Airlief64122c2013-02-25 14:47:55 +1000128#define to_qxl_framebuffer(x) container_of(x, struct qxl_framebuffer, base)
129
130struct qxl_mman {
131 struct ttm_bo_global_ref bo_global_ref;
132 struct drm_global_reference mem_global_ref;
133 bool mem_global_referenced;
134 struct ttm_bo_device bdev;
135};
136
137struct qxl_mode_info {
Dave Airlief64122c2013-02-25 14:47:55 +1000138 bool mode_config_initialized;
139
140 /* pointer to fbdev info structure */
141 struct qxl_fbdev *qfbdev;
142};
143
144
145struct qxl_memslot {
146 uint8_t generation;
147 uint64_t start_phys_addr;
148 uint64_t end_phys_addr;
149 uint64_t high_bits;
150};
151
152enum {
153 QXL_RELEASE_DRAWABLE,
154 QXL_RELEASE_SURFACE_CMD,
155 QXL_RELEASE_CURSOR_CMD,
156};
157
158/* drm_ prefix to differentiate from qxl_release_info in
159 * spice-protocol/qxl_dev.h */
160#define QXL_MAX_RES 96
161struct qxl_release {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100162 struct dma_fence base;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200163
Dave Airlief64122c2013-02-25 14:47:55 +1000164 int id;
165 int type;
Dave Airlief64122c2013-02-25 14:47:55 +1000166 uint32_t release_offset;
167 uint32_t surface_release_id;
Dave Airlie8002db62013-07-23 14:16:42 +1000168 struct ww_acquire_ctx ticket;
169 struct list_head bos;
170};
171
172struct qxl_drm_chunk {
173 struct list_head head;
174 struct qxl_bo *bo;
175};
176
177struct qxl_drm_image {
178 struct qxl_bo *bo;
179 struct list_head chunk_list;
Dave Airlief64122c2013-02-25 14:47:55 +1000180};
181
182struct qxl_fb_image {
183 struct qxl_device *qdev;
184 uint32_t pseudo_palette[16];
185 struct fb_image fb_image;
186 uint32_t visual;
187};
188
189struct qxl_draw_fill {
190 struct qxl_device *qdev;
191 struct qxl_rect rect;
192 uint32_t color;
193 uint16_t rop;
194};
195
196/*
197 * Debugfs
198 */
199struct qxl_debugfs {
200 struct drm_info_list *files;
201 unsigned num_files;
202};
203
204int qxl_debugfs_add_files(struct qxl_device *rdev,
205 struct drm_info_list *files,
206 unsigned nfiles);
207int qxl_debugfs_fence_init(struct qxl_device *rdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000208
209struct qxl_device;
210
211struct qxl_device {
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200212 struct drm_device ddev;
Dave Airlief64122c2013-02-25 14:47:55 +1000213
214 resource_size_t vram_base, vram_size;
215 resource_size_t surfaceram_base, surfaceram_size;
216 resource_size_t rom_base, rom_size;
217 struct qxl_rom *rom;
218
219 struct qxl_mode *modes;
220 struct qxl_bo *monitors_config_bo;
221 struct qxl_monitors_config *monitors_config;
222
223 /* last received client_monitors_config */
224 struct qxl_monitors_config *client_monitors_config;
225
226 int io_base;
227 void *ram;
228 struct qxl_mman mman;
229 struct qxl_gem gem;
230 struct qxl_mode_info mode_info;
231
Dave Airlief64122c2013-02-25 14:47:55 +1000232 struct fb_info *fbdev_info;
233 struct qxl_framebuffer *fbdev_qfb;
234 void *ram_physical;
235
236 struct qxl_ring *release_ring;
237 struct qxl_ring *command_ring;
238 struct qxl_ring *cursor_ring;
239
240 struct qxl_ram_header *ram_header;
Dave Airlief64122c2013-02-25 14:47:55 +1000241
242 bool primary_created;
243
244 struct qxl_memslot *mem_slots;
245 uint8_t n_mem_slots;
246
247 uint8_t main_mem_slot;
248 uint8_t surfaces_mem_slot;
249 uint8_t slot_id_bits;
250 uint8_t slot_gen_bits;
251 uint64_t va_slot_mask;
252
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200253 spinlock_t release_lock;
Dave Airlief64122c2013-02-25 14:47:55 +1000254 struct idr release_idr;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200255 uint32_t release_seqno;
Dave Airlief64122c2013-02-25 14:47:55 +1000256 spinlock_t release_idr_lock;
257 struct mutex async_io_mutex;
258 unsigned int last_sent_io_cmd;
259
260 /* interrupt handling */
261 atomic_t irq_received;
262 atomic_t irq_received_display;
263 atomic_t irq_received_cursor;
264 atomic_t irq_received_io_cmd;
265 unsigned irq_received_error;
266 wait_queue_head_t display_event;
267 wait_queue_head_t cursor_event;
268 wait_queue_head_t io_cmd_event;
269 struct work_struct client_monitors_config_work;
270
271 /* debugfs */
272 struct qxl_debugfs debugfs[QXL_DEBUGFS_MAX_COMPONENTS];
273 unsigned debugfs_count;
274
275 struct mutex update_area_mutex;
276
277 struct idr surf_id_idr;
278 spinlock_t surf_id_idr_lock;
279 int last_alloced_surf_id;
280
281 struct mutex surf_evict_mutex;
282 struct io_mapping *vram_mapping;
283 struct io_mapping *surface_mapping;
284
285 /* */
286 struct mutex release_mutex;
287 struct qxl_bo *current_release_bo[3];
288 int current_release_bo_offset[3];
289
Dave Airlief64122c2013-02-25 14:47:55 +1000290 struct work_struct gc_work;
291
Dave Airlie4695b032013-10-11 11:05:00 +1000292 struct drm_property *hotplug_mode_update_property;
Jonathon Jongsmabd3e1c72015-08-20 14:04:32 -0500293 int monitors_config_width;
294 int monitors_config_height;
Dave Airlief64122c2013-02-25 14:47:55 +1000295};
296
297/* forward declaration for QXL_INFO_IO */
Frediano Ziglio72ec5652015-06-03 12:09:16 +0100298__printf(2,3) void qxl_io_log(struct qxl_device *qdev, const char *fmt, ...);
Dave Airlief64122c2013-02-25 14:47:55 +1000299
Rob Clarkbaa70942013-08-02 13:27:49 -0400300extern const struct drm_ioctl_desc qxl_ioctls[];
Dave Airlief64122c2013-02-25 14:47:55 +1000301extern int qxl_max_ioctl;
302
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200303int qxl_device_init(struct qxl_device *qdev, struct drm_driver *drv,
Gabriel Krisman Bertaziaa5b62b2017-02-27 17:43:15 -0300304 struct pci_dev *pdev);
Gabriel Krisman Bertazi2b65d562017-01-19 11:48:05 -0200305void qxl_device_fini(struct qxl_device *qdev);
306
Dave Airlief64122c2013-02-25 14:47:55 +1000307int qxl_modeset_init(struct qxl_device *qdev);
308void qxl_modeset_fini(struct qxl_device *qdev);
309
310int qxl_bo_init(struct qxl_device *qdev);
311void qxl_bo_fini(struct qxl_device *qdev);
312
Dave Airliec9fdda22013-07-04 14:57:58 +1000313void qxl_reinit_memslots(struct qxl_device *qdev);
Dave Airlieb86487a2013-07-04 14:59:34 +1000314int qxl_surf_evict(struct qxl_device *qdev);
Dave Airlied84300b2013-07-04 15:02:33 +1000315int qxl_vram_evict(struct qxl_device *qdev);
Dave Airliec9fdda22013-07-04 14:57:58 +1000316
Dave Airlief64122c2013-02-25 14:47:55 +1000317struct qxl_ring *qxl_ring_create(struct qxl_ring_header *header,
318 int element_size,
319 int n_elements,
320 int prod_notify,
321 bool set_prod_notify,
322 wait_queue_head_t *push_event);
323void qxl_ring_free(struct qxl_ring *ring);
Dave Airlie1e209112013-07-04 14:58:45 +1000324void qxl_ring_init_hdr(struct qxl_ring *ring);
325int qxl_check_idle(struct qxl_ring *ring);
Dave Airlief64122c2013-02-25 14:47:55 +1000326
327static inline void *
328qxl_fb_virtual_address(struct qxl_device *qdev, unsigned long physical)
329{
Gerd Hoffmann56cbcb62017-10-19 08:21:49 +0200330 DRM_DEBUG_DRIVER("not implemented (%lu)\n", physical);
Dave Airlief64122c2013-02-25 14:47:55 +1000331 return 0;
332}
333
334static inline uint64_t
335qxl_bo_physical_address(struct qxl_device *qdev, struct qxl_bo *bo,
336 unsigned long offset)
337{
338 int slot_id = bo->type == QXL_GEM_DOMAIN_VRAM ? qdev->main_mem_slot : qdev->surfaces_mem_slot;
339 struct qxl_memslot *slot = &(qdev->mem_slots[slot_id]);
340
341 /* TODO - need to hold one of the locks to read tbo.offset */
342 return slot->high_bits | (bo->tbo.offset + offset);
343}
344
345/* qxl_fb.c */
346#define QXLFB_CONN_LIMIT 1
347
348int qxl_fbdev_init(struct qxl_device *qdev);
349void qxl_fbdev_fini(struct qxl_device *qdev);
350int qxl_get_handle_for_primary_fb(struct qxl_device *qdev,
351 struct drm_file *file_priv,
352 uint32_t *handle);
Dave Airlieb86487a2013-07-04 14:59:34 +1000353void qxl_fbdev_set_suspend(struct qxl_device *qdev, int state);
Dave Airlief64122c2013-02-25 14:47:55 +1000354
355/* qxl_display.c */
Noralf Trønnes6819c3c2016-04-28 17:18:36 +0200356void qxl_user_framebuffer_destroy(struct drm_framebuffer *fb);
Dave Airlief64122c2013-02-25 14:47:55 +1000357int
358qxl_framebuffer_init(struct drm_device *dev,
359 struct qxl_framebuffer *rfb,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200360 const struct drm_mode_fb_cmd2 *mode_cmd,
Noralf Trønnes6819c3c2016-04-28 17:18:36 +0200361 struct drm_gem_object *obj,
362 const struct drm_framebuffer_funcs *funcs);
Dave Airlief64122c2013-02-25 14:47:55 +1000363void qxl_display_read_client_monitors_config(struct qxl_device *qdev);
Dave Airlie2bd6ce82013-07-04 14:46:46 +1000364int qxl_create_monitors_object(struct qxl_device *qdev);
365int qxl_destroy_monitors_object(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000366
Dave Airlief64122c2013-02-25 14:47:55 +1000367/* qxl_gem.c */
Christophe Fergeauae4b9a02016-11-08 10:12:07 +0100368void qxl_gem_init(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000369void qxl_gem_fini(struct qxl_device *qdev);
370int qxl_gem_object_create(struct qxl_device *qdev, int size,
371 int alignment, int initial_domain,
372 bool discardable, bool kernel,
373 struct qxl_surface *surf,
374 struct drm_gem_object **obj);
Dave Airlief64122c2013-02-25 14:47:55 +1000375int qxl_gem_object_create_with_handle(struct qxl_device *qdev,
376 struct drm_file *file_priv,
377 u32 domain,
378 size_t size,
379 struct qxl_surface *surf,
380 struct qxl_bo **qobj,
381 uint32_t *handle);
Dave Airlief64122c2013-02-25 14:47:55 +1000382void qxl_gem_object_free(struct drm_gem_object *gobj);
383int qxl_gem_object_open(struct drm_gem_object *obj, struct drm_file *file_priv);
384void qxl_gem_object_close(struct drm_gem_object *obj,
385 struct drm_file *file_priv);
386void qxl_bo_force_delete(struct qxl_device *qdev);
387int qxl_bo_kmap(struct qxl_bo *bo, void **ptr);
388
389/* qxl_dumb.c */
390int qxl_mode_dumb_create(struct drm_file *file_priv,
391 struct drm_device *dev,
392 struct drm_mode_create_dumb *args);
Dave Airlief64122c2013-02-25 14:47:55 +1000393int qxl_mode_dumb_mmap(struct drm_file *filp,
394 struct drm_device *dev,
395 uint32_t handle, uint64_t *offset_p);
396
397
398/* qxl ttm */
399int qxl_ttm_init(struct qxl_device *qdev);
400void qxl_ttm_fini(struct qxl_device *qdev);
401int qxl_mmap(struct file *filp, struct vm_area_struct *vma);
402
403/* qxl image */
404
Dave Airlie8002db62013-07-23 14:16:42 +1000405int qxl_image_init(struct qxl_device *qdev,
406 struct qxl_release *release,
407 struct qxl_drm_image *dimage,
408 const uint8_t *data,
409 int x, int y, int width, int height,
410 int depth, int stride);
411int
412qxl_image_alloc_objects(struct qxl_device *qdev,
413 struct qxl_release *release,
414 struct qxl_drm_image **image_ptr,
415 int height, int stride);
416void qxl_image_free_objects(struct qxl_device *qdev, struct qxl_drm_image *dimage);
417
Dave Airlief64122c2013-02-25 14:47:55 +1000418void qxl_update_screen(struct qxl_device *qxl);
419
420/* qxl io operations (qxl_cmd.c) */
421
422void qxl_io_create_primary(struct qxl_device *qdev,
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100423 unsigned offset,
Dave Airlief64122c2013-02-25 14:47:55 +1000424 struct qxl_bo *bo);
425void qxl_io_destroy_primary(struct qxl_device *qdev);
426void qxl_io_memslot_add(struct qxl_device *qdev, uint8_t id);
427void qxl_io_notify_oom(struct qxl_device *qdev);
428
429int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf,
430 const struct qxl_rect *area);
431
432void qxl_io_reset(struct qxl_device *qdev);
433void qxl_io_monitors_config(struct qxl_device *qdev);
434int qxl_ring_push(struct qxl_ring *ring, const void *new_elt, bool interruptible);
435void qxl_io_flush_release(struct qxl_device *qdev);
436void qxl_io_flush_surfaces(struct qxl_device *qdev);
437
Dave Airlief64122c2013-02-25 14:47:55 +1000438union qxl_release_info *qxl_release_map(struct qxl_device *qdev,
439 struct qxl_release *release);
440void qxl_release_unmap(struct qxl_device *qdev,
441 struct qxl_release *release,
442 union qxl_release_info *info);
Dave Airlie8002db62013-07-23 14:16:42 +1000443int qxl_release_list_add(struct qxl_release *release, struct qxl_bo *bo);
444int qxl_release_reserve_list(struct qxl_release *release, bool no_intr);
445void qxl_release_backoff_reserve_list(struct qxl_release *release);
446void qxl_release_fence_buffer_objects(struct qxl_release *release);
Dave Airlief64122c2013-02-25 14:47:55 +1000447
448int qxl_alloc_surface_release_reserved(struct qxl_device *qdev,
449 enum qxl_surface_cmd_type surface_cmd_type,
450 struct qxl_release *create_rel,
451 struct qxl_release **release);
452int qxl_alloc_release_reserved(struct qxl_device *qdev, unsigned long size,
453 int type, struct qxl_release **release,
454 struct qxl_bo **rbo);
Dave Airlie8002db62013-07-23 14:16:42 +1000455
Dave Airlief64122c2013-02-25 14:47:55 +1000456int
457qxl_push_command_ring_release(struct qxl_device *qdev, struct qxl_release *release,
458 uint32_t type, bool interruptible);
459int
460qxl_push_cursor_ring_release(struct qxl_device *qdev, struct qxl_release *release,
461 uint32_t type, bool interruptible);
Dave Airlie8002db62013-07-23 14:16:42 +1000462int qxl_alloc_bo_reserved(struct qxl_device *qdev,
463 struct qxl_release *release,
464 unsigned long size,
Dave Airlief64122c2013-02-25 14:47:55 +1000465 struct qxl_bo **_bo);
466/* qxl drawing commands */
467
468void qxl_draw_opaque_fb(const struct qxl_fb_image *qxl_fb_image,
469 int stride /* filled in if 0 */);
470
471void qxl_draw_dirty_fb(struct qxl_device *qdev,
472 struct qxl_framebuffer *qxl_fb,
473 struct qxl_bo *bo,
474 unsigned flags, unsigned color,
475 struct drm_clip_rect *clips,
476 unsigned num_clips, int inc);
477
478void qxl_draw_fill(struct qxl_draw_fill *qxl_draw_fill_rec);
479
480void qxl_draw_copyarea(struct qxl_device *qdev,
481 u32 width, u32 height,
482 u32 sx, u32 sy,
483 u32 dx, u32 dy);
484
Dave Airlief64122c2013-02-25 14:47:55 +1000485void qxl_release_free(struct qxl_device *qdev,
486 struct qxl_release *release);
Dave Airlie8002db62013-07-23 14:16:42 +1000487
Dave Airlief64122c2013-02-25 14:47:55 +1000488/* used by qxl_debugfs_release */
489struct qxl_release *qxl_release_from_id_locked(struct qxl_device *qdev,
490 uint64_t id);
491
492bool qxl_queue_garbage_collect(struct qxl_device *qdev, bool flush);
493int qxl_garbage_collect(struct qxl_device *qdev);
494
495/* debugfs */
496
497int qxl_debugfs_init(struct drm_minor *minor);
Gabriel Krisman Bertazi2b65d562017-01-19 11:48:05 -0200498int qxl_ttm_debugfs_init(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000499
Andreas Pokorny47c12962014-08-08 10:40:56 +0200500/* qxl_prime.c */
501int qxl_gem_prime_pin(struct drm_gem_object *obj);
502void qxl_gem_prime_unpin(struct drm_gem_object *obj);
503struct sg_table *qxl_gem_prime_get_sg_table(struct drm_gem_object *obj);
504struct drm_gem_object *qxl_gem_prime_import_sg_table(
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +0100505 struct drm_device *dev, struct dma_buf_attachment *attach,
Andreas Pokorny47c12962014-08-08 10:40:56 +0200506 struct sg_table *sgt);
507void *qxl_gem_prime_vmap(struct drm_gem_object *obj);
508void qxl_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
509int qxl_gem_prime_mmap(struct drm_gem_object *obj,
510 struct vm_area_struct *vma);
511
Dave Airlief64122c2013-02-25 14:47:55 +1000512/* qxl_irq.c */
513int qxl_irq_init(struct qxl_device *qdev);
Daniel Vettere9f0d762013-12-11 11:34:42 +0100514irqreturn_t qxl_irq_handler(int irq, void *arg);
Dave Airlief64122c2013-02-25 14:47:55 +1000515
516/* qxl_fb.c */
Dave Airlieb86487a2013-07-04 14:59:34 +1000517bool qxl_fbdev_qobj_is_fb(struct qxl_device *qdev, struct qxl_bo *qobj);
Dave Airlief64122c2013-02-25 14:47:55 +1000518
519int qxl_debugfs_add_files(struct qxl_device *qdev,
520 struct drm_info_list *files,
521 unsigned nfiles);
522
523int qxl_surface_id_alloc(struct qxl_device *qdev,
524 struct qxl_bo *surf);
525void qxl_surface_id_dealloc(struct qxl_device *qdev,
526 uint32_t surface_id);
527int qxl_hw_surface_alloc(struct qxl_device *qdev,
528 struct qxl_bo *surf,
529 struct ttm_mem_reg *mem);
530int qxl_hw_surface_dealloc(struct qxl_device *qdev,
531 struct qxl_bo *surf);
532
533int qxl_bo_check_id(struct qxl_device *qdev, struct qxl_bo *bo);
534
535struct qxl_drv_surface *
536qxl_surface_lookup(struct drm_device *dev, int surface_id);
537void qxl_surface_evict(struct qxl_device *qdev, struct qxl_bo *surf, bool freeing);
Dave Airlief64122c2013-02-25 14:47:55 +1000538
Dave Airlief64122c2013-02-25 14:47:55 +1000539#endif