aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/dvb-pll.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/dvb/frontends/dvb-pll.c')
-rw-r--r--drivers/media/dvb/frontends/dvb-pll.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/dvb-pll.c b/drivers/media/dvb/frontends/dvb-pll.c
index 01a11262c8db..f3d500eb5862 100644
--- a/drivers/media/dvb/frontends/dvb-pll.c
+++ b/drivers/media/dvb/frontends/dvb-pll.c
@@ -499,6 +499,24 @@ static struct dvb_pll_desc dvb_pll_opera1 = {
499 } 499 }
500}; 500};
501 501
502/* Philips FCV1236D
503 */
504struct dvb_pll_desc dvb_pll_fcv1236d = {
505/* Bit_0: RF Input select
506 * Bit_1: 0=digital, 1=analog
507 */
508 .name = "Philips FCV1236D",
509 .min = 53000000,
510 .max = 803000000,
511 .iffreq= 44000000,
512 .count = 3,
513 .entries = {
514 { 159000000, 62500, 0x8e, 0xa0 },
515 { 453000000, 62500, 0x8e, 0x90 },
516 { 999999999, 62500, 0x8e, 0x30 },
517 },
518};
519
502/* ----------------------------------------------------------- */ 520/* ----------------------------------------------------------- */
503 521
504static struct dvb_pll_desc *pll_list[] = { 522static struct dvb_pll_desc *pll_list[] = {
@@ -524,6 +542,7 @@ static struct dvb_pll_desc *pll_list[] = {
524 [DVB_PLL_PHILIPS_TD1316] = &dvb_pll_philips_td1316, 542 [DVB_PLL_PHILIPS_TD1316] = &dvb_pll_philips_td1316,
525 [DVB_PLL_THOMSON_FE6600] = &dvb_pll_thomson_fe6600, 543 [DVB_PLL_THOMSON_FE6600] = &dvb_pll_thomson_fe6600,
526 [DVB_PLL_OPERA1] = &dvb_pll_opera1, 544 [DVB_PLL_OPERA1] = &dvb_pll_opera1,
545 [DVB_PLL_FCV1236D] = &dvb_pll_fcv1236d,
527}; 546};
528 547
529/* ----------------------------------------------------------- */ 548/* ----------------------------------------------------------- */