2 * Samsung s5h1432 DVB-T demodulator driver
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/string.h>
25 #include <linux/slab.h>
26 #include <linux/delay.h>
27 #include "dvb_frontend.h"
30 struct s5h1432_state {
32 struct i2c_adapter *i2c;
34 /* configuration settings */
35 const struct s5h1432_config *config;
37 struct dvb_frontend frontend;
39 enum fe_modulation current_modulation;
40 unsigned int first_tune:1;
42 u32 current_frequency;
50 #define dprintk(arg...) do { \
55 static int s5h1432_writereg(struct s5h1432_state *state,
56 u8 addr, u8 reg, u8 data)
59 u8 buf[] = { reg, data };
61 struct i2c_msg msg = {.addr = addr, .flags = 0, .buf = buf, .len = 2 };
63 ret = i2c_transfer(state->i2c, &msg, 1);
66 printk(KERN_ERR "%s: writereg error 0x%02x 0x%02x 0x%04x, "
67 "ret == %i)\n", __func__, addr, reg, data, ret);
69 return (ret != 1) ? -1 : 0;
72 static u8 s5h1432_readreg(struct s5h1432_state *state, u8 addr, u8 reg)
78 struct i2c_msg msg[] = {
79 {.addr = addr, .flags = 0, .buf = b0, .len = 1},
80 {.addr = addr, .flags = I2C_M_RD, .buf = b1, .len = 1}
83 ret = i2c_transfer(state->i2c, msg, 2);
86 printk(KERN_ERR "%s: readreg error (ret == %i)\n",
91 static int s5h1432_sleep(struct dvb_frontend *fe)
96 static int s5h1432_set_channel_bandwidth(struct dvb_frontend *fe,
99 struct s5h1432_state *state = fe->demodulator_priv;
103 /* Register [0x2E] bit 3:2 : 8MHz = 0; 7MHz = 1; 6MHz = 2 */
104 reg = s5h1432_readreg(state, S5H1432_I2C_TOP_ADDR, 0x2E);
119 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x2E, reg);
123 static int s5h1432_set_IF(struct dvb_frontend *fe, u32 ifFreqHz)
125 struct s5h1432_state *state = fe->demodulator_priv;
128 case TAIWAN_HI_IF_FREQ_44_MHZ:
129 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4, 0x55);
130 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5, 0x55);
131 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7, 0x15);
133 case EUROPE_HI_IF_FREQ_36_MHZ:
134 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4, 0x00);
135 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5, 0x00);
136 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7, 0x40);
139 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4, 0x00);
140 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5, 0x00);
141 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7, 0xe0);
143 case IF_FREQ_3point3_MHZ:
144 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4, 0x66);
145 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5, 0x66);
146 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7, 0xEE);
148 case IF_FREQ_3point5_MHZ:
149 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4, 0x55);
150 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5, 0x55);
151 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7, 0xED);
154 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4, 0xAA);
155 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5, 0xAA);
156 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7, 0xEA);
161 value = (u32) (((48000 - (ifFreqHz / 1000)) * 512 *
162 (u32) 32768) / (48 * 1000));
164 "Default IFFreq %d :reg value = 0x%x\n",
166 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4,
168 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5,
169 (u8) (value >> 8) & 0xFF);
170 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7,
171 (u8) (value >> 16) & 0xFF);
180 /* Talk to the demod, set the FEC, GUARD, QAM settings etc */
181 static int s5h1432_set_frontend(struct dvb_frontend *fe)
183 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
184 u32 dvb_bandwidth = 8;
185 struct s5h1432_state *state = fe->demodulator_priv;
187 if (p->frequency == state->current_frequency) {
188 /*current_frequency = p->frequency; */
189 /*state->current_frequency = p->frequency; */
191 fe->ops.tuner_ops.set_params(fe);
193 s5h1432_set_channel_bandwidth(fe, dvb_bandwidth);
194 switch (p->bandwidth_hz) {
197 s5h1432_set_IF(fe, IF_FREQ_4_MHZ);
201 s5h1432_set_IF(fe, IF_FREQ_4_MHZ);
205 s5h1432_set_IF(fe, IF_FREQ_4_MHZ);
210 /*fe->ops.tuner_ops.set_params(fe); */
213 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x09, 0x1a);
215 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x09, 0x1b);
217 s5h1432_set_channel_bandwidth(fe, dvb_bandwidth);
218 switch (p->bandwidth_hz) {
221 s5h1432_set_IF(fe, IF_FREQ_4_MHZ);
225 s5h1432_set_IF(fe, IF_FREQ_4_MHZ);
229 s5h1432_set_IF(fe, IF_FREQ_4_MHZ);
234 /*fe->ops.tuner_ops.set_params(fe); */
237 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x09, 0x1a);
239 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x09, 0x1b);
243 state->current_frequency = p->frequency;
248 static int s5h1432_init(struct dvb_frontend *fe)
250 struct s5h1432_state *state = fe->demodulator_priv;
253 state->current_frequency = 0;
254 printk(KERN_INFO " s5h1432_init().\n");
256 /*Set VSB mode as default, this also does a soft reset */
257 /*Initialize registers */
259 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x04, 0xa8);
260 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x05, 0x01);
261 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x07, 0x70);
262 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x19, 0x80);
263 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x1b, 0x9D);
264 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x1c, 0x30);
265 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x1d, 0x20);
266 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x1e, 0x1B);
267 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x2e, 0x40);
268 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x42, 0x84);
269 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x50, 0x5a);
270 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x5a, 0xd3);
271 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x68, 0x50);
272 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xb8, 0x3c);
273 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xc4, 0x10);
274 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xcc, 0x9c);
275 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xDA, 0x00);
276 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe1, 0x94);
277 /* s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xf4, 0xa1); */
278 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xf9, 0x00);
282 /*Set 3.3MHz as default IF frequency */
283 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe4, 0x66);
284 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe5, 0x66);
285 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0xe7, 0xEE);
286 /* Set reg 0x1E to get the full dynamic range */
287 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x1e, 0x31);
289 /* Mode setting in demod */
290 reg = s5h1432_readreg(state, S5H1432_I2C_TOP_ADDR, 0x42);
292 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x42, reg);
295 /* Soft Reset chip */
297 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x09, 0x1a);
299 s5h1432_writereg(state, S5H1432_I2C_TOP_ADDR, 0x09, 0x1b);
305 static int s5h1432_read_status(struct dvb_frontend *fe, enum fe_status *status)
310 static int s5h1432_read_signal_strength(struct dvb_frontend *fe,
311 u16 *signal_strength)
316 static int s5h1432_read_snr(struct dvb_frontend *fe, u16 *snr)
321 static int s5h1432_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
327 static int s5h1432_read_ber(struct dvb_frontend *fe, u32 *ber)
332 static int s5h1432_get_tune_settings(struct dvb_frontend *fe,
333 struct dvb_frontend_tune_settings *tune)
338 static void s5h1432_release(struct dvb_frontend *fe)
340 struct s5h1432_state *state = fe->demodulator_priv;
344 static struct dvb_frontend_ops s5h1432_ops;
346 struct dvb_frontend *s5h1432_attach(const struct s5h1432_config *config,
347 struct i2c_adapter *i2c)
349 struct s5h1432_state *state = NULL;
351 printk(KERN_INFO " Enter s5h1432_attach(). attach success!\n");
352 /* allocate memory for the internal state */
353 state = kmalloc(sizeof(struct s5h1432_state), GFP_KERNEL);
357 /* setup the state */
358 state->config = config;
360 state->current_modulation = QAM_16;
361 state->inversion = state->config->inversion;
363 /* create dvb_frontend */
364 memcpy(&state->frontend.ops, &s5h1432_ops,
365 sizeof(struct dvb_frontend_ops));
367 state->frontend.demodulator_priv = state;
369 return &state->frontend;
371 EXPORT_SYMBOL(s5h1432_attach);
373 static struct dvb_frontend_ops s5h1432_ops = {
374 .delsys = { SYS_DVBT },
376 .name = "Samsung s5h1432 DVB-T Frontend",
377 .frequency_min = 177000000,
378 .frequency_max = 858000000,
379 .frequency_stepsize = 166666,
380 .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
381 FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
382 FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 | FE_CAN_QAM_AUTO |
383 FE_CAN_HIERARCHY_AUTO | FE_CAN_GUARD_INTERVAL_AUTO |
384 FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_RECOVER},
386 .init = s5h1432_init,
387 .sleep = s5h1432_sleep,
388 .set_frontend = s5h1432_set_frontend,
389 .get_tune_settings = s5h1432_get_tune_settings,
390 .read_status = s5h1432_read_status,
391 .read_ber = s5h1432_read_ber,
392 .read_signal_strength = s5h1432_read_signal_strength,
393 .read_snr = s5h1432_read_snr,
394 .read_ucblocks = s5h1432_read_ucblocks,
395 .release = s5h1432_release,
398 module_param(debug, int, 0644);
399 MODULE_PARM_DESC(debug, "Enable verbose debug messages");
401 MODULE_DESCRIPTION("Samsung s5h1432 DVB-T Demodulator driver");
402 MODULE_AUTHOR("Bill Liu");
403 MODULE_LICENSE("GPL");