qxl_drv.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  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. #ifndef QXL_DRV_H
  26. #define QXL_DRV_H
  27. /*
  28. * Definitions taken from spice-protocol, plus kernel driver specific bits.
  29. */
  30. #include <linux/fence.h>
  31. #include <linux/workqueue.h>
  32. #include <linux/firmware.h>
  33. #include <linux/platform_device.h>
  34. #include "drmP.h"
  35. #include "drm_crtc.h"
  36. #include <ttm/ttm_bo_api.h>
  37. #include <ttm/ttm_bo_driver.h>
  38. #include <ttm/ttm_placement.h>
  39. #include <ttm/ttm_module.h>
  40. #include <drm/drm_gem.h>
  41. /* just for ttm_validate_buffer */
  42. #include <ttm/ttm_execbuf_util.h>
  43. #include <drm/qxl_drm.h>
  44. #include "qxl_dev.h"
  45. #define DRIVER_AUTHOR "Dave Airlie"
  46. #define DRIVER_NAME "qxl"
  47. #define DRIVER_DESC "RH QXL"
  48. #define DRIVER_DATE "20120117"
  49. #define DRIVER_MAJOR 0
  50. #define DRIVER_MINOR 1
  51. #define DRIVER_PATCHLEVEL 0
  52. #define QXL_DEBUGFS_MAX_COMPONENTS 32
  53. extern int qxl_log_level;
  54. extern int qxl_num_crtc;
  55. enum {
  56. QXL_INFO_LEVEL = 1,
  57. QXL_DEBUG_LEVEL = 2,
  58. };
  59. #define QXL_INFO(qdev, fmt, ...) do { \
  60. if (qxl_log_level >= QXL_INFO_LEVEL) { \
  61. qxl_io_log(qdev, fmt, __VA_ARGS__); \
  62. } \
  63. } while (0)
  64. #define QXL_DEBUG(qdev, fmt, ...) do { \
  65. if (qxl_log_level >= QXL_DEBUG_LEVEL) { \
  66. qxl_io_log(qdev, fmt, __VA_ARGS__); \
  67. } \
  68. } while (0)
  69. #define QXL_INFO_ONCE(qdev, fmt, ...) do { \
  70. static int done; \
  71. if (!done) { \
  72. done = 1; \
  73. QXL_INFO(qdev, fmt, __VA_ARGS__); \
  74. } \
  75. } while (0)
  76. #define DRM_FILE_OFFSET 0x100000000ULL
  77. #define DRM_FILE_PAGE_OFFSET (DRM_FILE_OFFSET >> PAGE_SHIFT)
  78. #define QXL_INTERRUPT_MASK (\
  79. QXL_INTERRUPT_DISPLAY |\
  80. QXL_INTERRUPT_CURSOR |\
  81. QXL_INTERRUPT_IO_CMD |\
  82. QXL_INTERRUPT_CLIENT_MONITORS_CONFIG)
  83. struct qxl_bo {
  84. /* Protected by gem.mutex */
  85. struct list_head list;
  86. /* Protected by tbo.reserved */
  87. struct ttm_place placements[3];
  88. struct ttm_placement placement;
  89. struct ttm_buffer_object tbo;
  90. struct ttm_bo_kmap_obj kmap;
  91. unsigned pin_count;
  92. void *kptr;
  93. int type;
  94. /* Constant after initialization */
  95. struct drm_gem_object gem_base;
  96. bool is_primary; /* is this now a primary surface */
  97. bool hw_surf_alloc;
  98. struct qxl_surface surf;
  99. uint32_t surface_id;
  100. struct qxl_release *surf_create;
  101. };
  102. #define gem_to_qxl_bo(gobj) container_of((gobj), struct qxl_bo, gem_base)
  103. #define to_qxl_bo(tobj) container_of((tobj), struct qxl_bo, tbo)
  104. struct qxl_gem {
  105. struct mutex mutex;
  106. struct list_head objects;
  107. };
  108. struct qxl_bo_list {
  109. struct ttm_validate_buffer tv;
  110. };
  111. struct qxl_crtc {
  112. struct drm_crtc base;
  113. int index;
  114. int cur_x;
  115. int cur_y;
  116. int hot_spot_x;
  117. int hot_spot_y;
  118. struct qxl_bo *cursor_bo;
  119. };
  120. struct qxl_output {
  121. int index;
  122. struct drm_connector base;
  123. struct drm_encoder enc;
  124. };
  125. struct qxl_framebuffer {
  126. struct drm_framebuffer base;
  127. struct drm_gem_object *obj;
  128. };
  129. #define to_qxl_crtc(x) container_of(x, struct qxl_crtc, base)
  130. #define drm_connector_to_qxl_output(x) container_of(x, struct qxl_output, base)
  131. #define drm_encoder_to_qxl_output(x) container_of(x, struct qxl_output, enc)
  132. #define to_qxl_framebuffer(x) container_of(x, struct qxl_framebuffer, base)
  133. struct qxl_mman {
  134. struct ttm_bo_global_ref bo_global_ref;
  135. struct drm_global_reference mem_global_ref;
  136. bool mem_global_referenced;
  137. struct ttm_bo_device bdev;
  138. };
  139. struct qxl_mode_info {
  140. int num_modes;
  141. struct qxl_mode *modes;
  142. bool mode_config_initialized;
  143. /* pointer to fbdev info structure */
  144. struct qxl_fbdev *qfbdev;
  145. };
  146. struct qxl_memslot {
  147. uint8_t generation;
  148. uint64_t start_phys_addr;
  149. uint64_t end_phys_addr;
  150. uint64_t high_bits;
  151. };
  152. enum {
  153. QXL_RELEASE_DRAWABLE,
  154. QXL_RELEASE_SURFACE_CMD,
  155. QXL_RELEASE_CURSOR_CMD,
  156. };
  157. /* drm_ prefix to differentiate from qxl_release_info in
  158. * spice-protocol/qxl_dev.h */
  159. #define QXL_MAX_RES 96
  160. struct qxl_release {
  161. struct fence base;
  162. int id;
  163. int type;
  164. uint32_t release_offset;
  165. uint32_t surface_release_id;
  166. struct ww_acquire_ctx ticket;
  167. struct list_head bos;
  168. };
  169. struct qxl_drm_chunk {
  170. struct list_head head;
  171. struct qxl_bo *bo;
  172. };
  173. struct qxl_drm_image {
  174. struct qxl_bo *bo;
  175. struct list_head chunk_list;
  176. };
  177. struct qxl_fb_image {
  178. struct qxl_device *qdev;
  179. uint32_t pseudo_palette[16];
  180. struct fb_image fb_image;
  181. uint32_t visual;
  182. };
  183. struct qxl_draw_fill {
  184. struct qxl_device *qdev;
  185. struct qxl_rect rect;
  186. uint32_t color;
  187. uint16_t rop;
  188. };
  189. /*
  190. * Debugfs
  191. */
  192. struct qxl_debugfs {
  193. struct drm_info_list *files;
  194. unsigned num_files;
  195. };
  196. int qxl_debugfs_add_files(struct qxl_device *rdev,
  197. struct drm_info_list *files,
  198. unsigned nfiles);
  199. int qxl_debugfs_fence_init(struct qxl_device *rdev);
  200. void qxl_debugfs_remove_files(struct qxl_device *qdev);
  201. struct qxl_device;
  202. struct qxl_device {
  203. struct device *dev;
  204. struct drm_device *ddev;
  205. struct pci_dev *pdev;
  206. unsigned long flags;
  207. resource_size_t vram_base, vram_size;
  208. resource_size_t surfaceram_base, surfaceram_size;
  209. resource_size_t rom_base, rom_size;
  210. struct qxl_rom *rom;
  211. struct qxl_mode *modes;
  212. struct qxl_bo *monitors_config_bo;
  213. struct qxl_monitors_config *monitors_config;
  214. /* last received client_monitors_config */
  215. struct qxl_monitors_config *client_monitors_config;
  216. int io_base;
  217. void *ram;
  218. struct qxl_mman mman;
  219. struct qxl_gem gem;
  220. struct qxl_mode_info mode_info;
  221. struct fb_info *fbdev_info;
  222. struct qxl_framebuffer *fbdev_qfb;
  223. void *ram_physical;
  224. struct qxl_ring *release_ring;
  225. struct qxl_ring *command_ring;
  226. struct qxl_ring *cursor_ring;
  227. struct qxl_ram_header *ram_header;
  228. bool primary_created;
  229. struct qxl_memslot *mem_slots;
  230. uint8_t n_mem_slots;
  231. uint8_t main_mem_slot;
  232. uint8_t surfaces_mem_slot;
  233. uint8_t slot_id_bits;
  234. uint8_t slot_gen_bits;
  235. uint64_t va_slot_mask;
  236. spinlock_t release_lock;
  237. struct idr release_idr;
  238. uint32_t release_seqno;
  239. spinlock_t release_idr_lock;
  240. struct mutex async_io_mutex;
  241. unsigned int last_sent_io_cmd;
  242. /* interrupt handling */
  243. atomic_t irq_received;
  244. atomic_t irq_received_display;
  245. atomic_t irq_received_cursor;
  246. atomic_t irq_received_io_cmd;
  247. unsigned irq_received_error;
  248. wait_queue_head_t display_event;
  249. wait_queue_head_t cursor_event;
  250. wait_queue_head_t io_cmd_event;
  251. struct work_struct client_monitors_config_work;
  252. /* debugfs */
  253. struct qxl_debugfs debugfs[QXL_DEBUGFS_MAX_COMPONENTS];
  254. unsigned debugfs_count;
  255. struct mutex update_area_mutex;
  256. struct idr surf_id_idr;
  257. spinlock_t surf_id_idr_lock;
  258. int last_alloced_surf_id;
  259. struct mutex surf_evict_mutex;
  260. struct io_mapping *vram_mapping;
  261. struct io_mapping *surface_mapping;
  262. /* */
  263. struct mutex release_mutex;
  264. struct qxl_bo *current_release_bo[3];
  265. int current_release_bo_offset[3];
  266. struct work_struct gc_work;
  267. struct drm_property *hotplug_mode_update_property;
  268. int monitors_config_width;
  269. int monitors_config_height;
  270. };
  271. /* forward declaration for QXL_INFO_IO */
  272. __printf(2,3) void qxl_io_log(struct qxl_device *qdev, const char *fmt, ...);
  273. extern const struct drm_ioctl_desc qxl_ioctls[];
  274. extern int qxl_max_ioctl;
  275. int qxl_driver_load(struct drm_device *dev, unsigned long flags);
  276. int qxl_driver_unload(struct drm_device *dev);
  277. int qxl_modeset_init(struct qxl_device *qdev);
  278. void qxl_modeset_fini(struct qxl_device *qdev);
  279. int qxl_bo_init(struct qxl_device *qdev);
  280. void qxl_bo_fini(struct qxl_device *qdev);
  281. void qxl_reinit_memslots(struct qxl_device *qdev);
  282. int qxl_surf_evict(struct qxl_device *qdev);
  283. int qxl_vram_evict(struct qxl_device *qdev);
  284. struct qxl_ring *qxl_ring_create(struct qxl_ring_header *header,
  285. int element_size,
  286. int n_elements,
  287. int prod_notify,
  288. bool set_prod_notify,
  289. wait_queue_head_t *push_event);
  290. void qxl_ring_free(struct qxl_ring *ring);
  291. void qxl_ring_init_hdr(struct qxl_ring *ring);
  292. int qxl_check_idle(struct qxl_ring *ring);
  293. static inline void *
  294. qxl_fb_virtual_address(struct qxl_device *qdev, unsigned long physical)
  295. {
  296. QXL_INFO(qdev, "not implemented (%lu)\n", physical);
  297. return 0;
  298. }
  299. static inline uint64_t
  300. qxl_bo_physical_address(struct qxl_device *qdev, struct qxl_bo *bo,
  301. unsigned long offset)
  302. {
  303. int slot_id = bo->type == QXL_GEM_DOMAIN_VRAM ? qdev->main_mem_slot : qdev->surfaces_mem_slot;
  304. struct qxl_memslot *slot = &(qdev->mem_slots[slot_id]);
  305. /* TODO - need to hold one of the locks to read tbo.offset */
  306. return slot->high_bits | (bo->tbo.offset + offset);
  307. }
  308. /* qxl_fb.c */
  309. #define QXLFB_CONN_LIMIT 1
  310. int qxl_fbdev_init(struct qxl_device *qdev);
  311. void qxl_fbdev_fini(struct qxl_device *qdev);
  312. int qxl_get_handle_for_primary_fb(struct qxl_device *qdev,
  313. struct drm_file *file_priv,
  314. uint32_t *handle);
  315. void qxl_fbdev_set_suspend(struct qxl_device *qdev, int state);
  316. /* qxl_display.c */
  317. void qxl_user_framebuffer_destroy(struct drm_framebuffer *fb);
  318. int
  319. qxl_framebuffer_init(struct drm_device *dev,
  320. struct qxl_framebuffer *rfb,
  321. const struct drm_mode_fb_cmd2 *mode_cmd,
  322. struct drm_gem_object *obj,
  323. const struct drm_framebuffer_funcs *funcs);
  324. void qxl_display_read_client_monitors_config(struct qxl_device *qdev);
  325. void qxl_send_monitors_config(struct qxl_device *qdev);
  326. int qxl_create_monitors_object(struct qxl_device *qdev);
  327. int qxl_destroy_monitors_object(struct qxl_device *qdev);
  328. /* used by qxl_debugfs only */
  329. void qxl_crtc_set_from_monitors_config(struct qxl_device *qdev);
  330. void qxl_alloc_client_monitors_config(struct qxl_device *qdev, unsigned count);
  331. /* qxl_gem.c */
  332. int qxl_gem_init(struct qxl_device *qdev);
  333. void qxl_gem_fini(struct qxl_device *qdev);
  334. int qxl_gem_object_create(struct qxl_device *qdev, int size,
  335. int alignment, int initial_domain,
  336. bool discardable, bool kernel,
  337. struct qxl_surface *surf,
  338. struct drm_gem_object **obj);
  339. int qxl_gem_object_create_with_handle(struct qxl_device *qdev,
  340. struct drm_file *file_priv,
  341. u32 domain,
  342. size_t size,
  343. struct qxl_surface *surf,
  344. struct qxl_bo **qobj,
  345. uint32_t *handle);
  346. void qxl_gem_object_free(struct drm_gem_object *gobj);
  347. int qxl_gem_object_open(struct drm_gem_object *obj, struct drm_file *file_priv);
  348. void qxl_gem_object_close(struct drm_gem_object *obj,
  349. struct drm_file *file_priv);
  350. void qxl_bo_force_delete(struct qxl_device *qdev);
  351. int qxl_bo_kmap(struct qxl_bo *bo, void **ptr);
  352. /* qxl_dumb.c */
  353. int qxl_mode_dumb_create(struct drm_file *file_priv,
  354. struct drm_device *dev,
  355. struct drm_mode_create_dumb *args);
  356. int qxl_mode_dumb_mmap(struct drm_file *filp,
  357. struct drm_device *dev,
  358. uint32_t handle, uint64_t *offset_p);
  359. /* qxl ttm */
  360. int qxl_ttm_init(struct qxl_device *qdev);
  361. void qxl_ttm_fini(struct qxl_device *qdev);
  362. int qxl_mmap(struct file *filp, struct vm_area_struct *vma);
  363. /* qxl image */
  364. int qxl_image_init(struct qxl_device *qdev,
  365. struct qxl_release *release,
  366. struct qxl_drm_image *dimage,
  367. const uint8_t *data,
  368. int x, int y, int width, int height,
  369. int depth, int stride);
  370. int
  371. qxl_image_alloc_objects(struct qxl_device *qdev,
  372. struct qxl_release *release,
  373. struct qxl_drm_image **image_ptr,
  374. int height, int stride);
  375. void qxl_image_free_objects(struct qxl_device *qdev, struct qxl_drm_image *dimage);
  376. void qxl_update_screen(struct qxl_device *qxl);
  377. /* qxl io operations (qxl_cmd.c) */
  378. void qxl_io_create_primary(struct qxl_device *qdev,
  379. unsigned offset,
  380. struct qxl_bo *bo);
  381. void qxl_io_destroy_primary(struct qxl_device *qdev);
  382. void qxl_io_memslot_add(struct qxl_device *qdev, uint8_t id);
  383. void qxl_io_notify_oom(struct qxl_device *qdev);
  384. int qxl_io_update_area(struct qxl_device *qdev, struct qxl_bo *surf,
  385. const struct qxl_rect *area);
  386. void qxl_io_reset(struct qxl_device *qdev);
  387. void qxl_io_monitors_config(struct qxl_device *qdev);
  388. int qxl_ring_push(struct qxl_ring *ring, const void *new_elt, bool interruptible);
  389. void qxl_io_flush_release(struct qxl_device *qdev);
  390. void qxl_io_flush_surfaces(struct qxl_device *qdev);
  391. union qxl_release_info *qxl_release_map(struct qxl_device *qdev,
  392. struct qxl_release *release);
  393. void qxl_release_unmap(struct qxl_device *qdev,
  394. struct qxl_release *release,
  395. union qxl_release_info *info);
  396. int qxl_release_list_add(struct qxl_release *release, struct qxl_bo *bo);
  397. int qxl_release_reserve_list(struct qxl_release *release, bool no_intr);
  398. void qxl_release_backoff_reserve_list(struct qxl_release *release);
  399. void qxl_release_fence_buffer_objects(struct qxl_release *release);
  400. int qxl_alloc_surface_release_reserved(struct qxl_device *qdev,
  401. enum qxl_surface_cmd_type surface_cmd_type,
  402. struct qxl_release *create_rel,
  403. struct qxl_release **release);
  404. int qxl_alloc_release_reserved(struct qxl_device *qdev, unsigned long size,
  405. int type, struct qxl_release **release,
  406. struct qxl_bo **rbo);
  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);
  413. int qxl_alloc_bo_reserved(struct qxl_device *qdev,
  414. struct qxl_release *release,
  415. unsigned long size,
  416. struct qxl_bo **_bo);
  417. /* qxl drawing commands */
  418. void qxl_draw_opaque_fb(const struct qxl_fb_image *qxl_fb_image,
  419. int stride /* filled in if 0 */);
  420. void qxl_draw_dirty_fb(struct qxl_device *qdev,
  421. struct qxl_framebuffer *qxl_fb,
  422. struct qxl_bo *bo,
  423. unsigned flags, unsigned color,
  424. struct drm_clip_rect *clips,
  425. unsigned num_clips, int inc);
  426. void qxl_draw_fill(struct qxl_draw_fill *qxl_draw_fill_rec);
  427. void qxl_draw_copyarea(struct qxl_device *qdev,
  428. u32 width, u32 height,
  429. u32 sx, u32 sy,
  430. u32 dx, u32 dy);
  431. void qxl_release_free(struct qxl_device *qdev,
  432. struct qxl_release *release);
  433. /* used by qxl_debugfs_release */
  434. struct qxl_release *qxl_release_from_id_locked(struct qxl_device *qdev,
  435. uint64_t id);
  436. bool qxl_queue_garbage_collect(struct qxl_device *qdev, bool flush);
  437. int qxl_garbage_collect(struct qxl_device *qdev);
  438. /* debugfs */
  439. int qxl_debugfs_init(struct drm_minor *minor);
  440. void qxl_debugfs_takedown(struct drm_minor *minor);
  441. /* qxl_prime.c */
  442. int qxl_gem_prime_pin(struct drm_gem_object *obj);
  443. void qxl_gem_prime_unpin(struct drm_gem_object *obj);
  444. struct sg_table *qxl_gem_prime_get_sg_table(struct drm_gem_object *obj);
  445. struct drm_gem_object *qxl_gem_prime_import_sg_table(
  446. struct drm_device *dev, struct dma_buf_attachment *attach,
  447. struct sg_table *sgt);
  448. void *qxl_gem_prime_vmap(struct drm_gem_object *obj);
  449. void qxl_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
  450. int qxl_gem_prime_mmap(struct drm_gem_object *obj,
  451. struct vm_area_struct *vma);
  452. /* qxl_irq.c */
  453. int qxl_irq_init(struct qxl_device *qdev);
  454. irqreturn_t qxl_irq_handler(int irq, void *arg);
  455. /* qxl_fb.c */
  456. bool qxl_fbdev_qobj_is_fb(struct qxl_device *qdev, struct qxl_bo *qobj);
  457. int qxl_debugfs_add_files(struct qxl_device *qdev,
  458. struct drm_info_list *files,
  459. unsigned nfiles);
  460. int qxl_surface_id_alloc(struct qxl_device *qdev,
  461. struct qxl_bo *surf);
  462. void qxl_surface_id_dealloc(struct qxl_device *qdev,
  463. uint32_t surface_id);
  464. int qxl_hw_surface_alloc(struct qxl_device *qdev,
  465. struct qxl_bo *surf,
  466. struct ttm_mem_reg *mem);
  467. int qxl_hw_surface_dealloc(struct qxl_device *qdev,
  468. struct qxl_bo *surf);
  469. int qxl_bo_check_id(struct qxl_device *qdev, struct qxl_bo *bo);
  470. struct qxl_drv_surface *
  471. qxl_surface_lookup(struct drm_device *dev, int surface_id);
  472. void qxl_surface_evict(struct qxl_device *qdev, struct qxl_bo *surf, bool freeing);
  473. int qxl_update_surface(struct qxl_device *qdev, struct qxl_bo *surf);
  474. #endif