m5mols_reg.h 14 KB

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