Merge tag 'lsk-android-14.03' into develop-3.10
[firefly-linux-kernel-4.4.55.git] / drivers / media / video / mt9m112.h
1 /*
2  * Driver for MT9P111 CMOS Image Sensor from Aptina
3  *
4  * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10
11 #ifndef __MT9M112_H__
12 #define __MT9M112_H__
13 struct reginfo
14 {
15     u8 reg;
16     u16 val;
17 };
18
19 #define WORD_LEN             0x04
20 #define BYTE_LEN             0x02
21
22 #define SEQUENCE_INIT        0x00
23 #define SEQUENCE_NORMAL      0x01
24 #define SEQUENCE_CAPTURE     0x02
25 #define SEQUENCE_PREVIEW     0x03
26
27 #define SEQUENCE_PROPERTY    0xFC
28 #define SEQUENCE_WAIT_MS     0xFD
29 #define SEQUENCE_WAIT_US     0xFE
30 #define SEQUENCE_END         0xFF
31 #endif