qxl_drv.h 16 KB

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