media: dvb-frontends/dvb-pll: add tda6651 ISDB-T pll_desc
authorAkihiro Tsukada <tskd08@gmail.com>
Sun, 8 Apr 2018 17:39:49 +0000 (13:39 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Sat, 5 May 2018 11:19:32 +0000 (07:19 -0400)
This patch adds a PLL "description" of Philips TDA6651 for ISDB-T.
It was extracted from (the former) va1j5jf8007t.c of EarthSoft PT1,
thus the desc might include PT1 specific configs.

Signed-off-by: Akihiro Tsukada <tskd08@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/dvb-frontends/dvb-pll.c
drivers/media/dvb-frontends/dvb-pll.h

index f7d444d09cf185e44bea165422ee13910379007e..e3894ff403d7c5389a12859ac041adc187c50260 100644 (file)
@@ -550,6 +550,28 @@ static const struct dvb_pll_desc dvb_pll_tua6034_friio = {
        }
 };
 
+/* Philips TDA6651 ISDB-T, used in Earthsoft PT1 */
+static const struct dvb_pll_desc dvb_pll_tda665x_earth_pt1 = {
+       .name   = "Philips TDA6651 ISDB-T (EarthSoft PT1)",
+       .min    =  90000000,
+       .max    = 770000000,
+       .iffreq =  57000000,
+       .initdata = (u8[]){ 5, 0x0e, 0x7f, 0xc1, 0x80, 0x80 },
+       .count = 10,
+       .entries = {
+               { 140000000, 142857, 0xc1, 0x81 },
+               { 170000000, 142857, 0xc1, 0xa1 },
+               { 220000000, 142857, 0xc1, 0x62 },
+               { 330000000, 142857, 0xc1, 0xa2 },
+               { 402000000, 142857, 0xc1, 0xe2 },
+               { 450000000, 142857, 0xc1, 0x64 },
+               { 550000000, 142857, 0xc1, 0x84 },
+               { 600000000, 142857, 0xc1, 0xa4 },
+               { 700000000, 142857, 0xc1, 0xc4 },
+               { 770000000, 142857, 0xc1, 0xe4 },
+       }
+};
+
 /* ----------------------------------------------------------- */
 
 static const struct dvb_pll_desc *pll_list[] = {
@@ -574,6 +596,7 @@ static const struct dvb_pll_desc *pll_list[] = {
        [DVB_PLL_SAMSUNG_TBDU18132]      = &dvb_pll_samsung_tbdu18132,
        [DVB_PLL_SAMSUNG_TBMU24112]      = &dvb_pll_samsung_tbmu24112,
        [DVB_PLL_TUA6034_FRIIO]          = &dvb_pll_tua6034_friio,
+       [DVB_PLL_TDA665X_EARTH_PT1]      = &dvb_pll_tda665x_earth_pt1,
 };
 
 /* ----------------------------------------------------------- */
@@ -896,6 +919,7 @@ static const struct i2c_device_id dvb_pll_id[] = {
        {"tdee4",               DVB_PLL_TDEE4},
        {"dtt7520x",            DVB_PLL_THOMSON_DTT7520X},
        {"tua6034_friio",       DVB_PLL_TUA6034_FRIIO},
+       {"tda665x_earthpt1",    DVB_PLL_TDA665X_EARTH_PT1},
        {}
 };
 
index 7555407c2cc3e621f0491aa0e2c1ab75c14a9e39..973a66a82e270247c06043b714878e0f5e4f76f8 100644 (file)
@@ -30,6 +30,7 @@
 #define DVB_PLL_TDEE4                 18
 #define DVB_PLL_THOMSON_DTT7520X       19
 #define DVB_PLL_TUA6034_FRIIO          20
+#define DVB_PLL_TDA665X_EARTH_PT1      21
 
 struct dvb_pll_config {
        struct dvb_frontend *fe;