blob: 2d6eb06637bf30ccf2057c0d1e51294dcd57e9d8 [file] [log] [blame]
Inki Dae1c248b72011-10-04 19:19:01 +09001/* 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 Daef088d5a2011-11-12 14:51:23 +090035 * @size: user-desired memory allocation size.
Inki Dae1c248b72011-10-04 19:19:01 +090036 * - this size value would be page-aligned internally.
37 * @flags: user request for setting memory type or cache attributes.
Inki Daef088d5a2011-11-12 14:51:23 +090038 * @handle: returned a handle to created gem object.
39 * - this handle will be set by gem module of kernel side.
Inki Dae1c248b72011-10-04 19:19:01 +090040 */
41struct drm_exynos_gem_create {
Inki Daef088d5a2011-11-12 14:51:23 +090042 uint64_t size;
Inki Dae1c248b72011-10-04 19:19:01 +090043 unsigned int flags;
44 unsigned int handle;
Inki Dae1c248b72011-10-04 19:19:01 +090045};
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 */
55struct 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 */
71struct drm_exynos_gem_mmap {
72 unsigned int handle;
73 unsigned int size;
74 uint64_t mapped;
75};
76
Inki Daeb73d1232012-03-21 10:55:26 +090077/**
78 * A structure for user connection request of virtual display.
79 *
80 * @connection: indicate whether doing connetion or not by user.
81 * @extensions: if this value is 1 then the vidi driver would need additional
82 * 128bytes edid data.
83 * @edid: the edid data pointer from user side.
84 */
85struct drm_exynos_vidi_connection {
86 unsigned int connection;
87 unsigned int extensions;
Inki Dae490aa60e2012-04-12 16:42:54 +090088 uint64_t edid;
Inki Daeb73d1232012-03-21 10:55:26 +090089};
90
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090091struct drm_exynos_plane_set_zpos {
92 __u32 plane_id;
93 __s32 zpos;
94};
95
Inki Dae2b358922012-03-16 18:47:05 +090096/* memory type definitions. */
97enum e_drm_exynos_gem_mem_type {
Inki Daec01d73fa2012-04-23 19:26:34 +090098 /* Physically Continuous memory and used as default. */
99 EXYNOS_BO_CONTIG = 0 << 0,
Inki Dae2b358922012-03-16 18:47:05 +0900100 /* Physically Non-Continuous memory. */
Inki Daedcf9af82012-04-03 21:27:58 +0900101 EXYNOS_BO_NONCONTIG = 1 << 0,
Inki Daec01d73fa2012-04-23 19:26:34 +0900102 /* non-cachable mapping and used as default. */
103 EXYNOS_BO_NONCACHABLE = 0 << 1,
104 /* cachable mapping. */
105 EXYNOS_BO_CACHABLE = 1 << 1,
106 /* write-combine mapping. */
107 EXYNOS_BO_WC = 1 << 2,
108 EXYNOS_BO_MASK = EXYNOS_BO_NONCONTIG | EXYNOS_BO_CACHABLE |
109 EXYNOS_BO_WC
Inki Dae2b358922012-03-16 18:47:05 +0900110};
111
Inki Dae1c248b72011-10-04 19:19:01 +0900112#define DRM_EXYNOS_GEM_CREATE 0x00
113#define DRM_EXYNOS_GEM_MAP_OFFSET 0x01
114#define DRM_EXYNOS_GEM_MMAP 0x02
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900115/* Reserved 0x03 ~ 0x05 for exynos specific gem ioctl */
116#define DRM_EXYNOS_PLANE_SET_ZPOS 0x06
Inki Daeb73d1232012-03-21 10:55:26 +0900117#define DRM_EXYNOS_VIDI_CONNECTION 0x07
Inki Dae1c248b72011-10-04 19:19:01 +0900118
119#define DRM_IOCTL_EXYNOS_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + \
120 DRM_EXYNOS_GEM_CREATE, struct drm_exynos_gem_create)
121
122#define DRM_IOCTL_EXYNOS_GEM_MAP_OFFSET DRM_IOWR(DRM_COMMAND_BASE + \
123 DRM_EXYNOS_GEM_MAP_OFFSET, struct drm_exynos_gem_map_off)
124
125#define DRM_IOCTL_EXYNOS_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + \
126 DRM_EXYNOS_GEM_MMAP, struct drm_exynos_gem_mmap)
127
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900128#define DRM_IOCTL_EXYNOS_PLANE_SET_ZPOS DRM_IOWR(DRM_COMMAND_BASE + \
129 DRM_EXYNOS_PLANE_SET_ZPOS, struct drm_exynos_plane_set_zpos)
130
Inki Daeb73d1232012-03-21 10:55:26 +0900131#define DRM_IOCTL_EXYNOS_VIDI_CONNECTION DRM_IOWR(DRM_COMMAND_BASE + \
132 DRM_EXYNOS_VIDI_CONNECTION, struct drm_exynos_vidi_connection)
133
Kamil Debski265da782012-02-15 10:23:33 +0900134#ifdef __KERNEL__
135
Inki Dae1c248b72011-10-04 19:19:01 +0900136/**
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900137 * A structure for lcd panel information.
Inki Dae1c248b72011-10-04 19:19:01 +0900138 *
139 * @timing: default video mode for initializing
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900140 * @width_mm: physical size of lcd width.
141 * @height_mm: physical size of lcd height.
142 */
143struct exynos_drm_panel_info {
144 struct fb_videomode timing;
145 u32 width_mm;
146 u32 height_mm;
147};
148
149/**
150 * Platform Specific Structure for DRM based FIMD.
151 *
152 * @panel: default panel info for initializing
Inki Dae1c248b72011-10-04 19:19:01 +0900153 * @default_win: default window layer number to be used for UI.
154 * @bpp: default bit per pixel.
155 */
156struct exynos_drm_fimd_pdata {
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900157 struct exynos_drm_panel_info panel;
Inki Dae1c248b72011-10-04 19:19:01 +0900158 u32 vidcon0;
159 u32 vidcon1;
160 unsigned int default_win;
161 unsigned int bpp;
162};
163
Seung-Woo Kimd8408322011-12-21 17:39:39 +0900164/**
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 */
173struct exynos_drm_common_hdmi_pd {
174 struct device *hdmi_dev;
175 struct device *mixer_dev;
176};
177
178/**
179 * Platform Specific Structure for DRM based HDMI core.
180 *
181 * @timing: default video mode for initializing
182 * @default_win: default window layer number to be used for UI.
183 * @bpp: default bit per pixel.
Joonyoung Shim3ecd70b2012-03-16 18:47:03 +0900184 * @is_v13: set if hdmi version 13 is.
Seung-Woo Kimd8408322011-12-21 17:39:39 +0900185 */
186struct exynos_drm_hdmi_pdata {
187 struct fb_videomode timing;
188 unsigned int default_win;
189 unsigned int bpp;
Joonyoung Shim3ecd70b2012-03-16 18:47:03 +0900190 unsigned int is_v13:1;
Seung-Woo Kimd8408322011-12-21 17:39:39 +0900191};
192
Kamil Debski265da782012-02-15 10:23:33 +0900193#endif /* __KERNEL__ */
194#endif /* _EXYNOS_DRM_H_ */