Lines Matching +full:1 +full:khz
46 #define UNSET (-1U)
101 #define cAudioIF_4_5 0x00 // bit e0:1
102 #define cAudioIF_5_5 0x01 // bit e0:1
103 #define cAudioIF_6_0 0x02 // bit e0:1
104 #define cAudioIF_6_5 0x03 // bit e0:1
118 /* IF1 selection in Radio Mode (bit B3=1) */
122 /* Output of AFC pin in radio mode when bit E7=1 */
276 "- 12.5 kHz", in dump_read_message()
277 "- 37.5 kHz", in dump_read_message()
278 "- 62.5 kHz", in dump_read_message()
279 "- 87.5 kHz", in dump_read_message()
280 "-112.5 kHz", in dump_read_message()
281 "-137.5 kHz", in dump_read_message()
282 "-162.5 kHz", in dump_read_message()
283 "-187.5 kHz [min]", in dump_read_message()
284 "+187.5 kHz [max]", in dump_read_message()
285 "+162.5 kHz", in dump_read_message()
286 "+137.5 kHz", in dump_read_message()
287 "+112.5 kHz", in dump_read_message()
288 "+ 87.5 kHz", in dump_read_message()
289 "+ 62.5 kHz", in dump_read_message()
290 "+ 37.5 kHz", in dump_read_message()
291 "+ 12.5 kHz", in dump_read_message()
295 tuner_info(" afc : %s\n", afc[(buf[0] >> 1) & 0x0f]); in dump_read_message()
313 "-8", "-7", "-6", "-5", "-4", "-3", "-2", "-1", in dump_write_message()
314 "0", "+1", "+2", "+3", "+4", "+5", "+6", "+7", in dump_write_message()
343 tuner_info("write: byte B 0x%02x\n", buf[1]); in dump_write_message()
345 (buf[1] & 0x01) ? "video trap" : "sound trap"); in dump_write_message()
347 (buf[1] & 0x02) ? "yes" : "no"); in dump_write_message()
349 (buf[1] & 0x04) ? "QSS" : "Intercarrier"); in dump_write_message()
351 sound[(buf[1] & 0x18) >> 3]); in dump_write_message()
353 (buf[1] & 0x20) ? "yes" : "no"); in dump_write_message()
354 tuner_info(" B6 output port 1 : %s\n", in dump_write_message()
355 (buf[1] & 0x40) ? "high (inactive)" : "low (active)"); in dump_write_message()
357 (buf[1] & 0x80) ? "high (inactive)" : "low (active)"); in dump_write_message()
368 tuner_info(" E0-1 sound carrier : %s\n", in dump_write_message()
373 if (buf[1] & 0x08) { in dump_write_message()
423 return -1; in tda9887_set_tvnorm()
427 buf[1] = norm->b; in tda9887_set_tvnorm()
450 buf[1] |= cOutputPort1Inactive; in tda9887_set_insmod()
452 buf[1] &= ~cOutputPort1Inactive; in tda9887_set_insmod()
456 buf[1] |= cOutputPort2Inactive; in tda9887_set_insmod()
458 buf[1] &= ~cOutputPort2Inactive; in tda9887_set_insmod()
463 buf[1] |= cQSS; in tda9887_set_insmod()
465 buf[1] &= ~cQSS; in tda9887_set_insmod()
481 buf[1] &= ~cOutputPort1Inactive; in tda9887_do_config()
483 buf[1] |= cOutputPort1Inactive; in tda9887_do_config()
485 buf[1] &= ~cOutputPort2Inactive; in tda9887_do_config()
487 buf[1] |= cOutputPort2Inactive; in tda9887_do_config()
490 buf[1] |= cQSS; in tda9887_do_config()
492 buf[1] &= ~cQSS; in tda9887_do_config()
495 buf[1] |= cAutoMuteFmActive; in tda9887_do_config()
516 buf[1] &= ~cQSS; in tda9887_do_config()
537 unsigned char buf[1]; in tda9887_status()
540 rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, 1); in tda9887_status()
541 if (rc != 1) in tda9887_status()
542 tuner_info("i2c i/o error: rc == %d (should be 1)\n", rc); in tda9887_status()
557 By default they are set to inactive (bit value 1) by this driver, in tda9887_configure()
562 SECAM-L, and port 2 should remain inactive (1) for SECAM-L'. in tda9887_configure()
568 priv->data[1] |= cOutputPort1Inactive; in tda9887_configure()
569 priv->data[1] |= cOutputPort2Inactive; in tda9887_configure()
575 priv->data[1] |= cForcedMuteAudioON; in tda9887_configure()
578 priv->data[1], priv->data[2], priv->data[3]); in tda9887_configure()
579 if (debug > 1) in tda9887_configure()
597 priv->data[1], priv->data[2], priv->data[3]); in tda9887_tuner_status()
613 if (1 == tuner_i2c_xfer_recv(&priv->i2c_props, ®, 1)) in tda9887_get_afc()
614 *afc = AFC_BITS_2_kHz[(reg >> 1) & 0x0f]; in tda9887_get_afc()
691 case 1: in tda9887_attach()