exynos_drm.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* exynos_drm.h
  2. *
  3. * Copyright (c) 2011 Samsung Electronics Co., Ltd.
  4. * Authors:
  5. * Inki Dae <inki.dae@samsung.com>
  6. * Joonyoung Shim <jy0922.shim@samsung.com>
  7. * Seung-Woo Kim <sw0312.kim@samsung.com>
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a
  10. * copy of this software and associated documentation files (the "Software"),
  11. * to deal in the Software without restriction, including without limitation
  12. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the next
  17. * paragraph) shall be included in all copies or substantial portions of the
  18. * Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  23. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  24. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  25. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #ifndef _EXYNOS_DRM_H_
  29. #define _EXYNOS_DRM_H_
  30. /**
  31. * User-desired buffer creation information structure.
  32. *
  33. * @size: user-desired memory allocation size.
  34. * - this size value would be page-aligned internally.
  35. * @flags: user request for setting memory type or cache attributes.
  36. * @handle: returned a handle to created gem object.
  37. * - this handle will be set by gem module of kernel side.
  38. */
  39. struct drm_exynos_gem_create {
  40. uint64_t size;
  41. unsigned int flags;
  42. unsigned int handle;
  43. };
  44. /**
  45. * A structure for getting buffer offset.
  46. *
  47. * @handle: a pointer to gem object created.
  48. * @pad: just padding to be 64-bit aligned.
  49. * @offset: relatived offset value of the memory region allocated.
  50. * - this value should be set by user.
  51. */
  52. struct drm_exynos_gem_map_off {
  53. unsigned int handle;
  54. unsigned int pad;
  55. uint64_t offset;
  56. };
  57. /**
  58. * A structure for mapping buffer.
  59. *
  60. * @handle: a handle to gem object created.
  61. * @size: memory size to be mapped.
  62. * @mapped: having user virtual address mmaped.
  63. * - this variable would be filled by exynos gem module
  64. * of kernel side with user virtual address which is allocated
  65. * by do_mmap().
  66. */
  67. struct drm_exynos_gem_mmap {
  68. unsigned int handle;
  69. unsigned int size;
  70. uint64_t mapped;
  71. };
  72. /**
  73. * A structure to gem information.
  74. *
  75. * @handle: a handle to gem object created.
  76. * @flags: flag value including memory type and cache attribute and
  77. * this value would be set by driver.
  78. * @size: size to memory region allocated by gem and this size would
  79. * be set by driver.
  80. */
  81. struct drm_exynos_gem_info {
  82. unsigned int handle;
  83. unsigned int flags;
  84. uint64_t size;
  85. };
  86. /**
  87. * A structure for user connection request of virtual display.
  88. *
  89. * @connection: indicate whether doing connetion or not by user.
  90. * @extensions: if this value is 1 then the vidi driver would need additional
  91. * 128bytes edid data.
  92. * @edid: the edid data pointer from user side.
  93. */
  94. struct drm_exynos_vidi_connection {
  95. unsigned int connection;
  96. unsigned int extensions;
  97. uint64_t edid;
  98. };
  99. struct drm_exynos_plane_set_zpos {
  100. __u32 plane_id;
  101. __s32 zpos;
  102. };
  103. /* memory type definitions. */
  104. enum e_drm_exynos_gem_mem_type {
  105. /* Physically Continuous memory and used as default. */
  106. EXYNOS_BO_CONTIG = 0 << 0,
  107. /* Physically Non-Continuous memory. */
  108. EXYNOS_BO_NONCONTIG = 1 << 0,
  109. /* non-cachable mapping and used as default. */
  110. EXYNOS_BO_NONCACHABLE = 0 << 1,
  111. /* cachable mapping. */
  112. EXYNOS_BO_CACHABLE = 1 << 1,
  113. /* write-combine mapping. */
  114. EXYNOS_BO_WC = 1 << 2,
  115. EXYNOS_BO_MASK = EXYNOS_BO_NONCONTIG | EXYNOS_BO_CACHABLE |
  116. EXYNOS_BO_WC
  117. };
  118. #define DRM_EXYNOS_GEM_CREATE 0x00
  119. #define DRM_EXYNOS_GEM_MAP_OFFSET 0x01
  120. #define DRM_EXYNOS_GEM_MMAP 0x02
  121. /* Reserved 0x03 ~ 0x05 for exynos specific gem ioctl */
  122. #define DRM_EXYNOS_GEM_GET 0x04
  123. #define DRM_EXYNOS_PLANE_SET_ZPOS 0x06
  124. #define DRM_EXYNOS_VIDI_CONNECTION 0x07
  125. #define DRM_IOCTL_EXYNOS_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + \
  126. DRM_EXYNOS_GEM_CREATE, struct drm_exynos_gem_create)
  127. #define DRM_IOCTL_EXYNOS_GEM_MAP_OFFSET DRM_IOWR(DRM_COMMAND_BASE + \
  128. DRM_EXYNOS_GEM_MAP_OFFSET, struct drm_exynos_gem_map_off)
  129. #define DRM_IOCTL_EXYNOS_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + \
  130. DRM_EXYNOS_GEM_MMAP, struct drm_exynos_gem_mmap)
  131. #define DRM_IOCTL_EXYNOS_GEM_GET DRM_IOWR(DRM_COMMAND_BASE + \
  132. DRM_EXYNOS_GEM_GET, struct drm_exynos_gem_info)
  133. #define DRM_IOCTL_EXYNOS_PLANE_SET_ZPOS DRM_IOWR(DRM_COMMAND_BASE + \
  134. DRM_EXYNOS_PLANE_SET_ZPOS, struct drm_exynos_plane_set_zpos)
  135. #define DRM_IOCTL_EXYNOS_VIDI_CONNECTION DRM_IOWR(DRM_COMMAND_BASE + \
  136. DRM_EXYNOS_VIDI_CONNECTION, struct drm_exynos_vidi_connection)
  137. #ifdef __KERNEL__
  138. /**
  139. * A structure for lcd panel information.
  140. *
  141. * @timing: default video mode for initializing
  142. * @width_mm: physical size of lcd width.
  143. * @height_mm: physical size of lcd height.
  144. */
  145. struct exynos_drm_panel_info {
  146. struct fb_videomode timing;
  147. u32 width_mm;
  148. u32 height_mm;
  149. };
  150. /**
  151. * Platform Specific Structure for DRM based FIMD.
  152. *
  153. * @panel: default panel info for initializing
  154. * @default_win: default window layer number to be used for UI.
  155. * @bpp: default bit per pixel.
  156. */
  157. struct exynos_drm_fimd_pdata {
  158. struct exynos_drm_panel_info panel;
  159. u32 vidcon0;
  160. u32 vidcon1;
  161. unsigned int default_win;
  162. unsigned int bpp;
  163. };
  164. /**
  165. * Platform Specific Structure for DRM based HDMI.
  166. *
  167. * @hdmi_dev: device point to specific hdmi driver.
  168. * @mixer_dev: device point to specific mixer driver.
  169. *
  170. * this structure is used for common hdmi driver and each device object
  171. * would be used to access specific device driver(hdmi or mixer driver)
  172. */
  173. struct exynos_drm_common_hdmi_pd {
  174. struct device *hdmi_dev;
  175. struct device *mixer_dev;
  176. };
  177. /**
  178. * Platform Specific Structure for DRM based HDMI core.
  179. *
  180. * @timing: default video mode for initializing
  181. * @default_win: default window layer number to be used for UI.
  182. * @bpp: default bit per pixel.
  183. * @is_v13: set if hdmi version 13 is.
  184. */
  185. struct exynos_drm_hdmi_pdata {
  186. struct fb_videomode timing;
  187. unsigned int default_win;
  188. unsigned int bpp;
  189. unsigned int is_v13:1;
  190. };
  191. #endif /* __KERNEL__ */
  192. #endif /* _EXYNOS_DRM_H_ */