2 #include <linux/mutex.h>
3 #include <linux/module.h>
5 #include "dibx000_common.h"
8 module_param(debug, int, 0644);
9 MODULE_PARM_DESC(debug, "turn on debugging (default: 0)");
11 #define dprintk(args...) do { if (debug) { printk(KERN_DEBUG "DiBX000: "); printk(args); printk("\n"); } } while (0)
13 static int dibx000_write_word(struct dibx000_i2c_master *mst, u16 reg, u16 val)
17 if (mutex_lock_interruptible(&mst->i2c_buffer_lock) < 0) {
18 dprintk("could not acquire lock");
22 mst->i2c_write_buffer[0] = (reg >> 8) & 0xff;
23 mst->i2c_write_buffer[1] = reg & 0xff;
24 mst->i2c_write_buffer[2] = (val >> 8) & 0xff;
25 mst->i2c_write_buffer[3] = val & 0xff;
27 memset(mst->msg, 0, sizeof(struct i2c_msg));
28 mst->msg[0].addr = mst->i2c_addr;
29 mst->msg[0].flags = 0;
30 mst->msg[0].buf = mst->i2c_write_buffer;
33 ret = i2c_transfer(mst->i2c_adap, mst->msg, 1) != 1 ? -EREMOTEIO : 0;
34 mutex_unlock(&mst->i2c_buffer_lock);
39 static u16 dibx000_read_word(struct dibx000_i2c_master *mst, u16 reg)
43 if (mutex_lock_interruptible(&mst->i2c_buffer_lock) < 0) {
44 dprintk("could not acquire lock");
48 mst->i2c_write_buffer[0] = reg >> 8;
49 mst->i2c_write_buffer[1] = reg & 0xff;
51 memset(mst->msg, 0, 2 * sizeof(struct i2c_msg));
52 mst->msg[0].addr = mst->i2c_addr;
53 mst->msg[0].flags = 0;
54 mst->msg[0].buf = mst->i2c_write_buffer;
56 mst->msg[1].addr = mst->i2c_addr;
57 mst->msg[1].flags = I2C_M_RD;
58 mst->msg[1].buf = mst->i2c_read_buffer;
61 if (i2c_transfer(mst->i2c_adap, mst->msg, 2) != 2)
62 dprintk("i2c read error on %d", reg);
64 ret = (mst->i2c_read_buffer[0] << 8) | mst->i2c_read_buffer[1];
65 mutex_unlock(&mst->i2c_buffer_lock);
70 static int dibx000_is_i2c_done(struct dibx000_i2c_master *mst)
75 while (((status = dibx000_read_word(mst, mst->base_reg + 2)) & 0x0100) == 0 && --i > 0)
83 if ((status & 0x0080) == 0)
89 static int dibx000_master_i2c_write(struct dibx000_i2c_master *mst, struct i2c_msg *msg, u8 stop)
94 u16 txlen = msg->len, len;
95 const u8 *b = msg->buf;
98 dibx000_read_word(mst, mst->base_reg + 2);
100 len = txlen > 8 ? 8 : txlen;
101 for (i = 0; i < len; i += 2) {
105 dibx000_write_word(mst, mst->base_reg, data);
107 da = (((u8) (msg->addr)) << 9) |
116 if (txlen == msg->len)
117 da |= 1 << 5; /* start */
119 if (txlen-len == 0 && stop)
120 da |= 1 << 6; /* stop */
122 dibx000_write_word(mst, mst->base_reg+1, da);
124 if (dibx000_is_i2c_done(mst) != 0)
132 static int dibx000_master_i2c_read(struct dibx000_i2c_master *mst, struct i2c_msg *msg)
136 u16 rxlen = msg->len, len;
139 len = rxlen > 8 ? 8 : rxlen;
140 da = (((u8) (msg->addr)) << 9) |
149 if (rxlen == msg->len)
150 da |= 1 << 5; /* start */
153 da |= 1 << 6; /* stop */
154 dibx000_write_word(mst, mst->base_reg+1, da);
156 if (dibx000_is_i2c_done(mst) != 0)
162 da = dibx000_read_word(mst, mst->base_reg);
163 *b++ = (da >> 8) & 0xff;
175 int dibx000_i2c_set_speed(struct i2c_adapter *i2c_adap, u16 speed)
177 struct dibx000_i2c_master *mst = i2c_get_adapdata(i2c_adap);
179 if (mst->device_rev < DIB7000MC && speed < 235)
181 return dibx000_write_word(mst, mst->base_reg + 3, (u16)(60000 / speed));
184 EXPORT_SYMBOL(dibx000_i2c_set_speed);
186 static u32 dibx000_i2c_func(struct i2c_adapter *adapter)
191 static int dibx000_i2c_select_interface(struct dibx000_i2c_master *mst,
192 enum dibx000_i2c_interface intf)
194 if (mst->device_rev > DIB3000MC && mst->selected_interface != intf) {
195 dprintk("selecting interface: %d", intf);
196 mst->selected_interface = intf;
197 return dibx000_write_word(mst, mst->base_reg + 4, intf);
202 static int dibx000_i2c_master_xfer_gpio12(struct i2c_adapter *i2c_adap, struct i2c_msg msg[], int num)
204 struct dibx000_i2c_master *mst = i2c_get_adapdata(i2c_adap);
208 dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_GPIO_1_2);
209 for (msg_index = 0; msg_index < num; msg_index++) {
210 if (msg[msg_index].flags & I2C_M_RD) {
211 ret = dibx000_master_i2c_read(mst, &msg[msg_index]);
215 ret = dibx000_master_i2c_write(mst, &msg[msg_index], 1);
224 static int dibx000_i2c_master_xfer_gpio34(struct i2c_adapter *i2c_adap, struct i2c_msg msg[], int num)
226 struct dibx000_i2c_master *mst = i2c_get_adapdata(i2c_adap);
230 dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_GPIO_3_4);
231 for (msg_index = 0; msg_index < num; msg_index++) {
232 if (msg[msg_index].flags & I2C_M_RD) {
233 ret = dibx000_master_i2c_read(mst, &msg[msg_index]);
237 ret = dibx000_master_i2c_write(mst, &msg[msg_index], 1);
246 static struct i2c_algorithm dibx000_i2c_master_gpio12_xfer_algo = {
247 .master_xfer = dibx000_i2c_master_xfer_gpio12,
248 .functionality = dibx000_i2c_func,
251 static struct i2c_algorithm dibx000_i2c_master_gpio34_xfer_algo = {
252 .master_xfer = dibx000_i2c_master_xfer_gpio34,
253 .functionality = dibx000_i2c_func,
256 static int dibx000_i2c_gate_ctrl(struct dibx000_i2c_master *mst, u8 tx[4],
263 val = addr << 8; // bit 7 = use master or not, if 0, the gate is open
267 if (mst->device_rev > DIB7000)
270 tx[0] = (((mst->base_reg + 1) >> 8) & 0xff);
271 tx[1] = ((mst->base_reg + 1) & 0xff);
278 static int dibx000_i2c_gated_gpio67_xfer(struct i2c_adapter *i2c_adap,
279 struct i2c_msg msg[], int num)
281 struct dibx000_i2c_master *mst = i2c_get_adapdata(i2c_adap);
285 dprintk("%s: too much I2C message to be transmitted (%i).\
286 Maximum is 32", __func__, num);
290 dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_GPIO_6_7);
292 if (mutex_lock_interruptible(&mst->i2c_buffer_lock) < 0) {
293 dprintk("could not acquire lock");
297 memset(mst->msg, 0, sizeof(struct i2c_msg) * (2 + num));
300 dibx000_i2c_gate_ctrl(mst, &mst->i2c_write_buffer[0], msg[0].addr, 1);
301 mst->msg[0].addr = mst->i2c_addr;
302 mst->msg[0].buf = &mst->i2c_write_buffer[0];
305 memcpy(&mst->msg[1], msg, sizeof(struct i2c_msg) * num);
308 dibx000_i2c_gate_ctrl(mst, &mst->i2c_write_buffer[4], 0, 0);
309 mst->msg[num + 1].addr = mst->i2c_addr;
310 mst->msg[num + 1].buf = &mst->i2c_write_buffer[4];
311 mst->msg[num + 1].len = 4;
313 ret = (i2c_transfer(mst->i2c_adap, mst->msg, 2 + num) == 2 + num ?
316 mutex_unlock(&mst->i2c_buffer_lock);
320 static struct i2c_algorithm dibx000_i2c_gated_gpio67_algo = {
321 .master_xfer = dibx000_i2c_gated_gpio67_xfer,
322 .functionality = dibx000_i2c_func,
325 static int dibx000_i2c_gated_tuner_xfer(struct i2c_adapter *i2c_adap,
326 struct i2c_msg msg[], int num)
328 struct dibx000_i2c_master *mst = i2c_get_adapdata(i2c_adap);
332 dprintk("%s: too much I2C message to be transmitted (%i).\
333 Maximum is 32", __func__, num);
337 dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_TUNER);
339 if (mutex_lock_interruptible(&mst->i2c_buffer_lock) < 0) {
340 dprintk("could not acquire lock");
343 memset(mst->msg, 0, sizeof(struct i2c_msg) * (2 + num));
346 dibx000_i2c_gate_ctrl(mst, &mst->i2c_write_buffer[0], msg[0].addr, 1);
347 mst->msg[0].addr = mst->i2c_addr;
348 mst->msg[0].buf = &mst->i2c_write_buffer[0];
351 memcpy(&mst->msg[1], msg, sizeof(struct i2c_msg) * num);
354 dibx000_i2c_gate_ctrl(mst, &mst->i2c_write_buffer[4], 0, 0);
355 mst->msg[num + 1].addr = mst->i2c_addr;
356 mst->msg[num + 1].buf = &mst->i2c_write_buffer[4];
357 mst->msg[num + 1].len = 4;
359 ret = (i2c_transfer(mst->i2c_adap, mst->msg, 2 + num) == 2 + num ?
361 mutex_unlock(&mst->i2c_buffer_lock);
365 static struct i2c_algorithm dibx000_i2c_gated_tuner_algo = {
366 .master_xfer = dibx000_i2c_gated_tuner_xfer,
367 .functionality = dibx000_i2c_func,
370 struct i2c_adapter *dibx000_get_i2c_adapter(struct dibx000_i2c_master *mst,
371 enum dibx000_i2c_interface intf,
374 struct i2c_adapter *i2c = NULL;
377 case DIBX000_I2C_INTERFACE_TUNER:
379 i2c = &mst->gated_tuner_i2c_adap;
381 case DIBX000_I2C_INTERFACE_GPIO_1_2:
383 i2c = &mst->master_i2c_adap_gpio12;
385 case DIBX000_I2C_INTERFACE_GPIO_3_4:
387 i2c = &mst->master_i2c_adap_gpio34;
389 case DIBX000_I2C_INTERFACE_GPIO_6_7:
391 i2c = &mst->master_i2c_adap_gpio67;
394 printk(KERN_ERR "DiBX000: incorrect I2C interface selected\n");
401 EXPORT_SYMBOL(dibx000_get_i2c_adapter);
403 void dibx000_reset_i2c_master(struct dibx000_i2c_master *mst)
405 /* initialize the i2c-master by closing the gate */
407 struct i2c_msg m = {.addr = mst->i2c_addr,.buf = tx,.len = 4 };
409 dibx000_i2c_gate_ctrl(mst, tx, 0, 0);
410 i2c_transfer(mst->i2c_adap, &m, 1);
411 mst->selected_interface = 0xff; // the first time force a select of the I2C
412 dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_TUNER);
415 EXPORT_SYMBOL(dibx000_reset_i2c_master);
417 static int i2c_adapter_init(struct i2c_adapter *i2c_adap,
418 struct i2c_algorithm *algo, const char *name,
419 struct dibx000_i2c_master *mst)
421 strncpy(i2c_adap->name, name, sizeof(i2c_adap->name));
422 i2c_adap->algo = algo;
423 i2c_adap->algo_data = NULL;
424 i2c_set_adapdata(i2c_adap, mst);
425 if (i2c_add_adapter(i2c_adap) < 0)
430 int dibx000_init_i2c_master(struct dibx000_i2c_master *mst, u16 device_rev,
431 struct i2c_adapter *i2c_adap, u8 i2c_addr)
435 mutex_init(&mst->i2c_buffer_lock);
436 if (mutex_lock_interruptible(&mst->i2c_buffer_lock) < 0) {
437 dprintk("could not acquire lock");
440 memset(mst->msg, 0, sizeof(struct i2c_msg));
441 mst->msg[0].addr = i2c_addr >> 1;
442 mst->msg[0].flags = 0;
443 mst->msg[0].buf = mst->i2c_write_buffer;
446 mst->device_rev = device_rev;
447 mst->i2c_adap = i2c_adap;
448 mst->i2c_addr = i2c_addr >> 1;
450 if (device_rev == DIB7000P || device_rev == DIB8000)
451 mst->base_reg = 1024;
455 mst->gated_tuner_i2c_adap.dev.parent = mst->i2c_adap->dev.parent;
457 (&mst->gated_tuner_i2c_adap, &dibx000_i2c_gated_tuner_algo,
458 "DiBX000 tuner I2C bus", mst) != 0)
460 "DiBX000: could not initialize the tuner i2c_adapter\n");
462 mst->master_i2c_adap_gpio12.dev.parent = mst->i2c_adap->dev.parent;
464 (&mst->master_i2c_adap_gpio12, &dibx000_i2c_master_gpio12_xfer_algo,
465 "DiBX000 master GPIO12 I2C bus", mst) != 0)
467 "DiBX000: could not initialize the master i2c_adapter\n");
469 mst->master_i2c_adap_gpio34.dev.parent = mst->i2c_adap->dev.parent;
471 (&mst->master_i2c_adap_gpio34, &dibx000_i2c_master_gpio34_xfer_algo,
472 "DiBX000 master GPIO34 I2C bus", mst) != 0)
474 "DiBX000: could not initialize the master i2c_adapter\n");
476 mst->master_i2c_adap_gpio67.dev.parent = mst->i2c_adap->dev.parent;
478 (&mst->master_i2c_adap_gpio67, &dibx000_i2c_gated_gpio67_algo,
479 "DiBX000 master GPIO67 I2C bus", mst) != 0)
481 "DiBX000: could not initialize the master i2c_adapter\n");
483 /* initialize the i2c-master by closing the gate */
484 dibx000_i2c_gate_ctrl(mst, mst->i2c_write_buffer, 0, 0);
486 ret = (i2c_transfer(i2c_adap, mst->msg, 1) == 1);
487 mutex_unlock(&mst->i2c_buffer_lock);
492 EXPORT_SYMBOL(dibx000_init_i2c_master);
494 void dibx000_exit_i2c_master(struct dibx000_i2c_master *mst)
496 i2c_del_adapter(&mst->gated_tuner_i2c_adap);
497 i2c_del_adapter(&mst->master_i2c_adap_gpio12);
498 i2c_del_adapter(&mst->master_i2c_adap_gpio34);
499 i2c_del_adapter(&mst->master_i2c_adap_gpio67);
501 EXPORT_SYMBOL(dibx000_exit_i2c_master);
508 t = current_kernel_time();
509 return (t.tv_sec * 10000) + (t.tv_nsec / 100000);
511 EXPORT_SYMBOL(systime);
514 MODULE_DESCRIPTION("Common function the DiBcom demodulator family");
515 MODULE_LICENSE("GPL");