1edcf58bcSBoris BREZILLON /*
2edcf58bcSBoris BREZILLON  * Media Bus API header
3edcf58bcSBoris BREZILLON  *
4edcf58bcSBoris BREZILLON  * Copyright (C) 2009, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
5edcf58bcSBoris BREZILLON  *
6edcf58bcSBoris BREZILLON  * This program is free software; you can redistribute it and/or modify
7edcf58bcSBoris BREZILLON  * it under the terms of the GNU General Public License version 2 as
8edcf58bcSBoris BREZILLON  * published by the Free Software Foundation.
9edcf58bcSBoris BREZILLON  */
10edcf58bcSBoris BREZILLON 
11edcf58bcSBoris BREZILLON #ifndef __LINUX_MEDIA_BUS_FORMAT_H
12edcf58bcSBoris BREZILLON #define __LINUX_MEDIA_BUS_FORMAT_H
13edcf58bcSBoris BREZILLON 
14edcf58bcSBoris BREZILLON /*
15edcf58bcSBoris BREZILLON  * These bus formats uniquely identify data formats on the data bus. Format 0
16edcf58bcSBoris BREZILLON  * is reserved, MEDIA_BUS_FMT_FIXED shall be used by host-client pairs, where
17edcf58bcSBoris BREZILLON  * the data format is fixed. Additionally, "2X8" means that one pixel is
18edcf58bcSBoris BREZILLON  * transferred in two 8-bit samples, "BE" or "LE" specify in which order those
19edcf58bcSBoris BREZILLON  * samples are transferred over the bus: "LE" means that the least significant
20edcf58bcSBoris BREZILLON  * bits are transferred first, "BE" means that the most significant bits are
21edcf58bcSBoris BREZILLON  * transferred first, and "PADHI" and "PADLO" define which bits - low or high,
22edcf58bcSBoris BREZILLON  * in the incomplete high byte, are filled with padding bits.
23edcf58bcSBoris BREZILLON  *
24edcf58bcSBoris BREZILLON  * The bus formats are grouped by type, bus_width, bits per component, samples
25edcf58bcSBoris BREZILLON  * per pixel and order of subsamples. Numerical values are sorted using generic
26edcf58bcSBoris BREZILLON  * numerical sort order (8 thus comes before 10).
27edcf58bcSBoris BREZILLON  *
28edcf58bcSBoris BREZILLON  * As their value can't change when a new bus format is inserted in the
29edcf58bcSBoris BREZILLON  * enumeration, the bus formats are explicitly given a numerical value. The next
30edcf58bcSBoris BREZILLON  * free values for each category are listed below, update them when inserting
31edcf58bcSBoris BREZILLON  * new pixel codes.
32edcf58bcSBoris BREZILLON  */
33edcf58bcSBoris BREZILLON 
34edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_FIXED			0x0001
35edcf58bcSBoris BREZILLON 
36cec32a47SPhilipp Zabel /* RGB - next is	0x1018 */
37cec32a47SPhilipp Zabel #define MEDIA_BUS_FMT_RGB444_1X12		0x1016
38edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB444_2X8_PADHI_BE	0x1001
39edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB444_2X8_PADHI_LE	0x1002
40edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB555_2X8_PADHI_BE	0x1003
41edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB555_2X8_PADHI_LE	0x1004
42cec32a47SPhilipp Zabel #define MEDIA_BUS_FMT_RGB565_1X16		0x1017
43edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_BGR565_2X8_BE		0x1005
44edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_BGR565_2X8_LE		0x1006
45edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB565_2X8_BE		0x1007
46edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB565_2X8_LE		0x1008
47edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB666_1X18		0x1009
487b0fd456SLaurent Pinchart #define MEDIA_BUS_FMT_RBG888_1X24		0x100e
49203508efSPhilipp Zabel #define MEDIA_BUS_FMT_RGB666_1X24_CPADHI	0x1015
50b295c229SPhilipp Zabel #define MEDIA_BUS_FMT_RGB666_1X7X3_SPWG		0x1010
5108c38458SPhilipp Zabel #define MEDIA_BUS_FMT_BGR888_1X24		0x1013
5208c38458SPhilipp Zabel #define MEDIA_BUS_FMT_GBR888_1X24		0x1014
53edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB888_1X24		0x100a
54edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB888_2X12_BE		0x100b
55edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_RGB888_2X12_LE		0x100c
56b295c229SPhilipp Zabel #define MEDIA_BUS_FMT_RGB888_1X7X4_SPWG		0x1011
57b295c229SPhilipp Zabel #define MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA	0x1012
58edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_ARGB8888_1X32		0x100d
597b0fd456SLaurent Pinchart #define MEDIA_BUS_FMT_RGB888_1X32_PADHI		0x100f
60edcf58bcSBoris BREZILLON 
61cec32a47SPhilipp Zabel /* YUV (including grey) - next is	0x2026 */
62edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_Y8_1X8			0x2001
63edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_UV8_1X8			0x2015
64edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_UYVY8_1_5X8		0x2002
65edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_VYUY8_1_5X8		0x2003
66edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YUYV8_1_5X8		0x2004
67edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YVYU8_1_5X8		0x2005
68edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_UYVY8_2X8			0x2006
69edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_VYUY8_2X8			0x2007
70edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YUYV8_2X8			0x2008
71edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YVYU8_2X8			0x2009
72edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_Y10_1X10			0x200a
73edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_UYVY10_2X10		0x2018
74edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_VYUY10_2X10		0x2019
75edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YUYV10_2X10		0x200b
76edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YVYU10_2X10		0x200c
77edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_Y12_1X12			0x2013
78e8b2d7a5SHyun Kwon #define MEDIA_BUS_FMT_UYVY12_2X12		0x201c
79e8b2d7a5SHyun Kwon #define MEDIA_BUS_FMT_VYUY12_2X12		0x201d
80e8b2d7a5SHyun Kwon #define MEDIA_BUS_FMT_YUYV12_2X12		0x201e
81e8b2d7a5SHyun Kwon #define MEDIA_BUS_FMT_YVYU12_2X12		0x201f
82edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_UYVY8_1X16		0x200f
83edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_VYUY8_1X16		0x2010
84edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YUYV8_1X16		0x2011
85edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YVYU8_1X16		0x2012
86edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YDYUYDYV8_1X16		0x2014
87edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_UYVY10_1X20		0x201a
88edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_VYUY10_1X20		0x201b
89edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YUYV10_1X20		0x200d
90edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YVYU10_1X20		0x200e
912dca0551SHyun Kwon #define MEDIA_BUS_FMT_VUY8_1X24			0x2024
92cec32a47SPhilipp Zabel #define MEDIA_BUS_FMT_YUV8_1X24			0x2025
93edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_UYVY12_1X24		0x2020
94edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_VYUY12_1X24		0x2021
95edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YUYV12_1X24		0x2022
96edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_YVYU12_1X24		0x2023
97e8b2d7a5SHyun Kwon #define MEDIA_BUS_FMT_YUV10_1X30		0x2016
98e8b2d7a5SHyun Kwon #define MEDIA_BUS_FMT_AYUV8_1X32		0x2017
99edcf58bcSBoris BREZILLON 
100cfe41359SJouni Ukkonen /* Bayer - next is	0x301d */
101edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR8_1X8		0x3001
102edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGBRG8_1X8		0x3013
103edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGRBG8_1X8		0x3002
104edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SRGGB8_1X8		0x3014
105edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR10_ALAW8_1X8		0x3015
106edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGBRG10_ALAW8_1X8		0x3016
107edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGRBG10_ALAW8_1X8		0x3017
108edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SRGGB10_ALAW8_1X8		0x3018
109edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR10_DPCM8_1X8		0x300b
110edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGBRG10_DPCM8_1X8		0x300c
111edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGRBG10_DPCM8_1X8		0x3009
112edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SRGGB10_DPCM8_1X8		0x300d
113edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR10_2X8_PADHI_BE	0x3003
114edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR10_2X8_PADHI_LE	0x3004
115edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR10_2X8_PADLO_BE	0x3005
116edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR10_2X8_PADLO_LE	0x3006
117edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR10_1X10		0x3007
118edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGBRG10_1X10		0x300e
119edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGRBG10_1X10		0x300a
120edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SRGGB10_1X10		0x300f
121edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SBGGR12_1X12		0x3008
122edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGBRG12_1X12		0x3010
123edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SGRBG12_1X12		0x3011
124edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_SRGGB12_1X12		0x3012
125cfe41359SJouni Ukkonen #define MEDIA_BUS_FMT_SBGGR14_1X14		0x3019
126cfe41359SJouni Ukkonen #define MEDIA_BUS_FMT_SGBRG14_1X14		0x301a
127cfe41359SJouni Ukkonen #define MEDIA_BUS_FMT_SGRBG14_1X14		0x301b
128cfe41359SJouni Ukkonen #define MEDIA_BUS_FMT_SRGGB14_1X14		0x301c
129edcf58bcSBoris BREZILLON 
130edcf58bcSBoris BREZILLON /* JPEG compressed formats - next is	0x4002 */
131edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_JPEG_1X8			0x4001
132edcf58bcSBoris BREZILLON 
133edcf58bcSBoris BREZILLON /* Vendor specific formats - next is	0x5002 */
134edcf58bcSBoris BREZILLON 
135edcf58bcSBoris BREZILLON /* S5C73M3 sensor specific interleaved UYVY and JPEG */
136edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_S5C_UYVY_JPEG_1X8		0x5001
137edcf58bcSBoris BREZILLON 
138edcf58bcSBoris BREZILLON /* HSV - next is	0x6002 */
139edcf58bcSBoris BREZILLON #define MEDIA_BUS_FMT_AHSV8888_1X32		0x6001
140edcf58bcSBoris BREZILLON 
141edcf58bcSBoris BREZILLON #endif /* __LINUX_MEDIA_BUS_FORMAT_H */
142