blob: 81c2be3d47cb9eccdf06dff1ca3edb580e6a4cb8 [file] [log] [blame]
Sakari Ailusccfc97b2012-03-03 17:19:52 -03001/*
2 * drivers/media/video/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@maxwell.research.nokia.com>
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
Sakari Ailusccfc97b2012-03-03 17:19:52 -030025#include <linux/delay.h>
26
27#include "smiapp.h"
28
29static int smiapp_write_8(struct smiapp_sensor *sensor, u16 reg, u8 val)
30{
Sakari Ailus1e73eea2012-04-22 08:55:10 -030031 return smiapp_write(sensor, (SMIA_REG_8BIT << 16) | reg, val);
Sakari Ailusccfc97b2012-03-03 17:19:52 -030032}
33
34static int smiapp_write_8s(struct smiapp_sensor *sensor,
35 struct smiapp_reg_8 *regs, int len)
36{
37 struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
38 int rval;
39
40 for (; len > 0; len--, regs++) {
41 rval = smiapp_write_8(sensor, regs->reg, regs->val);
42 if (rval < 0) {
43 dev_err(&client->dev,
44 "error %d writing reg 0x%4.4x, val 0x%2.2x",
45 rval, regs->reg, regs->val);
46 return rval;
47 }
48 }
49
50 return 0;
51}
52
53void smiapp_replace_limit(struct smiapp_sensor *sensor,
54 u32 limit, u32 val)
55{
56 struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
57
58 dev_dbg(&client->dev, "quirk: 0x%8.8x \"%s\" = %d, 0x%x\n",
59 smiapp_reg_limits[limit].addr,
60 smiapp_reg_limits[limit].what, val, val);
61 sensor->limits[limit] = val;
62}
63
64int smiapp_replace_limit_at(struct smiapp_sensor *sensor,
65 u32 reg, u32 val)
66{
67 struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
68 int i;
69
70 for (i = 0; smiapp_reg_limits[i].addr; i++) {
71 if ((smiapp_reg_limits[i].addr & 0xffff) != reg)
72 continue;
73
74 smiapp_replace_limit(sensor, i, val);
75
76 return 0;
77 }
78
79 dev_dbg(&client->dev, "quirk: bad register 0x%4.4x\n", reg);
80
81 return -EINVAL;
82}
83
84static int jt8ew9_limits(struct smiapp_sensor *sensor)
85{
86 if (sensor->minfo.revision_number_major < 0x03)
87 sensor->frame_skip = 1;
88
89 /* Below 24 gain doesn't have effect at all, */
90 /* but ~59 is needed for full dynamic range */
91 smiapp_replace_limit(sensor, SMIAPP_LIMIT_ANALOGUE_GAIN_CODE_MIN, 59);
92 smiapp_replace_limit(
93 sensor, SMIAPP_LIMIT_ANALOGUE_GAIN_CODE_MAX, 6000);
94
95 return 0;
96}
97
98static int jt8ew9_post_poweron(struct smiapp_sensor *sensor)
99{
100 struct smiapp_reg_8 regs[] = {
101 { 0x30a3, 0xd8 }, /* Output port control : LVDS ports only */
102 { 0x30ae, 0x00 }, /* 0x0307 pll_multiplier maximum value on PLL input 9.6MHz ( 19.2MHz is divided on pre_pll_div) */
103 { 0x30af, 0xd0 }, /* 0x0307 pll_multiplier maximum value on PLL input 9.6MHz ( 19.2MHz is divided on pre_pll_div) */
104 { 0x322d, 0x04 }, /* Adjusting Processing Image Size to Scaler Toshiba Recommendation Setting */
105 { 0x3255, 0x0f }, /* Horizontal Noise Reduction Control Toshiba Recommendation Setting */
106 { 0x3256, 0x15 }, /* Horizontal Noise Reduction Control Toshiba Recommendation Setting */
107 { 0x3258, 0x70 }, /* Analog Gain Control Toshiba Recommendation Setting */
108 { 0x3259, 0x70 }, /* Analog Gain Control Toshiba Recommendation Setting */
109 { 0x325f, 0x7c }, /* Analog Gain Control Toshiba Recommendation Setting */
110 { 0x3302, 0x06 }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
111 { 0x3304, 0x00 }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
112 { 0x3307, 0x22 }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
113 { 0x3308, 0x8d }, /* Pixel Reference Voltage Control Toshiba Recommendation Setting */
114 { 0x331e, 0x0f }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
115 { 0x3320, 0x30 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
116 { 0x3321, 0x11 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
117 { 0x3322, 0x98 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
118 { 0x3323, 0x64 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
119 { 0x3325, 0x83 }, /* Read Out Timing Control Toshiba Recommendation Setting */
120 { 0x3330, 0x18 }, /* Read Out Timing Control Toshiba Recommendation Setting */
121 { 0x333c, 0x01 }, /* Read Out Timing Control Toshiba Recommendation Setting */
122 { 0x3345, 0x2f }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */
123 { 0x33de, 0x38 }, /* Horizontal Noise Reduction Control Toshiba Recommendation Setting */
124 /* Taken from v03. No idea what the rest are. */
125 { 0x32e0, 0x05 },
126 { 0x32e1, 0x05 },
127 { 0x32e2, 0x04 },
128 { 0x32e5, 0x04 },
129 { 0x32e6, 0x04 },
130
131 };
132
133 return smiapp_write_8s(sensor, regs, ARRAY_SIZE(regs));
134}
135
136const struct smiapp_quirk smiapp_jt8ew9_quirk = {
137 .limits = jt8ew9_limits,
138 .post_poweron = jt8ew9_post_poweron,
139};
140
141static 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
154 return smiapp_write_8s(sensor, regs, ARRAY_SIZE(regs));
155}
156
157const struct smiapp_quirk smiapp_imx125es_quirk = {
158 .post_poweron = imx125es_post_poweron,
159};
160
161static int jt8ev1_limits(struct smiapp_sensor *sensor)
162{
163 smiapp_replace_limit(sensor, SMIAPP_LIMIT_X_ADDR_MAX, 4271);
164 smiapp_replace_limit(sensor,
165 SMIAPP_LIMIT_MIN_LINE_BLANKING_PCK_BIN, 184);
166
167 return 0;
168}
169
170static int jt8ev1_post_poweron(struct smiapp_sensor *sensor)
171{
172 struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
173 int rval;
174
175 struct smiapp_reg_8 regs[] = {
176 { 0x3031, 0xcd }, /* For digital binning (EQ_MONI) */
177 { 0x30a3, 0xd0 }, /* FLASH STROBE enable */
178 { 0x3237, 0x00 }, /* For control of pulse timing for ADC */
179 { 0x3238, 0x43 },
180 { 0x3301, 0x06 }, /* For analog bias for sensor */
181 { 0x3302, 0x06 },
182 { 0x3304, 0x00 },
183 { 0x3305, 0x88 },
184 { 0x332a, 0x14 },
185 { 0x332c, 0x6b },
186 { 0x3336, 0x01 },
187 { 0x333f, 0x1f },
188 { 0x3355, 0x00 },
189 { 0x3356, 0x20 },
190 { 0x33bf, 0x20 }, /* Adjust the FBC speed */
191 { 0x33c9, 0x20 },
192 { 0x33ce, 0x30 }, /* Adjust the parameter for logic function */
193 { 0x33cf, 0xec }, /* For Black sun */
194 { 0x3328, 0x80 }, /* Ugh. No idea what's this. */
195 };
196
197 struct smiapp_reg_8 regs_96[] = {
198 { 0x30ae, 0x00 }, /* For control of ADC clock */
199 { 0x30af, 0xd0 },
200 { 0x30b0, 0x01 },
201 };
202
203 rval = smiapp_write_8s(sensor, regs, ARRAY_SIZE(regs));
204 if (rval < 0)
205 return rval;
206
207 switch (sensor->platform_data->ext_clk) {
208 case 9600000:
209 return smiapp_write_8s(sensor, regs_96,
210 ARRAY_SIZE(regs_96));
211 default:
212 dev_warn(&client->dev, "no MSRs for %d Hz ext_clk\n",
213 sensor->platform_data->ext_clk);
214 return 0;
215 }
216}
217
218static int jt8ev1_pre_streamon(struct smiapp_sensor *sensor)
219{
220 return smiapp_write_8(sensor, 0x3328, 0x00);
221}
222
223static int jt8ev1_post_streamoff(struct smiapp_sensor *sensor)
224{
225 int rval;
226
227 /* Workaround: allows fast standby to work properly */
228 rval = smiapp_write_8(sensor, 0x3205, 0x04);
229 if (rval < 0)
230 return rval;
231
232 /* Wait for 1 ms + one line => 2 ms is likely enough */
233 usleep_range(2000, 2000);
234
235 /* Restore it */
236 rval = smiapp_write_8(sensor, 0x3205, 0x00);
237 if (rval < 0)
238 return rval;
239
240 return smiapp_write_8(sensor, 0x3328, 0x80);
241}
242
243const struct smiapp_quirk smiapp_jt8ev1_quirk = {
244 .limits = jt8ev1_limits,
245 .post_poweron = jt8ev1_post_poweron,
246 .pre_streamon = jt8ev1_pre_streamon,
247 .post_streamoff = jt8ev1_post_streamoff,
248 .flags = SMIAPP_QUIRK_FLAG_OP_PIX_CLOCK_PER_LANE,
249};
250
251static int tcm8500md_limits(struct smiapp_sensor *sensor)
252{
253 smiapp_replace_limit(sensor, SMIAPP_LIMIT_MIN_PLL_IP_FREQ_HZ, 2700000);
254
255 return 0;
256}
257
258const struct smiapp_quirk smiapp_tcm8500md_quirk = {
259 .limits = tcm8500md_limits,
260};