blob: 63fd9d3db296aae685bc0672daadd9f4d703a92e [file] [log] [blame]
Hans Verkuil3434eb72007-04-27 12:31:08 -03001/*
2 v4l2 chip identifiers header
3
4 This header provides a list of chip identifiers that can be returned
Hans Verkuilaecde8b52008-12-30 07:14:19 -03005 through the VIDIOC_DBG_G_CHIP_IDENT ioctl.
Hans Verkuil3434eb72007-04-27 12:31:08 -03006
7 Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#ifndef V4L2_CHIP_IDENT_H_
25#define V4L2_CHIP_IDENT_H_
26
Hans Verkuilaecde8b52008-12-30 07:14:19 -030027/* VIDIOC_DBG_G_CHIP_IDENT: identifies the actual chip installed on the board */
Hans Verkuil32208d42010-03-14 08:01:55 -030028
29/* KEEP THIS LIST ORDERED BY ID!
30 Otherwise it will be hard to see which ranges are already in use when
31 adding support to a new chip family. */
Hans Verkuil3434eb72007-04-27 12:31:08 -030032enum {
33 /* general idents: reserved range 0-49 */
34 V4L2_IDENT_NONE = 0, /* No chip matched */
35 V4L2_IDENT_AMBIGUOUS = 1, /* Match too general, multiple chips matched */
36 V4L2_IDENT_UNKNOWN = 2, /* Chip found, but cannot identify */
37
Hans Verkuil74cab312007-04-27 12:31:26 -030038 /* module tvaudio: reserved range 50-99 */
39 V4L2_IDENT_TVAUDIO = 50, /* A tvaudio chip, unknown which it is exactly */
40
Guennadi Liakhovetski32e1f772010-10-05 12:32:41 -030041 /* Sony IMX074 */
42 V4L2_IDENT_IMX074 = 74,
43
Hans Verkuil74cab312007-04-27 12:31:26 -030044 /* module saa7110: just ident 100 */
Hans Verkuil3434eb72007-04-27 12:31:08 -030045 V4L2_IDENT_SAA7110 = 100,
46
Hans Verkuile7946842009-02-19 12:24:27 -030047 /* module saa7115: reserved range 101-149 */
Hans Verkuil3434eb72007-04-27 12:31:08 -030048 V4L2_IDENT_SAA7111 = 101,
Hans Verkuil340dde82010-02-20 08:07:51 -030049 V4L2_IDENT_SAA7111A = 102,
Hans Verkuil3434eb72007-04-27 12:31:08 -030050 V4L2_IDENT_SAA7113 = 103,
51 V4L2_IDENT_SAA7114 = 104,
52 V4L2_IDENT_SAA7115 = 105,
53 V4L2_IDENT_SAA7118 = 108,
54
55 /* module saa7127: reserved range 150-199 */
56 V4L2_IDENT_SAA7127 = 157,
57 V4L2_IDENT_SAA7129 = 159,
58
59 /* module cx25840: reserved range 200-249 */
60 V4L2_IDENT_CX25836 = 236,
61 V4L2_IDENT_CX25837 = 237,
62 V4L2_IDENT_CX25840 = 240,
63 V4L2_IDENT_CX25841 = 241,
64 V4L2_IDENT_CX25842 = 242,
65 V4L2_IDENT_CX25843 = 243,
66
Hans Verkuil74cab312007-04-27 12:31:26 -030067 /* OmniVision sensors: reserved range 250-299 */
Hans Verkuil3434eb72007-04-27 12:31:08 -030068 V4L2_IDENT_OV7670 = 250,
Kuninori Morimotoaeabc882008-12-18 11:05:49 -030069 V4L2_IDENT_OV7720 = 251,
Kuninori Morimoto3cac2ca2008-12-18 11:07:11 -030070 V4L2_IDENT_OV7725 = 252,
Brian Johnson26e744b2009-07-19 05:52:58 -030071 V4L2_IDENT_OV7660 = 253,
72 V4L2_IDENT_OV9650 = 254,
73 V4L2_IDENT_OV9655 = 255,
74 V4L2_IDENT_SOI968 = 256,
Marek Vasut8d648272009-09-23 04:59:24 -030075 V4L2_IDENT_OV9640 = 257,
Janusz Krzysztofik2f6e2402010-10-05 11:52:45 -030076 V4L2_IDENT_OV6650 = 258,
Alberto Panizzo3153ac92010-12-02 11:53:28 -030077 V4L2_IDENT_OV2640 = 259,
Andrew Chew9bd060e2011-02-17 19:14:33 -030078 V4L2_IDENT_OV9740 = 260,
Bastian Hechtb52a8512011-06-24 07:57:36 -030079 V4L2_IDENT_OV5642 = 261,
Hans Verkuil1b5888c2007-04-27 12:31:23 -030080
Hans Verkuil1b8dac12009-02-07 11:18:05 -030081 /* module saa7146: reserved range 300-309 */
82 V4L2_IDENT_SAA7146 = 300,
83
Andy Wallsfa3e7032009-02-16 02:23:25 -030084 /* Conexant MPEG encoder/decoders: reserved range 400-420 */
85 V4L2_IDENT_CX23418_843 = 403, /* Integrated A/V Decoder on the '418 */
Hans Verkuil1b5888c2007-04-27 12:31:23 -030086 V4L2_IDENT_CX23415 = 415,
87 V4L2_IDENT_CX23416 = 416,
Andy Wallsf56db932009-09-26 22:07:10 -030088 V4L2_IDENT_CX23417 = 417,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030089 V4L2_IDENT_CX23418 = 418,
Hans Verkuil74cab312007-04-27 12:31:26 -030090
Hans Verkuilc2179ad2009-02-19 06:36:36 -030091 /* module bt819: reserved range 810-819 */
92 V4L2_IDENT_BT815A = 815,
93 V4L2_IDENT_BT817A = 817,
94 V4L2_IDENT_BT819A = 819,
95
Hans Verkuil32208d42010-03-14 08:01:55 -030096 /* module au0828 */
97 V4L2_IDENT_AU0828 = 828,
98
Hans Verkuila91f56e2009-02-19 08:54:36 -030099 /* module bt856: just ident 856 */
100 V4L2_IDENT_BT856 = 856,
101
Hans Verkuil8e4e1d82009-02-19 04:49:29 -0300102 /* module bt866: just ident 866 */
103 V4L2_IDENT_BT866 = 866,
104
Hans Verkuil0750e972009-02-19 11:50:27 -0300105 /* module ks0127: reserved range 1120-1129 */
106 V4L2_IDENT_KS0122S = 1122,
107 V4L2_IDENT_KS0127 = 1127,
108 V4L2_IDENT_KS0127B = 1128,
109
Hans Verkuil32208d42010-03-14 08:01:55 -0300110 /* module indycam: just ident 2000 */
111 V4L2_IDENT_INDYCAM = 2000,
112
Hans Verkuilac247432007-07-27 06:56:50 -0300113 /* module vp27smpx: just ident 2700 */
114 V4L2_IDENT_VP27SMPX = 2700,
115
Hans Verkuil7e5eaad2009-02-19 14:36:53 -0300116 /* module vpx3220: reserved range: 3210-3229 */
117 V4L2_IDENT_VPX3214C = 3214,
118 V4L2_IDENT_VPX3216B = 3216,
119 V4L2_IDENT_VPX3220A = 3220,
120
Jonathan Corbet024fafbac2010-10-19 21:32:11 -0300121 /* VX855 just ident 3409 */
122 /* Other via devs could use 3314, 3324, 3327, 3336, 3364, 3353 */
123 V4L2_IDENT_VIA_VX855 = 3409,
124
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -0300125 /* module tvp5150 */
126 V4L2_IDENT_TVP5150 = 5150,
127
Hans Verkuil1b8dac12009-02-07 11:18:05 -0300128 /* module saa5246a: just ident 5246 */
129 V4L2_IDENT_SAA5246A = 5246,
130
131 /* module saa5249: just ident 5249 */
132 V4L2_IDENT_SAA5249 = 5249,
133
Hans Verkuil6fb377f2007-12-18 19:40:44 -0300134 /* module cs5345: just ident 5345 */
135 V4L2_IDENT_CS5345 = 5345,
136
Hans Verkuil1b8dac12009-02-07 11:18:05 -0300137 /* module tea6415c: just ident 6415 */
138 V4L2_IDENT_TEA6415C = 6415,
139
140 /* module tea6420: just ident 6420 */
141 V4L2_IDENT_TEA6420 = 6420,
142
Hans Verkuilf1f8c902009-02-11 19:28:30 -0300143 /* module saa6588: just ident 6588 */
144 V4L2_IDENT_SAA6588 = 6588,
145
Hans Verkuile281db582008-08-08 12:43:59 -0300146 /* module saa6752hs: reserved range 6750-6759 */
147 V4L2_IDENT_SAA6752HS = 6752,
148 V4L2_IDENT_SAA6752HS_AC3 = 6753,
149
Richard Röjforseea85b02009-09-22 10:14:39 -0300150 /* modules tef6862: just ident 6862 */
151 V4L2_IDENT_TEF6862 = 6862,
152
Santiago Nunez-Corralesff9118a2009-12-18 14:07:29 -0300153 /* module tvp7002: just ident 7002 */
154 V4L2_IDENT_TVP7002 = 7002,
155
Hans Verkuil7d9ef212009-02-19 14:47:22 -0300156 /* module adv7170: just ident 7170 */
157 V4L2_IDENT_ADV7170 = 7170,
158
159 /* module adv7175: just ident 7175 */
160 V4L2_IDENT_ADV7175 = 7175,
161
Richard Röjfors6789cb52009-09-18 21:17:20 -0300162 /* module adv7180: just ident 7180 */
163 V4L2_IDENT_ADV7180 = 7180,
164
Hans Verkuil780d8e12009-02-19 13:24:47 -0300165 /* module saa7185: just ident 7185 */
166 V4L2_IDENT_SAA7185 = 7185,
167
Hans Verkuil8340ff42009-02-13 19:58:12 -0300168 /* module saa7191: just ident 7191 */
169 V4L2_IDENT_SAA7191 = 7191,
170
Chaithrika U S40199c52009-05-07 09:29:25 -0300171 /* module ths7303: just ident 7303 */
172 V4L2_IDENT_THS7303 = 7303,
173
Chaithrika U S06e61f82009-05-07 09:30:01 -0300174 /* module adv7343: just ident 7343 */
175 V4L2_IDENT_ADV7343 = 7343,
176
Richard Röjforsee4b9db2010-02-02 19:40:49 -0300177 /* module saa7706h: just ident 7706 */
178 V4L2_IDENT_SAA7706H = 7706,
179
Hans Verkuil32208d42010-03-14 08:01:55 -0300180 /* module mt9v011, just ident 8243 */
181 V4L2_IDENT_MT9V011 = 8243,
182
Hans Verkuil74cab312007-04-27 12:31:26 -0300183 /* module wm8739: just ident 8739 */
184 V4L2_IDENT_WM8739 = 8739,
185
186 /* module wm8775: just ident 8775 */
187 V4L2_IDENT_WM8775 = 8775,
188
Jonathan Corbet67a8dbb2011-06-11 14:46:49 -0300189 /* Marvell controllers starting at 8801 */
Hans Verkuil69d94f72009-03-18 13:25:54 -0300190 V4L2_IDENT_CAFE = 8801,
Jonathan Corbet67a8dbb2011-06-11 14:46:49 -0300191 V4L2_IDENT_ARMADA610 = 8802,
Hans Verkuil69d94f72009-03-18 13:25:54 -0300192
Guennadi Liakhovetskiaec11e52010-03-29 04:45:22 -0300193 /* AKM AK8813/AK8814 */
194 V4L2_IDENT_AK8813 = 8813,
195 V4L2_IDENT_AK8814 = 8814,
196
Andy Wallsf56db932009-09-26 22:07:10 -0300197 /* module cx23885 and cx25840 */
198 V4L2_IDENT_CX23885 = 8850,
199 V4L2_IDENT_CX23885_AV = 8851, /* Integrated A/V decoder */
200 V4L2_IDENT_CX23887 = 8870,
201 V4L2_IDENT_CX23887_AV = 8871, /* Integrated A/V decoder */
202 V4L2_IDENT_CX23888 = 8880,
203 V4L2_IDENT_CX23888_AV = 8881, /* Integrated A/V decoder */
204 V4L2_IDENT_CX23888_IR = 8882, /* Integrated infrared controller */
205
Hans Verkuil32208d42010-03-14 08:01:55 -0300206 /* module tda9840: just ident 9840 */
207 V4L2_IDENT_TDA9840 = 9840,
208
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300209 /* module tw9910: just ident 9910 */
210 V4L2_IDENT_TW9910 = 9910,
211
Brian Johnson26e744b2009-07-19 05:52:58 -0300212 /* module sn9c20x: just ident 10000 */
213 V4L2_IDENT_SN9C20X = 10000,
214
Sylwester Nawrocki22fb9852010-11-30 12:54:56 -0300215 /* Siliconfile sensors: reserved range 10100 - 10199 */
216 V4L2_IDENT_NOON010PC30 = 10100,
217
Andy Wallsf56db932009-09-26 22:07:10 -0300218 /* module cx231xx and cx25840 */
219 V4L2_IDENT_CX2310X_AV = 23099, /* Integrated A/V decoder; not in '100 */
220 V4L2_IDENT_CX23100 = 23100,
221 V4L2_IDENT_CX23101 = 23101,
222 V4L2_IDENT_CX23102 = 23102,
223
Hans Verkuil32208d42010-03-14 08:01:55 -0300224 /* module msp3400: reserved range 34000-34999 for msp34xx */
Hans Verkuil38f9d302008-07-23 05:09:15 -0300225 V4L2_IDENT_MSPX4XX = 34000, /* generic MSPX4XX identifier, only
226 use internally (tveeprom.c). */
227
Hans Verkuil74cab312007-04-27 12:31:26 -0300228 V4L2_IDENT_MSP3400B = 34002,
Hans Verkuil74cab312007-04-27 12:31:26 -0300229 V4L2_IDENT_MSP3400C = 34003,
Hans Verkuil74cab312007-04-27 12:31:26 -0300230 V4L2_IDENT_MSP3400D = 34004,
Hans Verkuil74cab312007-04-27 12:31:26 -0300231 V4L2_IDENT_MSP3400G = 34007,
Hans Verkuil74cab312007-04-27 12:31:26 -0300232 V4L2_IDENT_MSP3401G = 34017,
Hans Verkuil74cab312007-04-27 12:31:26 -0300233 V4L2_IDENT_MSP3402G = 34027,
Hans Verkuil32208d42010-03-14 08:01:55 -0300234 V4L2_IDENT_MSP3405D = 34054,
Hans Verkuil74cab312007-04-27 12:31:26 -0300235 V4L2_IDENT_MSP3405G = 34057,
Hans Verkuil32208d42010-03-14 08:01:55 -0300236 V4L2_IDENT_MSP3407D = 34074,
Hans Verkuil74cab312007-04-27 12:31:26 -0300237 V4L2_IDENT_MSP3407G = 34077,
Hans Verkuil32208d42010-03-14 08:01:55 -0300238
239 V4L2_IDENT_MSP3410B = 34102,
240 V4L2_IDENT_MSP3410C = 34103,
241 V4L2_IDENT_MSP3410D = 34104,
242 V4L2_IDENT_MSP3410G = 34107,
243 V4L2_IDENT_MSP3411G = 34117,
244 V4L2_IDENT_MSP3412G = 34127,
245 V4L2_IDENT_MSP3415D = 34154,
246 V4L2_IDENT_MSP3415G = 34157,
247 V4L2_IDENT_MSP3417D = 34174,
Hans Verkuil74cab312007-04-27 12:31:26 -0300248 V4L2_IDENT_MSP3417G = 34177,
Hans Verkuil32208d42010-03-14 08:01:55 -0300249
250 V4L2_IDENT_MSP3420G = 34207,
251 V4L2_IDENT_MSP3421G = 34217,
252 V4L2_IDENT_MSP3422G = 34227,
253 V4L2_IDENT_MSP3425G = 34257,
Hans Verkuil74cab312007-04-27 12:31:26 -0300254 V4L2_IDENT_MSP3427G = 34277,
Hans Verkuil32208d42010-03-14 08:01:55 -0300255
256 V4L2_IDENT_MSP3430G = 34307,
257 V4L2_IDENT_MSP3431G = 34317,
258 V4L2_IDENT_MSP3435G = 34357,
Hans Verkuil74cab312007-04-27 12:31:26 -0300259 V4L2_IDENT_MSP3437G = 34377,
Hans Verkuil32208d42010-03-14 08:01:55 -0300260
261 V4L2_IDENT_MSP3440G = 34407,
262 V4L2_IDENT_MSP3441G = 34417,
263 V4L2_IDENT_MSP3442G = 34427,
264 V4L2_IDENT_MSP3445G = 34457,
Hans Verkuil74cab312007-04-27 12:31:26 -0300265 V4L2_IDENT_MSP3447G = 34477,
Hans Verkuil32208d42010-03-14 08:01:55 -0300266
267 V4L2_IDENT_MSP3450G = 34507,
268 V4L2_IDENT_MSP3451G = 34517,
269 V4L2_IDENT_MSP3452G = 34527,
270 V4L2_IDENT_MSP3455G = 34557,
Hans Verkuil74cab312007-04-27 12:31:26 -0300271 V4L2_IDENT_MSP3457G = 34577,
Hans Verkuil32208d42010-03-14 08:01:55 -0300272
273 V4L2_IDENT_MSP3460G = 34607,
274 V4L2_IDENT_MSP3461G = 34617,
275 V4L2_IDENT_MSP3465G = 34657,
Hans Verkuil74cab312007-04-27 12:31:26 -0300276 V4L2_IDENT_MSP3467G = 34677,
277
Hans Verkuil32208d42010-03-14 08:01:55 -0300278 /* module msp3400: reserved range 44000-44999 for msp44xx */
Hans Verkuil74cab312007-04-27 12:31:26 -0300279 V4L2_IDENT_MSP4400G = 44007,
Hans Verkuil74cab312007-04-27 12:31:26 -0300280 V4L2_IDENT_MSP4408G = 44087,
Hans Verkuil32208d42010-03-14 08:01:55 -0300281 V4L2_IDENT_MSP4410G = 44107,
Hans Verkuil74cab312007-04-27 12:31:26 -0300282 V4L2_IDENT_MSP4418G = 44187,
Hans Verkuil32208d42010-03-14 08:01:55 -0300283 V4L2_IDENT_MSP4420G = 44207,
Hans Verkuil74cab312007-04-27 12:31:26 -0300284 V4L2_IDENT_MSP4428G = 44287,
Hans Verkuil32208d42010-03-14 08:01:55 -0300285 V4L2_IDENT_MSP4440G = 44407,
Hans Verkuil74cab312007-04-27 12:31:26 -0300286 V4L2_IDENT_MSP4448G = 44487,
Hans Verkuil32208d42010-03-14 08:01:55 -0300287 V4L2_IDENT_MSP4450G = 44507,
Hans Verkuil74cab312007-04-27 12:31:26 -0300288 V4L2_IDENT_MSP4458G = 44587,
Guennadi Liakhovetskia7c74022008-04-22 14:42:03 -0300289
290 /* Micron CMOS sensor chips: 45000-45099 */
291 V4L2_IDENT_MT9M001C12ST = 45000,
292 V4L2_IDENT_MT9M001C12STM = 45005,
Robert Jarzmik9cc64932008-08-14 11:36:37 -0300293 V4L2_IDENT_MT9M111 = 45007,
Mike Rapoport9b9fd6c2008-12-18 11:42:54 -0300294 V4L2_IDENT_MT9M112 = 45008,
Guennadi Liakhovetskia7c74022008-04-22 14:42:03 -0300295 V4L2_IDENT_MT9V022IX7ATC = 45010, /* No way to detect "normal" I77ATx */
296 V4L2_IDENT_MT9V022IX7ATM = 45015, /* and "lead free" IA7ATx chips */
Guennadi Liakhovetski4e96fd02008-12-29 06:04:59 -0300297 V4L2_IDENT_MT9T031 = 45020,
Kuninori Morimoto858424b2009-12-11 11:53:55 -0300298 V4L2_IDENT_MT9T111 = 45021,
299 V4L2_IDENT_MT9T112 = 45022,
Brian Johnson26e744b2009-07-19 05:52:58 -0300300 V4L2_IDENT_MT9V111 = 45031,
301 V4L2_IDENT_MT9V112 = 45032,
302
303 /* HV7131R CMOS sensor: just ident 46000 */
304 V4L2_IDENT_HV7131R = 46000,
Hans Verkuil69d94f72009-03-18 13:25:54 -0300305
Hans Verkuil32208d42010-03-14 08:01:55 -0300306 /* Sharp RJ54N1CB0C, 0xCB0C = 51980 */
307 V4L2_IDENT_RJ54N1CB0C = 51980,
308
309 /* module m52790: just ident 52790 */
310 V4L2_IDENT_M52790 = 52790,
311
Hans Verkuil69d94f72009-03-18 13:25:54 -0300312 /* module cs53132a: just ident 53132 */
313 V4L2_IDENT_CS53l32A = 53132,
314
Dmitri Belimovd53b2132010-03-18 04:00:19 -0300315 /* modules upd61151 MPEG2 encoder: just ident 54000 */
316 V4L2_IDENT_UPD61161 = 54000,
317 /* modules upd61152 MPEG2 encoder with AC3: just ident 54001 */
318 V4L2_IDENT_UPD61162 = 54001,
319
Hans Verkuil69d94f72009-03-18 13:25:54 -0300320 /* module upd64031a: just ident 64031 */
321 V4L2_IDENT_UPD64031A = 64031,
322
323 /* module upd64083: just ident 64083 */
324 V4L2_IDENT_UPD64083 = 64083,
325
Hans Verkuil32208d42010-03-14 08:01:55 -0300326 /* Don't just add new IDs at the end: KEEP THIS LIST ORDERED BY ID! */
Hans Verkuil3434eb72007-04-27 12:31:08 -0300327};
328
329#endif