Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 3 | * i2c tv tuner chip device driver |
| 4 | * core core, i.e. kernel interfaces, registering and so on |
| 5 | */ |
| 6 | |
| 7 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/string.h> |
| 10 | #include <linux/timer.h> |
| 11 | #include <linux/delay.h> |
| 12 | #include <linux/errno.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/poll.h> |
| 15 | #include <linux/i2c.h> |
| 16 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/init.h> |
Michael Krufky | ffbb807 | 2007-08-21 01:14:12 -0300 | [diff] [blame] | 18 | #include <linux/videodev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <media/tuner.h> |
Michael Krufky | 4adad28 | 2007-08-27 21:59:08 -0300 | [diff] [blame] | 20 | #include <media/tuner-types.h> |
Michael Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 21 | #include <media/v4l2-common.h> |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 22 | #include <media/v4l2-i2c-drv-legacy.h> |
Michael Krufky | 96c0b7c | 2007-08-27 21:23:08 -0300 | [diff] [blame] | 23 | #include "mt20xx.h" |
Michael Krufky | 910bb3e | 2007-08-27 21:22:20 -0300 | [diff] [blame] | 24 | #include "tda8290.h" |
Michael Krufky | 7ab10bf | 2007-08-27 21:23:40 -0300 | [diff] [blame] | 25 | #include "tea5761.h" |
Michael Krufky | 8d0936e | 2007-08-27 21:24:27 -0300 | [diff] [blame] | 26 | #include "tea5767.h" |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 27 | #include "tuner-xc2028.h" |
Michael Krufky | 4adad28 | 2007-08-27 21:59:08 -0300 | [diff] [blame] | 28 | #include "tuner-simple.h" |
Michael Krufky | 31c9584 | 2007-10-21 20:48:48 -0300 | [diff] [blame] | 29 | #include "tda9887.h" |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 30 | #include "xc5000.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #define UNSET (-1U) |
| 33 | |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 34 | #define PREFIX t->i2c->driver->driver.name |
Michael Krufky | 241020d | 2007-10-30 09:46:10 -0300 | [diff] [blame] | 35 | |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 36 | /** This macro allows us to probe dynamically, avoiding static links */ |
Mauro Carvalho Chehab | ff13817 | 2008-04-29 23:02:33 -0300 | [diff] [blame] | 37 | #ifdef CONFIG_MEDIA_ATTACH |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 38 | #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \ |
| 39 | int __r = -EINVAL; \ |
| 40 | typeof(&FUNCTION) __a = symbol_request(FUNCTION); \ |
| 41 | if (__a) { \ |
| 42 | __r = (int) __a(ARGS); \ |
Andrew Morton | a1355e5 | 2008-04-30 11:40:17 -0300 | [diff] [blame] | 43 | symbol_put(FUNCTION); \ |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 44 | } else { \ |
| 45 | printk(KERN_ERR "TUNER: Unable to find " \ |
| 46 | "symbol "#FUNCTION"()\n"); \ |
| 47 | } \ |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 48 | __r; \ |
| 49 | }) |
| 50 | |
| 51 | static void tuner_detach(struct dvb_frontend *fe) |
| 52 | { |
| 53 | if (fe->ops.tuner_ops.release) { |
| 54 | fe->ops.tuner_ops.release(fe); |
| 55 | symbol_put_addr(fe->ops.tuner_ops.release); |
| 56 | } |
| 57 | if (fe->ops.analog_ops.release) { |
| 58 | fe->ops.analog_ops.release(fe); |
| 59 | symbol_put_addr(fe->ops.analog_ops.release); |
| 60 | } |
| 61 | } |
| 62 | #else |
| 63 | #define tuner_symbol_probe(FUNCTION, ARGS...) ({ \ |
| 64 | FUNCTION(ARGS); \ |
| 65 | }) |
| 66 | |
| 67 | static void tuner_detach(struct dvb_frontend *fe) |
| 68 | { |
| 69 | if (fe->ops.tuner_ops.release) |
| 70 | fe->ops.tuner_ops.release(fe); |
| 71 | if (fe->ops.analog_ops.release) |
| 72 | fe->ops.analog_ops.release(fe); |
| 73 | } |
| 74 | #endif |
| 75 | |
Michael Krufky | f7f427e | 2007-12-16 22:02:26 -0300 | [diff] [blame] | 76 | struct tuner { |
| 77 | /* device */ |
| 78 | struct dvb_frontend fe; |
| 79 | struct i2c_client *i2c; |
| 80 | struct list_head list; |
| 81 | unsigned int using_v4l2:1; |
| 82 | |
| 83 | /* keep track of the current settings */ |
| 84 | v4l2_std_id std; |
| 85 | unsigned int tv_freq; |
| 86 | unsigned int radio_freq; |
| 87 | unsigned int audmode; |
| 88 | |
| 89 | unsigned int mode; |
| 90 | unsigned int mode_mask; /* Combination of allowable modes */ |
| 91 | |
| 92 | unsigned int type; /* chip type id */ |
| 93 | unsigned int config; |
| 94 | int (*tuner_callback) (void *dev, int command, int arg); |
| 95 | }; |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | /* standard i2c insmod options */ |
| 98 | static unsigned short normal_i2c[] = { |
Mauro Carvalho Chehab | 149ef72 | 2008-04-29 21:38:46 -0300 | [diff] [blame] | 99 | #if defined(CONFIG_MEDIA_TUNER_TEA5761) || (defined(CONFIG_MEDIA_TUNER_TEA5761_MODULE) && defined(MODULE)) |
Mauro Carvalho Chehab | 8573a9e | 2007-04-08 01:09:11 -0300 | [diff] [blame] | 100 | 0x10, |
| 101 | #endif |
Hartmut Hackmann | de48eeb | 2005-11-08 21:37:48 -0800 | [diff] [blame] | 102 | 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */ |
Mauro Carvalho Chehab | f5bec39 | 2005-06-23 22:05:13 -0700 | [diff] [blame] | 103 | 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, |
| 104 | 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | I2C_CLIENT_END |
| 106 | }; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | I2C_CLIENT_INSMOD; |
| 109 | |
| 110 | /* insmod options used at init time => read/only */ |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 111 | static unsigned int addr; |
| 112 | static unsigned int no_autodetect; |
| 113 | static unsigned int show_i2c; |
Mauro Carvalho Chehab | fd3113e | 2005-07-31 22:34:43 -0700 | [diff] [blame] | 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | /* insmod options used at runtime => read/write */ |
Michael Krufky | ab16605 | 2007-12-09 02:26:48 -0300 | [diff] [blame] | 116 | static int tuner_debug; |
| 117 | |
| 118 | #define tuner_warn(fmt, arg...) do { \ |
| 119 | printk(KERN_WARNING "%s %d-%04x: " fmt, PREFIX, \ |
| 120 | i2c_adapter_id(t->i2c->adapter), \ |
| 121 | t->i2c->addr, ##arg); \ |
| 122 | } while (0) |
| 123 | |
| 124 | #define tuner_info(fmt, arg...) do { \ |
| 125 | printk(KERN_INFO "%s %d-%04x: " fmt, PREFIX, \ |
| 126 | i2c_adapter_id(t->i2c->adapter), \ |
| 127 | t->i2c->addr, ##arg); \ |
| 128 | } while (0) |
| 129 | |
| 130 | #define tuner_err(fmt, arg...) do { \ |
| 131 | printk(KERN_ERR "%s %d-%04x: " fmt, PREFIX, \ |
| 132 | i2c_adapter_id(t->i2c->adapter), \ |
| 133 | t->i2c->addr, ##arg); \ |
| 134 | } while (0) |
| 135 | |
| 136 | #define tuner_dbg(fmt, arg...) do { \ |
| 137 | if (tuner_debug) \ |
| 138 | printk(KERN_DEBUG "%s %d-%04x: " fmt, PREFIX, \ |
| 139 | i2c_adapter_id(t->i2c->adapter), \ |
| 140 | t->i2c->addr, ##arg); \ |
| 141 | } while (0) |
| 142 | |
| 143 | /* ------------------------------------------------------------------------ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 145 | static unsigned int tv_range[2] = { 44, 958 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | static unsigned int radio_range[2] = { 65, 108 }; |
| 147 | |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 148 | static char pal[] = "--"; |
| 149 | static char secam[] = "--"; |
| 150 | static char ntsc[] = "-"; |
| 151 | |
Hans Verkuil | f9195de | 2006-01-11 19:01:01 -0200 | [diff] [blame] | 152 | |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 153 | module_param(addr, int, 0444); |
| 154 | module_param(no_autodetect, int, 0444); |
| 155 | module_param(show_i2c, int, 0444); |
Hans Verkuil | f9195de | 2006-01-11 19:01:01 -0200 | [diff] [blame] | 156 | module_param_named(debug,tuner_debug, int, 0644); |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 157 | module_param_string(pal, pal, sizeof(pal), 0644); |
| 158 | module_param_string(secam, secam, sizeof(secam), 0644); |
| 159 | module_param_string(ntsc, ntsc, sizeof(ntsc), 0644); |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 160 | module_param_array(tv_range, int, NULL, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | module_param_array(radio_range, int, NULL, 0644); |
| 162 | |
| 163 | MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners"); |
| 164 | MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer"); |
| 165 | MODULE_LICENSE("GPL"); |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /* ---------------------------------------------------------------------- */ |
| 168 | |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 169 | static void fe_set_params(struct dvb_frontend *fe, |
| 170 | struct analog_parameters *params) |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 171 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 172 | struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops; |
| 173 | struct tuner *t = fe->analog_demod_priv; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 174 | |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 175 | if (NULL == fe_tuner_ops->set_analog_params) { |
| 176 | tuner_warn("Tuner frontend module has no way to set freq\n"); |
| 177 | return; |
| 178 | } |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 179 | fe_tuner_ops->set_analog_params(fe, params); |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 180 | } |
| 181 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 182 | static void fe_standby(struct dvb_frontend *fe) |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 183 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 184 | struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 185 | |
| 186 | if (fe_tuner_ops->sleep) |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 187 | fe_tuner_ops->sleep(fe); |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 188 | } |
| 189 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 190 | static int fe_has_signal(struct dvb_frontend *fe) |
Michael Krufky | 1f5ef19 | 2007-08-31 17:38:02 -0300 | [diff] [blame] | 191 | { |
Michael Krufky | 1419683 | 2007-10-14 18:11:53 -0300 | [diff] [blame] | 192 | u16 strength = 0; |
Michael Krufky | 1f5ef19 | 2007-08-31 17:38:02 -0300 | [diff] [blame] | 193 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 194 | if (fe->ops.tuner_ops.get_rf_strength) |
| 195 | fe->ops.tuner_ops.get_rf_strength(fe, &strength); |
Michael Krufky | 1f5ef19 | 2007-08-31 17:38:02 -0300 | [diff] [blame] | 196 | |
| 197 | return strength; |
| 198 | } |
| 199 | |
Michael Krufky | f1c9a28 | 2007-12-16 19:27:23 -0300 | [diff] [blame] | 200 | static int fe_set_config(struct dvb_frontend *fe, void *priv_cfg) |
| 201 | { |
| 202 | struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops; |
| 203 | struct tuner *t = fe->analog_demod_priv; |
| 204 | |
| 205 | if (fe_tuner_ops->set_config) |
| 206 | return fe_tuner_ops->set_config(fe, priv_cfg); |
| 207 | |
| 208 | tuner_warn("Tuner frontend module has no way to set config\n"); |
| 209 | |
| 210 | return 0; |
| 211 | } |
| 212 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 213 | static void tuner_status(struct dvb_frontend *fe); |
Michael Krufky | 1dde7a4 | 2007-10-21 13:40:56 -0300 | [diff] [blame] | 214 | |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 215 | static struct analog_demod_ops tuner_core_ops = { |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 216 | .set_params = fe_set_params, |
Michael Krufky | 1dde7a4 | 2007-10-21 13:40:56 -0300 | [diff] [blame] | 217 | .standby = fe_standby, |
Michael Krufky | 1dde7a4 | 2007-10-21 13:40:56 -0300 | [diff] [blame] | 218 | .has_signal = fe_has_signal, |
Michael Krufky | f1c9a28 | 2007-12-16 19:27:23 -0300 | [diff] [blame] | 219 | .set_config = fe_set_config, |
Michael Krufky | 1dde7a4 | 2007-10-21 13:40:56 -0300 | [diff] [blame] | 220 | .tuner_status = tuner_status |
| 221 | }; |
| 222 | |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 223 | /* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | static void set_tv_freq(struct i2c_client *c, unsigned int freq) |
| 225 | { |
| 226 | struct tuner *t = i2c_get_clientdata(c); |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 227 | struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 229 | struct analog_parameters params = { |
| 230 | .mode = t->mode, |
| 231 | .audmode = t->audmode, |
| 232 | .std = t->std |
| 233 | }; |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | if (t->type == UNSET) { |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 236 | tuner_warn ("tuner type not set\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return; |
| 238 | } |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 239 | if (NULL == analog_ops->set_params) { |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 240 | tuner_warn ("Tuner has no way to set tv freq\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | return; |
| 242 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 243 | if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) { |
| 244 | tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n", |
| 245 | freq / 16, freq % 16 * 100 / 16, tv_range[0], |
| 246 | tv_range[1]); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 247 | /* V4L2 spec: if the freq is not possible then the closest |
| 248 | possible value should be selected */ |
| 249 | if (freq < tv_range[0] * 16) |
| 250 | freq = tv_range[0] * 16; |
| 251 | else |
| 252 | freq = tv_range[1] * 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 254 | params.frequency = freq; |
| 255 | |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 256 | analog_ops->set_params(&t->fe, ¶ms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | static void set_radio_freq(struct i2c_client *c, unsigned int freq) |
| 260 | { |
| 261 | struct tuner *t = i2c_get_clientdata(c); |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 262 | struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 264 | struct analog_parameters params = { |
| 265 | .mode = t->mode, |
| 266 | .audmode = t->audmode, |
| 267 | .std = t->std |
| 268 | }; |
| 269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | if (t->type == UNSET) { |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 271 | tuner_warn ("tuner type not set\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | return; |
| 273 | } |
Mauro Carvalho Chehab | e545d6e | 2008-01-05 16:37:04 -0300 | [diff] [blame] | 274 | if (NULL == analog_ops->set_params) { |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 275 | tuner_warn ("tuner has no way to set radio frequency\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | return; |
| 277 | } |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 278 | if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) { |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 279 | tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n", |
| 280 | freq / 16000, freq % 16000 * 100 / 16000, |
| 281 | radio_range[0], radio_range[1]); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 282 | /* V4L2 spec: if the freq is not possible then the closest |
| 283 | possible value should be selected */ |
| 284 | if (freq < radio_range[0] * 16000) |
| 285 | freq = radio_range[0] * 16000; |
| 286 | else |
| 287 | freq = radio_range[1] * 16000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 289 | params.frequency = freq; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 290 | |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 291 | analog_ops->set_params(&t->fe, ¶ms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | static void set_freq(struct i2c_client *c, unsigned long freq) |
| 295 | { |
| 296 | struct tuner *t = i2c_get_clientdata(c); |
| 297 | |
| 298 | switch (t->mode) { |
| 299 | case V4L2_TUNER_RADIO: |
| 300 | tuner_dbg("radio freq set to %lu.%02lu\n", |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 301 | freq / 16000, freq % 16000 * 100 / 16000); |
| 302 | set_radio_freq(c, freq); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 303 | t->radio_freq = freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | break; |
| 305 | case V4L2_TUNER_ANALOG_TV: |
| 306 | case V4L2_TUNER_DIGITAL_TV: |
| 307 | tuner_dbg("tv freq set to %lu.%02lu\n", |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 308 | freq / 16, freq % 16 * 100 / 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | set_tv_freq(c, freq); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 310 | t->tv_freq = freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | break; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 312 | default: |
| 313 | tuner_dbg("freq set: unknown mode: 0x%04x!\n",t->mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Michael Krufky | 293197c | 2007-08-28 17:20:42 -0300 | [diff] [blame] | 317 | static void tuner_i2c_address_check(struct tuner *t) |
| 318 | { |
| 319 | if ((t->type == UNSET || t->type == TUNER_ABSENT) || |
Hans Verkuil | 1cba97d7 | 2007-09-14 05:13:54 -0300 | [diff] [blame] | 320 | ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f))) |
Michael Krufky | 293197c | 2007-08-28 17:20:42 -0300 | [diff] [blame] | 321 | return; |
| 322 | |
Michael Krufky | 1641002 | 2008-01-21 12:01:34 -0300 | [diff] [blame] | 323 | /* We already know that the XC5000 can only be located at |
| 324 | * i2c address 0x61, 0x62, 0x63 or 0x64 */ |
| 325 | if ((t->type == TUNER_XC5000) && |
| 326 | ((t->i2c->addr <= 0x64)) && (t->i2c->addr >= 0x61)) |
| 327 | return; |
| 328 | |
Michael Krufky | 293197c | 2007-08-28 17:20:42 -0300 | [diff] [blame] | 329 | tuner_warn("====================== WARNING! ======================\n"); |
| 330 | tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n"); |
| 331 | tuner_warn("will soon be dropped. This message indicates that your\n"); |
| 332 | tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n", |
Hans Verkuil | 1cba97d7 | 2007-09-14 05:13:54 -0300 | [diff] [blame] | 333 | t->i2c->name, t->i2c->addr); |
Michael Krufky | 293197c | 2007-08-28 17:20:42 -0300 | [diff] [blame] | 334 | tuner_warn("To ensure continued support for your device, please\n"); |
| 335 | tuner_warn("send a copy of this message, along with full dmesg\n"); |
| 336 | tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n"); |
| 337 | tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n"); |
| 338 | tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n", |
Michael Krufky | 060a5bd | 2008-04-22 14:41:51 -0300 | [diff] [blame] | 339 | t->i2c->adapter->name, t->i2c->addr, t->type, t->i2c->name); |
Michael Krufky | 293197c | 2007-08-28 17:20:42 -0300 | [diff] [blame] | 340 | tuner_warn("====================== WARNING! ======================\n"); |
| 341 | } |
| 342 | |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 343 | static struct xc5000_config xc5000_cfg; |
| 344 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 345 | static void set_type(struct i2c_client *c, unsigned int type, |
Hartmut Hackmann | de956c1 | 2007-04-27 12:31:12 -0300 | [diff] [blame] | 346 | unsigned int new_mode_mask, unsigned int new_config, |
Hartmut Hackmann | cfeb883 | 2007-04-27 12:31:17 -0300 | [diff] [blame] | 347 | int (*tuner_callback) (void *dev, int command,int arg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | { |
| 349 | struct tuner *t = i2c_get_clientdata(c); |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 350 | struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops; |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 351 | struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 352 | unsigned char buffer[4]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 354 | if (type == UNSET || type == TUNER_ABSENT) { |
| 355 | tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | return; |
| 357 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | t->type = type; |
Hartmut Hackmann | cfeb883 | 2007-04-27 12:31:17 -0300 | [diff] [blame] | 360 | t->config = new_config; |
| 361 | if (tuner_callback != NULL) { |
| 362 | tuner_dbg("defining GPIO callback\n"); |
| 363 | t->tuner_callback = tuner_callback; |
| 364 | } |
Hartmut Hackmann | 80f90fb | 2007-04-27 12:31:18 -0300 | [diff] [blame] | 365 | |
Mauro Carvalho Chehab | 48aa336 | 2007-10-29 11:33:18 -0300 | [diff] [blame] | 366 | if (t->mode == T_UNINITIALIZED) { |
Hartmut Hackmann | 80f90fb | 2007-04-27 12:31:18 -0300 | [diff] [blame] | 367 | tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr); |
| 368 | |
| 369 | return; |
| 370 | } |
| 371 | |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 372 | /* discard private data, in case set_type() was previously called */ |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 373 | tuner_detach(&t->fe); |
| 374 | t->fe.analog_demod_priv = NULL; |
Michael Krufky | be2b85a | 2007-06-04 14:40:27 -0300 | [diff] [blame] | 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | switch (t->type) { |
| 377 | case TUNER_MT2032: |
Mauro Carvalho Chehab | 09fee5f | 2008-04-30 15:29:57 -0300 | [diff] [blame] | 378 | if (!dvb_attach(microtune_attach, |
| 379 | &t->fe, t->i2c->adapter, t->i2c->addr)) |
| 380 | goto attach_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | break; |
| 382 | case TUNER_PHILIPS_TDA8290: |
Michael Krufky | 5bea1cd | 2007-10-22 09:56:38 -0300 | [diff] [blame] | 383 | { |
Mauro Carvalho Chehab | 09fee5f | 2008-04-30 15:29:57 -0300 | [diff] [blame] | 384 | struct tda829x_config cfg = { |
| 385 | .lna_cfg = t->config, |
| 386 | .tuner_callback = t->tuner_callback, |
| 387 | }; |
| 388 | if (!dvb_attach(tda829x_attach, &t->fe, t->i2c->adapter, |
| 389 | t->i2c->addr, &cfg)) |
| 390 | goto attach_failed; |
Michael Krufky | 5bea1cd | 2007-10-22 09:56:38 -0300 | [diff] [blame] | 391 | break; |
| 392 | } |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 393 | case TUNER_TEA5767: |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 394 | if (!dvb_attach(tea5767_attach, &t->fe, |
| 395 | t->i2c->adapter, t->i2c->addr)) |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 396 | goto attach_failed; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 397 | t->mode_mask = T_RADIO; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 398 | break; |
Mauro Carvalho Chehab | 8573a9e | 2007-04-08 01:09:11 -0300 | [diff] [blame] | 399 | case TUNER_TEA5761: |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 400 | if (!dvb_attach(tea5761_attach, &t->fe, |
| 401 | t->i2c->adapter, t->i2c->addr)) |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 402 | goto attach_failed; |
Mauro Carvalho Chehab | 8573a9e | 2007-04-08 01:09:11 -0300 | [diff] [blame] | 403 | t->mode_mask = T_RADIO; |
| 404 | break; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 405 | case TUNER_PHILIPS_FMD1216ME_MK3: |
| 406 | buffer[0] = 0x0b; |
| 407 | buffer[1] = 0xdc; |
| 408 | buffer[2] = 0x9c; |
| 409 | buffer[3] = 0x60; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 410 | i2c_master_send(c, buffer, 4); |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 411 | mdelay(1); |
| 412 | buffer[2] = 0x86; |
| 413 | buffer[3] = 0x54; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 414 | i2c_master_send(c, buffer, 4); |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 415 | if (!dvb_attach(simple_tuner_attach, &t->fe, |
| 416 | t->i2c->adapter, t->i2c->addr, t->type)) |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 417 | goto attach_failed; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 418 | break; |
Hartmut Hackmann | 93df341 | 2005-11-08 21:36:31 -0800 | [diff] [blame] | 419 | case TUNER_PHILIPS_TD1316: |
| 420 | buffer[0] = 0x0b; |
| 421 | buffer[1] = 0xdc; |
| 422 | buffer[2] = 0x86; |
| 423 | buffer[3] = 0xa4; |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 424 | i2c_master_send(c, buffer, 4); |
| 425 | if (!dvb_attach(simple_tuner_attach, &t->fe, |
| 426 | t->i2c->adapter, t->i2c->addr, t->type)) |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 427 | goto attach_failed; |
Markus Rechberger | ac272ed | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 428 | break; |
Mauro Carvalho Chehab | 690c544 | 2007-10-29 11:33:18 -0300 | [diff] [blame] | 429 | case TUNER_XC2028: |
| 430 | { |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 431 | struct xc2028_config cfg = { |
| 432 | .i2c_adap = t->i2c->adapter, |
| 433 | .i2c_addr = t->i2c->addr, |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 434 | .callback = t->tuner_callback, |
| 435 | }; |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 436 | if (!dvb_attach(xc2028_attach, &t->fe, &cfg)) |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 437 | goto attach_failed; |
Mauro Carvalho Chehab | 690c544 | 2007-10-29 11:33:18 -0300 | [diff] [blame] | 438 | break; |
| 439 | } |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 440 | case TUNER_TDA9887: |
Mauro Carvalho Chehab | 09fee5f | 2008-04-30 15:29:57 -0300 | [diff] [blame] | 441 | if (!dvb_attach(tda9887_attach, |
| 442 | &t->fe, t->i2c->adapter, t->i2c->addr)) |
| 443 | goto attach_failed; |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 444 | break; |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 445 | case TUNER_XC5000: |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 446 | { |
| 447 | struct dvb_tuner_ops *xc_tuner_ops; |
| 448 | |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 449 | xc5000_cfg.i2c_address = t->i2c->addr; |
| 450 | xc5000_cfg.if_khz = 5380; |
Steven Toth | 73c993a | 2008-01-05 17:08:05 -0300 | [diff] [blame] | 451 | xc5000_cfg.priv = c->adapter->algo_data; |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 452 | xc5000_cfg.tuner_callback = t->tuner_callback; |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 453 | if (!dvb_attach(xc5000_attach, |
| 454 | &t->fe, t->i2c->adapter, &xc5000_cfg)) |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 455 | goto attach_failed; |
| 456 | |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 457 | xc_tuner_ops = &t->fe.ops.tuner_ops; |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 458 | if (xc_tuner_ops->init) |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 459 | xc_tuner_ops->init(&t->fe); |
Steven Toth | 27c685a | 2008-01-05 16:50:14 -0300 | [diff] [blame] | 460 | break; |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 461 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | default: |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 463 | if (!dvb_attach(simple_tuner_attach, &t->fe, |
| 464 | t->i2c->adapter, t->i2c->addr, t->type)) |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 465 | goto attach_failed; |
| 466 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | break; |
| 468 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 469 | |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 470 | if ((NULL == analog_ops->set_params) && |
Michael Krufky | 1dde7a4 | 2007-10-21 13:40:56 -0300 | [diff] [blame] | 471 | (fe_tuner_ops->set_analog_params)) { |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 472 | |
Hans Verkuil | 1cba97d7 | 2007-09-14 05:13:54 -0300 | [diff] [blame] | 473 | strlcpy(t->i2c->name, fe_tuner_ops->info.name, |
| 474 | sizeof(t->i2c->name)); |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 475 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 476 | t->fe.analog_demod_priv = t; |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 477 | memcpy(analog_ops, &tuner_core_ops, |
| 478 | sizeof(struct analog_demod_ops)); |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 479 | |
Michael Krufky | a55db8c | 2007-12-09 13:52:51 -0300 | [diff] [blame] | 480 | } else { |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 481 | strlcpy(t->i2c->name, analog_ops->info.name, |
Michael Krufky | a55db8c | 2007-12-09 13:52:51 -0300 | [diff] [blame] | 482 | sizeof(t->i2c->name)); |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 483 | } |
| 484 | |
Michael Krufky | 4942744 | 2007-10-30 09:44:12 -0300 | [diff] [blame] | 485 | tuner_dbg("type set to %s\n", t->i2c->name); |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 486 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 487 | if (t->mode_mask == T_UNINITIALIZED) |
| 488 | t->mode_mask = new_mode_mask; |
| 489 | |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 490 | /* xc2028/3028 and xc5000 requires a firmware to be set-up later |
| 491 | trying to set a frequency here will just fail |
| 492 | FIXME: better to move set_freq to the tuner code. This is needed |
| 493 | on analog tuners for PLL to properly work |
| 494 | */ |
| 495 | if (t->type != TUNER_XC2028 && t->type != TUNER_XC5000) |
| 496 | set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? |
| 497 | t->radio_freq : t->tv_freq); |
| 498 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 499 | tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n", |
Laurent Riffard | 604f28e | 2005-11-26 20:43:39 +0100 | [diff] [blame] | 500 | c->adapter->name, c->driver->driver.name, c->addr << 1, type, |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 501 | t->mode_mask); |
Michael Krufky | 293197c | 2007-08-28 17:20:42 -0300 | [diff] [blame] | 502 | tuner_i2c_address_check(t); |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 503 | return; |
| 504 | |
| 505 | attach_failed: |
| 506 | tuner_dbg("Tuner attach for type = %d failed.\n", t->type); |
| 507 | t->type = TUNER_ABSENT; |
| 508 | t->mode_mask = T_UNINITIALIZED; |
| 509 | |
| 510 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
| 512 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 513 | /* |
| 514 | * This function apply tuner config to tuner specified |
| 515 | * by tun_setup structure. I addr is unset, then admin status |
| 516 | * and tun addr status is more precise then current status, |
| 517 | * it's applied. Otherwise status and type are applied only to |
| 518 | * tuner with exactly the same addr. |
| 519 | */ |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 520 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 521 | static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup) |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 522 | { |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 523 | struct tuner *t = i2c_get_clientdata(c); |
| 524 | |
Hartmut Hackmann | de956c1 | 2007-04-27 12:31:12 -0300 | [diff] [blame] | 525 | if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) && |
| 526 | (t->mode_mask & tun_setup->mode_mask))) || |
| 527 | (tun_setup->addr == c->addr)) { |
| 528 | set_type(c, tun_setup->type, tun_setup->mode_mask, |
Hartmut Hackmann | cfeb883 | 2007-04-27 12:31:17 -0300 | [diff] [blame] | 529 | tun_setup->config, tun_setup->tuner_callback); |
Mauro Carvalho Chehab | b9ef6bb | 2008-04-26 11:29:34 -0300 | [diff] [blame] | 530 | } else |
| 531 | tuner_dbg("set addr discarded for type %i, mask %x. " |
| 532 | "Asked to change tuner at addr 0x%02x, with mask %x\n", |
| 533 | t->type, t->mode_mask, |
| 534 | tun_setup->addr, tun_setup->mode_mask); |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | static inline int check_mode(struct tuner *t, char *cmd) |
| 538 | { |
Mauro Carvalho Chehab | 793cf9e | 2005-09-09 13:03:37 -0700 | [diff] [blame] | 539 | if ((1 << t->mode & t->mode_mask) == 0) { |
| 540 | return EINVAL; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 541 | } |
Mauro Carvalho Chehab | 793cf9e | 2005-09-09 13:03:37 -0700 | [diff] [blame] | 542 | |
| 543 | switch (t->mode) { |
| 544 | case V4L2_TUNER_RADIO: |
| 545 | tuner_dbg("Cmd %s accepted for radio\n", cmd); |
| 546 | break; |
| 547 | case V4L2_TUNER_ANALOG_TV: |
| 548 | tuner_dbg("Cmd %s accepted for analog TV\n", cmd); |
| 549 | break; |
| 550 | case V4L2_TUNER_DIGITAL_TV: |
| 551 | tuner_dbg("Cmd %s accepted for digital TV\n", cmd); |
| 552 | break; |
| 553 | } |
| 554 | return 0; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 555 | } |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 556 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 557 | /* get more precise norm info from insmod option */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | static int tuner_fixup_std(struct tuner *t) |
| 559 | { |
| 560 | if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | switch (pal[0]) { |
Hans Verkuil | e71ced1 | 2006-12-11 15:51:43 -0300 | [diff] [blame] | 562 | case '6': |
| 563 | tuner_dbg ("insmod fixup: PAL => PAL-60\n"); |
| 564 | t->std = V4L2_STD_PAL_60; |
| 565 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | case 'b': |
| 567 | case 'B': |
| 568 | case 'g': |
| 569 | case 'G': |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 570 | tuner_dbg ("insmod fixup: PAL => PAL-BG\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | t->std = V4L2_STD_PAL_BG; |
| 572 | break; |
| 573 | case 'i': |
| 574 | case 'I': |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 575 | tuner_dbg ("insmod fixup: PAL => PAL-I\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | t->std = V4L2_STD_PAL_I; |
| 577 | break; |
| 578 | case 'd': |
| 579 | case 'D': |
| 580 | case 'k': |
| 581 | case 'K': |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 582 | tuner_dbg ("insmod fixup: PAL => PAL-DK\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | t->std = V4L2_STD_PAL_DK; |
| 584 | break; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 585 | case 'M': |
| 586 | case 'm': |
| 587 | tuner_dbg ("insmod fixup: PAL => PAL-M\n"); |
| 588 | t->std = V4L2_STD_PAL_M; |
| 589 | break; |
| 590 | case 'N': |
| 591 | case 'n': |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 592 | if (pal[1] == 'c' || pal[1] == 'C') { |
| 593 | tuner_dbg("insmod fixup: PAL => PAL-Nc\n"); |
| 594 | t->std = V4L2_STD_PAL_Nc; |
| 595 | } else { |
| 596 | tuner_dbg ("insmod fixup: PAL => PAL-N\n"); |
| 597 | t->std = V4L2_STD_PAL_N; |
| 598 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 599 | break; |
Mauro Carvalho Chehab | 21d4df3 | 2005-09-09 13:03:59 -0700 | [diff] [blame] | 600 | case '-': |
| 601 | /* default parameter, do nothing */ |
| 602 | break; |
| 603 | default: |
| 604 | tuner_warn ("pal= argument not recognised\n"); |
| 605 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 608 | if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) { |
| 609 | switch (secam[0]) { |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 610 | case 'b': |
| 611 | case 'B': |
| 612 | case 'g': |
| 613 | case 'G': |
| 614 | case 'h': |
| 615 | case 'H': |
| 616 | tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n"); |
| 617 | t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H; |
| 618 | break; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 619 | case 'd': |
| 620 | case 'D': |
| 621 | case 'k': |
| 622 | case 'K': |
| 623 | tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n"); |
| 624 | t->std = V4L2_STD_SECAM_DK; |
| 625 | break; |
| 626 | case 'l': |
| 627 | case 'L': |
Mauro Carvalho Chehab | 800d3c6 | 2005-11-13 16:07:48 -0800 | [diff] [blame] | 628 | if ((secam[1]=='C')||(secam[1]=='c')) { |
| 629 | tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n"); |
| 630 | t->std = V4L2_STD_SECAM_LC; |
| 631 | } else { |
| 632 | tuner_dbg ("insmod fixup: SECAM => SECAM-L\n"); |
| 633 | t->std = V4L2_STD_SECAM_L; |
| 634 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 635 | break; |
Mauro Carvalho Chehab | 21d4df3 | 2005-09-09 13:03:59 -0700 | [diff] [blame] | 636 | case '-': |
| 637 | /* default parameter, do nothing */ |
| 638 | break; |
| 639 | default: |
| 640 | tuner_warn ("secam= argument not recognised\n"); |
| 641 | break; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 642 | } |
| 643 | } |
| 644 | |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 645 | if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) { |
| 646 | switch (ntsc[0]) { |
| 647 | case 'm': |
| 648 | case 'M': |
| 649 | tuner_dbg("insmod fixup: NTSC => NTSC-M\n"); |
| 650 | t->std = V4L2_STD_NTSC_M; |
| 651 | break; |
| 652 | case 'j': |
| 653 | case 'J': |
| 654 | tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n"); |
| 655 | t->std = V4L2_STD_NTSC_M_JP; |
| 656 | break; |
Hans Verkuil | d97a11e | 2006-02-07 06:48:40 -0200 | [diff] [blame] | 657 | case 'k': |
| 658 | case 'K': |
| 659 | tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n"); |
| 660 | t->std = V4L2_STD_NTSC_M_KR; |
| 661 | break; |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 662 | case '-': |
| 663 | /* default parameter, do nothing */ |
| 664 | break; |
| 665 | default: |
| 666 | tuner_info("ntsc= argument not recognised\n"); |
| 667 | break; |
| 668 | } |
| 669 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | return 0; |
| 671 | } |
| 672 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 673 | static void tuner_status(struct dvb_frontend *fe) |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 674 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 675 | struct tuner *t = fe->analog_demod_priv; |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 676 | unsigned long freq, freq_fraction; |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 677 | struct dvb_tuner_ops *fe_tuner_ops = &fe->ops.tuner_ops; |
| 678 | struct analog_demod_ops *analog_ops = &fe->ops.analog_ops; |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 679 | const char *p; |
| 680 | |
| 681 | switch (t->mode) { |
| 682 | case V4L2_TUNER_RADIO: p = "radio"; break; |
| 683 | case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break; |
| 684 | case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break; |
| 685 | default: p = "undefined"; break; |
| 686 | } |
| 687 | if (t->mode == V4L2_TUNER_RADIO) { |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 688 | freq = t->radio_freq / 16000; |
| 689 | freq_fraction = (t->radio_freq % 16000) * 100 / 16000; |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 690 | } else { |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 691 | freq = t->tv_freq / 16; |
| 692 | freq_fraction = (t->tv_freq % 16) * 100 / 16; |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 693 | } |
| 694 | tuner_info("Tuner mode: %s\n", p); |
| 695 | tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction); |
Mauro Carvalho Chehab | 4ae5c2e | 2006-03-25 15:53:38 -0300 | [diff] [blame] | 696 | tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std); |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 697 | if (t->mode != V4L2_TUNER_RADIO) |
| 698 | return; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 699 | if (fe_tuner_ops->get_status) { |
| 700 | u32 tuner_status; |
| 701 | |
| 702 | fe_tuner_ops->get_status(&t->fe, &tuner_status); |
| 703 | if (tuner_status & TUNER_STATUS_LOCKED) |
| 704 | tuner_info("Tuner is locked.\n"); |
| 705 | if (tuner_status & TUNER_STATUS_STEREO) |
| 706 | tuner_info("Stereo: yes\n"); |
| 707 | } |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 708 | if (analog_ops->has_signal) |
| 709 | tuner_info("Signal strength: %d\n", |
| 710 | analog_ops->has_signal(fe)); |
| 711 | if (analog_ops->is_stereo) |
| 712 | tuner_info("Stereo: %s\n", |
| 713 | analog_ops->is_stereo(fe) ? "yes" : "no"); |
Mauro Carvalho Chehab | 7e57819 | 2006-01-09 15:25:27 -0200 | [diff] [blame] | 714 | } |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 715 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | /* ---------------------------------------------------------------------- */ |
| 717 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 718 | /* |
| 719 | * Switch tuner to other mode. If tuner support both tv and radio, |
| 720 | * set another frequency to some value (This is needed for some pal |
| 721 | * tuners to avoid locking). Otherwise, just put second tuner in |
| 722 | * standby mode. |
| 723 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 725 | static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd) |
| 726 | { |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 727 | struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops; |
Michael Krufky | 1dde7a4 | 2007-10-21 13:40:56 -0300 | [diff] [blame] | 728 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 729 | if (mode == t->mode) |
| 730 | return 0; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 731 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 732 | t->mode = mode; |
Mauro Carvalho Chehab | 793cf9e | 2005-09-09 13:03:37 -0700 | [diff] [blame] | 733 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 734 | if (check_mode(t, cmd) == EINVAL) { |
| 735 | t->mode = T_STANDBY; |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 736 | if (analog_ops->standby) |
| 737 | analog_ops->standby(&t->fe); |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 738 | return EINVAL; |
| 739 | } |
| 740 | return 0; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | #define switch_v4l2() if (!t->using_v4l2) \ |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 744 | tuner_dbg("switching to v4l2\n"); \ |
| 745 | t->using_v4l2 = 1; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 746 | |
| 747 | static inline int check_v4l2(struct tuner *t) |
| 748 | { |
Hans Verkuil | 3bbe5a8 | 2006-04-01 15:27:52 -0300 | [diff] [blame] | 749 | /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for |
| 750 | TV, v4l1 for radio), until that is fixed this code is disabled. |
| 751 | Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2) |
| 752 | first. */ |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 753 | return 0; |
| 754 | } |
| 755 | |
| 756 | static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | { |
| 758 | struct tuner *t = i2c_get_clientdata(client); |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 759 | struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops; |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 760 | struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
Mauro Carvalho Chehab | 397be5c | 2008-04-26 14:04:10 -0300 | [diff] [blame] | 762 | if (tuner_debug > 1) { |
Hans Verkuil | 1cba97d7 | 2007-09-14 05:13:54 -0300 | [diff] [blame] | 763 | v4l_i2c_print_ioctl(client,cmd); |
Mauro Carvalho Chehab | 397be5c | 2008-04-26 14:04:10 -0300 | [diff] [blame] | 764 | printk("\n"); |
| 765 | } |
Michael Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 766 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 767 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | /* --- configuration --- */ |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 769 | case TUNER_SET_TYPE_ADDR: |
Hartmut Hackmann | de956c1 | 2007-04-27 12:31:12 -0300 | [diff] [blame] | 770 | tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n", |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 771 | ((struct tuner_setup *)arg)->type, |
| 772 | ((struct tuner_setup *)arg)->addr, |
Hartmut Hackmann | de956c1 | 2007-04-27 12:31:12 -0300 | [diff] [blame] | 773 | ((struct tuner_setup *)arg)->mode_mask, |
| 774 | ((struct tuner_setup *)arg)->config); |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 775 | |
| 776 | set_addr(client, (struct tuner_setup *)arg); |
Mauro Carvalho Chehab | 391cd72 | 2005-06-23 22:02:43 -0700 | [diff] [blame] | 777 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | case AUDC_SET_RADIO: |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 779 | if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO") |
| 780 | == EINVAL) |
| 781 | return 0; |
| 782 | if (t->radio_freq) |
| 783 | set_freq(client, t->radio_freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | break; |
Mauro Carvalho Chehab | 793cf9e | 2005-09-09 13:03:37 -0700 | [diff] [blame] | 785 | case TUNER_SET_STANDBY: |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 786 | if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL) |
| 787 | return 0; |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 788 | t->mode = T_STANDBY; |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 789 | if (analog_ops->standby) |
| 790 | analog_ops->standby(&t->fe); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 791 | break; |
Mauro Carvalho Chehab | 17de9a4 | 2008-04-15 18:11:50 -0300 | [diff] [blame] | 792 | #ifdef CONFIG_VIDEO_ALLOW_V4L1 |
Mauro Carvalho Chehab | fd3113e | 2005-07-31 22:34:43 -0700 | [diff] [blame] | 793 | case VIDIOCSAUDIO: |
| 794 | if (check_mode(t, "VIDIOCSAUDIO") == EINVAL) |
| 795 | return 0; |
| 796 | if (check_v4l2(t) == EINVAL) |
| 797 | return 0; |
| 798 | |
| 799 | /* Should be implemented, since bttv calls it */ |
| 800 | tuner_dbg("VIDIOCSAUDIO not implemented.\n"); |
Mauro Carvalho Chehab | fd3113e | 2005-07-31 22:34:43 -0700 | [diff] [blame] | 801 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | case VIDIOCSCHAN: |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 803 | { |
| 804 | static const v4l2_std_id map[] = { |
| 805 | [VIDEO_MODE_PAL] = V4L2_STD_PAL, |
| 806 | [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M, |
| 807 | [VIDEO_MODE_SECAM] = V4L2_STD_SECAM, |
| 808 | [4 /* bttv */ ] = V4L2_STD_PAL_M, |
| 809 | [5 /* bttv */ ] = V4L2_STD_PAL_N, |
| 810 | [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP, |
| 811 | }; |
| 812 | struct video_channel *vc = arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 814 | if (check_v4l2(t) == EINVAL) |
| 815 | return 0; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 816 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 817 | if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL) |
| 818 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 820 | if (vc->norm < ARRAY_SIZE(map)) |
| 821 | t->std = map[vc->norm]; |
| 822 | tuner_fixup_std(t); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 823 | if (t->tv_freq) |
| 824 | set_tv_freq(client, t->tv_freq); |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 825 | return 0; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 826 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 827 | case VIDIOCSFREQ: |
| 828 | { |
| 829 | unsigned long *v = arg; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 830 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 831 | if (check_mode(t, "VIDIOCSFREQ") == EINVAL) |
| 832 | return 0; |
| 833 | if (check_v4l2(t) == EINVAL) |
| 834 | return 0; |
| 835 | |
| 836 | set_freq(client, *v); |
| 837 | return 0; |
| 838 | } |
| 839 | case VIDIOCGTUNER: |
| 840 | { |
| 841 | struct video_tuner *vt = arg; |
| 842 | |
| 843 | if (check_mode(t, "VIDIOCGTUNER") == EINVAL) |
| 844 | return 0; |
| 845 | if (check_v4l2(t) == EINVAL) |
| 846 | return 0; |
| 847 | |
| 848 | if (V4L2_TUNER_RADIO == t->mode) { |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 849 | if (fe_tuner_ops->get_status) { |
| 850 | u32 tuner_status; |
| 851 | |
| 852 | fe_tuner_ops->get_status(&t->fe, &tuner_status); |
Michael Krufky | 1f5ef19 | 2007-08-31 17:38:02 -0300 | [diff] [blame] | 853 | if (tuner_status & TUNER_STATUS_STEREO) |
| 854 | vt->flags |= VIDEO_TUNER_STEREO_ON; |
| 855 | else |
| 856 | vt->flags &= ~VIDEO_TUNER_STEREO_ON; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 857 | } else { |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 858 | if (analog_ops->is_stereo) { |
| 859 | if (analog_ops->is_stereo(&t->fe)) |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 860 | vt->flags |= |
| 861 | VIDEO_TUNER_STEREO_ON; |
| 862 | else |
| 863 | vt->flags &= |
| 864 | ~VIDEO_TUNER_STEREO_ON; |
| 865 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 866 | } |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 867 | if (analog_ops->has_signal) |
| 868 | vt->signal = |
| 869 | analog_ops->has_signal(&t->fe); |
Michael Krufky | 1f5ef19 | 2007-08-31 17:38:02 -0300 | [diff] [blame] | 870 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 871 | vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */ |
| 872 | |
| 873 | vt->rangelow = radio_range[0] * 16000; |
| 874 | vt->rangehigh = radio_range[1] * 16000; |
| 875 | |
| 876 | } else { |
| 877 | vt->rangelow = tv_range[0] * 16; |
| 878 | vt->rangehigh = tv_range[1] * 16; |
| 879 | } |
| 880 | |
| 881 | return 0; |
| 882 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | case VIDIOCGAUDIO: |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 884 | { |
| 885 | struct video_audio *va = arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 887 | if (check_mode(t, "VIDIOCGAUDIO") == EINVAL) |
| 888 | return 0; |
| 889 | if (check_v4l2(t) == EINVAL) |
| 890 | return 0; |
| 891 | |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 892 | if (V4L2_TUNER_RADIO == t->mode) { |
| 893 | if (fe_tuner_ops->get_status) { |
| 894 | u32 tuner_status; |
| 895 | |
| 896 | fe_tuner_ops->get_status(&t->fe, &tuner_status); |
| 897 | va->mode = (tuner_status & TUNER_STATUS_STEREO) |
| 898 | ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO; |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 899 | } else if (analog_ops->is_stereo) |
| 900 | va->mode = analog_ops->is_stereo(&t->fe) |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 901 | ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO; |
| 902 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 903 | return 0; |
| 904 | } |
Mauro Carvalho Chehab | 985bc96 | 2006-07-23 06:31:19 -0300 | [diff] [blame] | 905 | #endif |
Mauro Carvalho Chehab | 7f17112 | 2007-10-18 19:56:47 -0300 | [diff] [blame] | 906 | case TUNER_SET_CONFIG: |
| 907 | { |
Mauro Carvalho Chehab | 7f17112 | 2007-10-18 19:56:47 -0300 | [diff] [blame] | 908 | struct v4l2_priv_tun_config *cfg = arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | |
Mauro Carvalho Chehab | 7f17112 | 2007-10-18 19:56:47 -0300 | [diff] [blame] | 910 | if (t->type != cfg->tuner) |
| 911 | break; |
| 912 | |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 913 | if (analog_ops->set_config) { |
Michael Krufky | 67d52e2 | 2007-12-24 16:05:39 -0300 | [diff] [blame] | 914 | analog_ops->set_config(&t->fe, cfg->priv); |
Mauro Carvalho Chehab | 7f17112 | 2007-10-18 19:56:47 -0300 | [diff] [blame] | 915 | break; |
| 916 | } |
Mauro Carvalho Chehab | 7f17112 | 2007-10-18 19:56:47 -0300 | [diff] [blame] | 917 | |
Michael Krufky | 67d52e2 | 2007-12-24 16:05:39 -0300 | [diff] [blame] | 918 | tuner_dbg("Tuner frontend module has no way to set config\n"); |
Mauro Carvalho Chehab | 985bc96 | 2006-07-23 06:31:19 -0300 | [diff] [blame] | 919 | break; |
Mauro Carvalho Chehab | 7f17112 | 2007-10-18 19:56:47 -0300 | [diff] [blame] | 920 | } |
Mauro Carvalho Chehab | 985bc96 | 2006-07-23 06:31:19 -0300 | [diff] [blame] | 921 | /* --- v4l ioctls --- */ |
| 922 | /* take care: bttv does userspace copying, we'll get a |
| 923 | kernel pointer here... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | case VIDIOC_S_STD: |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 925 | { |
| 926 | v4l2_std_id *id = arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 928 | if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD") |
| 929 | == EINVAL) |
| 930 | return 0; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 931 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 932 | switch_v4l2(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 934 | t->std = *id; |
| 935 | tuner_fixup_std(t); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 936 | if (t->tv_freq) |
| 937 | set_freq(client, t->tv_freq); |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 938 | break; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 939 | } |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 940 | case VIDIOC_S_FREQUENCY: |
| 941 | { |
| 942 | struct v4l2_frequency *f = arg; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 943 | |
Hans Verkuil | 4f725cb | 2006-06-24 09:47:56 -0300 | [diff] [blame] | 944 | if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY") |
| 945 | == EINVAL) |
| 946 | return 0; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 947 | switch_v4l2(); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 948 | set_freq(client,f->frequency); |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 949 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 950 | break; |
| 951 | } |
| 952 | case VIDIOC_G_FREQUENCY: |
| 953 | { |
| 954 | struct v4l2_frequency *f = arg; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 955 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 956 | if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL) |
| 957 | return 0; |
| 958 | switch_v4l2(); |
| 959 | f->type = t->mode; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 960 | if (fe_tuner_ops->get_frequency) { |
| 961 | u32 abs_freq; |
| 962 | |
| 963 | fe_tuner_ops->get_frequency(&t->fe, &abs_freq); |
| 964 | f->frequency = (V4L2_TUNER_RADIO == t->mode) ? |
| 965 | (abs_freq * 2 + 125/2) / 125 : |
| 966 | (abs_freq + 62500/2) / 62500; |
| 967 | break; |
| 968 | } |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 969 | f->frequency = (V4L2_TUNER_RADIO == t->mode) ? |
| 970 | t->radio_freq : t->tv_freq; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 971 | break; |
| 972 | } |
| 973 | case VIDIOC_G_TUNER: |
| 974 | { |
| 975 | struct v4l2_tuner *tuner = arg; |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 976 | |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 977 | if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL) |
| 978 | return 0; |
| 979 | switch_v4l2(); |
| 980 | |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 981 | tuner->type = t->mode; |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 982 | if (analog_ops->get_afc) |
| 983 | tuner->afc = analog_ops->get_afc(&t->fe); |
Hans Verkuil | ab4cecf | 2006-04-01 16:40:21 -0300 | [diff] [blame] | 984 | if (t->mode == V4L2_TUNER_ANALOG_TV) |
| 985 | tuner->capability |= V4L2_TUNER_CAP_NORM; |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 986 | if (t->mode != V4L2_TUNER_RADIO) { |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 987 | tuner->rangelow = tv_range[0] * 16; |
| 988 | tuner->rangehigh = tv_range[1] * 16; |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 989 | break; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 990 | } |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 991 | |
| 992 | /* radio mode */ |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 993 | tuner->rxsubchans = |
| 994 | V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 995 | if (fe_tuner_ops->get_status) { |
| 996 | u32 tuner_status; |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 997 | |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 998 | fe_tuner_ops->get_status(&t->fe, &tuner_status); |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 999 | tuner->rxsubchans = |
| 1000 | (tuner_status & TUNER_STATUS_STEREO) ? |
| 1001 | V4L2_TUNER_SUB_STEREO : |
| 1002 | V4L2_TUNER_SUB_MONO; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 1003 | } else { |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 1004 | if (analog_ops->is_stereo) { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 1005 | tuner->rxsubchans = |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 1006 | analog_ops->is_stereo(&t->fe) ? |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 1007 | V4L2_TUNER_SUB_STEREO : |
| 1008 | V4L2_TUNER_SUB_MONO; |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 1009 | } |
Michael Krufky | e18f944 | 2007-08-21 01:25:48 -0300 | [diff] [blame] | 1010 | } |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 1011 | if (analog_ops->has_signal) |
| 1012 | tuner->signal = analog_ops->has_signal(&t->fe); |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 1013 | tuner->capability |= |
| 1014 | V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO; |
| 1015 | tuner->audmode = t->audmode; |
| 1016 | tuner->rangelow = radio_range[0] * 16000; |
| 1017 | tuner->rangehigh = radio_range[1] * 16000; |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 1018 | break; |
| 1019 | } |
| 1020 | case VIDIOC_S_TUNER: |
| 1021 | { |
| 1022 | struct v4l2_tuner *tuner = arg; |
| 1023 | |
| 1024 | if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL) |
| 1025 | return 0; |
| 1026 | |
| 1027 | switch_v4l2(); |
| 1028 | |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 1029 | /* do nothing unless we're a radio tuner */ |
| 1030 | if (t->mode != V4L2_TUNER_RADIO) |
| 1031 | break; |
| 1032 | t->audmode = tuner->audmode; |
| 1033 | set_radio_freq(client, t->radio_freq); |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 1034 | break; |
| 1035 | } |
Hans Verkuil | cd43c3f | 2006-01-09 15:25:15 -0200 | [diff] [blame] | 1036 | case VIDIOC_LOG_STATUS: |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 1037 | if (analog_ops->tuner_status) |
| 1038 | analog_ops->tuner_status(&t->fe); |
Hans Verkuil | cd43c3f | 2006-01-09 15:25:15 -0200 | [diff] [blame] | 1039 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
| 1042 | return 0; |
| 1043 | } |
| 1044 | |
Jean Delvare | 21b48a7 | 2007-03-12 19:20:15 -0300 | [diff] [blame] | 1045 | static int tuner_suspend(struct i2c_client *c, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | { |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1047 | struct tuner *t = i2c_get_clientdata(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1049 | tuner_dbg("suspend\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | /* FIXME: power down ??? */ |
| 1051 | return 0; |
| 1052 | } |
| 1053 | |
Jean Delvare | 21b48a7 | 2007-03-12 19:20:15 -0300 | [diff] [blame] | 1054 | static int tuner_resume(struct i2c_client *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | { |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1056 | struct tuner *t = i2c_get_clientdata(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1058 | tuner_dbg("resume\n"); |
Hans Verkuil | 27487d4 | 2006-01-15 15:04:52 -0200 | [diff] [blame] | 1059 | if (V4L2_TUNER_RADIO == t->mode) { |
| 1060 | if (t->radio_freq) |
| 1061 | set_freq(c, t->radio_freq); |
| 1062 | } else { |
| 1063 | if (t->tv_freq) |
| 1064 | set_freq(c, t->tv_freq); |
| 1065 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | return 0; |
| 1067 | } |
| 1068 | |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1069 | /* ---------------------------------------------------------------------- */ |
| 1070 | |
Adrian Bunk | c52c4d0 | 2008-01-28 22:11:15 -0300 | [diff] [blame] | 1071 | static LIST_HEAD(tuner_list); |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1072 | |
| 1073 | /* Search for existing radio and/or TV tuners on the given I2C adapter. |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1074 | Note that when this function is called from tuner_probe you can be |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1075 | certain no other devices will be added/deleted at the same time, I2C |
| 1076 | core protects against that. */ |
| 1077 | static void tuner_lookup(struct i2c_adapter *adap, |
| 1078 | struct tuner **radio, struct tuner **tv) |
| 1079 | { |
| 1080 | struct tuner *pos; |
| 1081 | |
| 1082 | *radio = NULL; |
| 1083 | *tv = NULL; |
| 1084 | |
| 1085 | list_for_each_entry(pos, &tuner_list, list) { |
| 1086 | int mode_mask; |
| 1087 | |
| 1088 | if (pos->i2c->adapter != adap || |
| 1089 | pos->i2c->driver->id != I2C_DRIVERID_TUNER) |
| 1090 | continue; |
| 1091 | |
| 1092 | mode_mask = pos->mode_mask & ~T_STANDBY; |
| 1093 | if (*radio == NULL && mode_mask == T_RADIO) |
| 1094 | *radio = pos; |
| 1095 | /* Note: currently TDA9887 is the only demod-only |
| 1096 | device. If other devices appear then we need to |
| 1097 | make this test more general. */ |
| 1098 | else if (*tv == NULL && pos->type != TUNER_TDA9887 && |
| 1099 | (pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV))) |
| 1100 | *tv = pos; |
| 1101 | } |
| 1102 | } |
| 1103 | |
| 1104 | /* During client attach, set_type is called by adapter's attach_inform callback. |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1105 | set_type must then be completed by tuner_probe. |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1106 | */ |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 1107 | static int tuner_probe(struct i2c_client *client, |
| 1108 | const struct i2c_device_id *id) |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1109 | { |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1110 | struct tuner *t; |
| 1111 | struct tuner *radio; |
| 1112 | struct tuner *tv; |
| 1113 | |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1114 | t = kzalloc(sizeof(struct tuner), GFP_KERNEL); |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1115 | if (NULL == t) |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1116 | return -ENOMEM; |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1117 | t->i2c = client; |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1118 | strlcpy(client->name, "(tuner unset)", sizeof(client->name)); |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1119 | i2c_set_clientdata(client, t); |
| 1120 | t->type = UNSET; |
| 1121 | t->audmode = V4L2_TUNER_MODE_STEREO; |
| 1122 | t->mode_mask = T_UNINITIALIZED; |
| 1123 | |
| 1124 | if (show_i2c) { |
| 1125 | unsigned char buffer[16]; |
| 1126 | int i, rc; |
| 1127 | |
| 1128 | memset(buffer, 0, sizeof(buffer)); |
| 1129 | rc = i2c_master_recv(client, buffer, sizeof(buffer)); |
| 1130 | tuner_info("I2C RECV = "); |
| 1131 | for (i = 0; i < rc; i++) |
| 1132 | printk(KERN_CONT "%02x ", buffer[i]); |
| 1133 | printk("\n"); |
| 1134 | } |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1135 | /* HACK: This test was added to avoid tuner to probe tda9840 and |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1136 | tea6415c on the MXB card */ |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1137 | if (client->adapter->id == I2C_HW_SAA7146 && client->addr < 0x4a) { |
| 1138 | kfree(t); |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1139 | return -ENODEV; |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1140 | } |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1141 | |
| 1142 | /* autodetection code based on the i2c addr */ |
| 1143 | if (!no_autodetect) { |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1144 | switch (client->addr) { |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1145 | case 0x10: |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 1146 | if (tuner_symbol_probe(tea5761_autodetection, |
| 1147 | t->i2c->adapter, |
| 1148 | t->i2c->addr) >= 0) { |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1149 | t->type = TUNER_TEA5761; |
| 1150 | t->mode_mask = T_RADIO; |
| 1151 | t->mode = T_STANDBY; |
| 1152 | /* Sets freq to FM range */ |
| 1153 | t->radio_freq = 87.5 * 16000; |
| 1154 | tuner_lookup(t->i2c->adapter, &radio, &tv); |
| 1155 | if (tv) |
| 1156 | tv->mode_mask &= ~T_RADIO; |
| 1157 | |
| 1158 | goto register_client; |
| 1159 | } |
Mauro Carvalho Chehab | 867e835 | 2008-04-23 17:27:27 -0300 | [diff] [blame] | 1160 | return -ENODEV; |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1161 | case 0x42: |
| 1162 | case 0x43: |
| 1163 | case 0x4a: |
| 1164 | case 0x4b: |
| 1165 | /* If chip is not tda8290, don't register. |
| 1166 | since it can be tda9887*/ |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 1167 | if (tuner_symbol_probe(tda829x_probe, t->i2c->adapter, |
Mauro Carvalho Chehab | b538d28 | 2008-04-30 15:45:00 -0300 | [diff] [blame^] | 1168 | t->i2c->addr) >= 0) { |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1169 | tuner_dbg("tda829x detected\n"); |
| 1170 | } else { |
| 1171 | /* Default is being tda9887 */ |
| 1172 | t->type = TUNER_TDA9887; |
| 1173 | t->mode_mask = T_RADIO | T_ANALOG_TV | |
| 1174 | T_DIGITAL_TV; |
| 1175 | t->mode = T_STANDBY; |
| 1176 | goto register_client; |
| 1177 | } |
| 1178 | break; |
| 1179 | case 0x60: |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 1180 | if (tuner_symbol_probe(tea5767_autodetection, |
| 1181 | t->i2c->adapter, t->i2c->addr) |
Mauro Carvalho Chehab | b538d28 | 2008-04-30 15:45:00 -0300 | [diff] [blame^] | 1182 | >= 0) { |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1183 | t->type = TUNER_TEA5767; |
| 1184 | t->mode_mask = T_RADIO; |
| 1185 | t->mode = T_STANDBY; |
| 1186 | /* Sets freq to FM range */ |
| 1187 | t->radio_freq = 87.5 * 16000; |
| 1188 | tuner_lookup(t->i2c->adapter, &radio, &tv); |
| 1189 | if (tv) |
| 1190 | tv->mode_mask &= ~T_RADIO; |
| 1191 | |
| 1192 | goto register_client; |
| 1193 | } |
| 1194 | break; |
| 1195 | } |
| 1196 | } |
| 1197 | |
| 1198 | /* Initializes only the first TV tuner on this adapter. Why only the |
| 1199 | first? Because there are some devices (notably the ones with TI |
| 1200 | tuners) that have more than one i2c address for the *same* device. |
| 1201 | Experience shows that, except for just one case, the first |
| 1202 | address is the right one. The exception is a Russian tuner |
| 1203 | (ACORP_Y878F). So, the desired behavior is just to enable the |
| 1204 | first found TV tuner. */ |
| 1205 | tuner_lookup(t->i2c->adapter, &radio, &tv); |
| 1206 | if (tv == NULL) { |
| 1207 | t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV; |
| 1208 | if (radio == NULL) |
| 1209 | t->mode_mask |= T_RADIO; |
| 1210 | tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask); |
| 1211 | t->tv_freq = 400 * 16; /* Sets freq to VHF High */ |
| 1212 | t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */ |
| 1213 | } |
| 1214 | |
| 1215 | /* Should be just before return */ |
| 1216 | register_client: |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1217 | tuner_info("chip found @ 0x%x (%s)\n", client->addr << 1, |
| 1218 | client->adapter->name); |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1219 | |
| 1220 | /* Sets a default mode */ |
| 1221 | if (t->mode_mask & T_ANALOG_TV) { |
Michael Krufky | 864a6b8 | 2007-12-09 17:21:54 -0300 | [diff] [blame] | 1222 | t->mode = V4L2_TUNER_ANALOG_TV; |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1223 | } else if (t->mode_mask & T_RADIO) { |
Michael Krufky | 864a6b8 | 2007-12-09 17:21:54 -0300 | [diff] [blame] | 1224 | t->mode = V4L2_TUNER_RADIO; |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1225 | } else { |
Michael Krufky | 864a6b8 | 2007-12-09 17:21:54 -0300 | [diff] [blame] | 1226 | t->mode = V4L2_TUNER_DIGITAL_TV; |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1227 | } |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1228 | set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback); |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1229 | list_add_tail(&t->list, &tuner_list); |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1230 | return 0; |
| 1231 | } |
| 1232 | |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1233 | static int tuner_legacy_probe(struct i2c_adapter *adap) |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1234 | { |
| 1235 | if (0 != addr) { |
| 1236 | normal_i2c[0] = addr; |
| 1237 | normal_i2c[1] = I2C_CLIENT_END; |
| 1238 | } |
| 1239 | |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1240 | if ((adap->class & I2C_CLASS_TV_ANALOG) == 0) |
| 1241 | return 0; |
| 1242 | |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1243 | /* HACK: Ignore 0x6b and 0x6f on cx88 boards. |
| 1244 | * FusionHDTV5 RT Gold has an ir receiver at 0x6b |
| 1245 | * and an RTC at 0x6f which can get corrupted if probed. |
| 1246 | */ |
| 1247 | if ((adap->id == I2C_HW_B_CX2388x) || |
| 1248 | (adap->id == I2C_HW_B_CX23885)) { |
| 1249 | unsigned int i = 0; |
| 1250 | |
| 1251 | while (i < I2C_CLIENT_MAX_OPTS && ignore[i] != I2C_CLIENT_END) |
| 1252 | i += 2; |
| 1253 | if (i + 4 < I2C_CLIENT_MAX_OPTS) { |
| 1254 | ignore[i+0] = adap->nr; |
| 1255 | ignore[i+1] = 0x6b; |
| 1256 | ignore[i+2] = adap->nr; |
| 1257 | ignore[i+3] = 0x6f; |
| 1258 | ignore[i+4] = I2C_CLIENT_END; |
| 1259 | } else |
| 1260 | printk(KERN_WARNING "tuner: " |
| 1261 | "too many options specified " |
| 1262 | "in i2c probe ignore list!\n"); |
| 1263 | } |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1264 | return 1; |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1265 | } |
| 1266 | |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1267 | static int tuner_remove(struct i2c_client *client) |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1268 | { |
| 1269 | struct tuner *t = i2c_get_clientdata(client); |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1270 | |
Michael Krufky | a07c877 | 2008-04-29 03:54:19 -0300 | [diff] [blame] | 1271 | tuner_detach(&t->fe); |
| 1272 | t->fe.analog_demod_priv = NULL; |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1273 | |
| 1274 | list_del(&t->list); |
| 1275 | kfree(t); |
Hans Verkuil | 92de1f1 | 2007-11-04 10:53:09 -0300 | [diff] [blame] | 1276 | return 0; |
| 1277 | } |
| 1278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | /* ----------------------------------------------------------------------- */ |
| 1280 | |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1281 | static struct v4l2_i2c_driver_data v4l2_i2c_data = { |
| 1282 | .name = "tuner", |
| 1283 | .driverid = I2C_DRIVERID_TUNER, |
Mauro Carvalho Chehab | f7ce3cc | 2005-07-12 13:58:55 -0700 | [diff] [blame] | 1284 | .command = tuner_command, |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1285 | .probe = tuner_probe, |
| 1286 | .remove = tuner_remove, |
Jean Delvare | 21b48a7 | 2007-03-12 19:20:15 -0300 | [diff] [blame] | 1287 | .suspend = tuner_suspend, |
Hans Verkuil | 9dd659d | 2007-11-04 11:03:36 -0300 | [diff] [blame] | 1288 | .resume = tuner_resume, |
| 1289 | .legacy_probe = tuner_legacy_probe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | }; |
| 1291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | |
| 1293 | /* |
| 1294 | * Overrides for Emacs so that we follow Linus's tabbing style. |
| 1295 | * --------------------------------------------------------------------------- |
| 1296 | * Local variables: |
| 1297 | * c-basic-offset: 8 |
| 1298 | * End: |
| 1299 | */ |