m5mols_reg.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. /*
  2. * Register map for M-5MOLS 8M Pixel camera sensor with ISP
  3. *
  4. * Copyright (C) 2011 Samsung Electronics Co., Ltd.
  5. * Author: HeungJun Kim, riverful.kim@samsung.com
  6. *
  7. * Copyright (C) 2009 Samsung Electronics Co., Ltd.
  8. * Author: Dongsoo Nathaniel Kim, dongsoo45.kim@samsung.com
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. */
  15. #ifndef M5MOLS_REG_H
  16. #define M5MOLS_REG_H
  17. #define M5MOLS_I2C_MAX_SIZE 4
  18. #define M5MOLS_BYTE_READ 0x01
  19. #define M5MOLS_BYTE_WRITE 0x02
  20. #define I2C_CATEGORY(__cat) ((__cat >> 16) & 0xff)
  21. #define I2C_COMMAND(__comm) ((__comm >> 8) & 0xff)
  22. #define I2C_SIZE(__reg_s) ((__reg_s) & 0xff)
  23. #define I2C_REG(__cat, __cmd, __reg_s) ((__cat << 16) | (__cmd << 8) | __reg_s)
  24. /*
  25. * Category section register
  26. *
  27. * The category means set including relevant command of M-5MOLS.
  28. */
  29. #define CAT_SYSTEM 0x00
  30. #define CAT_PARAM 0x01
  31. #define CAT_MONITOR 0x02
  32. #define CAT_AE 0x03
  33. #define CAT_WB 0x06
  34. #define CAT_EXIF 0x07
  35. #define CAT_FD 0x09
  36. #define CAT_LENS 0x0a
  37. #define CAT_CAPT_PARM 0x0b
  38. #define CAT_CAPT_CTRL 0x0c
  39. #define CAT_FLASH 0x0f /* related to FW, revisions, booting */
  40. /*
  41. * Category 0 - SYSTEM mode
  42. *
  43. * The SYSTEM mode in the M-5MOLS means area available to handle with the whole
  44. * & all-round system of sensor. It deals with version/interrupt/setting mode &
  45. * even sensor's status. Especially, the M-5MOLS sensor with ISP varies by
  46. * packaging & manufacturer, even the customer and project code. And the
  47. * function details may vary among them. The version information helps to
  48. * determine what methods shall be used in the driver.
  49. *
  50. * There is many registers between customer version address and awb one. For
  51. * more specific contents, see definition if file m5mols.h.
  52. */
  53. #define CAT0_VER_CUSTOMER 0x00 /* customer version */
  54. #define CAT0_VER_AWB 0x09 /* Auto WB version */
  55. #define CAT0_VER_STRING 0x0a /* string including M-5MOLS */
  56. #define CAT0_SYSMODE 0x0b /* SYSTEM mode register */
  57. #define CAT0_STATUS 0x0c /* SYSTEM mode status register */
  58. #define CAT0_INT_FACTOR 0x10 /* interrupt pending register */
  59. #define CAT0_INT_ENABLE 0x11 /* interrupt enable register */
  60. #define SYSTEM_SYSMODE I2C_REG(CAT_SYSTEM, CAT0_SYSMODE, 1)
  61. #define REG_SYSINIT 0x00 /* SYSTEM mode */
  62. #define REG_PARAMETER 0x01 /* PARAMETER mode */
  63. #define REG_MONITOR 0x02 /* MONITOR mode */
  64. #define REG_CAPTURE 0x03 /* CAPTURE mode */
  65. #define SYSTEM_CMD(__cmd) I2C_REG(CAT_SYSTEM, cmd, 1)
  66. #define SYSTEM_VER_STRING I2C_REG(CAT_SYSTEM, CAT0_VER_STRING, 1)
  67. #define REG_SAMSUNG_ELECTRO "SE" /* Samsung Electro-Mechanics */
  68. #define REG_SAMSUNG_OPTICS "OP" /* Samsung Fiber-Optics */
  69. #define REG_SAMSUNG_TECHWIN "TB" /* Samsung Techwin */
  70. #define SYSTEM_INT_FACTOR I2C_REG(CAT_SYSTEM, CAT0_INT_FACTOR, 1)
  71. #define SYSTEM_INT_ENABLE I2C_REG(CAT_SYSTEM, CAT0_INT_ENABLE, 1)
  72. #define REG_INT_MODE (1 << 0)
  73. #define REG_INT_AF (1 << 1)
  74. #define REG_INT_ZOOM (1 << 2)
  75. #define REG_INT_CAPTURE (1 << 3)
  76. #define REG_INT_FRAMESYNC (1 << 4)
  77. #define REG_INT_FD (1 << 5)
  78. #define REG_INT_LENS_INIT (1 << 6)
  79. #define REG_INT_SOUND (1 << 7)
  80. #define REG_INT_MASK 0x0f
  81. /*
  82. * category 1 - PARAMETER mode
  83. *
  84. * This category supports function of camera features of M-5MOLS. It means we
  85. * can handle with preview(MONITOR) resolution size/frame per second/interface
  86. * between the sensor and the Application Processor/even the image effect.
  87. */
  88. #define CAT1_DATA_INTERFACE 0x00 /* interface between sensor and AP */
  89. #define CAT1_MONITOR_SIZE 0x01 /* resolution at the MONITOR mode */
  90. #define CAT1_MONITOR_FPS 0x02 /* frame per second at this mode */
  91. #define CAT1_EFFECT 0x0b /* image effects */
  92. #define PARM_MON_SIZE I2C_REG(CAT_PARAM, CAT1_MONITOR_SIZE, 1)
  93. #define PARM_MON_FPS I2C_REG(CAT_PARAM, CAT1_MONITOR_FPS, 1)
  94. #define REG_FPS_30 0x02
  95. #define PARM_INTERFACE I2C_REG(CAT_PARAM, CAT1_DATA_INTERFACE, 1)
  96. #define REG_INTERFACE_MIPI 0x02
  97. #define PARM_EFFECT I2C_REG(CAT_PARAM, CAT1_EFFECT, 1)
  98. #define REG_EFFECT_OFF 0x00
  99. #define REG_EFFECT_NEGA 0x01
  100. #define REG_EFFECT_EMBOSS 0x06
  101. #define REG_EFFECT_OUTLINE 0x07
  102. #define REG_EFFECT_WATERCOLOR 0x08
  103. /*
  104. * Category 2 - MONITOR mode
  105. *
  106. * The MONITOR mode is same as preview mode as we said. The M-5MOLS has another
  107. * mode named "Preview", but this preview mode is used at the case specific
  108. * vider-recording mode. This mmode supports only YUYV format. On the other
  109. * hand, the JPEG & RAW formats is supports by CAPTURE mode. And, there are
  110. * another options like zoom/color effect(different with effect in PARAMETER
  111. * mode)/anti hand shaking algorithm.
  112. */
  113. #define CAT2_ZOOM 0x01 /* set the zoom position & execute */
  114. #define CAT2_ZOOM_STEP 0x03 /* set the zoom step */
  115. #define CAT2_CFIXB 0x09 /* CB value for color effect */
  116. #define CAT2_CFIXR 0x0a /* CR value for color effect */
  117. #define CAT2_COLOR_EFFECT 0x0b /* set on/off of color effect */
  118. #define CAT2_CHROMA_LVL 0x0f /* set chroma level */
  119. #define CAT2_CHROMA_EN 0x10 /* set on/off of choroma */
  120. #define CAT2_EDGE_LVL 0x11 /* set sharpness level */
  121. #define CAT2_EDGE_EN 0x12 /* set on/off sharpness */
  122. #define CAT2_TONE_CTL 0x25 /* set tone color(contrast) */
  123. #define MON_ZOOM I2C_REG(CAT_MONITOR, CAT2_ZOOM, 1)
  124. #define MON_CFIXR I2C_REG(CAT_MONITOR, CAT2_CFIXR, 1)
  125. #define MON_CFIXB I2C_REG(CAT_MONITOR, CAT2_CFIXB, 1)
  126. #define REG_CFIXB_SEPIA 0xd8
  127. #define REG_CFIXR_SEPIA 0x18
  128. #define MON_EFFECT I2C_REG(CAT_MONITOR, CAT2_COLOR_EFFECT, 1)
  129. #define REG_COLOR_EFFECT_OFF 0x00
  130. #define REG_COLOR_EFFECT_ON 0x01
  131. #define MON_CHROMA_EN I2C_REG(CAT_MONITOR, CAT2_CHROMA_EN, 1)
  132. #define MON_CHROMA_LVL I2C_REG(CAT_MONITOR, CAT2_CHROMA_LVL, 1)
  133. #define REG_CHROMA_OFF 0x00
  134. #define REG_CHROMA_ON 0x01
  135. #define MON_EDGE_EN I2C_REG(CAT_MONITOR, CAT2_EDGE_EN, 1)
  136. #define MON_EDGE_LVL I2C_REG(CAT_MONITOR, CAT2_EDGE_LVL, 1)
  137. #define REG_EDGE_OFF 0x00
  138. #define REG_EDGE_ON 0x01
  139. #define MON_TONE_CTL I2C_REG(CAT_MONITOR, CAT2_TONE_CTL, 1)
  140. /*
  141. * Category 3 - Auto Exposure
  142. *
  143. * The M-5MOLS exposure capbility is detailed as which is similar to digital
  144. * camera. This category supports AE locking/various AE mode(range of exposure)
  145. * /ISO/flickering/EV bias/shutter/meteoring, and anything else. And the
  146. * maximum/minimum exposure gain value depending on M-5MOLS firmware, may be
  147. * different. So, this category also provide getting the max/min values. And,
  148. * each MONITOR and CAPTURE mode has each gain/shutter/max exposure values.
  149. */
  150. #define CAT3_AE_LOCK 0x00 /* locking Auto exposure */
  151. #define CAT3_AE_MODE 0x01 /* set AE mode, mode means range */
  152. #define CAT3_ISO 0x05 /* set ISO */
  153. #define CAT3_EV_PRESET_MONITOR 0x0a /* EV(scenemode) preset for MONITOR */
  154. #define CAT3_EV_PRESET_CAPTURE 0x0b /* EV(scenemode) preset for CAPTURE */
  155. #define CAT3_MANUAL_GAIN_MON 0x12 /* meteoring value for the MONITOR */
  156. #define CAT3_MAX_GAIN_MON 0x1a /* max gain value for the MONITOR */
  157. #define CAT3_MANUAL_GAIN_CAP 0x26 /* meteoring value for the CAPTURE */
  158. #define CAT3_AE_INDEX 0x38 /* AE index */
  159. #define AE_LOCK I2C_REG(CAT_AE, CAT3_AE_LOCK, 1)
  160. #define REG_AE_UNLOCK 0x00
  161. #define REG_AE_LOCK 0x01
  162. #define AE_MODE I2C_REG(CAT_AE, CAT3_AE_MODE, 1)
  163. #define REG_AE_OFF 0x00 /* AE off */
  164. #define REG_AE_ALL 0x01 /* calc AE in all block integral */
  165. #define REG_AE_CENTER 0x03 /* calc AE in center weighted */
  166. #define REG_AE_SPOT 0x06 /* calc AE in specific spot */
  167. #define AE_ISO I2C_REG(CAT_AE, CAT3_ISO, 1)
  168. #define REG_ISO_AUTO 0x00
  169. #define REG_ISO_50 0x01
  170. #define REG_ISO_100 0x02
  171. #define REG_ISO_200 0x03
  172. #define REG_ISO_400 0x04
  173. #define REG_ISO_800 0x05
  174. #define AE_EV_PRESET_MONITOR I2C_REG(CAT_AE, CAT3_EV_PRESET_MONITOR, 1)
  175. #define AE_EV_PRESET_CAPTURE I2C_REG(CAT_AE, CAT3_EV_PRESET_CAPTURE, 1)
  176. #define REG_SCENE_NORMAL 0x00
  177. #define REG_SCENE_PORTRAIT 0x01
  178. #define REG_SCENE_LANDSCAPE 0x02
  179. #define REG_SCENE_SPORTS 0x03
  180. #define REG_SCENE_PARTY_INDOOR 0x04
  181. #define REG_SCENE_BEACH_SNOW 0x05
  182. #define REG_SCENE_SUNSET 0x06
  183. #define REG_SCENE_DAWN_DUSK 0x07
  184. #define REG_SCENE_FALL 0x08
  185. #define REG_SCENE_NIGHT 0x09
  186. #define REG_SCENE_AGAINST_LIGHT 0x0a
  187. #define REG_SCENE_FIRE 0x0b
  188. #define REG_SCENE_TEXT 0x0c
  189. #define REG_SCENE_CANDLE 0x0d
  190. #define AE_MAN_GAIN_MON I2C_REG(CAT_AE, CAT3_MANUAL_GAIN_MON, 2)
  191. #define AE_MAX_GAIN_MON I2C_REG(CAT_AE, CAT3_MAX_GAIN_MON, 2)
  192. #define AE_MAN_GAIN_CAP I2C_REG(CAT_AE, CAT3_MANUAL_GAIN_CAP, 2)
  193. #define AE_INDEX I2C_REG(CAT_AE, CAT3_AE_INDEX, 1)
  194. #define REG_AE_INDEX_20_NEG 0x00
  195. #define REG_AE_INDEX_15_NEG 0x01
  196. #define REG_AE_INDEX_10_NEG 0x02
  197. #define REG_AE_INDEX_05_NEG 0x03
  198. #define REG_AE_INDEX_00 0x04
  199. #define REG_AE_INDEX_05_POS 0x05
  200. #define REG_AE_INDEX_10_POS 0x06
  201. #define REG_AE_INDEX_15_POS 0x07
  202. #define REG_AE_INDEX_20_POS 0x08
  203. /*
  204. * Category 6 - White Balance
  205. *
  206. * This category provide AWB locking/mode/preset/speed/gain bias, etc.
  207. */
  208. #define CAT6_AWB_LOCK 0x00 /* locking Auto Whitebalance */
  209. #define CAT6_AWB_MODE 0x02 /* set Auto or Manual */
  210. #define CAT6_AWB_MANUAL 0x03 /* set Manual(preset) value */
  211. #define AWB_LOCK I2C_REG(CAT_WB, CAT6_AWB_LOCK, 1)
  212. #define REG_AWB_UNLOCK 0x00
  213. #define REG_AWB_LOCK 0x01
  214. #define AWB_MODE I2C_REG(CAT_WB, CAT6_AWB_MODE, 1)
  215. #define REG_AWB_AUTO 0x01 /* AWB off */
  216. #define REG_AWB_PRESET 0x02 /* AWB preset */
  217. #define AWB_MANUAL I2C_REG(CAT_WB, CAT6_AWB_MANUAL, 1)
  218. #define REG_AWB_INCANDESCENT 0x01
  219. #define REG_AWB_FLUORESCENT_1 0x02
  220. #define REG_AWB_FLUORESCENT_2 0x03
  221. #define REG_AWB_DAYLIGHT 0x04
  222. #define REG_AWB_CLOUDY 0x05
  223. #define REG_AWB_SHADE 0x06
  224. #define REG_AWB_HORIZON 0x07
  225. #define REG_AWB_LEDLIGHT 0x09
  226. /*
  227. * Category 7 - EXIF information
  228. */
  229. #define CAT7_INFO_EXPTIME_NU 0x00
  230. #define CAT7_INFO_EXPTIME_DE 0x04
  231. #define CAT7_INFO_TV_NU 0x08
  232. #define CAT7_INFO_TV_DE 0x0c
  233. #define CAT7_INFO_AV_NU 0x10
  234. #define CAT7_INFO_AV_DE 0x14
  235. #define CAT7_INFO_BV_NU 0x18
  236. #define CAT7_INFO_BV_DE 0x1c
  237. #define CAT7_INFO_EBV_NU 0x20
  238. #define CAT7_INFO_EBV_DE 0x24
  239. #define CAT7_INFO_ISO 0x28
  240. #define CAT7_INFO_FLASH 0x2a
  241. #define CAT7_INFO_SDR 0x2c
  242. #define CAT7_INFO_QVAL 0x2e
  243. #define EXIF_INFO_EXPTIME_NU I2C_REG(CAT_EXIF, CAT7_INFO_EXPTIME_NU, 4)
  244. #define EXIF_INFO_EXPTIME_DE I2C_REG(CAT_EXIF, CAT7_INFO_EXPTIME_DE, 4)
  245. #define EXIF_INFO_TV_NU I2C_REG(CAT_EXIF, CAT7_INFO_TV_NU, 4)
  246. #define EXIF_INFO_TV_DE I2C_REG(CAT_EXIF, CAT7_INFO_TV_DE, 4)
  247. #define EXIF_INFO_AV_NU I2C_REG(CAT_EXIF, CAT7_INFO_AV_NU, 4)
  248. #define EXIF_INFO_AV_DE I2C_REG(CAT_EXIF, CAT7_INFO_AV_DE, 4)
  249. #define EXIF_INFO_BV_NU I2C_REG(CAT_EXIF, CAT7_INFO_BV_NU, 4)
  250. #define EXIF_INFO_BV_DE I2C_REG(CAT_EXIF, CAT7_INFO_BV_DE, 4)
  251. #define EXIF_INFO_EBV_NU I2C_REG(CAT_EXIF, CAT7_INFO_EBV_NU, 4)
  252. #define EXIF_INFO_EBV_DE I2C_REG(CAT_EXIF, CAT7_INFO_EBV_DE, 4)
  253. #define EXIF_INFO_ISO I2C_REG(CAT_EXIF, CAT7_INFO_ISO, 2)
  254. #define EXIF_INFO_FLASH I2C_REG(CAT_EXIF, CAT7_INFO_FLASH, 2)
  255. #define EXIF_INFO_SDR I2C_REG(CAT_EXIF, CAT7_INFO_SDR, 2)
  256. #define EXIF_INFO_QVAL I2C_REG(CAT_EXIF, CAT7_INFO_QVAL, 2)
  257. /*
  258. * Category 9 - Face Detection
  259. */
  260. #define CAT9_FD_CTL 0x00
  261. #define FD_CTL I2C_REG(CAT_FD, CAT9_FD_CTL, 1)
  262. #define BIT_FD_EN 0
  263. #define BIT_FD_DRAW_FACE_FRAME 4
  264. #define BIT_FD_DRAW_SMILE_LVL 6
  265. #define REG_FD(shift) (1 << shift)
  266. #define REG_FD_OFF 0x0
  267. /*
  268. * Category A - Lens Parameter
  269. */
  270. #define CATA_AF_MODE 0x01
  271. #define CATA_AF_EXECUTE 0x02
  272. #define CATA_AF_STATUS 0x03
  273. #define CATA_AF_VERSION 0x0a
  274. #define AF_MODE I2C_REG(CAT_LENS, CATA_AF_MODE, 1)
  275. #define REG_AF_NORMAL 0x00 /* Normal AF, one time */
  276. #define REG_AF_MACRO 0x01 /* Macro AF, one time */
  277. #define REG_AF_POWEROFF 0x07
  278. #define AF_EXECUTE I2C_REG(CAT_LENS, CATA_AF_EXECUTE, 1)
  279. #define REG_AF_STOP 0x00
  280. #define REG_AF_EXE_AUTO 0x01
  281. #define REG_AF_EXE_CAF 0x02
  282. #define AF_STATUS I2C_REG(CAT_LENS, CATA_AF_STATUS, 1)
  283. #define REG_AF_FAIL 0x00
  284. #define REG_AF_SUCCESS 0x02
  285. #define REG_AF_IDLE 0x04
  286. #define REG_AF_BUSY 0x05
  287. #define AF_VERSION I2C_REG(CAT_LENS, CATA_AF_VERSION, 1)
  288. /*
  289. * Category B - CAPTURE Parameter
  290. */
  291. #define CATB_YUVOUT_MAIN 0x00
  292. #define CATB_MAIN_IMAGE_SIZE 0x01
  293. #define CATB_MCC_MODE 0x1d
  294. #define CATB_WDR_EN 0x2c
  295. #define CATB_LIGHT_CTRL 0x40
  296. #define CATB_FLASH_CTRL 0x41
  297. #define CAPP_YUVOUT_MAIN I2C_REG(CAT_CAPT_PARM, CATB_YUVOUT_MAIN, 1)
  298. #define REG_YUV422 0x00
  299. #define REG_BAYER10 0x05
  300. #define REG_BAYER8 0x06
  301. #define REG_JPEG 0x10
  302. #define CAPP_MAIN_IMAGE_SIZE I2C_REG(CAT_CAPT_PARM, CATB_MAIN_IMAGE_SIZE, 1)
  303. #define CAPP_MCC_MODE I2C_REG(CAT_CAPT_PARM, CATB_MCC_MODE, 1)
  304. #define REG_MCC_OFF 0x00
  305. #define REG_MCC_NORMAL 0x01
  306. #define CAPP_WDR_EN I2C_REG(CAT_CAPT_PARM, CATB_WDR_EN, 1)
  307. #define REG_WDR_OFF 0x00
  308. #define REG_WDR_ON 0x01
  309. #define REG_WDR_AUTO 0x02
  310. #define CAPP_LIGHT_CTRL I2C_REG(CAT_CAPT_PARM, CATB_LIGHT_CTRL, 1)
  311. #define REG_LIGHT_OFF 0x00
  312. #define REG_LIGHT_ON 0x01
  313. #define REG_LIGHT_AUTO 0x02
  314. #define CAPP_FLASH_CTRL I2C_REG(CAT_CAPT_PARM, CATB_FLASH_CTRL, 1)
  315. #define REG_FLASH_OFF 0x00
  316. #define REG_FLASH_ON 0x01
  317. #define REG_FLASH_AUTO 0x02
  318. /*
  319. * Category C - CAPTURE Control
  320. */
  321. #define CATC_CAP_MODE 0x00
  322. #define CATC_CAP_SEL_FRAME 0x06 /* It determines Single or Multi */
  323. #define CATC_CAP_START 0x09
  324. #define CATC_CAP_IMAGE_SIZE 0x0d
  325. #define CATC_CAP_THUMB_SIZE 0x11
  326. #define CAPC_MODE I2C_REG(CAT_CAPT_CTRL, CATC_CAP_MODE, 1)
  327. #define REG_CAP_NONE 0x00
  328. #define REG_CAP_ANTI_SHAKE 0x02
  329. #define CAPC_SEL_FRAME I2C_REG(CAT_CAPT_CTRL, CATC_CAP_SEL_FRAME, 1)
  330. #define CAPC_START I2C_REG(CAT_CAPT_CTRL, CATC_CAP_START, 1)
  331. #define REG_CAP_START_MAIN 0x01
  332. #define REG_CAP_START_THUMB 0x03
  333. #define CAPC_IMAGE_SIZE I2C_REG(CAT_CAPT_CTRL, CATC_CAP_IMAGE_SIZE, 4)
  334. #define CAPC_THUMB_SIZE I2C_REG(CAT_CAPT_CTRL, CATC_CAP_THUMB_SIZE, 4)
  335. /*
  336. * Category F - Flash
  337. *
  338. * This mode provides functions about internal flash stuff and system startup.
  339. */
  340. #define CATF_CAM_START 0x12 /* It starts internal ARM core booting
  341. * after power-up */
  342. #define FLASH_CAM_START I2C_REG(CAT_FLASH, CATF_CAM_START, 1)
  343. #define REG_START_ARM_BOOT 0x01
  344. #endif /* M5MOLS_REG_H */