smiapp-quirk.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * drivers/media/i2c/smiapp/smiapp-quirk.c
  3. *
  4. * Generic driver for SMIA/SMIA++ compliant camera modules
  5. *
  6. * Copyright (C) 2011--2012 Nokia Corporation
  7. * Contact: Sakari Ailus <sakari.ailus@iki.fi>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * version 2 as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. *
  23. */
  24. #include <linux/delay.h>
  25. #include "smiapp.h"
  26. static int smiapp_write_8(struct smiapp_sensor *sensor, u16 reg, u8 val)
  27. {
  28. return smiapp_write(sensor, (SMIA_REG_8BIT << 16) | reg, val);
  29. }
  30. static int smiapp_write_8s(struct smiapp_sensor *sensor,
  31. struct smiapp_reg_8 *regs, int len)
  32. {
  33. struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
  34. int rval;
  35. for (; len > 0; len--, regs++) {
  36. rval = smiapp_write_8(sensor, regs->reg, regs->val);
  37. if (rval < 0) {
  38. dev_err(&client->dev,
  39. "error %d writing reg 0x%4.4x, val 0x%2.2x",
  40. rval, regs->reg, regs->val);
  41. return rval;
  42. }
  43. }
  44. return 0;
  45. }
  46. void smiapp_replace_limit(struct smiapp_sensor *sensor,
  47. u32 limit, u32 val)
  48. {
  49. struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
  50. dev_dbg(&client->dev, "quirk: 0x%8.8x \"%s\" = %d, 0x%x\n",
  51. smiapp_reg_limits[limit].addr,
  52. smiapp_reg_limits[limit].what, val, val);
  53. sensor->limits[limit] = val;
  54. }
  55. bool smiapp_quirk_reg(struct smiapp_sensor *sensor,
  56. u32 reg, u32 *val)
  57. {
  58. struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
  59. const struct smia_reg *sreg;
  60. if (!sensor->minfo.quirk)
  61. return false;
  62. sreg = sensor->minfo.quirk->regs;
  63. if (!sreg)
  64. return false;
  65. while (sreg->type) {
  66. u16 type = reg >> 16;
  67. u16 reg16 = reg;
  68. if (sreg->type != type || sreg->reg != reg16) {
  69. sreg++;
  70. continue;
  71. }
  72. switch ((u8)type) {
  73. case SMIA_REG_8BIT:
  74. dev_dbg(&client->dev, "quirk: 0x%8.8x: 0x%2.2x\n",
  75. reg, sreg->val);
  76. break;
  77. case SMIA_REG_16BIT:
  78. dev_dbg(&client->dev, "quirk: 0x%8.8x: 0x%4.4x\n",
  79. reg, sreg->val);
  80. break;
  81. case SMIA_REG_32BIT:
  82. dev_dbg(&client->dev, "quirk: 0x%8.8x: 0x%8.8x\n",
  83. reg, sreg->val);
  84. break;
  85. }
  86. *val = sreg->val;
  87. return true;
  88. }
  89. return false;
  90. }
  91. static int jt8ew9_limits(struct smiapp_sensor *sensor)
  92. {
  93. if (sensor->minfo.revision_number_major < 0x03)
  94. sensor->frame_skip = 1;
  95. /* Below 24 gain doesn't have effect at all, */
  96. /* but ~59 is needed for full dynamic range */
  97. smiapp_replace_limit(sensor, SMIAPP_LIMIT_ANALOGUE_GAIN_CODE_MIN, 59);
  98. smiapp_replace_limit(
  99. sensor, SMIAPP_LIMIT_ANALOGUE_GAIN_CODE_MAX, 6000);
  100. return 0;
  101. }
  102. static int jt8ew9_post_poweron(struct smiapp_sensor *sensor)
  103. {
  104. struct smiapp_reg_8 regs[] = {
  105. { 0x30a3, 0xd8 }, /* Output port control : LVDS ports only */
  106. { 0x30ae, 0x00 }, /* 0x0307 pll_multiplier maximum value on PLL input 9.6MHz ( 19.2MHz is divided on pre_pll_div) */
  107. { 0x30af, 0xd0 }, /* 0x0307 pll_multiplier maximum value on PLL input 9.6MHz ( 19.2MHz is divided on pre_pll_div) */
  108. { 0x322d, 0x04 }, /* Adjusting Processing Image Size to Scaler Toshiba Recommendation Setting */
  109. { 0x3255, 0x0f }, /* Horizontal Noise Reduction Control Toshiba Recommendation Setting */
  110. { 0x3256, 0x15 }, /* Horizontal Noise Reduction Control Toshiba Recommendation Setting */
  111. { 0x3258, 0x70 }, /* Analog Gain Control Toshiba Recommendation Setting */
  112. { 0x3259, 0x70 }, /* Analog Gain Control Toshiba Recommendation Setting */
  113. { 0x325f, 0x7c }, /* Analog Gain Control Toshiba Recommendation Setting */
  114. { 0x3302, 0x06 }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
  115. { 0x3304, 0x00 }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
  116. { 0x3307, 0x22 }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
  117. { 0x3308, 0x8d }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
  118. { 0x331e, 0x0f }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
  119. { 0x3320, 0x30 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
  120. { 0x3321, 0x11 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
  121. { 0x3322, 0x98 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
  122. { 0x3323, 0x64 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
  123. { 0x3325, 0x83 }, /* Read Out Timing Control Toshiba Recommendation Setting */
  124. { 0x3330, 0x18 }, /* Read Out Timing Control Toshiba Recommendation Setting */
  125. { 0x333c, 0x01 }, /* Read Out Timing Control Toshiba Recommendation Setting */
  126. { 0x3345, 0x2f }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
  127. { 0x33de, 0x38 }, /* Horizontal Noise Reduction Control Toshiba Recommendation Setting */
  128. /* Taken from v03. No idea what the rest are. */
  129. { 0x32e0, 0x05 },
  130. { 0x32e1, 0x05 },
  131. { 0x32e2, 0x04 },
  132. { 0x32e5, 0x04 },
  133. { 0x32e6, 0x04 },
  134. };
  135. return smiapp_write_8s(sensor, regs, ARRAY_SIZE(regs));
  136. }
  137. const struct smiapp_quirk smiapp_jt8ew9_quirk = {
  138. .limits = jt8ew9_limits,
  139. .post_poweron = jt8ew9_post_poweron,
  140. };
  141. static int imx125es_post_poweron(struct smiapp_sensor *sensor)
  142. {
  143. /* Taken from v02. No idea what the other two are. */
  144. struct smiapp_reg_8 regs[] = {
  145. /*
  146. * 0x3302: clk during frame blanking:
  147. * 0x00 - HS mode, 0x01 - LP11
  148. */
  149. { 0x3302, 0x01 },
  150. { 0x302d, 0x00 },
  151. { 0x3b08, 0x8c },
  152. };
  153. return smiapp_write_8s(sensor, regs, ARRAY_SIZE(regs));
  154. }
  155. const struct smiapp_quirk smiapp_imx125es_quirk = {
  156. .post_poweron = imx125es_post_poweron,
  157. };
  158. static int jt8ev1_limits(struct smiapp_sensor *sensor)
  159. {
  160. smiapp_replace_limit(sensor, SMIAPP_LIMIT_X_ADDR_MAX, 4271);
  161. smiapp_replace_limit(sensor,
  162. SMIAPP_LIMIT_MIN_LINE_BLANKING_PCK_BIN, 184);
  163. return 0;
  164. }
  165. static int jt8ev1_post_poweron(struct smiapp_sensor *sensor)
  166. {
  167. struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
  168. int rval;
  169. struct smiapp_reg_8 regs[] = {
  170. { 0x3031, 0xcd }, /* For digital binning (EQ_MONI) */
  171. { 0x30a3, 0xd0 }, /* FLASH STROBE enable */
  172. { 0x3237, 0x00 }, /* For control of pulse timing for ADC */
  173. { 0x3238, 0x43 },
  174. { 0x3301, 0x06 }, /* For analog bias for sensor */
  175. { 0x3302, 0x06 },
  176. { 0x3304, 0x00 },
  177. { 0x3305, 0x88 },
  178. { 0x332a, 0x14 },
  179. { 0x332c, 0x6b },
  180. { 0x3336, 0x01 },
  181. { 0x333f, 0x1f },
  182. { 0x3355, 0x00 },
  183. { 0x3356, 0x20 },
  184. { 0x33bf, 0x20 }, /* Adjust the FBC speed */
  185. { 0x33c9, 0x20 },
  186. { 0x33ce, 0x30 }, /* Adjust the parameter for logic function */
  187. { 0x33cf, 0xec }, /* For Black sun */
  188. { 0x3328, 0x80 }, /* Ugh. No idea what's this. */
  189. };
  190. struct smiapp_reg_8 regs_96[] = {
  191. { 0x30ae, 0x00 }, /* For control of ADC clock */
  192. { 0x30af, 0xd0 },
  193. { 0x30b0, 0x01 },
  194. };
  195. rval = smiapp_write_8s(sensor, regs, ARRAY_SIZE(regs));
  196. if (rval < 0)
  197. return rval;
  198. switch (sensor->platform_data->ext_clk) {
  199. case 9600000:
  200. return smiapp_write_8s(sensor, regs_96,
  201. ARRAY_SIZE(regs_96));
  202. default:
  203. dev_warn(&client->dev, "no MSRs for %d Hz ext_clk\n",
  204. sensor->platform_data->ext_clk);
  205. return 0;
  206. }
  207. }
  208. static int jt8ev1_pre_streamon(struct smiapp_sensor *sensor)
  209. {
  210. return smiapp_write_8(sensor, 0x3328, 0x00);
  211. }
  212. static int jt8ev1_post_streamoff(struct smiapp_sensor *sensor)
  213. {
  214. int rval;
  215. /* Workaround: allows fast standby to work properly */
  216. rval = smiapp_write_8(sensor, 0x3205, 0x04);
  217. if (rval < 0)
  218. return rval;
  219. /* Wait for 1 ms + one line => 2 ms is likely enough */
  220. usleep_range(2000, 2000);
  221. /* Restore it */
  222. rval = smiapp_write_8(sensor, 0x3205, 0x00);
  223. if (rval < 0)
  224. return rval;
  225. return smiapp_write_8(sensor, 0x3328, 0x80);
  226. }
  227. const struct smiapp_quirk smiapp_jt8ev1_quirk = {
  228. .limits = jt8ev1_limits,
  229. .post_poweron = jt8ev1_post_poweron,
  230. .pre_streamon = jt8ev1_pre_streamon,
  231. .post_streamoff = jt8ev1_post_streamoff,
  232. .flags = SMIAPP_QUIRK_FLAG_OP_PIX_CLOCK_PER_LANE,
  233. };
  234. static int tcm8500md_limits(struct smiapp_sensor *sensor)
  235. {
  236. smiapp_replace_limit(sensor, SMIAPP_LIMIT_MIN_PLL_IP_FREQ_HZ, 2700000);
  237. return 0;
  238. }
  239. const struct smiapp_quirk smiapp_tcm8500md_quirk = {
  240. .limits = tcm8500md_limits,
  241. };