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