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