Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 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 | |
| 29 | #ifndef _EXYNOS_DRM_H_ |
| 30 | #define _EXYNOS_DRM_H_ |
| 31 | |
| 32 | /** |
| 33 | * User-desired buffer creation information structure. |
| 34 | * |
Inki Dae | f088d5a | 2011-11-12 14:51:23 +0900 | [diff] [blame] | 35 | * @size: user-desired memory allocation size. |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 36 | * - this size value would be page-aligned internally. |
| 37 | * @flags: user request for setting memory type or cache attributes. |
Inki Dae | f088d5a | 2011-11-12 14:51:23 +0900 | [diff] [blame] | 38 | * @handle: returned a handle to created gem object. |
| 39 | * - this handle will be set by gem module of kernel side. |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 40 | */ |
| 41 | struct drm_exynos_gem_create { |
Inki Dae | f088d5a | 2011-11-12 14:51:23 +0900 | [diff] [blame] | 42 | uint64_t size; |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 43 | unsigned int flags; |
| 44 | unsigned int handle; |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | /** |
| 48 | * A structure for getting buffer offset. |
| 49 | * |
| 50 | * @handle: a pointer to gem object created. |
| 51 | * @pad: just padding to be 64-bit aligned. |
| 52 | * @offset: relatived offset value of the memory region allocated. |
| 53 | * - this value should be set by user. |
| 54 | */ |
| 55 | struct drm_exynos_gem_map_off { |
| 56 | unsigned int handle; |
| 57 | unsigned int pad; |
| 58 | uint64_t offset; |
| 59 | }; |
| 60 | |
| 61 | /** |
| 62 | * A structure for mapping buffer. |
| 63 | * |
| 64 | * @handle: a handle to gem object created. |
| 65 | * @size: memory size to be mapped. |
| 66 | * @mapped: having user virtual address mmaped. |
| 67 | * - this variable would be filled by exynos gem module |
| 68 | * of kernel side with user virtual address which is allocated |
| 69 | * by do_mmap(). |
| 70 | */ |
| 71 | struct drm_exynos_gem_mmap { |
| 72 | unsigned int handle; |
| 73 | unsigned int size; |
| 74 | uint64_t mapped; |
| 75 | }; |
| 76 | |
Inki Dae | b73d123 | 2012-03-21 10:55:26 +0900 | [diff] [blame] | 77 | /** |
Inki Dae | 40cd7e0 | 2012-05-04 15:51:17 +0900 | [diff] [blame] | 78 | * A structure to gem information. |
| 79 | * |
| 80 | * @handle: a handle to gem object created. |
| 81 | * @flags: flag value including memory type and cache attribute and |
| 82 | * this value would be set by driver. |
| 83 | * @size: size to memory region allocated by gem and this size would |
| 84 | * be set by driver. |
| 85 | */ |
| 86 | struct drm_exynos_gem_info { |
| 87 | unsigned int handle; |
| 88 | unsigned int flags; |
| 89 | uint64_t size; |
| 90 | }; |
| 91 | |
| 92 | /** |
Inki Dae | b73d123 | 2012-03-21 10:55:26 +0900 | [diff] [blame] | 93 | * A structure for user connection request of virtual display. |
| 94 | * |
| 95 | * @connection: indicate whether doing connetion or not by user. |
| 96 | * @extensions: if this value is 1 then the vidi driver would need additional |
| 97 | * 128bytes edid data. |
| 98 | * @edid: the edid data pointer from user side. |
| 99 | */ |
| 100 | struct drm_exynos_vidi_connection { |
| 101 | unsigned int connection; |
| 102 | unsigned int extensions; |
Inki Dae | 490aa60e | 2012-04-12 16:42:54 +0900 | [diff] [blame] | 103 | uint64_t edid; |
Inki Dae | b73d123 | 2012-03-21 10:55:26 +0900 | [diff] [blame] | 104 | }; |
| 105 | |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 106 | struct drm_exynos_plane_set_zpos { |
| 107 | __u32 plane_id; |
| 108 | __s32 zpos; |
| 109 | }; |
| 110 | |
Inki Dae | 2b35892 | 2012-03-16 18:47:05 +0900 | [diff] [blame] | 111 | /* memory type definitions. */ |
| 112 | enum e_drm_exynos_gem_mem_type { |
Inki Dae | c01d73fa | 2012-04-23 19:26:34 +0900 | [diff] [blame] | 113 | /* Physically Continuous memory and used as default. */ |
| 114 | EXYNOS_BO_CONTIG = 0 << 0, |
Inki Dae | 2b35892 | 2012-03-16 18:47:05 +0900 | [diff] [blame] | 115 | /* Physically Non-Continuous memory. */ |
Inki Dae | dcf9af8 | 2012-04-03 21:27:58 +0900 | [diff] [blame] | 116 | EXYNOS_BO_NONCONTIG = 1 << 0, |
Inki Dae | c01d73fa | 2012-04-23 19:26:34 +0900 | [diff] [blame] | 117 | /* non-cachable mapping and used as default. */ |
| 118 | EXYNOS_BO_NONCACHABLE = 0 << 1, |
| 119 | /* cachable mapping. */ |
| 120 | EXYNOS_BO_CACHABLE = 1 << 1, |
| 121 | /* write-combine mapping. */ |
| 122 | EXYNOS_BO_WC = 1 << 2, |
| 123 | EXYNOS_BO_MASK = EXYNOS_BO_NONCONTIG | EXYNOS_BO_CACHABLE | |
| 124 | EXYNOS_BO_WC |
Inki Dae | 2b35892 | 2012-03-16 18:47:05 +0900 | [diff] [blame] | 125 | }; |
| 126 | |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 127 | #define DRM_EXYNOS_GEM_CREATE 0x00 |
| 128 | #define DRM_EXYNOS_GEM_MAP_OFFSET 0x01 |
| 129 | #define DRM_EXYNOS_GEM_MMAP 0x02 |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 130 | /* Reserved 0x03 ~ 0x05 for exynos specific gem ioctl */ |
Inki Dae | 40cd7e0 | 2012-05-04 15:51:17 +0900 | [diff] [blame] | 131 | #define DRM_EXYNOS_GEM_GET 0x04 |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 132 | #define DRM_EXYNOS_PLANE_SET_ZPOS 0x06 |
Inki Dae | b73d123 | 2012-03-21 10:55:26 +0900 | [diff] [blame] | 133 | #define DRM_EXYNOS_VIDI_CONNECTION 0x07 |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 134 | |
| 135 | #define DRM_IOCTL_EXYNOS_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + \ |
| 136 | DRM_EXYNOS_GEM_CREATE, struct drm_exynos_gem_create) |
| 137 | |
| 138 | #define DRM_IOCTL_EXYNOS_GEM_MAP_OFFSET DRM_IOWR(DRM_COMMAND_BASE + \ |
| 139 | DRM_EXYNOS_GEM_MAP_OFFSET, struct drm_exynos_gem_map_off) |
| 140 | |
| 141 | #define DRM_IOCTL_EXYNOS_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + \ |
| 142 | DRM_EXYNOS_GEM_MMAP, struct drm_exynos_gem_mmap) |
| 143 | |
Inki Dae | 40cd7e0 | 2012-05-04 15:51:17 +0900 | [diff] [blame] | 144 | #define DRM_IOCTL_EXYNOS_GEM_GET DRM_IOWR(DRM_COMMAND_BASE + \ |
| 145 | DRM_EXYNOS_GEM_GET, struct drm_exynos_gem_info) |
| 146 | |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 147 | #define DRM_IOCTL_EXYNOS_PLANE_SET_ZPOS DRM_IOWR(DRM_COMMAND_BASE + \ |
| 148 | DRM_EXYNOS_PLANE_SET_ZPOS, struct drm_exynos_plane_set_zpos) |
| 149 | |
Inki Dae | b73d123 | 2012-03-21 10:55:26 +0900 | [diff] [blame] | 150 | #define DRM_IOCTL_EXYNOS_VIDI_CONNECTION DRM_IOWR(DRM_COMMAND_BASE + \ |
| 151 | DRM_EXYNOS_VIDI_CONNECTION, struct drm_exynos_vidi_connection) |
| 152 | |
Kamil Debski | 265da78 | 2012-02-15 10:23:33 +0900 | [diff] [blame] | 153 | #ifdef __KERNEL__ |
| 154 | |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 155 | /** |
Eun-Chul Kim | 607c50d | 2012-02-14 15:59:46 +0900 | [diff] [blame] | 156 | * A structure for lcd panel information. |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 157 | * |
| 158 | * @timing: default video mode for initializing |
Eun-Chul Kim | 607c50d | 2012-02-14 15:59:46 +0900 | [diff] [blame] | 159 | * @width_mm: physical size of lcd width. |
| 160 | * @height_mm: physical size of lcd height. |
| 161 | */ |
| 162 | struct exynos_drm_panel_info { |
| 163 | struct fb_videomode timing; |
| 164 | u32 width_mm; |
| 165 | u32 height_mm; |
| 166 | }; |
| 167 | |
| 168 | /** |
| 169 | * Platform Specific Structure for DRM based FIMD. |
| 170 | * |
| 171 | * @panel: default panel info for initializing |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 172 | * @default_win: default window layer number to be used for UI. |
| 173 | * @bpp: default bit per pixel. |
| 174 | */ |
| 175 | struct exynos_drm_fimd_pdata { |
Eun-Chul Kim | 607c50d | 2012-02-14 15:59:46 +0900 | [diff] [blame] | 176 | struct exynos_drm_panel_info panel; |
Inki Dae | 1c248b7 | 2011-10-04 19:19:01 +0900 | [diff] [blame] | 177 | u32 vidcon0; |
| 178 | u32 vidcon1; |
| 179 | unsigned int default_win; |
| 180 | unsigned int bpp; |
| 181 | }; |
| 182 | |
Seung-Woo Kim | d840832 | 2011-12-21 17:39:39 +0900 | [diff] [blame] | 183 | /** |
| 184 | * Platform Specific Structure for DRM based HDMI. |
| 185 | * |
| 186 | * @hdmi_dev: device point to specific hdmi driver. |
| 187 | * @mixer_dev: device point to specific mixer driver. |
| 188 | * |
| 189 | * this structure is used for common hdmi driver and each device object |
| 190 | * would be used to access specific device driver(hdmi or mixer driver) |
| 191 | */ |
| 192 | struct exynos_drm_common_hdmi_pd { |
| 193 | struct device *hdmi_dev; |
| 194 | struct device *mixer_dev; |
| 195 | }; |
| 196 | |
| 197 | /** |
| 198 | * Platform Specific Structure for DRM based HDMI core. |
| 199 | * |
Joonyoung Shim | 3ecd70b | 2012-03-16 18:47:03 +0900 | [diff] [blame] | 200 | * @is_v13: set if hdmi version 13 is. |
Joonyoung Shim | 7ecd34e | 2012-04-23 19:35:47 +0900 | [diff] [blame^] | 201 | * @cfg_hpd: function pointer to configure hdmi hotplug detection pin |
| 202 | * @get_hpd: function pointer to get value of hdmi hotplug detection pin |
Seung-Woo Kim | d840832 | 2011-12-21 17:39:39 +0900 | [diff] [blame] | 203 | */ |
| 204 | struct exynos_drm_hdmi_pdata { |
Joonyoung Shim | 7ecd34e | 2012-04-23 19:35:47 +0900 | [diff] [blame^] | 205 | bool is_v13; |
| 206 | void (*cfg_hpd)(bool external); |
| 207 | int (*get_hpd)(void); |
Seung-Woo Kim | d840832 | 2011-12-21 17:39:39 +0900 | [diff] [blame] | 208 | }; |
| 209 | |
Kamil Debski | 265da78 | 2012-02-15 10:23:33 +0900 | [diff] [blame] | 210 | #endif /* __KERNEL__ */ |
| 211 | #endif /* _EXYNOS_DRM_H_ */ |