msm_drv.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. /*
  2. * Copyright (C) 2013 Red Hat
  3. * Author: Rob Clark <robdclark@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published by
  7. * the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef __MSM_DRV_H__
  18. #define __MSM_DRV_H__
  19. #include <linux/kernel.h>
  20. #include <linux/clk.h>
  21. #include <linux/cpufreq.h>
  22. #include <linux/module.h>
  23. #include <linux/component.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/pm.h>
  26. #include <linux/pm_runtime.h>
  27. #include <linux/slab.h>
  28. #include <linux/list.h>
  29. #include <linux/iommu.h>
  30. #include <linux/types.h>
  31. #include <linux/of_graph.h>
  32. #include <asm/sizes.h>
  33. #ifndef CONFIG_OF
  34. #include <mach/board.h>
  35. #include <mach/socinfo.h>
  36. #include <mach/iommu_domains.h>
  37. #endif
  38. #include <drm/drmP.h>
  39. #include <drm/drm_atomic.h>
  40. #include <drm/drm_atomic_helper.h>
  41. #include <drm/drm_crtc_helper.h>
  42. #include <drm/drm_plane_helper.h>
  43. #include <drm/drm_fb_helper.h>
  44. #include <drm/msm_drm.h>
  45. #include <drm/drm_gem.h>
  46. struct msm_kms;
  47. struct msm_gpu;
  48. struct msm_mmu;
  49. struct msm_rd_state;
  50. struct msm_perf_state;
  51. struct msm_gem_submit;
  52. #define NUM_DOMAINS 2 /* one for KMS, then one per gpu core (?) */
  53. struct msm_file_private {
  54. /* currently we don't do anything useful with this.. but when
  55. * per-context address spaces are supported we'd keep track of
  56. * the context's page-tables here.
  57. */
  58. int dummy;
  59. };
  60. enum msm_mdp_plane_property {
  61. PLANE_PROP_ZPOS,
  62. PLANE_PROP_ALPHA,
  63. PLANE_PROP_PREMULTIPLIED,
  64. PLANE_PROP_MAX_NUM
  65. };
  66. struct msm_vblank_ctrl {
  67. struct work_struct work;
  68. struct list_head event_list;
  69. spinlock_t lock;
  70. };
  71. struct msm_drm_private {
  72. struct msm_kms *kms;
  73. /* subordinate devices, if present: */
  74. struct platform_device *gpu_pdev;
  75. /* possibly this should be in the kms component, but it is
  76. * shared by both mdp4 and mdp5..
  77. */
  78. struct hdmi *hdmi;
  79. /* eDP is for mdp5 only, but kms has not been created
  80. * when edp_bind() and edp_init() are called. Here is the only
  81. * place to keep the edp instance.
  82. */
  83. struct msm_edp *edp;
  84. /* DSI is shared by mdp4 and mdp5 */
  85. struct msm_dsi *dsi[2];
  86. /* when we have more than one 'msm_gpu' these need to be an array: */
  87. struct msm_gpu *gpu;
  88. struct msm_file_private *lastctx;
  89. struct drm_fb_helper *fbdev;
  90. uint32_t next_fence, completed_fence;
  91. wait_queue_head_t fence_event;
  92. struct msm_rd_state *rd;
  93. struct msm_perf_state *perf;
  94. /* list of GEM objects: */
  95. struct list_head inactive_list;
  96. struct workqueue_struct *wq;
  97. /* callbacks deferred until bo is inactive: */
  98. struct list_head fence_cbs;
  99. /* crtcs pending async atomic updates: */
  100. uint32_t pending_crtcs;
  101. wait_queue_head_t pending_crtcs_event;
  102. /* registered MMUs: */
  103. unsigned int num_mmus;
  104. struct msm_mmu *mmus[NUM_DOMAINS];
  105. unsigned int num_planes;
  106. struct drm_plane *planes[8];
  107. unsigned int num_crtcs;
  108. struct drm_crtc *crtcs[8];
  109. unsigned int num_encoders;
  110. struct drm_encoder *encoders[8];
  111. unsigned int num_bridges;
  112. struct drm_bridge *bridges[8];
  113. unsigned int num_connectors;
  114. struct drm_connector *connectors[8];
  115. /* Properties */
  116. struct drm_property *plane_property[PLANE_PROP_MAX_NUM];
  117. /* VRAM carveout, used when no IOMMU: */
  118. struct {
  119. unsigned long size;
  120. dma_addr_t paddr;
  121. /* NOTE: mm managed at the page level, size is in # of pages
  122. * and position mm_node->start is in # of pages:
  123. */
  124. struct drm_mm mm;
  125. } vram;
  126. struct msm_vblank_ctrl vblank_ctrl;
  127. };
  128. struct msm_format {
  129. uint32_t pixel_format;
  130. };
  131. /* callback from wq once fence has passed: */
  132. struct msm_fence_cb {
  133. struct work_struct work;
  134. uint32_t fence;
  135. void (*func)(struct msm_fence_cb *cb);
  136. };
  137. void __msm_fence_worker(struct work_struct *work);
  138. #define INIT_FENCE_CB(_cb, _func) do { \
  139. INIT_WORK(&(_cb)->work, __msm_fence_worker); \
  140. (_cb)->func = _func; \
  141. } while (0)
  142. int msm_atomic_check(struct drm_device *dev,
  143. struct drm_atomic_state *state);
  144. int msm_atomic_commit(struct drm_device *dev,
  145. struct drm_atomic_state *state, bool async);
  146. int msm_register_mmu(struct drm_device *dev, struct msm_mmu *mmu);
  147. int msm_wait_fence(struct drm_device *dev, uint32_t fence,
  148. ktime_t *timeout, bool interruptible);
  149. int msm_queue_fence_cb(struct drm_device *dev,
  150. struct msm_fence_cb *cb, uint32_t fence);
  151. void msm_update_fence(struct drm_device *dev, uint32_t fence);
  152. int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
  153. struct drm_file *file);
  154. int msm_gem_mmap_obj(struct drm_gem_object *obj,
  155. struct vm_area_struct *vma);
  156. int msm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
  157. int msm_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
  158. uint64_t msm_gem_mmap_offset(struct drm_gem_object *obj);
  159. int msm_gem_get_iova_locked(struct drm_gem_object *obj, int id,
  160. uint32_t *iova);
  161. int msm_gem_get_iova(struct drm_gem_object *obj, int id, uint32_t *iova);
  162. uint32_t msm_gem_iova(struct drm_gem_object *obj, int id);
  163. struct page **msm_gem_get_pages(struct drm_gem_object *obj);
  164. void msm_gem_put_pages(struct drm_gem_object *obj);
  165. void msm_gem_put_iova(struct drm_gem_object *obj, int id);
  166. int msm_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
  167. struct drm_mode_create_dumb *args);
  168. int msm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
  169. uint32_t handle, uint64_t *offset);
  170. struct sg_table *msm_gem_prime_get_sg_table(struct drm_gem_object *obj);
  171. void *msm_gem_prime_vmap(struct drm_gem_object *obj);
  172. void msm_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
  173. int msm_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma);
  174. struct reservation_object *msm_gem_prime_res_obj(struct drm_gem_object *obj);
  175. struct drm_gem_object *msm_gem_prime_import_sg_table(struct drm_device *dev,
  176. struct dma_buf_attachment *attach, struct sg_table *sg);
  177. int msm_gem_prime_pin(struct drm_gem_object *obj);
  178. void msm_gem_prime_unpin(struct drm_gem_object *obj);
  179. void *msm_gem_vaddr_locked(struct drm_gem_object *obj);
  180. void *msm_gem_vaddr(struct drm_gem_object *obj);
  181. int msm_gem_queue_inactive_cb(struct drm_gem_object *obj,
  182. struct msm_fence_cb *cb);
  183. void msm_gem_move_to_active(struct drm_gem_object *obj,
  184. struct msm_gpu *gpu, bool write, uint32_t fence);
  185. void msm_gem_move_to_inactive(struct drm_gem_object *obj);
  186. int msm_gem_cpu_prep(struct drm_gem_object *obj, uint32_t op,
  187. ktime_t *timeout);
  188. int msm_gem_cpu_fini(struct drm_gem_object *obj);
  189. void msm_gem_free_object(struct drm_gem_object *obj);
  190. int msm_gem_new_handle(struct drm_device *dev, struct drm_file *file,
  191. uint32_t size, uint32_t flags, uint32_t *handle);
  192. struct drm_gem_object *msm_gem_new(struct drm_device *dev,
  193. uint32_t size, uint32_t flags);
  194. struct drm_gem_object *msm_gem_import(struct drm_device *dev,
  195. uint32_t size, struct sg_table *sgt);
  196. int msm_framebuffer_prepare(struct drm_framebuffer *fb, int id);
  197. void msm_framebuffer_cleanup(struct drm_framebuffer *fb, int id);
  198. uint32_t msm_framebuffer_iova(struct drm_framebuffer *fb, int id, int plane);
  199. struct drm_gem_object *msm_framebuffer_bo(struct drm_framebuffer *fb, int plane);
  200. const struct msm_format *msm_framebuffer_format(struct drm_framebuffer *fb);
  201. struct drm_framebuffer *msm_framebuffer_init(struct drm_device *dev,
  202. struct drm_mode_fb_cmd2 *mode_cmd, struct drm_gem_object **bos);
  203. struct drm_framebuffer *msm_framebuffer_create(struct drm_device *dev,
  204. struct drm_file *file, struct drm_mode_fb_cmd2 *mode_cmd);
  205. struct drm_fb_helper *msm_fbdev_init(struct drm_device *dev);
  206. struct hdmi;
  207. int hdmi_modeset_init(struct hdmi *hdmi, struct drm_device *dev,
  208. struct drm_encoder *encoder);
  209. void __init hdmi_register(void);
  210. void __exit hdmi_unregister(void);
  211. struct msm_edp;
  212. void __init msm_edp_register(void);
  213. void __exit msm_edp_unregister(void);
  214. int msm_edp_modeset_init(struct msm_edp *edp, struct drm_device *dev,
  215. struct drm_encoder *encoder);
  216. struct msm_dsi;
  217. enum msm_dsi_encoder_id {
  218. MSM_DSI_VIDEO_ENCODER_ID = 0,
  219. MSM_DSI_CMD_ENCODER_ID = 1,
  220. MSM_DSI_ENCODER_NUM = 2
  221. };
  222. #ifdef CONFIG_DRM_MSM_DSI
  223. void __init msm_dsi_register(void);
  224. void __exit msm_dsi_unregister(void);
  225. int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
  226. struct drm_encoder *encoders[MSM_DSI_ENCODER_NUM]);
  227. #else
  228. static inline void __init msm_dsi_register(void)
  229. {
  230. }
  231. static inline void __exit msm_dsi_unregister(void)
  232. {
  233. }
  234. static inline int msm_dsi_modeset_init(struct msm_dsi *msm_dsi,
  235. struct drm_device *dev,
  236. struct drm_encoder *encoders[MSM_DSI_ENCODER_NUM])
  237. {
  238. return -EINVAL;
  239. }
  240. #endif
  241. #ifdef CONFIG_DEBUG_FS
  242. void msm_gem_describe(struct drm_gem_object *obj, struct seq_file *m);
  243. void msm_gem_describe_objects(struct list_head *list, struct seq_file *m);
  244. void msm_framebuffer_describe(struct drm_framebuffer *fb, struct seq_file *m);
  245. int msm_debugfs_late_init(struct drm_device *dev);
  246. int msm_rd_debugfs_init(struct drm_minor *minor);
  247. void msm_rd_debugfs_cleanup(struct drm_minor *minor);
  248. void msm_rd_dump_submit(struct msm_gem_submit *submit);
  249. int msm_perf_debugfs_init(struct drm_minor *minor);
  250. void msm_perf_debugfs_cleanup(struct drm_minor *minor);
  251. #else
  252. static inline int msm_debugfs_late_init(struct drm_device *dev) { return 0; }
  253. static inline void msm_rd_dump_submit(struct msm_gem_submit *submit) {}
  254. #endif
  255. void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
  256. const char *dbgname);
  257. void msm_writel(u32 data, void __iomem *addr);
  258. u32 msm_readl(const void __iomem *addr);
  259. #define DBG(fmt, ...) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)
  260. #define VERB(fmt, ...) if (0) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)
  261. static inline bool fence_completed(struct drm_device *dev, uint32_t fence)
  262. {
  263. struct msm_drm_private *priv = dev->dev_private;
  264. return priv->completed_fence >= fence;
  265. }
  266. static inline int align_pitch(int width, int bpp)
  267. {
  268. int bytespp = (bpp + 7) / 8;
  269. /* adreno needs pitch aligned to 32 pixels: */
  270. return bytespp * ALIGN(width, 32);
  271. }
  272. /* for the generated headers: */
  273. #define INVALID_IDX(idx) ({BUG(); 0;})
  274. #define fui(x) ({BUG(); 0;})
  275. #define util_float_to_half(x) ({BUG(); 0;})
  276. #define FIELD(val, name) (((val) & name ## __MASK) >> name ## __SHIFT)
  277. /* for conditionally setting boolean flag(s): */
  278. #define COND(bool, val) ((bool) ? (val) : 0)
  279. #endif /* __MSM_DRV_H__ */