drm: Move internal debugfs functions to drm_internal.h
[linux-2.6-block.git] / drivers / gpu / drm / qxl / qxl_drv.h
CommitLineData
f64122c1
DA
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
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
2f453ed4 34#include <linux/fence.h>
f64122c1
DA
35#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
8002db63
DA
46/* just for ttm_validate_buffer */
47#include <ttm/ttm_execbuf_util.h>
48
f64122c1
DA
49#include <drm/qxl_drm.h>
50#include "qxl_dev.h"
51
52#define DRIVER_AUTHOR "Dave Airlie"
53
54#define DRIVER_NAME "qxl"
55#define DRIVER_DESC "RH QXL"
56#define DRIVER_DATE "20120117"
57
58#define DRIVER_MAJOR 0
59#define DRIVER_MINOR 1
60#define DRIVER_PATCHLEVEL 0
61
f64122c1
DA
62#define QXL_DEBUGFS_MAX_COMPONENTS 32
63
64extern int qxl_log_level;
07f8d9bd 65extern int qxl_num_crtc;
f64122c1
DA
66
67enum {
68 QXL_INFO_LEVEL = 1,
69 QXL_DEBUG_LEVEL = 2,
70};
71
72#define QXL_INFO(qdev, fmt, ...) do { \
73 if (qxl_log_level >= QXL_INFO_LEVEL) { \
74 qxl_io_log(qdev, fmt, __VA_ARGS__); \
75 } \
76 } while (0)
77#define QXL_DEBUG(qdev, fmt, ...) do { \
78 if (qxl_log_level >= QXL_DEBUG_LEVEL) { \
79 qxl_io_log(qdev, fmt, __VA_ARGS__); \
80 } \
81 } while (0)
82#define QXL_INFO_ONCE(qdev, fmt, ...) do { \
83 static int done; \
84 if (!done) { \
85 done = 1; \
86 QXL_INFO(qdev, fmt, __VA_ARGS__); \
87 } \
88 } while (0)
89
90#define DRM_FILE_OFFSET 0x100000000ULL
91#define DRM_FILE_PAGE_OFFSET (DRM_FILE_OFFSET >> PAGE_SHIFT)
92
93#define QXL_INTERRUPT_MASK (\
94 QXL_INTERRUPT_DISPLAY |\
95 QXL_INTERRUPT_CURSOR |\
96 QXL_INTERRUPT_IO_CMD |\
97 QXL_INTERRUPT_CLIENT_MONITORS_CONFIG)
98
f64122c1
DA
99struct qxl_bo {
100 /* Protected by gem.mutex */
101 struct list_head list;
102 /* Protected by tbo.reserved */
f1217ed0 103 struct ttm_place placements[3];
f64122c1
DA
104 struct ttm_placement placement;
105 struct ttm_buffer_object tbo;
106 struct ttm_bo_kmap_obj kmap;
107 unsigned pin_count;
108 void *kptr;
109 int type;
2f453ed4 110
f64122c1
DA
111 /* Constant after initialization */
112 struct drm_gem_object gem_base;
113 bool is_primary; /* is this now a primary surface */
114 bool hw_surf_alloc;
115 struct qxl_surface surf;
116 uint32_t surface_id;
f64122c1 117 struct qxl_release *surf_create;
f64122c1
DA
118};
119#define gem_to_qxl_bo(gobj) container_of((gobj), struct qxl_bo, gem_base)
8002db63 120#define to_qxl_bo(tobj) container_of((tobj), struct qxl_bo, tbo)
f64122c1
DA
121
122struct qxl_gem {
123 struct mutex mutex;
124 struct list_head objects;
125};
126
127struct qxl_bo_list {
8002db63 128 struct ttm_validate_buffer tv;
f64122c1
DA
129};
130
131struct qxl_crtc {
132 struct drm_crtc base;
07f8d9bd 133 int index;
f64122c1
DA
134 int cur_x;
135 int cur_y;
136};
137
138struct qxl_output {
139 int index;
140 struct drm_connector base;
141 struct drm_encoder enc;
142};
143
144struct qxl_framebuffer {
145 struct drm_framebuffer base;
146 struct drm_gem_object *obj;
147};
148
149#define to_qxl_crtc(x) container_of(x, struct qxl_crtc, base)
150#define drm_connector_to_qxl_output(x) container_of(x, struct qxl_output, base)
07f8d9bd 151#define drm_encoder_to_qxl_output(x) container_of(x, struct qxl_output, enc)
f64122c1
DA
152#define to_qxl_framebuffer(x) container_of(x, struct qxl_framebuffer, base)
153
154struct qxl_mman {
155 struct ttm_bo_global_ref bo_global_ref;
156 struct drm_global_reference mem_global_ref;
157 bool mem_global_referenced;
158 struct ttm_bo_device bdev;
159};
160
161struct qxl_mode_info {
162 int num_modes;
163 struct qxl_mode *modes;
164 bool mode_config_initialized;
165
166 /* pointer to fbdev info structure */
167 struct qxl_fbdev *qfbdev;
168};
169
170
171struct qxl_memslot {
172 uint8_t generation;
173 uint64_t start_phys_addr;
174 uint64_t end_phys_addr;
175 uint64_t high_bits;
176};
177
178enum {
179 QXL_RELEASE_DRAWABLE,
180 QXL_RELEASE_SURFACE_CMD,
181 QXL_RELEASE_CURSOR_CMD,
182};
183
184/* drm_ prefix to differentiate from qxl_release_info in
185 * spice-protocol/qxl_dev.h */
186#define QXL_MAX_RES 96
187struct qxl_release {
2f453ed4
ML
188 struct fence base;
189
f64122c1
DA
190 int id;
191 int type;
f64122c1
DA
192 uint32_t release_offset;
193 uint32_t surface_release_id;
8002db63
DA
194 struct ww_acquire_ctx ticket;
195 struct list_head bos;
196};
197
198struct qxl_drm_chunk {
199 struct list_head head;
200 struct qxl_bo *bo;
201};
202
203struct qxl_drm_image {
204 struct qxl_bo *bo;
205 struct list_head chunk_list;
f64122c1
DA
206};
207
208struct qxl_fb_image {
209 struct qxl_device *qdev;
210 uint32_t pseudo_palette[16];
211 struct fb_image fb_image;
212 uint32_t visual;
213};
214
215struct qxl_draw_fill {
216 struct qxl_device *qdev;
217 struct qxl_rect rect;
218 uint32_t color;
219 uint16_t rop;
220};
221
222/*
223 * Debugfs
224 */
225struct qxl_debugfs {
226 struct drm_info_list *files;
227 unsigned num_files;
228};
229
230int qxl_debugfs_add_files(struct qxl_device *rdev,
231 struct drm_info_list *files,
232 unsigned nfiles);
233int qxl_debugfs_fence_init(struct qxl_device *rdev);
234void qxl_debugfs_remove_files(struct qxl_device *qdev);
235
236struct qxl_device;
237
238struct qxl_device {
239 struct device *dev;
240 struct drm_device *ddev;
241 struct pci_dev *pdev;
242 unsigned long flags;
243
244 resource_size_t vram_base, vram_size;
245 resource_size_t surfaceram_base, surfaceram_size;
246 resource_size_t rom_base, rom_size;
247 struct qxl_rom *rom;
248
249 struct qxl_mode *modes;
250 struct qxl_bo *monitors_config_bo;
251 struct qxl_monitors_config *monitors_config;
252
253 /* last received client_monitors_config */
254 struct qxl_monitors_config *client_monitors_config;
255
256 int io_base;
257 void *ram;
258 struct qxl_mman mman;
259 struct qxl_gem gem;
260 struct qxl_mode_info mode_info;
261
f64122c1
DA
262 struct fb_info *fbdev_info;
263 struct qxl_framebuffer *fbdev_qfb;
264 void *ram_physical;
265
266 struct qxl_ring *release_ring;
267 struct qxl_ring *command_ring;
268 struct qxl_ring *cursor_ring;
269
270 struct qxl_ram_header *ram_header;
f64122c1
DA
271
272 bool primary_created;
273
274 struct qxl_memslot *mem_slots;
275 uint8_t n_mem_slots;
276
277 uint8_t main_mem_slot;
278 uint8_t surfaces_mem_slot;
279 uint8_t slot_id_bits;
280 uint8_t slot_gen_bits;
281 uint64_t va_slot_mask;
282
2f453ed4 283 spinlock_t release_lock;
f64122c1 284 struct idr release_idr;
2f453ed4 285 uint32_t release_seqno;
f64122c1
DA
286 spinlock_t release_idr_lock;
287 struct mutex async_io_mutex;
288 unsigned int last_sent_io_cmd;
289
290 /* interrupt handling */
291 atomic_t irq_received;
292 atomic_t irq_received_display;
293 atomic_t irq_received_cursor;
294 atomic_t irq_received_io_cmd;
295 unsigned irq_received_error;
296 wait_queue_head_t display_event;
297 wait_queue_head_t cursor_event;
298 wait_queue_head_t io_cmd_event;
299 struct work_struct client_monitors_config_work;
300
301 /* debugfs */
302 struct qxl_debugfs debugfs[QXL_DEBUGFS_MAX_COMPONENTS];
303 unsigned debugfs_count;
304
305 struct mutex update_area_mutex;
306
307 struct idr surf_id_idr;
308 spinlock_t surf_id_idr_lock;
309 int last_alloced_surf_id;
310
311 struct mutex surf_evict_mutex;
312 struct io_mapping *vram_mapping;
313 struct io_mapping *surface_mapping;
314
315 /* */
316 struct mutex release_mutex;
317 struct qxl_bo *current_release_bo[3];
318 int current_release_bo_offset[3];
319
320 struct workqueue_struct *gc_queue;
321 struct work_struct gc_work;
322
0665f9f8 323 struct work_struct fb_work;
4695b039
DA
324
325 struct drm_property *hotplug_mode_update_property;
f64122c1
DA
326};
327
328/* forward declaration for QXL_INFO_IO */
329void qxl_io_log(struct qxl_device *qdev, const char *fmt, ...);
330
baa70943 331extern const struct drm_ioctl_desc qxl_ioctls[];
f64122c1
DA
332extern int qxl_max_ioctl;
333
334int qxl_driver_load(struct drm_device *dev, unsigned long flags);
335int qxl_driver_unload(struct drm_device *dev);
336
337int qxl_modeset_init(struct qxl_device *qdev);
338void qxl_modeset_fini(struct qxl_device *qdev);
339
340int qxl_bo_init(struct qxl_device *qdev);
341void qxl_bo_fini(struct qxl_device *qdev);
342
c9fdda2a 343void qxl_reinit_memslots(struct qxl_device *qdev);
b86487a6 344int qxl_surf_evict(struct qxl_device *qdev);
d84300bf 345int qxl_vram_evict(struct qxl_device *qdev);
c9fdda2a 346
f64122c1
DA
347struct qxl_ring *qxl_ring_create(struct qxl_ring_header *header,
348 int element_size,
349 int n_elements,
350 int prod_notify,
351 bool set_prod_notify,
352 wait_queue_head_t *push_event);
353void qxl_ring_free(struct qxl_ring *ring);
1e209117
DA
354void qxl_ring_init_hdr(struct qxl_ring *ring);
355int qxl_check_idle(struct qxl_ring *ring);
f64122c1
DA
356
357static inline void *
358qxl_fb_virtual_address(struct qxl_device *qdev, unsigned long physical)
359{
360 QXL_INFO(qdev, "not implemented (%lu)\n", physical);
361 return 0;
362}
363
364static inline uint64_t
365qxl_bo_physical_address(struct qxl_device *qdev, struct qxl_bo *bo,
366 unsigned long offset)
367{
368 int slot_id = bo->type == QXL_GEM_DOMAIN_VRAM ? qdev->main_mem_slot : qdev->surfaces_mem_slot;
369 struct qxl_memslot *slot = &(qdev->mem_slots[slot_id]);
370
371 /* TODO - need to hold one of the locks to read tbo.offset */
372 return slot->high_bits | (bo->tbo.offset + offset);
373}
374
375/* qxl_fb.c */
376#define QXLFB_CONN_LIMIT 1
377
378int qxl_fbdev_init(struct qxl_device *qdev);
379void qxl_fbdev_fini(struct qxl_device *qdev);
380int qxl_get_handle_for_primary_fb(struct qxl_device *qdev,
381 struct drm_file *file_priv,
382 uint32_t *handle);
b86487a6 383void qxl_fbdev_set_suspend(struct qxl_device *qdev, int state);
f64122c1
DA
384
385/* qxl_display.c */
386int
387qxl_framebuffer_init(struct drm_device *dev,
388 struct qxl_framebuffer *rfb,
389 struct drm_mode_fb_cmd2 *mode_cmd,
390 struct drm_gem_object *obj);
391void qxl_display_read_client_monitors_config(struct qxl_device *qdev);
392void qxl_send_monitors_config(struct qxl_device *qdev);
2bd6ce84
DA
393int qxl_create_monitors_object(struct qxl_device *qdev);
394int qxl_destroy_monitors_object(struct qxl_device *qdev);
f64122c1
DA
395
396/* used by qxl_debugfs only */
397void qxl_crtc_set_from_monitors_config(struct qxl_device *qdev);
398void qxl_alloc_client_monitors_config(struct qxl_device *qdev, unsigned count);
399
400/* qxl_gem.c */
401int qxl_gem_init(struct qxl_device *qdev);
402void 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);
f64122c1
DA
408int 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);
f64122c1
DA
415void 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);
f64122c1
DA
426int 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
8002db63
DA
438int 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
f64122c1
DA
451void 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,
07f8d9bd 456 unsigned offset,
f64122c1
DA
457 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
f64122c1
DA
471union 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);
8002db63
DA
476int 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);
f64122c1
DA
480
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);
8002db63 488
f64122c1
DA
489int
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);
8002db63
DA
495int qxl_alloc_bo_reserved(struct qxl_device *qdev,
496 struct qxl_release *release,
497 unsigned long size,
f64122c1
DA
498 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
f64122c1
DA
518void qxl_release_free(struct qxl_device *qdev,
519 struct qxl_release *release);
8002db63 520
f64122c1
DA
521/* 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);
532
47c12968
AP
533/* qxl_prime.c */
534int qxl_gem_prime_pin(struct drm_gem_object *obj);
535void qxl_gem_prime_unpin(struct drm_gem_object *obj);
536struct sg_table *qxl_gem_prime_get_sg_table(struct drm_gem_object *obj);
537struct drm_gem_object *qxl_gem_prime_import_sg_table(
538 struct drm_device *dev, size_t size,
539 struct sg_table *sgt);
540void *qxl_gem_prime_vmap(struct drm_gem_object *obj);
541void qxl_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
542int qxl_gem_prime_mmap(struct drm_gem_object *obj,
543 struct vm_area_struct *vma);
544
f64122c1
DA
545/* qxl_irq.c */
546int qxl_irq_init(struct qxl_device *qdev);
e9f0d76f 547irqreturn_t qxl_irq_handler(int irq, void *arg);
f64122c1
DA
548
549/* qxl_fb.c */
550int qxl_fb_init(struct qxl_device *qdev);
b86487a6 551bool qxl_fbdev_qobj_is_fb(struct qxl_device *qdev, struct qxl_bo *qobj);
f64122c1
DA
552
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);
572int qxl_update_surface(struct qxl_device *qdev, struct qxl_bo *surf);
573
f64122c1 574#endif