1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ***   To edit the content of this header, modify the corresponding
11 ***   source file (e.g. under external/kernel-headers/original/) then
12 ***   run bionic/libc/kernel/tools/update_all.py
13 ***
14 ***   Any manual change here will be lost the next time this script will
15 ***   be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef __LINUX_OMAPFB_H__
20#define __LINUX_OMAPFB_H__
21#include <linux/fb.h>
22#include <linux/ioctl.h>
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24#include <linux/types.h>
25#define OMAP_IOW(num, dtype) _IOW('O', num, dtype)
26#define OMAP_IOR(num, dtype) _IOR('O', num, dtype)
27#define OMAP_IOWR(num, dtype) _IOWR('O', num, dtype)
28/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29#define OMAP_IO(num) _IO('O', num)
30#define OMAPFB_MIRROR OMAP_IOW(31, int)
31#define OMAPFB_SYNC_GFX OMAP_IO(37)
32#define OMAPFB_VSYNC OMAP_IO(38)
33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34#define OMAPFB_SET_UPDATE_MODE OMAP_IOW(40, int)
35#define OMAPFB_GET_CAPS OMAP_IOR(42, struct omapfb_caps)
36#define OMAPFB_GET_UPDATE_MODE OMAP_IOW(43, int)
37#define OMAPFB_LCD_TEST OMAP_IOW(45, int)
38/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39#define OMAPFB_CTRL_TEST OMAP_IOW(46, int)
40#define OMAPFB_UPDATE_WINDOW_OLD OMAP_IOW(47, struct omapfb_update_window_old)
41#define OMAPFB_SET_COLOR_KEY OMAP_IOW(50, struct omapfb_color_key)
42#define OMAPFB_GET_COLOR_KEY OMAP_IOW(51, struct omapfb_color_key)
43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44#define OMAPFB_SETUP_PLANE OMAP_IOW(52, struct omapfb_plane_info)
45#define OMAPFB_QUERY_PLANE OMAP_IOW(53, struct omapfb_plane_info)
46#define OMAPFB_UPDATE_WINDOW OMAP_IOW(54, struct omapfb_update_window)
47#define OMAPFB_SETUP_MEM OMAP_IOW(55, struct omapfb_mem_info)
48/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49#define OMAPFB_QUERY_MEM OMAP_IOW(56, struct omapfb_mem_info)
50#define OMAPFB_WAITFORVSYNC OMAP_IO(57)
51#define OMAPFB_MEMORY_READ OMAP_IOR(58, struct omapfb_memory_read)
52#define OMAPFB_GET_OVERLAY_COLORMODE OMAP_IOR(59, struct omapfb_ovl_colormode)
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54#define OMAPFB_WAITFORGO OMAP_IO(60)
55#define OMAPFB_GET_VRAM_INFO OMAP_IOR(61, struct omapfb_vram_info)
56#define OMAPFB_SET_TEARSYNC OMAP_IOW(62, struct omapfb_tearsync_info)
57#define OMAPFB_GET_DISPLAY_INFO OMAP_IOR(63, struct omapfb_display_info)
58/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59#define OMAPFB_ENABLEVSYNC OMAP_IOW(64, int)
60#define OMAPFB_CAPS_GENERIC_MASK 0x00000fff
61#define OMAPFB_CAPS_LCDC_MASK 0x00fff000
62#define OMAPFB_CAPS_PANEL_MASK 0xff000000
63/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64#define OMAPFB_CAPS_MANUAL_UPDATE 0x00001000
65#define OMAPFB_CAPS_TEARSYNC 0x00002000
66#define OMAPFB_CAPS_PLANE_RELOCATE_MEM 0x00004000
67#define OMAPFB_CAPS_PLANE_SCALE 0x00008000
68/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69#define OMAPFB_CAPS_WINDOW_PIXEL_DOUBLE 0x00010000
70#define OMAPFB_CAPS_WINDOW_SCALE 0x00020000
71#define OMAPFB_CAPS_WINDOW_OVERLAY 0x00040000
72#define OMAPFB_CAPS_WINDOW_ROTATE 0x00080000
73/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
74#define OMAPFB_CAPS_SET_BACKLIGHT 0x01000000
75#define OMAPFB_FORMAT_MASK 0x00ff
76#define OMAPFB_FORMAT_FLAG_DOUBLE 0x0100
77#define OMAPFB_FORMAT_FLAG_TEARSYNC 0x0200
78/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
79#define OMAPFB_FORMAT_FLAG_FORCE_VSYNC 0x0400
80#define OMAPFB_FORMAT_FLAG_ENABLE_OVERLAY 0x0800
81#define OMAPFB_FORMAT_FLAG_DISABLE_OVERLAY 0x1000
82#define OMAPFB_MEMTYPE_SDRAM 0
83/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
84#define OMAPFB_MEMTYPE_SRAM 1
85#define OMAPFB_MEMTYPE_MAX 1
86#define OMAPFB_MEM_IDX_ENABLED 0x80
87#define OMAPFB_MEM_IDX_MASK 0x7f
88/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
89enum omapfb_color_format {
90 OMAPFB_COLOR_RGB565 = 0,
91 OMAPFB_COLOR_YUV422,
92 OMAPFB_COLOR_YUV420,
93/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
94 OMAPFB_COLOR_CLUT_8BPP,
95 OMAPFB_COLOR_CLUT_4BPP,
96 OMAPFB_COLOR_CLUT_2BPP,
97 OMAPFB_COLOR_CLUT_1BPP,
98/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
99 OMAPFB_COLOR_RGB444,
100 OMAPFB_COLOR_YUY422,
101 OMAPFB_COLOR_ARGB16,
102 OMAPFB_COLOR_RGB24U,
103/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
104 OMAPFB_COLOR_RGB24P,
105 OMAPFB_COLOR_ARGB32,
106 OMAPFB_COLOR_RGBA32,
107 OMAPFB_COLOR_RGBX32,
108/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
109};
110struct omapfb_update_window {
111 __u32 x, y;
112 __u32 width, height;
113/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
114 __u32 format;
115 __u32 out_x, out_y;
116 __u32 out_width, out_height;
117 __u32 reserved[8];
118/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
119};
120struct omapfb_update_window_old {
121 __u32 x, y;
122 __u32 width, height;
123/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
124 __u32 format;
125};
126enum omapfb_plane {
127 OMAPFB_PLANE_GFX = 0,
128/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
129 OMAPFB_PLANE_VID1,
130 OMAPFB_PLANE_VID2,
131};
132enum omapfb_channel_out {
133/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
134 OMAPFB_CHANNEL_OUT_LCD = 0,
135 OMAPFB_CHANNEL_OUT_DIGIT,
136};
137struct omapfb_plane_info {
138/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
139 __u32 pos_x;
140 __u32 pos_y;
141 __u8 enabled;
142 __u8 channel_out;
143/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
144 __u8 mirror;
145 __u8 mem_idx;
146 __u32 out_width;
147 __u32 out_height;
148/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
149 __u32 reserved2[12];
150};
151struct omapfb_mem_info {
152 __u32 size;
153/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
154 __u8 type;
155 __u8 reserved[3];
156};
157struct omapfb_caps {
158/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
159 __u32 ctrl;
160 __u32 plane_color;
161 __u32 wnd_color;
162};
163/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
164enum omapfb_color_key_type {
165 OMAPFB_COLOR_KEY_DISABLED = 0,
166 OMAPFB_COLOR_KEY_GFX_DST,
167 OMAPFB_COLOR_KEY_VID_SRC,
168/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
169};
170struct omapfb_color_key {
171 __u8 channel_out;
172 __u32 background;
173/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
174 __u32 trans_key;
175 __u8 key_type;
176};
177enum omapfb_update_mode {
178/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
179 OMAPFB_UPDATE_DISABLED = 0,
180 OMAPFB_AUTO_UPDATE,
181 OMAPFB_MANUAL_UPDATE
182};
183/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
184struct omapfb_memory_read {
185 __u16 x;
186 __u16 y;
187 __u16 w;
188/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
189 __u16 h;
190 size_t buffer_size;
191 void __user *buffer;
192};
193/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
194struct omapfb_ovl_colormode {
195 __u8 overlay_idx;
196 __u8 mode_idx;
197 __u32 bits_per_pixel;
198/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
199 __u32 nonstd;
200 struct fb_bitfield red;
201 struct fb_bitfield green;
202 struct fb_bitfield blue;
203/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
204 struct fb_bitfield transp;
205};
206struct omapfb_vram_info {
207 __u32 total;
208/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
209 __u32 free;
210 __u32 largest_free_block;
211 __u32 reserved[5];
212};
213/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
214struct omapfb_tearsync_info {
215 __u8 enabled;
216 __u8 reserved1[3];
217 __u16 line;
218/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
219 __u16 reserved2;
220};
221struct omapfb_display_info {
222 __u16 xres;
223/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
224 __u16 yres;
225 __u32 width;
226 __u32 height;
227 __u32 reserved[5];
228/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
229};
230#endif
231
232