blob: 647f0926cb508c6d43237d312da45445a7333701 [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
39#include "drmP.h"
40#include "drm_crtc.h"
41#include <ttm/ttm_bo_api.h>
42#include <ttm/ttm_bo_driver.h>
43#include <ttm/ttm_placement.h>
44#include <ttm/ttm_module.h>
45
Laurent Pinchart93382032016-11-28 20:51:09 +020046#include <drm/drm_encoder.h>
Daniel Vetterd9fc9412014-09-23 15:46:53 +020047#include <drm/drm_gem.h>
48
Dave Airlie8002db62013-07-23 14:16:42 +100049/* just for ttm_validate_buffer */
50#include <ttm/ttm_execbuf_util.h>
51
Dave Airlief64122c2013-02-25 14:47:55 +100052#include <drm/qxl_drm.h>
53#include "qxl_dev.h"
54
55#define DRIVER_AUTHOR "Dave Airlie"
56
57#define DRIVER_NAME "qxl"
58#define DRIVER_DESC "RH QXL"
59#define DRIVER_DATE "20120117"
60
61#define DRIVER_MAJOR 0
62#define DRIVER_MINOR 1
63#define DRIVER_PATCHLEVEL 0
64
Dave Airlief64122c2013-02-25 14:47:55 +100065#define QXL_DEBUGFS_MAX_COMPONENTS 32
66
67extern int qxl_log_level;
Dave Airlie07f8d9b2013-07-02 06:37:13 +010068extern int qxl_num_crtc;
Dave Airlief64122c2013-02-25 14:47:55 +100069
70enum {
71 QXL_INFO_LEVEL = 1,
72 QXL_DEBUG_LEVEL = 2,
73};
74
75#define QXL_INFO(qdev, fmt, ...) do { \
76 if (qxl_log_level >= QXL_INFO_LEVEL) { \
77 qxl_io_log(qdev, fmt, __VA_ARGS__); \
78 } \
79 } while (0)
80#define QXL_DEBUG(qdev, fmt, ...) do { \
81 if (qxl_log_level >= QXL_DEBUG_LEVEL) { \
82 qxl_io_log(qdev, fmt, __VA_ARGS__); \
83 } \
84 } while (0)
85#define QXL_INFO_ONCE(qdev, fmt, ...) do { \
86 static int done; \
87 if (!done) { \
88 done = 1; \
89 QXL_INFO(qdev, fmt, __VA_ARGS__); \
90 } \
91 } while (0)
92
93#define DRM_FILE_OFFSET 0x100000000ULL
94#define DRM_FILE_PAGE_OFFSET (DRM_FILE_OFFSET >> PAGE_SHIFT)
95
96#define QXL_INTERRUPT_MASK (\
97 QXL_INTERRUPT_DISPLAY |\
98 QXL_INTERRUPT_CURSOR |\
99 QXL_INTERRUPT_IO_CMD |\
100 QXL_INTERRUPT_CLIENT_MONITORS_CONFIG)
101
Dave Airlief64122c2013-02-25 14:47:55 +1000102struct qxl_bo {
103 /* Protected by gem.mutex */
104 struct list_head list;
105 /* Protected by tbo.reserved */
Christian Königf1217ed2014-08-27 13:16:04 +0200106 struct ttm_place placements[3];
Dave Airlief64122c2013-02-25 14:47:55 +1000107 struct ttm_placement placement;
108 struct ttm_buffer_object tbo;
109 struct ttm_bo_kmap_obj kmap;
110 unsigned pin_count;
111 void *kptr;
112 int type;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200113
Dave Airlief64122c2013-02-25 14:47:55 +1000114 /* Constant after initialization */
115 struct drm_gem_object gem_base;
116 bool is_primary; /* is this now a primary surface */
117 bool hw_surf_alloc;
118 struct qxl_surface surf;
119 uint32_t surface_id;
Dave Airlief64122c2013-02-25 14:47:55 +1000120 struct qxl_release *surf_create;
Dave Airlief64122c2013-02-25 14:47:55 +1000121};
122#define gem_to_qxl_bo(gobj) container_of((gobj), struct qxl_bo, gem_base)
Dave Airlie8002db62013-07-23 14:16:42 +1000123#define to_qxl_bo(tobj) container_of((tobj), struct qxl_bo, tbo)
Dave Airlief64122c2013-02-25 14:47:55 +1000124
125struct qxl_gem {
126 struct mutex mutex;
127 struct list_head objects;
128};
129
130struct qxl_bo_list {
Dave Airlie8002db62013-07-23 14:16:42 +1000131 struct ttm_validate_buffer tv;
Dave Airlief64122c2013-02-25 14:47:55 +1000132};
133
134struct qxl_crtc {
135 struct drm_crtc base;
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100136 int index;
Dave Airlief64122c2013-02-25 14:47:55 +1000137 int cur_x;
138 int cur_y;
John Keepingd59a1f72015-11-18 11:17:25 +0000139 int hot_spot_x;
140 int hot_spot_y;
Ray Strode4532b242016-09-09 11:09:05 -0400141 struct qxl_bo *cursor_bo;
Dave Airlief64122c2013-02-25 14:47:55 +1000142};
143
144struct qxl_output {
145 int index;
146 struct drm_connector base;
147 struct drm_encoder enc;
148};
149
150struct qxl_framebuffer {
151 struct drm_framebuffer base;
152 struct drm_gem_object *obj;
153};
154
155#define to_qxl_crtc(x) container_of(x, struct qxl_crtc, base)
156#define drm_connector_to_qxl_output(x) container_of(x, struct qxl_output, base)
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100157#define drm_encoder_to_qxl_output(x) container_of(x, struct qxl_output, enc)
Dave Airlief64122c2013-02-25 14:47:55 +1000158#define to_qxl_framebuffer(x) container_of(x, struct qxl_framebuffer, base)
159
160struct qxl_mman {
161 struct ttm_bo_global_ref bo_global_ref;
162 struct drm_global_reference mem_global_ref;
163 bool mem_global_referenced;
164 struct ttm_bo_device bdev;
165};
166
167struct qxl_mode_info {
168 int num_modes;
169 struct qxl_mode *modes;
170 bool mode_config_initialized;
171
172 /* pointer to fbdev info structure */
173 struct qxl_fbdev *qfbdev;
174};
175
176
177struct qxl_memslot {
178 uint8_t generation;
179 uint64_t start_phys_addr;
180 uint64_t end_phys_addr;
181 uint64_t high_bits;
182};
183
184enum {
185 QXL_RELEASE_DRAWABLE,
186 QXL_RELEASE_SURFACE_CMD,
187 QXL_RELEASE_CURSOR_CMD,
188};
189
190/* drm_ prefix to differentiate from qxl_release_info in
191 * spice-protocol/qxl_dev.h */
192#define QXL_MAX_RES 96
193struct qxl_release {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100194 struct dma_fence base;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200195
Dave Airlief64122c2013-02-25 14:47:55 +1000196 int id;
197 int type;
Dave Airlief64122c2013-02-25 14:47:55 +1000198 uint32_t release_offset;
199 uint32_t surface_release_id;
Dave Airlie8002db62013-07-23 14:16:42 +1000200 struct ww_acquire_ctx ticket;
201 struct list_head bos;
202};
203
204struct qxl_drm_chunk {
205 struct list_head head;
206 struct qxl_bo *bo;
207};
208
209struct qxl_drm_image {
210 struct qxl_bo *bo;
211 struct list_head chunk_list;
Dave Airlief64122c2013-02-25 14:47:55 +1000212};
213
214struct qxl_fb_image {
215 struct qxl_device *qdev;
216 uint32_t pseudo_palette[16];
217 struct fb_image fb_image;
218 uint32_t visual;
219};
220
221struct qxl_draw_fill {
222 struct qxl_device *qdev;
223 struct qxl_rect rect;
224 uint32_t color;
225 uint16_t rop;
226};
227
228/*
229 * Debugfs
230 */
231struct qxl_debugfs {
232 struct drm_info_list *files;
233 unsigned num_files;
234};
235
236int qxl_debugfs_add_files(struct qxl_device *rdev,
237 struct drm_info_list *files,
238 unsigned nfiles);
239int qxl_debugfs_fence_init(struct qxl_device *rdev);
240void qxl_debugfs_remove_files(struct qxl_device *qdev);
241
242struct qxl_device;
243
244struct qxl_device {
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200245 struct drm_device ddev;
Dave Airlief64122c2013-02-25 14:47:55 +1000246
247 resource_size_t vram_base, vram_size;
248 resource_size_t surfaceram_base, surfaceram_size;
249 resource_size_t rom_base, rom_size;
250 struct qxl_rom *rom;
251
252 struct qxl_mode *modes;
253 struct qxl_bo *monitors_config_bo;
254 struct qxl_monitors_config *monitors_config;
255
256 /* last received client_monitors_config */
257 struct qxl_monitors_config *client_monitors_config;
258
259 int io_base;
260 void *ram;
261 struct qxl_mman mman;
262 struct qxl_gem gem;
263 struct qxl_mode_info mode_info;
264
Dave Airlief64122c2013-02-25 14:47:55 +1000265 struct fb_info *fbdev_info;
266 struct qxl_framebuffer *fbdev_qfb;
267 void *ram_physical;
268
269 struct qxl_ring *release_ring;
270 struct qxl_ring *command_ring;
271 struct qxl_ring *cursor_ring;
272
273 struct qxl_ram_header *ram_header;
Dave Airlief64122c2013-02-25 14:47:55 +1000274
275 bool primary_created;
276
277 struct qxl_memslot *mem_slots;
278 uint8_t n_mem_slots;
279
280 uint8_t main_mem_slot;
281 uint8_t surfaces_mem_slot;
282 uint8_t slot_id_bits;
283 uint8_t slot_gen_bits;
284 uint64_t va_slot_mask;
285
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200286 spinlock_t release_lock;
Dave Airlief64122c2013-02-25 14:47:55 +1000287 struct idr release_idr;
Maarten Lankhorst2f453ed2014-04-02 12:40:05 +0200288 uint32_t release_seqno;
Dave Airlief64122c2013-02-25 14:47:55 +1000289 spinlock_t release_idr_lock;
290 struct mutex async_io_mutex;
291 unsigned int last_sent_io_cmd;
292
293 /* interrupt handling */
294 atomic_t irq_received;
295 atomic_t irq_received_display;
296 atomic_t irq_received_cursor;
297 atomic_t irq_received_io_cmd;
298 unsigned irq_received_error;
299 wait_queue_head_t display_event;
300 wait_queue_head_t cursor_event;
301 wait_queue_head_t io_cmd_event;
302 struct work_struct client_monitors_config_work;
303
304 /* debugfs */
305 struct qxl_debugfs debugfs[QXL_DEBUGFS_MAX_COMPONENTS];
306 unsigned debugfs_count;
307
308 struct mutex update_area_mutex;
309
310 struct idr surf_id_idr;
311 spinlock_t surf_id_idr_lock;
312 int last_alloced_surf_id;
313
314 struct mutex surf_evict_mutex;
315 struct io_mapping *vram_mapping;
316 struct io_mapping *surface_mapping;
317
318 /* */
319 struct mutex release_mutex;
320 struct qxl_bo *current_release_bo[3];
321 int current_release_bo_offset[3];
322
Dave Airlief64122c2013-02-25 14:47:55 +1000323 struct work_struct gc_work;
324
Dave Airlie4695b032013-10-11 11:05:00 +1000325 struct drm_property *hotplug_mode_update_property;
Jonathon Jongsmabd3e1c72015-08-20 14:04:32 -0500326 int monitors_config_width;
327 int monitors_config_height;
Dave Airlief64122c2013-02-25 14:47:55 +1000328};
329
330/* forward declaration for QXL_INFO_IO */
Frediano Ziglio72ec5652015-06-03 12:09:16 +0100331__printf(2,3) void qxl_io_log(struct qxl_device *qdev, const char *fmt, ...);
Dave Airlief64122c2013-02-25 14:47:55 +1000332
Rob Clarkbaa70942013-08-02 13:27:49 -0400333extern const struct drm_ioctl_desc qxl_ioctls[];
Dave Airlief64122c2013-02-25 14:47:55 +1000334extern int qxl_max_ioctl;
335
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200336int qxl_device_init(struct qxl_device *qdev, struct drm_driver *drv,
Gabriel Krisman Bertaziaa5b62b2017-02-27 17:43:15 -0300337 struct pci_dev *pdev);
Gabriel Krisman Bertazi2b65d562017-01-19 11:48:05 -0200338void qxl_device_fini(struct qxl_device *qdev);
339
Dave Airlief64122c2013-02-25 14:47:55 +1000340int qxl_modeset_init(struct qxl_device *qdev);
341void qxl_modeset_fini(struct qxl_device *qdev);
342
343int qxl_bo_init(struct qxl_device *qdev);
344void qxl_bo_fini(struct qxl_device *qdev);
345
Dave Airliec9fdda22013-07-04 14:57:58 +1000346void qxl_reinit_memslots(struct qxl_device *qdev);
Dave Airlieb86487a2013-07-04 14:59:34 +1000347int qxl_surf_evict(struct qxl_device *qdev);
Dave Airlied84300b2013-07-04 15:02:33 +1000348int qxl_vram_evict(struct qxl_device *qdev);
Dave Airliec9fdda22013-07-04 14:57:58 +1000349
Dave Airlief64122c2013-02-25 14:47:55 +1000350struct qxl_ring *qxl_ring_create(struct qxl_ring_header *header,
351 int element_size,
352 int n_elements,
353 int prod_notify,
354 bool set_prod_notify,
355 wait_queue_head_t *push_event);
356void qxl_ring_free(struct qxl_ring *ring);
Dave Airlie1e209112013-07-04 14:58:45 +1000357void qxl_ring_init_hdr(struct qxl_ring *ring);
358int qxl_check_idle(struct qxl_ring *ring);
Dave Airlief64122c2013-02-25 14:47:55 +1000359
360static inline void *
361qxl_fb_virtual_address(struct qxl_device *qdev, unsigned long physical)
362{
363 QXL_INFO(qdev, "not implemented (%lu)\n", physical);
364 return 0;
365}
366
367static inline uint64_t
368qxl_bo_physical_address(struct qxl_device *qdev, struct qxl_bo *bo,
369 unsigned long offset)
370{
371 int slot_id = bo->type == QXL_GEM_DOMAIN_VRAM ? qdev->main_mem_slot : qdev->surfaces_mem_slot;
372 struct qxl_memslot *slot = &(qdev->mem_slots[slot_id]);
373
374 /* TODO - need to hold one of the locks to read tbo.offset */
375 return slot->high_bits | (bo->tbo.offset + offset);
376}
377
378/* qxl_fb.c */
379#define QXLFB_CONN_LIMIT 1
380
381int qxl_fbdev_init(struct qxl_device *qdev);
382void qxl_fbdev_fini(struct qxl_device *qdev);
383int qxl_get_handle_for_primary_fb(struct qxl_device *qdev,
384 struct drm_file *file_priv,
385 uint32_t *handle);
Dave Airlieb86487a2013-07-04 14:59:34 +1000386void qxl_fbdev_set_suspend(struct qxl_device *qdev, int state);
Dave Airlief64122c2013-02-25 14:47:55 +1000387
388/* qxl_display.c */
Noralf Trønnes6819c3c2016-04-28 17:18:36 +0200389void qxl_user_framebuffer_destroy(struct drm_framebuffer *fb);
Dave Airlief64122c2013-02-25 14:47:55 +1000390int
391qxl_framebuffer_init(struct drm_device *dev,
392 struct qxl_framebuffer *rfb,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200393 const struct drm_mode_fb_cmd2 *mode_cmd,
Noralf Trønnes6819c3c2016-04-28 17:18:36 +0200394 struct drm_gem_object *obj,
395 const struct drm_framebuffer_funcs *funcs);
Dave Airlief64122c2013-02-25 14:47:55 +1000396void qxl_display_read_client_monitors_config(struct qxl_device *qdev);
Dave Airlie2bd6ce82013-07-04 14:46:46 +1000397int qxl_create_monitors_object(struct qxl_device *qdev);
398int qxl_destroy_monitors_object(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000399
Dave Airlief64122c2013-02-25 14:47:55 +1000400/* qxl_gem.c */
Christophe Fergeauae4b9a02016-11-08 10:12:07 +0100401void qxl_gem_init(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000402void qxl_gem_fini(struct qxl_device *qdev);
403int qxl_gem_object_create(struct qxl_device *qdev, int size,
404 int alignment, int initial_domain,
405 bool discardable, bool kernel,
406 struct qxl_surface *surf,
407 struct drm_gem_object **obj);
Dave Airlief64122c2013-02-25 14:47:55 +1000408int qxl_gem_object_create_with_handle(struct qxl_device *qdev,
409 struct drm_file *file_priv,
410 u32 domain,
411 size_t size,
412 struct qxl_surface *surf,
413 struct qxl_bo **qobj,
414 uint32_t *handle);
Dave Airlief64122c2013-02-25 14:47:55 +1000415void qxl_gem_object_free(struct drm_gem_object *gobj);
416int qxl_gem_object_open(struct drm_gem_object *obj, struct drm_file *file_priv);
417void qxl_gem_object_close(struct drm_gem_object *obj,
418 struct drm_file *file_priv);
419void qxl_bo_force_delete(struct qxl_device *qdev);
420int qxl_bo_kmap(struct qxl_bo *bo, void **ptr);
421
422/* qxl_dumb.c */
423int qxl_mode_dumb_create(struct drm_file *file_priv,
424 struct drm_device *dev,
425 struct drm_mode_create_dumb *args);
Dave Airlief64122c2013-02-25 14:47:55 +1000426int qxl_mode_dumb_mmap(struct drm_file *filp,
427 struct drm_device *dev,
428 uint32_t handle, uint64_t *offset_p);
429
430
431/* qxl ttm */
432int qxl_ttm_init(struct qxl_device *qdev);
433void qxl_ttm_fini(struct qxl_device *qdev);
434int qxl_mmap(struct file *filp, struct vm_area_struct *vma);
435
436/* qxl image */
437
Dave Airlie8002db62013-07-23 14:16:42 +1000438int qxl_image_init(struct qxl_device *qdev,
439 struct qxl_release *release,
440 struct qxl_drm_image *dimage,
441 const uint8_t *data,
442 int x, int y, int width, int height,
443 int depth, int stride);
444int
445qxl_image_alloc_objects(struct qxl_device *qdev,
446 struct qxl_release *release,
447 struct qxl_drm_image **image_ptr,
448 int height, int stride);
449void qxl_image_free_objects(struct qxl_device *qdev, struct qxl_drm_image *dimage);
450
Dave Airlief64122c2013-02-25 14:47:55 +1000451void qxl_update_screen(struct qxl_device *qxl);
452
453/* qxl io operations (qxl_cmd.c) */
454
455void qxl_io_create_primary(struct qxl_device *qdev,
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100456 unsigned offset,
Dave Airlief64122c2013-02-25 14:47:55 +1000457 struct qxl_bo *bo);
458void qxl_io_destroy_primary(struct qxl_device *qdev);
459void qxl_io_memslot_add(struct qxl_device *qdev, uint8_t id);
460void qxl_io_notify_oom(struct qxl_device *qdev);
461
462int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf,
463 const struct qxl_rect *area);
464
465void qxl_io_reset(struct qxl_device *qdev);
466void qxl_io_monitors_config(struct qxl_device *qdev);
467int qxl_ring_push(struct qxl_ring *ring, const void *new_elt, bool interruptible);
468void qxl_io_flush_release(struct qxl_device *qdev);
469void qxl_io_flush_surfaces(struct qxl_device *qdev);
470
Dave Airlief64122c2013-02-25 14:47:55 +1000471union qxl_release_info *qxl_release_map(struct qxl_device *qdev,
472 struct qxl_release *release);
473void qxl_release_unmap(struct qxl_device *qdev,
474 struct qxl_release *release,
475 union qxl_release_info *info);
Dave Airlie8002db62013-07-23 14:16:42 +1000476int qxl_release_list_add(struct qxl_release *release, struct qxl_bo *bo);
477int qxl_release_reserve_list(struct qxl_release *release, bool no_intr);
478void qxl_release_backoff_reserve_list(struct qxl_release *release);
479void qxl_release_fence_buffer_objects(struct qxl_release *release);
Dave Airlief64122c2013-02-25 14:47:55 +1000480
481int qxl_alloc_surface_release_reserved(struct qxl_device *qdev,
482 enum qxl_surface_cmd_type surface_cmd_type,
483 struct qxl_release *create_rel,
484 struct qxl_release **release);
485int qxl_alloc_release_reserved(struct qxl_device *qdev, unsigned long size,
486 int type, struct qxl_release **release,
487 struct qxl_bo **rbo);
Dave Airlie8002db62013-07-23 14:16:42 +1000488
Dave Airlief64122c2013-02-25 14:47:55 +1000489int
490qxl_push_command_ring_release(struct qxl_device *qdev, struct qxl_release *release,
491 uint32_t type, bool interruptible);
492int
493qxl_push_cursor_ring_release(struct qxl_device *qdev, struct qxl_release *release,
494 uint32_t type, bool interruptible);
Dave Airlie8002db62013-07-23 14:16:42 +1000495int qxl_alloc_bo_reserved(struct qxl_device *qdev,
496 struct qxl_release *release,
497 unsigned long size,
Dave Airlief64122c2013-02-25 14:47:55 +1000498 struct qxl_bo **_bo);
499/* qxl drawing commands */
500
501void qxl_draw_opaque_fb(const struct qxl_fb_image *qxl_fb_image,
502 int stride /* filled in if 0 */);
503
504void qxl_draw_dirty_fb(struct qxl_device *qdev,
505 struct qxl_framebuffer *qxl_fb,
506 struct qxl_bo *bo,
507 unsigned flags, unsigned color,
508 struct drm_clip_rect *clips,
509 unsigned num_clips, int inc);
510
511void qxl_draw_fill(struct qxl_draw_fill *qxl_draw_fill_rec);
512
513void qxl_draw_copyarea(struct qxl_device *qdev,
514 u32 width, u32 height,
515 u32 sx, u32 sy,
516 u32 dx, u32 dy);
517
Dave Airlief64122c2013-02-25 14:47:55 +1000518void qxl_release_free(struct qxl_device *qdev,
519 struct qxl_release *release);
Dave Airlie8002db62013-07-23 14:16:42 +1000520
Dave Airlief64122c2013-02-25 14:47:55 +1000521/* used by qxl_debugfs_release */
522struct qxl_release *qxl_release_from_id_locked(struct qxl_device *qdev,
523 uint64_t id);
524
525bool qxl_queue_garbage_collect(struct qxl_device *qdev, bool flush);
526int qxl_garbage_collect(struct qxl_device *qdev);
527
528/* debugfs */
529
530int qxl_debugfs_init(struct drm_minor *minor);
531void qxl_debugfs_takedown(struct drm_minor *minor);
Gabriel Krisman Bertazi2b65d562017-01-19 11:48:05 -0200532int qxl_ttm_debugfs_init(struct qxl_device *qdev);
Dave Airlief64122c2013-02-25 14:47:55 +1000533
Andreas Pokorny47c12962014-08-08 10:40:56 +0200534/* qxl_prime.c */
535int qxl_gem_prime_pin(struct drm_gem_object *obj);
536void qxl_gem_prime_unpin(struct drm_gem_object *obj);
537struct sg_table *qxl_gem_prime_get_sg_table(struct drm_gem_object *obj);
538struct drm_gem_object *qxl_gem_prime_import_sg_table(
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +0100539 struct drm_device *dev, struct dma_buf_attachment *attach,
Andreas Pokorny47c12962014-08-08 10:40:56 +0200540 struct sg_table *sgt);
541void *qxl_gem_prime_vmap(struct drm_gem_object *obj);
542void qxl_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
543int qxl_gem_prime_mmap(struct drm_gem_object *obj,
544 struct vm_area_struct *vma);
545
Dave Airlief64122c2013-02-25 14:47:55 +1000546/* qxl_irq.c */
547int qxl_irq_init(struct qxl_device *qdev);
Daniel Vettere9f0d762013-12-11 11:34:42 +0100548irqreturn_t qxl_irq_handler(int irq, void *arg);
Dave Airlief64122c2013-02-25 14:47:55 +1000549
550/* qxl_fb.c */
Dave Airlieb86487a2013-07-04 14:59:34 +1000551bool qxl_fbdev_qobj_is_fb(struct qxl_device *qdev, struct qxl_bo *qobj);
Dave Airlief64122c2013-02-25 14:47:55 +1000552
553int qxl_debugfs_add_files(struct qxl_device *qdev,
554 struct drm_info_list *files,
555 unsigned nfiles);
556
557int qxl_surface_id_alloc(struct qxl_device *qdev,
558 struct qxl_bo *surf);
559void qxl_surface_id_dealloc(struct qxl_device *qdev,
560 uint32_t surface_id);
561int qxl_hw_surface_alloc(struct qxl_device *qdev,
562 struct qxl_bo *surf,
563 struct ttm_mem_reg *mem);
564int qxl_hw_surface_dealloc(struct qxl_device *qdev,
565 struct qxl_bo *surf);
566
567int qxl_bo_check_id(struct qxl_device *qdev, struct qxl_bo *bo);
568
569struct qxl_drv_surface *
570qxl_surface_lookup(struct drm_device *dev, int surface_id);
571void qxl_surface_evict(struct qxl_device *qdev, struct qxl_bo *surf, bool freeing);
Dave Airlief64122c2013-02-25 14:47:55 +1000572
Dave Airlief64122c2013-02-25 14:47:55 +1000573#endif