blob: 61dd26a439762279e7f19bbfd09851ac88002b08 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * i2c tv tuner chip device driver
4 * controls all those simple 4-control-bytes style tuners.
5 */
6#include <linux/delay.h>
7#include <linux/i2c.h>
8#include <linux/videodev.h>
9#include <media/tuner.h>
10
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020011static int offset = 0;
12module_param(offset, int, 0666);
13MODULE_PARM_DESC(offset,"Allows to specify an offset for tuner");
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015/* ---------------------------------------------------------------------- */
16
17/* tv standard selection for Temic 4046 FM5
18 this value takes the low bits of control byte 2
19 from datasheet Rev.01, Feb.00
20 standard BG I L L2 D
21 picture IF 38.9 38.9 38.9 33.95 38.9
22 sound 1 33.4 32.9 32.4 40.45 32.4
23 sound 2 33.16
24 NICAM 33.05 32.348 33.05 33.05
25 */
26#define TEMIC_SET_PAL_I 0x05
27#define TEMIC_SET_PAL_DK 0x09
28#define TEMIC_SET_PAL_L 0x0a // SECAM ?
29#define TEMIC_SET_PAL_L2 0x0b // change IF !
30#define TEMIC_SET_PAL_BG 0x0c
31
32/* tv tuner system standard selection for Philips FQ1216ME
33 this value takes the low bits of control byte 2
34 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
35 standard BG DK I L L`
36 picture carrier 38.90 38.90 38.90 38.90 33.95
37 colour 34.47 34.47 34.47 34.47 38.38
38 sound 1 33.40 32.40 32.90 32.40 40.45
39 sound 2 33.16 - - - -
40 NICAM 33.05 33.05 32.35 33.05 39.80
41 */
42#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
43#define PHILIPS_SET_PAL_BGDK 0x09
44#define PHILIPS_SET_PAL_L2 0x0a
45#define PHILIPS_SET_PAL_L 0x0b
46
47/* system switching for Philips FI1216MF MK2
48 from datasheet "1996 Jul 09",
49 standard BG L L'
50 picture carrier 38.90 38.90 33.95
51 colour 34.47 34.37 38.38
52 sound 1 33.40 32.40 40.45
53 sound 2 33.16 - -
54 NICAM 33.05 33.05 39.80
55 */
56#define PHILIPS_MF_SET_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
57#define PHILIPS_MF_SET_PAL_L 0x03 // France
58#define PHILIPS_MF_SET_PAL_L2 0x02 // L'
59
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070060/* Control byte */
61
62#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
63#define TUNER_RATIO_SELECT_50 0x00
64#define TUNER_RATIO_SELECT_32 0x02
65#define TUNER_RATIO_SELECT_166 0x04
66#define TUNER_RATIO_SELECT_62 0x06
67
68#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
69
70/* Status byte */
71
72#define TUNER_POR 0x80
73#define TUNER_FL 0x40
74#define TUNER_MODE 0x38
75#define TUNER_AFC 0x07
76#define TUNER_SIGNAL 0x07
77#define TUNER_STEREO 0x10
78
79#define TUNER_PLL_LOCKED 0x40
80#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* ---------------------------------------------------------------------- */
83
84static int tuner_getstatus(struct i2c_client *c)
85{
86 unsigned char byte;
87
88 if (1 != i2c_master_recv(c,&byte,1))
89 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return byte;
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static int tuner_signal(struct i2c_client *c)
95{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -070096 return (tuner_getstatus(c) & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static int tuner_stereo(struct i2c_client *c)
100{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700101 int stereo, status;
102 struct tuner *t = i2c_get_clientdata(c);
103
104 status = tuner_getstatus (c);
105
106 switch (t->type) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800107 case TUNER_PHILIPS_FM1216ME_MK3:
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700108 case TUNER_PHILIPS_FM1236_MK3:
109 case TUNER_PHILIPS_FM1256_IH3:
110 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
111 break;
112 default:
113 stereo = status & TUNER_STEREO;
114 }
115
116 return stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/* ---------------------------------------------------------------------- */
121
122static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
123{
124 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky3fc46d32006-01-23 17:11:11 -0200125 u8 config, cb, tuneraddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 u16 div;
127 struct tunertype *tun;
Hans Verkuil27487d42006-01-15 15:04:52 -0200128 u8 buffer[4];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200129 int rc, IFPCoff, i, j;
Michael Krufky476d63d2006-02-07 06:25:34 -0200130 enum param_type desired_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 tun = &tuners[t->type];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200133
Michael Krufky5f594182006-02-07 06:25:33 -0200134 /* IFPCoff = Video Intermediate Frequency - Vif:
135 940 =16*58.75 NTSC/J (Japan)
136 732 =16*45.75 M/N STD
137 704 =16*44 ATSC (at DVB code)
138 632 =16*39.50 I U.K.
139 622.4=16*38.90 B/G D/K I, L STD
140 592 =16*37.00 D China
141 590 =16.36.875 B Australia
142 543.2=16*33.95 L' STD
143 171.2=16*10.70 FM Radio (at set_radio_freq)
144 */
145
146 if (t->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200147 IFPCoff = 940;
148 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky5f594182006-02-07 06:25:33 -0200149 } else if ((t->std & V4L2_STD_MN) &&
150 !(t->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200151 IFPCoff = 732;
152 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky5f594182006-02-07 06:25:33 -0200153 } else if (t->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200154 IFPCoff = 543;
155 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200156 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200157 IFPCoff = 623;
158 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200159 }
160
Michael Krufky476d63d2006-02-07 06:25:34 -0200161 for (j = 0; j < tun->count-1; j++) {
162 if (desired_type != tun->params[j].type)
163 continue;
164 break;
165 }
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200166 /* use default tuner_params if desired_type not available */
167 if (desired_type != tun->params[j].type)
168 j = 0;
169
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200170 for (i = 0; i < tun->params[j].count; i++) {
171 if (freq > tun->params[j].ranges[i].limit)
Michael Krufky90200d22006-01-09 15:25:38 -0200172 continue;
173 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200175 if (i == tun->params[j].count) {
176 tuner_dbg("TV frequency out of range (%d > %d)",
177 freq, tun->params[j].ranges[i - 1].limit);
178 freq = tun->params[j].ranges[--i].limit;
179 }
Michael Krufky3fc46d32006-01-23 17:11:11 -0200180 config = tun->params[j].ranges[i].config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200181 cb = tun->params[j].ranges[i].cb;
Michael Krufky5f594182006-02-07 06:25:33 -0200182 /* i == 0 -> VHF_LO
183 * i == 1 -> VHF_HI
184 * i == 2 -> UHF */
Michael Krufkybd0d0f52006-02-07 06:25:35 -0200185 tuner_dbg("tv: param %d, range %d\n",j,i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Michael Krufky5f594182006-02-07 06:25:33 -0200187 div=freq + IFPCoff + offset;
188
189 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, Offset=%d.%02d MHz, div=%0d\n",
190 freq / 16, freq % 16 * 100 / 16,
191 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
192 offset / 16, offset % 16 * 100 / 16,
193 div);
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /* tv norm specific stuff for multi-norm tuners */
196 switch (t->type) {
197 case TUNER_PHILIPS_SECAM: // FI1216MF
198 /* 0x01 -> ??? no change ??? */
199 /* 0x02 -> PAL BDGHI / SECAM L */
200 /* 0x04 -> ??? PAL others / SECAM others ??? */
Michael Krufkyab66b222006-01-23 17:11:11 -0200201 cb &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (t->std & V4L2_STD_SECAM)
Michael Krufkyab66b222006-01-23 17:11:11 -0200203 cb |= 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205
206 case TUNER_TEMIC_4046FM5:
Michael Krufkyab66b222006-01-23 17:11:11 -0200207 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (t->std & V4L2_STD_PAL_BG) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200210 cb |= TEMIC_SET_PAL_BG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200213 cb |= TEMIC_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 } else if (t->std & V4L2_STD_PAL_DK) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200216 cb |= TEMIC_SET_PAL_DK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200219 cb |= TEMIC_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 }
222 break;
223
224 case TUNER_PHILIPS_FQ1216ME:
Michael Krufkyab66b222006-01-23 17:11:11 -0200225 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200228 cb |= PHILIPS_SET_PAL_BGDK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200231 cb |= PHILIPS_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200234 cb |= PHILIPS_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 }
237 break;
238
239 case TUNER_PHILIPS_ATSC:
240 /* 0x00 -> ATSC antenna input 1 */
241 /* 0x01 -> ATSC antenna input 2 */
242 /* 0x02 -> NTSC antenna input 1 */
243 /* 0x03 -> NTSC antenna input 2 */
Michael Krufkyab66b222006-01-23 17:11:11 -0200244 cb &= ~0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (!(t->std & V4L2_STD_ATSC))
Michael Krufkyab66b222006-01-23 17:11:11 -0200246 cb |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* FIXME: input */
248 break;
249
250 case TUNER_MICROTUNE_4042FI5:
251 /* Set the charge pump for fast tuning */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200252 config |= TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 break;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800254
255 case TUNER_PHILIPS_TUV1236D:
256 /* 0x40 -> ATSC antenna input 1 */
257 /* 0x48 -> ATSC antenna input 2 */
258 /* 0x00 -> NTSC antenna input 1 */
259 /* 0x08 -> NTSC antenna input 2 */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800260 buffer[0] = 0x14;
261 buffer[1] = 0x00;
262 buffer[2] = 0x17;
263 buffer[3] = 0x00;
Michael Krufkyab66b222006-01-23 17:11:11 -0200264 cb &= ~0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800265 if (t->std & V4L2_STD_ATSC) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200266 cb |= 0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800267 buffer[1] = 0x04;
268 }
269 /* set to the correct mode (analog or digital) */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800270 tuneraddr = c->addr;
271 c->addr = 0x0a;
272 if (2 != (rc = i2c_master_send(c,&buffer[0],2)))
273 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
274 if (2 != (rc = i2c_master_send(c,&buffer[2],2)))
275 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
276 c->addr = tuneraddr;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800277 /* FIXME: input */
278 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
Hans Verkuil27487d42006-01-15 15:04:52 -0200281 if (tuners[t->type].params->cb_first_if_lower_freq && div < t->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200282 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200283 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 buffer[2] = (div>>8) & 0x7f;
285 buffer[3] = div & 0xff;
286 } else {
287 buffer[0] = (div>>8) & 0x7f;
288 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200289 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200290 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200292 t->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
294 buffer[0],buffer[1],buffer[2],buffer[3]);
295
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800296 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
298
299 if (t->type == TUNER_MICROTUNE_4042FI5) {
300 // FIXME - this may also work for other tuners
301 unsigned long timeout = jiffies + msecs_to_jiffies(1);
302 u8 status_byte = 0;
303
304 /* Wait until the PLL locks */
305 for (;;) {
306 if (time_after(jiffies,timeout))
307 return;
308 if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
309 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
310 break;
311 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700312 if (status_byte & TUNER_PLL_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 break;
314 udelay(10);
315 }
316
317 /* Set the charge pump for optimized phase noise figure */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200318 config &= ~TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 buffer[0] = (div>>8) & 0x7f;
320 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200321 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200322 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
324 buffer[0],buffer[1],buffer[2],buffer[3]);
325
326 if (4 != (rc = i2c_master_send(c,buffer,4)))
327 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
328 }
329}
330
331static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
332{
333 struct tunertype *tun;
334 struct tuner *t = i2c_get_clientdata(c);
Hans Verkuil27487d42006-01-15 15:04:52 -0200335 u8 buffer[4];
336 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200337 int rc, j;
Michael Krufky476d63d2006-02-07 06:25:34 -0200338 enum param_type desired_type = TUNER_PARAM_TYPE_RADIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700340 tun = &tuners[t->type];
Michael Krufky476d63d2006-02-07 06:25:34 -0200341
342 for (j = 0; j < tun->count-1; j++) {
343 if (desired_type != tun->params[j].type)
344 continue;
345 break;
346 }
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200347 /* use default tuner_params if desired_type not available */
348 if (desired_type != tun->params[j].type)
349 j = 0;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200350
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700351 div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200352 buffer[2] = (tun->params[j].ranges[0].config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 switch (t->type) {
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700355 case TUNER_TENA_9533_DI:
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700356 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700357 tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
358 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 case TUNER_PHILIPS_FM1216ME_MK3:
360 case TUNER_PHILIPS_FM1236_MK3:
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700361 case TUNER_PHILIPS_FMD1216ME_MK3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 buffer[3] = 0x19;
363 break;
364 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700365 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 buffer[3] = 0x19;
367 break;
368 case TUNER_LG_PAL_FM:
369 buffer[3] = 0xa5;
370 break;
Mauro Carvalho Chehab33ac6b52005-09-09 13:03:56 -0700371 case TUNER_MICROTUNE_4049FM5:
372 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
373 buffer[3] = 0xa4;
374 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 default:
376 buffer[3] = 0xa4;
377 break;
378 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800379 buffer[0] = (div>>8) & 0x7f;
380 buffer[1] = div & 0xff;
Hans Verkuil27487d42006-01-15 15:04:52 -0200381 if (tuners[t->type].params->cb_first_if_lower_freq && div < t->last_div) {
382 buffer[0] = buffer[2];
383 buffer[1] = buffer[3];
384 buffer[2] = (div>>8) & 0x7f;
385 buffer[3] = div & 0xff;
386 } else {
387 buffer[0] = (div>>8) & 0x7f;
388 buffer[1] = div & 0xff;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
392 buffer[0],buffer[1],buffer[2],buffer[3]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200393 t->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800395 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
397}
398
399int default_tuner_init(struct i2c_client *c)
400{
401 struct tuner *t = i2c_get_clientdata(c);
402
403 tuner_info("type set to %d (%s)\n",
404 t->type, tuners[t->type].name);
405 strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
406
Hans Verkuil27487d42006-01-15 15:04:52 -0200407 t->set_tv_freq = default_set_tv_freq;
408 t->set_radio_freq = default_set_radio_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 t->has_signal = tuner_signal;
Hans Verkuil27487d42006-01-15 15:04:52 -0200410 t->is_stereo = tuner_stereo;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700411 t->standby = NULL;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
414}
415
416/*
417 * Overrides for Emacs so that we follow Linus's tabbing style.
418 * ---------------------------------------------------------------------------
419 * Local variables:
420 * c-basic-offset: 8
421 * End:
422 */