[PATCH] v4l: 830: rearranged print order to present a correct answer
[safe/jmp/linux-2.6] / drivers / media / video / tuner-core.c
1 /*
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>
8 #include <linux/moduleparam.h>
9 #include <linux/kernel.h>
10 #include <linux/sched.h>
11 #include <linux/string.h>
12 #include <linux/timer.h>
13 #include <linux/delay.h>
14 #include <linux/errno.h>
15 #include <linux/slab.h>
16 #include <linux/poll.h>
17 #include <linux/i2c.h>
18 #include <linux/types.h>
19 #include <linux/videodev.h>
20 #include <linux/init.h>
21
22 #include <media/tuner.h>
23 #include <media/audiochip.h>
24
25 #include "msp3400.h"
26
27 #define UNSET (-1U)
28
29 /* standard i2c insmod options */
30 static unsigned short normal_i2c[] = {
31         0x42, 0x43, 0x4a, 0x4b,                 /* tda8290 */
32         0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
33         0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
34         I2C_CLIENT_END
35 };
36
37 I2C_CLIENT_INSMOD;
38
39 /* insmod options used at init time => read/only */
40 static unsigned int addr = 0;
41 module_param(addr, int, 0444);
42
43 static unsigned int no_autodetect = 0;
44 module_param(no_autodetect, int, 0444);
45
46 static unsigned int show_i2c = 0;
47 module_param(show_i2c, int, 0444);
48
49 /* insmod options used at runtime => read/write */
50 unsigned int tuner_debug = 0;
51 module_param(tuner_debug, int, 0644);
52
53 static unsigned int tv_range[2] = { 44, 958 };
54 static unsigned int radio_range[2] = { 65, 108 };
55
56 module_param_array(tv_range, int, NULL, 0644);
57 module_param_array(radio_range, int, NULL, 0644);
58
59 MODULE_DESCRIPTION("device driver for various TV and TV+FM radio tuners");
60 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
61 MODULE_LICENSE("GPL");
62
63 static struct i2c_driver driver;
64 static struct i2c_client client_template;
65
66 /* ---------------------------------------------------------------------- */
67
68 /* Set tuner frequency,  freq in Units of 62.5kHz = 1/16MHz */
69 static void set_tv_freq(struct i2c_client *c, unsigned int freq)
70 {
71         struct tuner *t = i2c_get_clientdata(c);
72
73         if (t->type == UNSET) {
74                 tuner_warn ("tuner type not set\n");
75                 return;
76         }
77         if (NULL == t->tv_freq) {
78                 tuner_warn ("Tuner has no way to set tv freq\n");
79                 return;
80         }
81         if (freq < tv_range[0] * 16 || freq > tv_range[1] * 16) {
82                 tuner_dbg ("TV freq (%d.%02d) out of range (%d-%d)\n",
83                            freq / 16, freq % 16 * 100 / 16, tv_range[0],
84                            tv_range[1]);
85         }
86         t->tv_freq(c, freq);
87 }
88
89 static void set_radio_freq(struct i2c_client *c, unsigned int freq)
90 {
91         struct tuner *t = i2c_get_clientdata(c);
92
93         if (t->type == UNSET) {
94                 tuner_warn ("tuner type not set\n");
95                 return;
96         }
97         if (NULL == t->radio_freq) {
98                 tuner_warn ("tuner has no way to set radio frequency\n");
99                 return;
100         }
101         if (freq <= radio_range[0] * 16000 || freq >= radio_range[1] * 16000) {
102                 tuner_dbg ("radio freq (%d.%02d) out of range (%d-%d)\n",
103                            freq / 16000, freq % 16000 * 100 / 16000,
104                            radio_range[0], radio_range[1]);
105         }
106
107         t->radio_freq(c, freq);
108         return;
109 }
110
111 static void set_freq(struct i2c_client *c, unsigned long freq)
112 {
113         struct tuner *t = i2c_get_clientdata(c);
114
115         switch (t->mode) {
116         case V4L2_TUNER_RADIO:
117                 tuner_dbg("radio freq set to %lu.%02lu\n",
118                           freq / 16000, freq % 16000 * 100 / 16000);
119                 set_radio_freq(c, freq);
120                 break;
121         case V4L2_TUNER_ANALOG_TV:
122         case V4L2_TUNER_DIGITAL_TV:
123                 tuner_dbg("tv freq set to %lu.%02lu\n",
124                           freq / 16, freq % 16 * 100 / 16);
125                 set_tv_freq(c, freq);
126                 break;
127         }
128         t->freq = freq;
129 }
130
131 static void set_type(struct i2c_client *c, unsigned int type,
132                      unsigned int new_mode_mask)
133 {
134         struct tuner *t = i2c_get_clientdata(c);
135         unsigned char buffer[4];
136
137         if (type == UNSET || type == TUNER_ABSENT) {
138                 tuner_dbg ("tuner 0x%02x: Tuner type absent\n",c->addr);
139                 return;
140         }
141
142         if (type >= tuner_count) {
143                 tuner_warn ("tuner 0x%02x: Tuner count greater than %d\n",c->addr,tuner_count);
144                 return;
145         }
146
147         /* This code detects calls by card attach_inform */
148         if (NULL == t->i2c.dev.driver) {
149                 tuner_dbg ("tuner 0x%02x: called during i2c_client register by adapter's attach_inform\n", c->addr);
150
151                 t->type=type;
152                 return;
153         }
154
155         t->type = type;
156
157         switch (t->type) {
158         case TUNER_MT2032:
159                 microtune_init(c);
160                 break;
161         case TUNER_PHILIPS_TDA8290:
162                 tda8290_init(c);
163                 break;
164         case TUNER_TEA5767:
165                 if (tea5767_tuner_init(c) == EINVAL) {
166                         t->type = TUNER_ABSENT;
167                         t->mode_mask = T_UNINITIALIZED;
168                         return;
169                 }
170                 t->mode_mask = T_RADIO;
171                 break;
172         case TUNER_PHILIPS_FMD1216ME_MK3:
173                 buffer[0] = 0x0b;
174                 buffer[1] = 0xdc;
175                 buffer[2] = 0x9c;
176                 buffer[3] = 0x60;
177                 i2c_master_send(c, buffer, 4);
178                 mdelay(1);
179                 buffer[2] = 0x86;
180                 buffer[3] = 0x54;
181                 i2c_master_send(c, buffer, 4);
182                 default_tuner_init(c);
183                 break;
184         case TUNER_LG_TDVS_H062F:
185                 /* Set the Auxiliary Byte. */
186                 buffer[2] &= ~0x20;
187                 buffer[2] |= 0x18;
188                 buffer[3] = 0x20;
189                 i2c_master_send(c, buffer, 4);
190                 default_tuner_init(c);
191                 break;
192         case TUNER_PHILIPS_TD1316:
193                 buffer[0] = 0x0b;
194                 buffer[1] = 0xdc;
195                 buffer[2] = 0x86;
196                 buffer[3] = 0xa4;
197                 i2c_master_send(c,buffer,4);
198                 default_tuner_init(c);
199         default:
200                 default_tuner_init(c);
201                 break;
202         }
203
204         if (t->mode_mask == T_UNINITIALIZED)
205                 t->mode_mask = new_mode_mask;
206
207         set_freq(c, t->freq);
208         tuner_dbg("%s %s I2C addr 0x%02x with type %d used for 0x%02x\n",
209                   c->adapter->name, c->driver->name, c->addr << 1, type,
210                   t->mode_mask);
211 }
212
213 /*
214  * This function apply tuner config to tuner specified
215  * by tun_setup structure. I addr is unset, then admin status
216  * and tun addr status is more precise then current status,
217  * it's applied. Otherwise status and type are applied only to
218  * tuner with exactly the same addr.
219 */
220
221 static void set_addr(struct i2c_client *c, struct tuner_setup *tun_setup)
222 {
223         struct tuner *t = i2c_get_clientdata(c);
224
225         if ((tun_setup->addr == ADDR_UNSET &&
226                 (t->mode_mask & tun_setup->mode_mask)) ||
227                 tun_setup->addr == c->addr) {
228                         set_type(c, tun_setup->type, tun_setup->mode_mask);
229         }
230 }
231
232 static inline int check_mode(struct tuner *t, char *cmd)
233 {
234         if ((1 << t->mode & t->mode_mask) == 0) {
235                 return EINVAL;
236         }
237
238         switch (t->mode) {
239         case V4L2_TUNER_RADIO:
240                 tuner_dbg("Cmd %s accepted for radio\n", cmd);
241                 break;
242         case V4L2_TUNER_ANALOG_TV:
243                 tuner_dbg("Cmd %s accepted for analog TV\n", cmd);
244                 break;
245         case V4L2_TUNER_DIGITAL_TV:
246                 tuner_dbg("Cmd %s accepted for digital TV\n", cmd);
247                 break;
248         }
249         return 0;
250 }
251
252 static char pal[] = "-";
253 module_param_string(pal, pal, sizeof(pal), 0644);
254 static char secam[] = "-";
255 module_param_string(secam, secam, sizeof(secam), 0644);
256
257 /* get more precise norm info from insmod option */
258 static int tuner_fixup_std(struct tuner *t)
259 {
260         if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) {
261                 switch (pal[0]) {
262                 case 'b':
263                 case 'B':
264                 case 'g':
265                 case 'G':
266                         tuner_dbg ("insmod fixup: PAL => PAL-BG\n");
267                         t->std = V4L2_STD_PAL_BG;
268                         break;
269                 case 'i':
270                 case 'I':
271                         tuner_dbg ("insmod fixup: PAL => PAL-I\n");
272                         t->std = V4L2_STD_PAL_I;
273                         break;
274                 case 'd':
275                 case 'D':
276                 case 'k':
277                 case 'K':
278                         tuner_dbg ("insmod fixup: PAL => PAL-DK\n");
279                         t->std = V4L2_STD_PAL_DK;
280                         break;
281                 case 'M':
282                 case 'm':
283                         tuner_dbg ("insmod fixup: PAL => PAL-M\n");
284                         t->std = V4L2_STD_PAL_M;
285                         break;
286                 case 'N':
287                 case 'n':
288                         tuner_dbg ("insmod fixup: PAL => PAL-N\n");
289                         t->std = V4L2_STD_PAL_N;
290                         break;
291                 case '-':
292                         /* default parameter, do nothing */
293                         break;
294                 default:
295                         tuner_warn ("pal= argument not recognised\n");
296                         break;
297                 }
298         }
299         if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) {
300                 switch (secam[0]) {
301                 case 'd':
302                 case 'D':
303                 case 'k':
304                 case 'K':
305                         tuner_dbg ("insmod fixup: SECAM => SECAM-DK\n");
306                         t->std = V4L2_STD_SECAM_DK;
307                         break;
308                 case 'l':
309                 case 'L':
310                         tuner_dbg ("insmod fixup: SECAM => SECAM-L\n");
311                         t->std = V4L2_STD_SECAM_L;
312                         break;
313                 case '-':
314                         /* default parameter, do nothing */
315                         break;
316                 default:
317                         tuner_warn ("secam= argument not recognised\n");
318                         break;
319                 }
320         }
321
322         return 0;
323 }
324
325 /* ---------------------------------------------------------------------- */
326
327 /* static var Used only in tuner_attach and tuner_probe */
328 static unsigned default_mode_mask;
329
330 /* During client attach, set_type is called by adapter's attach_inform callback.
331    set_type must then be completed by tuner_attach.
332  */
333 static int tuner_attach(struct i2c_adapter *adap, int addr, int kind)
334 {
335         struct tuner *t;
336
337         client_template.adapter = adap;
338         client_template.addr = addr;
339
340         t = kmalloc(sizeof(struct tuner), GFP_KERNEL);
341         if (NULL == t)
342                 return -ENOMEM;
343         memset(t, 0, sizeof(struct tuner));
344         memcpy(&t->i2c, &client_template, sizeof(struct i2c_client));
345         i2c_set_clientdata(&t->i2c, t);
346         t->type = UNSET;
347         t->radio_if2 = 10700 * 1000;    /* 10.7MHz - FM radio */
348         t->audmode = V4L2_TUNER_MODE_STEREO;
349         t->mode_mask = T_UNINITIALIZED;
350
351         if (show_i2c) {
352                 unsigned char buffer[16];
353                 int i,rc;
354
355                 memset(buffer, 0, sizeof(buffer));
356                 rc = i2c_master_recv(&t->i2c, buffer, sizeof(buffer));
357                 tuner_info("I2C RECV = ");
358                 for (i=0;i<rc;i++)
359                         printk("%02x ",buffer[i]);
360                 printk("\n");
361         }
362         /* TEA5767 autodetection code - only for addr = 0xc0 */
363         if (!no_autodetect) {
364                 switch (addr) {
365                 case 0x60:
366                         if (tea5767_autodetection(&t->i2c) != EINVAL) {
367                                 t->type = TUNER_TEA5767;
368                                 t->mode_mask = T_RADIO;
369                                 t->mode = T_STANDBY;
370                                 t->freq = 87.5 * 16; /* Sets freq to FM range */
371                                 default_mode_mask &= ~T_RADIO;
372
373                                 goto register_client;
374                         }
375                 case 0x42:
376                 case 0x43:
377                 case 0x4a:
378                 case 0x4b:
379                         /* If chip is not tda8290, don't register.
380                            since it can be tda9887*/
381                         if (tda8290_probe(&t->i2c) != 0) {
382                                 kfree(t);
383                                 return 0;
384                         }
385
386                 }
387
388         }
389
390         /* Initializes only the first adapter found */
391         if (default_mode_mask != T_UNINITIALIZED) {
392                 tuner_dbg ("Setting mode_mask to 0x%02x\n", default_mode_mask);
393                 t->mode_mask = default_mode_mask;
394                 t->freq = 400 * 16; /* Sets freq to VHF High */
395                 default_mode_mask = T_UNINITIALIZED;
396         }
397
398         /* Should be just before return */
399 register_client:
400         tuner_info("chip found @ 0x%x (%s)\n", addr << 1, adap->name);
401         i2c_attach_client (&t->i2c);
402         set_type (&t->i2c,t->type, t->mode_mask);
403         return 0;
404 }
405
406 static int tuner_probe(struct i2c_adapter *adap)
407 {
408         if (0 != addr) {
409                 normal_i2c[0] = addr;
410                 normal_i2c[1] = I2C_CLIENT_END;
411         }
412
413         default_mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
414
415         if (adap->class & I2C_CLASS_TV_ANALOG)
416                 return i2c_probe(adap, &addr_data, tuner_attach);
417         return 0;
418 }
419
420 static int tuner_detach(struct i2c_client *client)
421 {
422         struct tuner *t = i2c_get_clientdata(client);
423         int err;
424
425         err = i2c_detach_client(&t->i2c);
426         if (err) {
427                 tuner_warn
428                     ("Client deregistration failed, client not detached.\n");
429                 return err;
430         }
431
432         kfree(t);
433         return 0;
434 }
435
436 /*
437  * Switch tuner to other mode. If tuner support both tv and radio,
438  * set another frequency to some value (This is needed for some pal
439  * tuners to avoid locking). Otherwise, just put second tuner in
440  * standby mode.
441  */
442
443 static inline int set_mode(struct i2c_client *client, struct tuner *t, int mode, char *cmd)
444 {
445         if (mode == t->mode)
446                 return 0;
447
448         t->mode = mode;
449
450         if (check_mode(t, cmd) == EINVAL) {
451                 t->mode = T_STANDBY;
452                 if (t->standby)
453                         t->standby (client);
454                 return EINVAL;
455         }
456         return 0;
457 }
458
459 #define switch_v4l2()   if (!t->using_v4l2) \
460                             tuner_dbg("switching to v4l2\n"); \
461                         t->using_v4l2 = 1;
462
463 static inline int check_v4l2(struct tuner *t)
464 {
465         if (t->using_v4l2) {
466                 tuner_dbg ("ignore v4l1 call\n");
467                 return EINVAL;
468         }
469         return 0;
470 }
471
472 static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
473 {
474         struct tuner *t = i2c_get_clientdata(client);
475         unsigned int *iarg = (int *)arg;
476
477         switch (cmd) {
478         /* --- configuration --- */
479         case TUNER_SET_TYPE_ADDR:
480                 tuner_dbg ("Calling set_type_addr for type=%d, addr=0x%02x, mode=0x%02x\n",
481                                 ((struct tuner_setup *)arg)->type,
482                                 ((struct tuner_setup *)arg)->addr,
483                                 ((struct tuner_setup *)arg)->mode_mask);
484
485                 set_addr(client, (struct tuner_setup *)arg);
486                 break;
487         case AUDC_SET_RADIO:
488                 set_mode(client,t,V4L2_TUNER_RADIO, "AUDC_SET_RADIO");
489                 break;
490         case TUNER_SET_STANDBY:
491                 {
492                         if (check_mode(t, "TUNER_SET_STANDBY") == EINVAL)
493                                 return 0;
494                         if (t->standby)
495                                 t->standby (client);
496                         break;
497                 }
498         case AUDC_CONFIG_PINNACLE:
499                 if (check_mode(t, "AUDC_CONFIG_PINNACLE") == EINVAL)
500                         return 0;
501                 switch (*iarg) {
502                 case 2:
503                         tuner_dbg("pinnacle pal\n");
504                         t->radio_if2 = 33300 * 1000;
505                         break;
506                 case 3:
507                         tuner_dbg("pinnacle ntsc\n");
508                         t->radio_if2 = 41300 * 1000;
509                         break;
510                 }
511                 break;
512         case VIDIOCSAUDIO:
513                 if (check_mode(t, "VIDIOCSAUDIO") == EINVAL)
514                         return 0;
515                 if (check_v4l2(t) == EINVAL)
516                         return 0;
517
518                 /* Should be implemented, since bttv calls it */
519                 tuner_dbg("VIDIOCSAUDIO not implemented.\n");
520
521                 break;
522         case MSP_SET_MATRIX:
523         case TDA9887_SET_CONFIG:
524                 break;
525         /* --- v4l ioctls --- */
526         /* take care: bttv does userspace copying, we'll get a
527            kernel pointer here... */
528         case VIDIOCSCHAN:
529                 {
530                         static const v4l2_std_id map[] = {
531                                 [VIDEO_MODE_PAL] = V4L2_STD_PAL,
532                                 [VIDEO_MODE_NTSC] = V4L2_STD_NTSC_M,
533                                 [VIDEO_MODE_SECAM] = V4L2_STD_SECAM,
534                                 [4 /* bttv */ ] = V4L2_STD_PAL_M,
535                                 [5 /* bttv */ ] = V4L2_STD_PAL_N,
536                                 [6 /* bttv */ ] = V4L2_STD_NTSC_M_JP,
537                         };
538                         struct video_channel *vc = arg;
539
540                         if (check_v4l2(t) == EINVAL)
541                                 return 0;
542
543                         if (set_mode(client,t,V4L2_TUNER_ANALOG_TV, "VIDIOCSCHAN")==EINVAL)
544                                 return 0;
545
546                         if (vc->norm < ARRAY_SIZE(map))
547                                 t->std = map[vc->norm];
548                         tuner_fixup_std(t);
549                         if (t->freq)
550                                 set_tv_freq(client, t->freq);
551                         return 0;
552                 }
553         case VIDIOCSFREQ:
554                 {
555                         unsigned long *v = arg;
556
557                         if (check_mode(t, "VIDIOCSFREQ") == EINVAL)
558                                 return 0;
559                         if (check_v4l2(t) == EINVAL)
560                                 return 0;
561
562                         set_freq(client, *v);
563                         return 0;
564                 }
565         case VIDIOCGTUNER:
566                 {
567                         struct video_tuner *vt = arg;
568
569                         if (check_mode(t, "VIDIOCGTUNER") == EINVAL)
570                                 return 0;
571                         if (check_v4l2(t) == EINVAL)
572                                 return 0;
573
574                         if (V4L2_TUNER_RADIO == t->mode) {
575                                 if (t->has_signal)
576                                         vt->signal = t->has_signal(client);
577                                 if (t->is_stereo) {
578                                         if (t->is_stereo(client))
579                                                 vt->flags |=
580                                                     VIDEO_TUNER_STEREO_ON;
581                                         else
582                                                 vt->flags &=
583                                                     ~VIDEO_TUNER_STEREO_ON;
584                                 }
585                                 vt->flags |= VIDEO_TUNER_LOW;   /* Allow freqs at 62.5 Hz */
586
587                                 vt->rangelow = radio_range[0] * 16000;
588                                 vt->rangehigh = radio_range[1] * 16000;
589
590                         } else {
591                                 vt->rangelow = tv_range[0] * 16;
592                                 vt->rangehigh = tv_range[1] * 16;
593                         }
594
595                         return 0;
596                 }
597         case VIDIOCGAUDIO:
598                 {
599                         struct video_audio *va = arg;
600
601                         if (check_mode(t, "VIDIOCGAUDIO") == EINVAL)
602                                 return 0;
603                         if (check_v4l2(t) == EINVAL)
604                                 return 0;
605
606                         if (V4L2_TUNER_RADIO == t->mode && t->is_stereo)
607                                 va->mode = t->is_stereo(client)
608                                     ? VIDEO_SOUND_STEREO : VIDEO_SOUND_MONO;
609                         return 0;
610                 }
611
612         case VIDIOC_S_STD:
613                 {
614                         v4l2_std_id *id = arg;
615
616                         if (set_mode (client, t, V4L2_TUNER_ANALOG_TV, "VIDIOC_S_STD")
617                                         == EINVAL)
618                                 return 0;
619
620                         switch_v4l2();
621
622                         t->std = *id;
623                         tuner_fixup_std(t);
624                         if (t->freq)
625                                 set_freq(client, t->freq);
626                         break;
627                 }
628         case VIDIOC_S_FREQUENCY:
629                 {
630                         struct v4l2_frequency *f = arg;
631
632                         t->freq = f->frequency;
633                         switch_v4l2();
634                         if (V4L2_TUNER_RADIO == f->type &&
635                             V4L2_TUNER_RADIO != t->mode) {
636                                 if (set_mode (client, t, f->type, "VIDIOC_S_FREQUENCY")
637                                             == EINVAL)
638                                         return 0;
639                         }
640                         set_freq(client,t->freq);
641
642                         break;
643                 }
644         case VIDIOC_G_FREQUENCY:
645                 {
646                         struct v4l2_frequency *f = arg;
647
648                         if (check_mode(t, "VIDIOC_G_FREQUENCY") == EINVAL)
649                                 return 0;
650                         switch_v4l2();
651                         f->type = t->mode;
652                         f->frequency = t->freq;
653                         break;
654                 }
655         case VIDIOC_G_TUNER:
656                 {
657                         struct v4l2_tuner *tuner = arg;
658
659                         if (check_mode(t, "VIDIOC_G_TUNER") == EINVAL)
660                                 return 0;
661                         switch_v4l2();
662
663                         if (V4L2_TUNER_RADIO == t->mode) {
664
665                                 if (t->has_signal)
666                                         tuner->signal = t->has_signal(client);
667
668                                 if (t->is_stereo) {
669                                         if (t->is_stereo(client)) {
670                                                 tuner->rxsubchans =
671                                                     V4L2_TUNER_SUB_STEREO |
672                                                     V4L2_TUNER_SUB_MONO;
673                                         } else {
674                                                 tuner->rxsubchans =
675                                                     V4L2_TUNER_SUB_MONO;
676                                         }
677                                 }
678
679                                 tuner->capability |=
680                                     V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO;
681
682                                 tuner->audmode = t->audmode;
683
684                                 tuner->rangelow = radio_range[0] * 16000;
685                                 tuner->rangehigh = radio_range[1] * 16000;
686                         } else {
687                                 tuner->rangelow = tv_range[0] * 16;
688                                 tuner->rangehigh = tv_range[1] * 16;
689                         }
690                         break;
691                 }
692         case VIDIOC_S_TUNER:
693                 {
694                         struct v4l2_tuner *tuner = arg;
695
696                         if (check_mode(t, "VIDIOC_S_TUNER") == EINVAL)
697                                 return 0;
698
699                         switch_v4l2();
700
701                         if (V4L2_TUNER_RADIO == t->mode) {
702                                 t->audmode = tuner->audmode;
703                                 set_radio_freq(client, t->freq);
704                         }
705                         break;
706                 }
707         default:
708                 tuner_dbg("Unimplemented IOCTL 0x%08x(dir=%d,tp='%c',nr=%d,sz=%d)\n",
709                                          cmd, _IOC_DIR(cmd), _IOC_TYPE(cmd),
710                                         _IOC_NR(cmd), _IOC_SIZE(cmd));
711                 break;
712         }
713
714         return 0;
715 }
716
717 static int tuner_suspend(struct device *dev, pm_message_t state)
718 {
719         struct i2c_client *c = container_of (dev, struct i2c_client, dev);
720         struct tuner *t = i2c_get_clientdata (c);
721
722         tuner_dbg ("suspend\n");
723         /* FIXME: power down ??? */
724         return 0;
725 }
726
727 static int tuner_resume(struct device *dev)
728 {
729         struct i2c_client *c = container_of (dev, struct i2c_client, dev);
730         struct tuner *t = i2c_get_clientdata (c);
731
732         tuner_dbg ("resume\n");
733         if (t->freq)
734                 set_freq(c, t->freq);
735         return 0;
736 }
737
738 /* ----------------------------------------------------------------------- */
739
740 static struct i2c_driver driver = {
741         .owner = THIS_MODULE,
742         .name = "tuner",
743         .id = I2C_DRIVERID_TUNER,
744         .flags = I2C_DF_NOTIFY,
745         .attach_adapter = tuner_probe,
746         .detach_client = tuner_detach,
747         .command = tuner_command,
748         .driver = {
749                    .suspend = tuner_suspend,
750                    .resume = tuner_resume,
751                    },
752 };
753 static struct i2c_client client_template = {
754         .name = "(tuner unset)",
755         .flags = I2C_CLIENT_ALLOW_USE,
756         .driver = &driver,
757 };
758
759 static int __init tuner_init_module(void)
760 {
761         return i2c_add_driver(&driver);
762 }
763
764 static void __exit tuner_cleanup_module(void)
765 {
766         i2c_del_driver(&driver);
767 }
768
769 module_init(tuner_init_module);
770 module_exit(tuner_cleanup_module);
771
772 /*
773  * Overrides for Emacs so that we follow Linus's tabbing style.
774  * ---------------------------------------------------------------------------
775  * Local variables:
776  * c-basic-offset: 8
777  * End:
778  */