Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 1 | #ifndef _DRXK_H_ |
| 2 | #define _DRXK_H_ |
| 3 | |
| 4 | #include <linux/types.h> |
| 5 | #include <linux/i2c.h> |
| 6 | |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 7 | /** |
| 8 | * struct drxk_config - Configure the initial parameters for DRX-K |
| 9 | * |
Mauro Carvalho Chehab | 67f0461 | 2012-01-20 18:30:58 -0300 | [diff] [blame^] | 10 | * @adr: I2C Address of the DRX-K |
| 11 | * @parallel_ts: True means that the device uses parallel TS, |
Mauro Carvalho Chehab | 534e048 | 2011-07-24 14:59:20 -0300 | [diff] [blame] | 12 | * Serial otherwise. |
Mauro Carvalho Chehab | 67f0461 | 2012-01-20 18:30:58 -0300 | [diff] [blame^] | 13 | * @dynamic_clk: True means that the clock will be dynamically |
| 14 | * adjusted. Static clock otherwise. |
| 15 | * @single_master: Device is on the single master mode |
| 16 | * @no_i2c_bridge: Don't switch the I2C bridge to talk with tuner |
| 17 | * @antenna_gpio: GPIO bit used to control the antenna |
| 18 | * @antenna_dvbt: GPIO bit for changing antenna to DVB-C. A value of 1 |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 19 | * means that 1=DVBC, 0 = DVBT. Zero means the opposite. |
Mauro Carvalho Chehab | 67f0461 | 2012-01-20 18:30:58 -0300 | [diff] [blame^] | 20 | * @microcode_name: Name of the firmware file with the microcode |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 21 | * |
| 22 | * On the *_gpio vars, bit 0 is UIO-1, bit 1 is UIO-2 and bit 2 is |
| 23 | * UIO-3. |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 24 | */ |
Mauro Carvalho Chehab | 0fc55e8 | 2011-07-09 12:36:58 -0300 | [diff] [blame] | 25 | struct drxk_config { |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 26 | u8 adr; |
| 27 | bool single_master; |
| 28 | bool no_i2c_bridge; |
Mauro Carvalho Chehab | 534e048 | 2011-07-24 14:59:20 -0300 | [diff] [blame] | 29 | bool parallel_ts; |
Mauro Carvalho Chehab | 67f0461 | 2012-01-20 18:30:58 -0300 | [diff] [blame^] | 30 | bool dynamic_clk; |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 31 | |
Mauro Carvalho Chehab | 90796ac | 2011-07-10 09:36:30 -0300 | [diff] [blame] | 32 | bool antenna_dvbt; |
| 33 | u16 antenna_gpio; |
Mauro Carvalho Chehab | 147e110 | 2011-07-10 08:24:26 -0300 | [diff] [blame] | 34 | |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 35 | int chunk_size; |
| 36 | |
Mauro Carvalho Chehab | e4f4f87 | 2011-07-09 17:35:26 -0300 | [diff] [blame] | 37 | const char *microcode_name; |
Mauro Carvalho Chehab | 0fc55e8 | 2011-07-09 12:36:58 -0300 | [diff] [blame] | 38 | }; |
| 39 | |
Mauro Carvalho Chehab | fd0b0814 | 2011-07-11 14:56:30 -0300 | [diff] [blame] | 40 | #if defined(CONFIG_DVB_DRXK) || (defined(CONFIG_DVB_DRXK_MODULE) \ |
| 41 | && defined(MODULE)) |
Mauro Carvalho Chehab | 0fc55e8 | 2011-07-09 12:36:58 -0300 | [diff] [blame] | 42 | extern struct dvb_frontend *drxk_attach(const struct drxk_config *config, |
Mauro Carvalho Chehab | fa4b2a1 | 2012-01-05 08:07:32 -0200 | [diff] [blame] | 43 | struct i2c_adapter *i2c); |
Mauro Carvalho Chehab | fd0b0814 | 2011-07-11 14:56:30 -0300 | [diff] [blame] | 44 | #else |
| 45 | static inline struct dvb_frontend *drxk_attach(const struct drxk_config *config, |
Mauro Carvalho Chehab | fa4b2a1 | 2012-01-05 08:07:32 -0200 | [diff] [blame] | 46 | struct i2c_adapter *i2c) |
Mauro Carvalho Chehab | fd0b0814 | 2011-07-11 14:56:30 -0300 | [diff] [blame] | 47 | { |
| 48 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
| 49 | return NULL; |
| 50 | } |
| 51 | #endif |
| 52 | |
Ralph Metzler | 43dd07f | 2011-07-03 13:42:18 -0300 | [diff] [blame] | 53 | #endif |