Home | History | Annotate | Download | only in bktr

Lines Matching refs:tuner

8  * and TV Tuner cards using the Brooktree Bt848, Bt848A, Bt849A, Bt878, Bt879
14 * trying to find the type of tuner fitted.
148 NULL, /* the tuner */
149 0, /* the tuner i2c address */
160 NULL, /* the tuner */
161 0, /* the tuner i2c address */
172 NULL, /* the tuner */
173 0, /* the tuner i2c address */
184 NULL, /* the tuner */
185 0, /* the tuner i2c address */
196 NULL, /* the tuner */
197 0, /* the tuner i2c address */
208 NULL, /* the tuner */
209 0, /* the tuner i2c address */
220 NULL, /* the tuner */
221 0, /* the tuner i2c address */
232 NULL, /* the tuner */
233 0, /* the tuner i2c address */
244 NULL, /* the tuner */
245 0, /* the tuner i2c address */
256 NULL, /* the tuner */
257 0, /* the tuner i2c address */
268 NULL, /* the tuner */
269 0, /* the tuner i2c address */
280 NULL, /* the tuner */
281 0, /* the tuner i2c address */
292 NULL, /* the tuner */
293 0, /* the tuner i2c address */
304 NULL, /* the tuner */
316 NULL, /* the tuner */
328 NULL, /* the tuner */
335 /* Tuner, Extern, Intern, Mute, Enabled */
341 NULL, /* the tuner */
353 NULL, /* the tuner */
451 * Some BT848 cards have no tuner and no additional i2c devices
478 * 0xc4 or 0xc6, settable by links on the tuner.
486 return -1; /* no tuner found */
511 * It is impossible to work out which type of tuner is actually fitted,
512 * (the driver cannot tell if the Tuner is PAL or NTSC, Temic or Philips)
519 * tuner type and other features of the cards.
524 * Select the required tuner, audio mux arrangement and any other
532 * one it is. For Hauppauge, select the tuner type and audio hardware.
534 * We still have to guess on the tuner type.
536 * C) If we do not know the card type from (A) or (B), guess at the tuner
537 * type based on the I2C address of the tuner.
539 * D) After determining the Tuner Type, we probe the i2c bus for other
829 select_tuner(bktr, bt848_card_signature[i].tuner);
852 /* look for a tuner */
874 /* differentiate type of tuner */
892 /* Hauppauge kindly supplied the following Tuner Table */
898 ID Tuner Model Format We select Format
990 /* Determine the tuner type from the eeprom */
1046 printf("%s: Warning - Unknown Hauppauge Tuner 0x%x\n",
1055 * which allow us to auto select the Tuner Type.
1063 int tuner;
1093 /* Treat tuner make 0 (Philips) and make 2 (LG) the same */
1096 tuner = tuner_0_table[tuner_format];
1097 select_tuner(bktr, tuner);
1103 tuner = tuner_0_fm_table[tuner_format];
1104 select_tuner(bktr, tuner);
1109 tuner = tuner_1_table[tuner_format];
1110 select_tuner(bktr, tuner);
1114 printf("%s: Warning - Unknown AVerMedia Tuner Make %d Format %d\n",
1137 /* We have not been able to select a Tuner */
1138 /* Some cards make use of the tuner address to */
1139 /* identify the make/model of tuner */
1147 /* At address 0xc6/0xc7 we often find a PHILIPS NTSC Tuner */
1155 /* And for all other tuner i2c addresses, select the default */
1296 if (bktr->card.tuner)
1297 printf(", %s tuner", bktr->card.tuner->name);