3 * i2c tv tuner chip device driver
4 * core core, i.e. kernel interfaces, registering and so on
7 #include <linux/module.h>
8 #include <linux/kernel.h>
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>
17 #include <linux/init.h>
18 #include <linux/videodev.h>
19 #include <media/tuner.h>
20 #include <media/v4l2-common.h>
21 #include "tuner-driver.h"
28 /* standard i2c insmod options */
29 static unsigned short normal_i2c[] = {
30 #ifdef CONFIG_TUNER_TEA5761
33 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
34 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
35 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
41 /* insmod options used at init time => read/only */
42 static unsigned int addr = 0;
43 static unsigned int no_autodetect = 0;
44 static unsigned int show_i2c = 0;
46 /* insmod options used at runtime => read/write */
49 static unsigned int tv_range[2] = { 44, 958 };
50 static unsigned int radio_range[2] = { 65, 108 };
52 static char pal[] = "--";
53 static char secam[] = "--";
54 static char ntsc[] = "-";
57 module_param(addr, int, 0444);
58 module_param(no_autodetect, int, 0444);
59 module_param(show_i2c, int, 0444);
60 module_param_named(debug,tuner_debug, int, 0644);
61 module_param_string(pal, pal, sizeof(pal), 0644);
62 module_param_string(secam, secam, sizeof(secam), 0644);
63 module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
64 module_param_array(tv_range, int, NULL, 0644);
65 module_param_array(radio_range, int, NULL, 0644);
67 MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
68 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
69 MODULE_LICENSE("GPL");
71 static struct i2c_driver driver;
72 static struct i2c_client client_template;
74 /* ---------------------------------------------------------------------- */
76 static void fe_set_freq(struct tuner *t, unsigned int freq)
78 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
80 struct analog_parameters params = {
83 .audmode = t->audmode,
87 if (NULL == fe_tuner_ops->set_analog_params) {
88 tuner_warn("Tuner frontend module has no way to set freq\n");
91 fe_tuner_ops->set_analog_params(&t->fe, ¶ms);
94 static void fe_release(struct tuner *t)
96 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
98 if (fe_tuner_ops->release)
99 fe_tuner_ops->release(&t->fe);
102 static void fe_standby(struct tuner *t)
104 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
106 if (fe_tuner_ops->sleep)
107 fe_tuner_ops->sleep(&t->fe);
110 /* Set tuner frequency, freq in Units of 62.5kHz = 1/16MHz */
111 static void set_tv_freq(struct i2c_client *c, unsigned int freq)
113 struct tuner *t = i2c_get_clientdata(c);
115 if (t->type == UNSET) {
116 tuner_warn ("tuner type not set\n");
119 if (NULL == t->ops.set_tv_freq) {
120 tuner_warn ("Tuner has no way to set tv freq\n");
123 if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
124 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
125 freq / 16, freq % 16 * 100 / 16, tv_range[0],
127 /* V4L2 spec: if the freq is not possible then the closest
128 possible value should be selected */
129 if (freq < tv_range[0] * 16)
130 freq = tv_range[0] * 16;
132 freq = tv_range[1] * 16;
134 t->ops.set_tv_freq(t, freq);
137 static void set_radio_freq(struct i2c_client *c, unsigned int freq)
139 struct tuner *t = i2c_get_clientdata(c);
141 if (t->type == UNSET) {
142 tuner_warn ("tuner type not set\n");
145 if (NULL == t->ops.set_radio_freq) {
146 tuner_warn ("tuner has no way to set radio frequency\n");
149 if (freq < radio_range[0] * 16000 || freq > radio_range[1] * 16000) {
150 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
151 freq / 16000, freq % 16000 * 100 / 16000,
152 radio_range[0], radio_range[1]);
153 /* V4L2 spec: if the freq is not possible then the closest
154 possible value should be selected */
155 if (freq < radio_range[0] * 16000)
156 freq = radio_range[0] * 16000;
158 freq = radio_range[1] * 16000;
161 t->ops.set_radio_freq(t, freq);
164 static void set_freq(struct i2c_client *c, unsigned long freq)
166 struct tuner *t = i2c_get_clientdata(c);
169 case V4L2_TUNER_RADIO:
170 tuner_dbg("radio freq set to %lu.%02lu\n",
171 freq / 16000, freq % 16000 * 100 / 16000);
172 set_radio_freq(c, freq);
173 t->radio_freq = freq;
175 case V4L2_TUNER_ANALOG_TV:
176 case V4L2_TUNER_DIGITAL_TV:
177 tuner_dbg("tv freq set to %lu.%02lu\n",
178 freq / 16, freq % 16 * 100 / 16);
179 set_tv_freq(c, freq);
185 static void tuner_i2c_address_check(struct tuner *t)
187 if ((t->type == UNSET || t->type == TUNER_ABSENT) ||
188 ((t->i2c.addr < 0x64) || (t->i2c.addr > 0x6f)))
191 tuner_warn("====================== WARNING! ======================\n");
192 tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
193 tuner_warn("will soon be dropped. This message indicates that your\n");
194 tuner_warn("hardware has a %s tuner at i2c address 0x%02x.\n",
195 t->i2c.name, t->i2c.addr);
196 tuner_warn("To ensure continued support for your device, please\n");
197 tuner_warn("send a copy of this message, along with full dmesg\n");
198 tuner_warn("output to v4l-dvb-maintainer@linuxtv.org\n");
199 tuner_warn("Please use subject line: \"obsolete tuner i2c address.\"\n");
200 tuner_warn("driver: %s, addr: 0x%02x, type: %d (%s)\n",
201 t->i2c.adapter->name, t->i2c.addr, t->type,
202 tuners[t->type].name);
203 tuner_warn("====================== WARNING! ======================\n");
206 static void attach_tda8290(struct tuner *t)
208 struct tda8290_config cfg = {
209 .lna_cfg = &t->config,
210 .tuner_callback = t->tuner_callback
212 tda8290_attach(&t->fe, t->i2c.adapter, t->i2c.addr, &cfg);
215 static void set_type(struct i2c_client *c, unsigned int type,
216 unsigned int new_mode_mask, unsigned int new_config,
217 int (*tuner_callback) (void *dev, int command,int arg))
219 struct tuner *t = i2c_get_clientdata(c);
220 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
221 unsigned char buffer[4];
223 if (type == UNSET || type == TUNER_ABSENT) {
224 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
228 if (type >= tuner_count) {
229 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
234 t->config = new_config;
235 if (tuner_callback != NULL) {
236 tuner_dbg("defining GPIO callback\n");
237 t->tuner_callback = tuner_callback;
240 /* This code detects calls by card attach_inform */
241 if (NULL == t->i2c.dev.driver) {
242 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
247 /* discard private data, in case set_type() was previously called */
257 microtune_attach(&t->fe, t->i2c.adapter, t->i2c.addr);
259 case TUNER_PHILIPS_TDA8290:
265 if (tea5767_tuner_init(t) == EINVAL) {
266 t->type = TUNER_ABSENT;
267 t->mode_mask = T_UNINITIALIZED;
270 t->mode_mask = T_RADIO;
272 #ifdef CONFIG_TUNER_TEA5761
274 if (tea5761_attach(&t->fe, t->i2c.adapter, t->i2c.addr) == NULL) {
275 t->type = TUNER_ABSENT;
276 t->mode_mask = T_UNINITIALIZED;
279 t->mode_mask = T_RADIO;
282 case TUNER_PHILIPS_FMD1216ME_MK3:
287 i2c_master_send(c, buffer, 4);
291 i2c_master_send(c, buffer, 4);
292 default_tuner_init(t);
294 case TUNER_PHILIPS_TD1316:
299 i2c_master_send(c,buffer,4);
300 default_tuner_init(t);
303 tda9887_tuner_init(t);
306 default_tuner_init(t);
310 if (fe_tuner_ops->set_analog_params) {
311 strlcpy(t->i2c.name, fe_tuner_ops->info.name, sizeof(t->i2c.name));
313 t->ops.set_tv_freq = fe_set_freq;
314 t->ops.set_radio_freq = fe_set_freq;
315 t->ops.standby = fe_standby;
316 t->ops.release = fe_release;
319 tuner_info("type set to %s\n", t->i2c.name);
321 if (t->mode_mask == T_UNINITIALIZED)
322 t->mode_mask = new_mode_mask;
324 set_freq(c, (V4L2_TUNER_RADIO == t->mode) ? t->radio_freq : t->tv_freq);
325 tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
326 c->adapter->name, c->driver->driver.name, c->addr << 1, type,
328 tuner_i2c_address_check(t);
332 * This function apply tuner config to tuner specified
333 * by tun_setup structure. I addr is unset, then admin status
334 * and tun addr status is more precise then current status,
335 * it's applied. Otherwise status and type are applied only to
336 * tuner with exactly the same addr.
339 static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
341 struct tuner *t = i2c_get_clientdata(c);
343 tuner_dbg("set addr for type %i\n", t->type);
345 if ( (t->type == UNSET && ((tun_setup->addr == ADDR_UNSET) &&
346 (t->mode_mask & tun_setup->mode_mask))) ||
347 (tun_setup->addr == c->addr)) {
348 set_type(c, tun_setup->type, tun_setup->mode_mask,
349 tun_setup->config, tun_setup->tuner_callback);
353 static inline int check_mode(struct tuner *t, char *cmd)
355 if ((1 << t->mode & t->mode_mask) == 0) {
360 case V4L2_TUNER_RADIO:
361 tuner_dbg("Cmd %s accepted for radio\n", cmd);
363 case V4L2_TUNER_ANALOG_TV:
364 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
366 case V4L2_TUNER_DIGITAL_TV:
367 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
373 /* get more precise norm info from insmod option */
374 static int tuner_fixup_std(struct tuner *t)
376 if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
379 tuner_dbg ("insmod fixup: PAL => PAL-60\n");
380 t->std = V4L2_STD_PAL_60;
386 tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
387 t->std = V4L2_STD_PAL_BG;
391 tuner_dbg ("insmod fixup: PAL => PAL-I\n");
392 t->std = V4L2_STD_PAL_I;
398 tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
399 t->std = V4L2_STD_PAL_DK;
403 tuner_dbg ("insmod fixup: PAL => PAL-M\n");
404 t->std = V4L2_STD_PAL_M;
408 if (pal[1] == 'c' || pal[1] == 'C') {
409 tuner_dbg("insmod fixup: PAL => PAL-Nc\n");
410 t->std = V4L2_STD_PAL_Nc;
412 tuner_dbg ("insmod fixup: PAL => PAL-N\n");
413 t->std = V4L2_STD_PAL_N;
417 /* default parameter, do nothing */
420 tuner_warn ("pal= argument not recognised\n");
424 if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
432 tuner_dbg("insmod fixup: SECAM => SECAM-BGH\n");
433 t->std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
439 tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
440 t->std = V4L2_STD_SECAM_DK;
444 if ((secam[1]=='C')||(secam[1]=='c')) {
445 tuner_dbg ("insmod fixup: SECAM => SECAM-L'\n");
446 t->std = V4L2_STD_SECAM_LC;
448 tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
449 t->std = V4L2_STD_SECAM_L;
453 /* default parameter, do nothing */
456 tuner_warn ("secam= argument not recognised\n");
461 if ((t->std & V4L2_STD_NTSC) == V4L2_STD_NTSC) {
465 tuner_dbg("insmod fixup: NTSC => NTSC-M\n");
466 t->std = V4L2_STD_NTSC_M;
470 tuner_dbg("insmod fixup: NTSC => NTSC_M_JP\n");
471 t->std = V4L2_STD_NTSC_M_JP;
475 tuner_dbg("insmod fixup: NTSC => NTSC_M_KR\n");
476 t->std = V4L2_STD_NTSC_M_KR;
479 /* default parameter, do nothing */
482 tuner_info("ntsc= argument not recognised\n");
489 static void tuner_status(struct tuner *t)
491 unsigned long freq, freq_fraction;
492 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
496 case V4L2_TUNER_RADIO: p = "radio"; break;
497 case V4L2_TUNER_ANALOG_TV: p = "analog TV"; break;
498 case V4L2_TUNER_DIGITAL_TV: p = "digital TV"; break;
499 default: p = "undefined"; break;
501 if (t->mode == V4L2_TUNER_RADIO) {
502 freq = t->radio_freq / 16000;
503 freq_fraction = (t->radio_freq % 16000) * 100 / 16000;
505 freq = t->tv_freq / 16;
506 freq_fraction = (t->tv_freq % 16) * 100 / 16;
508 tuner_info("Tuner mode: %s\n", p);
509 tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction);
510 tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std);
511 if (t->mode != V4L2_TUNER_RADIO)
513 if (fe_tuner_ops->get_status) {
516 fe_tuner_ops->get_status(&t->fe, &tuner_status);
517 if (tuner_status & TUNER_STATUS_LOCKED)
518 tuner_info("Tuner is locked.\n");
519 if (tuner_status & TUNER_STATUS_STEREO)
520 tuner_info("Stereo: yes\n");
522 if (t->ops.has_signal) {
523 tuner_info("Signal strength: %d\n", t->ops.has_signal(t));
525 if (t->ops.is_stereo) {
526 tuner_info("Stereo: %s\n", t->ops.is_stereo(t) ? "yes" : "no");
530 /* ---------------------------------------------------------------------- */
532 /* static vars: used only in tuner_attach and tuner_probe */
533 static unsigned default_mode_mask;
535 /* During client attach, set_type is called by adapter's attach_inform callback.
536 set_type must then be completed by tuner_attach.
538 static int tuner_attach(struct i2c_adapter *adap, int addr, int kind)
542 client_template.adapter = adap;
543 client_template.addr = addr;
545 t = kzalloc(sizeof(struct tuner), GFP_KERNEL);
548 memcpy(&t->i2c, &client_template, sizeof(struct i2c_client));
549 i2c_set_clientdata(&t->i2c, t);
551 t->audmode = V4L2_TUNER_MODE_STEREO;
552 t->mode_mask = T_UNINITIALIZED;
553 t->ops.tuner_status = tuner_status;
556 unsigned char buffer[16];
559 memset(buffer, 0, sizeof(buffer));
560 rc = i2c_master_recv(&t->i2c, buffer, sizeof(buffer));
561 tuner_info("I2C RECV = ");
563 printk("%02x ",buffer[i]);
566 /* HACK: This test were added to avoid tuner to probe tda9840 and tea6415c on the MXB card */
567 if (adap->id == I2C_HW_SAA7146 && addr < 0x4a)
570 /* autodetection code based on the i2c addr */
571 if (!no_autodetect) {
573 #ifdef CONFIG_TUNER_TEA5761
575 if (tea5761_autodetection(t->i2c.adapter, t->i2c.addr) != EINVAL) {
576 t->type = TUNER_TEA5761;
577 t->mode_mask = T_RADIO;
579 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
580 default_mode_mask &= ~T_RADIO;
582 goto register_client;
590 /* If chip is not tda8290, don't register.
591 since it can be tda9887*/
592 if (tda8290_probe(t->i2c.adapter, t->i2c.addr) == 0) {
593 tuner_dbg("chip at addr %x is a tda8290\n", addr);
595 /* Default is being tda9887 */
596 t->type = TUNER_TDA9887;
597 t->mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
599 goto register_client;
603 if (tea5767_autodetection(t) != EINVAL) {
604 t->type = TUNER_TEA5767;
605 t->mode_mask = T_RADIO;
607 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
608 default_mode_mask &= ~T_RADIO;
610 goto register_client;
616 /* Initializes only the first adapter found */
617 if (default_mode_mask != T_UNINITIALIZED) {
618 tuner_dbg ("Setting mode_mask to 0x%02x\n", default_mode_mask);
619 t->mode_mask = default_mode_mask;
620 t->tv_freq = 400 * 16; /* Sets freq to VHF High */
621 t->radio_freq = 87.5 * 16000; /* Sets freq to FM range */
622 default_mode_mask = T_UNINITIALIZED;
625 /* Should be just before return */
627 tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name);
628 i2c_attach_client (&t->i2c);
629 set_type (&t->i2c,t->type, t->mode_mask, t->config, t->tuner_callback);
633 static int tuner_probe(struct i2c_adapter *adap)
636 normal_i2c[0] = addr;
637 normal_i2c[1] = I2C_CLIENT_END;
640 default_mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
642 if (adap->class & I2C_CLASS_TV_ANALOG)
643 return i2c_probe(adap, &addr_data, tuner_attach);
647 static int tuner_detach(struct i2c_client *client)
649 struct tuner *t = i2c_get_clientdata(client);
652 err = i2c_detach_client(&t->i2c);
655 ("Client deregistration failed, client not detached.\n");
669 * Switch tuner to other mode. If tuner support both tv and radio,
670 * set another frequency to some value (This is needed for some pal
671 * tuners to avoid locking). Otherwise, just put second tuner in
675 static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
682 if (check_mode(t, cmd) == EINVAL) {
691 #define switch_v4l2() if (!t->using_v4l2) \
692 tuner_dbg("switching to v4l2\n"); \
695 static inline int check_v4l2(struct tuner *t)
697 /* bttv still uses both v4l1 and v4l2 calls to the tuner (v4l2 for
698 TV, v4l1 for radio), until that is fixed this code is disabled.
699 Otherwise the radio (v4l1) wouldn't tune after using the TV (v4l2)
704 static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
706 struct tuner *t = i2c_get_clientdata(client);
707 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops;
710 v4l_i2c_print_ioctl(&(t->i2c),cmd);
713 /* --- configuration --- */
714 case TUNER_SET_TYPE_ADDR:
715 tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x, config=0x%02x\n",
716 ((struct tuner_setup *)arg)->type,
717 ((struct tuner_setup *)arg)->addr,
718 ((struct tuner_setup *)arg)->mode_mask,
719 ((struct tuner_setup *)arg)->config);
721 set_addr(client, (struct tuner_setup *)arg);
724 if (set_mode(client, t, V4L2_TUNER_RADIO, "AUDC_SET_RADIO")
728 set_freq(client, t->radio_freq);
730 case TUNER_SET_STANDBY:
731 if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
737 #ifdef CONFIG_VIDEO_V4L1
739 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
741 if (check_v4l2(t) == EINVAL)
744 /* Should be implemented, since bttv calls it */
745 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
749 static const v4l2_std_id map[] = {
750 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
751 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
752 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
753 [4 /* bttv */ ] = V4L2_STD_PAL_M,
754 [5 /* bttv */ ] = V4L2_STD_PAL_N,
755 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
757 struct video_channel *vc = arg;
759 if (check_v4l2(t) == EINVAL)
762 if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
765 if (vc->norm < ARRAY_SIZE(map))
766 t->std = map[vc->norm];
769 set_tv_freq(client, t->tv_freq);
774 unsigned long *v = arg;
776 if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
778 if (check_v4l2(t) == EINVAL)
781 set_freq(client, *v);
786 struct video_tuner *vt = arg;
788 if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
790 if (check_v4l2(t) == EINVAL)
793 if (V4L2_TUNER_RADIO == t->mode) {
794 if (fe_tuner_ops->get_status) {
797 fe_tuner_ops->get_status(&t->fe, &tuner_status);
798 if (tuner_status & TUNER_STATUS_STEREO)
799 vt->flags |= VIDEO_TUNER_STEREO_ON;
801 vt->flags &= ~VIDEO_TUNER_STEREO_ON;
802 vt->signal = tuner_status & TUNER_STATUS_LOCKED
805 if (t->ops.is_stereo) {
806 if (t->ops.is_stereo(t))
808 VIDEO_TUNER_STEREO_ON;
811 ~VIDEO_TUNER_STEREO_ON;
813 if (t->ops.has_signal)
814 vt->signal = t->ops.has_signal(t);
816 vt->flags |= VIDEO_TUNER_LOW; /* Allow freqs at 62.5 Hz */
818 vt->rangelow = radio_range[0] * 16000;
819 vt->rangehigh = radio_range[1] * 16000;
822 vt->rangelow = tv_range[0] * 16;
823 vt->rangehigh = tv_range[1] * 16;
830 struct video_audio *va = arg;
832 if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
834 if (check_v4l2(t) == EINVAL)
837 if (V4L2_TUNER_RADIO == t->mode) {
838 if (fe_tuner_ops->get_status) {
841 fe_tuner_ops->get_status(&t->fe, &tuner_status);
842 va->mode = (tuner_status & TUNER_STATUS_STEREO)
843 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
844 } else if (t->ops.is_stereo)
845 va->mode = t->ops.is_stereo(t)
846 ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
851 case TDA9887_SET_CONFIG:
852 if (t->type == TUNER_TDA9887) {
855 t->tda9887_config = *i;
856 set_freq(client, t->tv_freq);
859 /* --- v4l ioctls --- */
860 /* take care: bttv does userspace copying, we'll get a
861 kernel pointer here... */
864 v4l2_std_id *id = arg;
866 if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
875 set_freq(client, t->tv_freq);
878 case VIDIOC_S_FREQUENCY:
880 struct v4l2_frequency *f = arg;
882 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
886 set_freq(client,f->frequency);
890 case VIDIOC_G_FREQUENCY:
892 struct v4l2_frequency *f = arg;
894 if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
898 if (fe_tuner_ops->get_frequency) {
901 fe_tuner_ops->get_frequency(&t->fe, &abs_freq);
902 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
903 (abs_freq * 2 + 125/2) / 125 :
904 (abs_freq + 62500/2) / 62500;
907 f->frequency = (V4L2_TUNER_RADIO == t->mode) ?
908 t->radio_freq : t->tv_freq;
913 struct v4l2_tuner *tuner = arg;
915 if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
919 tuner->type = t->mode;
921 tuner->afc=t->ops.get_afc(t);
922 if (t->mode == V4L2_TUNER_ANALOG_TV)
923 tuner->capability |= V4L2_TUNER_CAP_NORM;
924 if (t->mode != V4L2_TUNER_RADIO) {
925 tuner->rangelow = tv_range[0] * 16;
926 tuner->rangehigh = tv_range[1] * 16;
932 V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
933 if (fe_tuner_ops->get_status) {
936 fe_tuner_ops->get_status(&t->fe, &tuner_status);
937 tuner->rxsubchans = (tuner_status & TUNER_STATUS_STEREO) ?
938 V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
939 tuner->signal = tuner_status & TUNER_STATUS_LOCKED ? 65535 : 0;
941 if (t->ops.is_stereo) {
942 tuner->rxsubchans = t->ops.is_stereo(t) ?
943 V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
945 if (t->ops.has_signal)
946 tuner->signal = t->ops.has_signal(t);
949 V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
950 tuner->audmode = t->audmode;
951 tuner->rangelow = radio_range[0] * 16000;
952 tuner->rangehigh = radio_range[1] * 16000;
957 struct v4l2_tuner *tuner = arg;
959 if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
964 /* do nothing unless we're a radio tuner */
965 if (t->mode != V4L2_TUNER_RADIO)
967 t->audmode = tuner->audmode;
968 set_radio_freq(client, t->radio_freq);
971 case VIDIOC_LOG_STATUS:
972 if (t->ops.tuner_status)
973 t->ops.tuner_status(t);
980 static int tuner_suspend(struct i2c_client *c, pm_message_t state)
982 struct tuner *t = i2c_get_clientdata (c);
984 tuner_dbg ("suspend\n");
985 /* FIXME: power down ??? */
989 static int tuner_resume(struct i2c_client *c)
991 struct tuner *t = i2c_get_clientdata (c);
993 tuner_dbg ("resume\n");
994 if (V4L2_TUNER_RADIO == t->mode) {
996 set_freq(c, t->radio_freq);
999 set_freq(c, t->tv_freq);
1004 /* ----------------------------------------------------------------------- */
1006 static struct i2c_driver driver = {
1007 .id = I2C_DRIVERID_TUNER,
1008 .attach_adapter = tuner_probe,
1009 .detach_client = tuner_detach,
1010 .command = tuner_command,
1011 .suspend = tuner_suspend,
1012 .resume = tuner_resume,
1017 static struct i2c_client client_template = {
1018 .name = "(tuner unset)",
1022 static int __init tuner_init_module(void)
1024 return i2c_add_driver(&driver);
1027 static void __exit tuner_cleanup_module(void)
1029 i2c_del_driver(&driver);
1032 module_init(tuner_init_module);
1033 module_exit(tuner_cleanup_module);
1036 * Overrides for Emacs so that we follow Linus's tabbing style.
1037 * ---------------------------------------------------------------------------