diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2009-06-11 18:21:34 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-12 11:17:48 -0400 |
commit | a104ed073bc33b262fa9250c1f262c27da56067d (patch) | |
tree | 954bb3306c7c7c8cce7a0f8ef15d05e0fc06bba8 /drivers/media/dvb/frontends/dvb-pll.c | |
parent | af5f88c8776b2b9163460ff94127f68a9a0e02da (diff) |
V4L/DVB (12287): dvb-pll: Add Samsung TDTC9251DH0 DVB-T NIM
No datasheet, tuner data comes from code in flexcop driver. This tuner is
also used on the AVerTV 771 supported by the bttv driver, but that code
uses a different tuner configuration, which is surprising.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/dvb-pll.c')
-rw-r--r-- | drivers/media/dvb/frontends/dvb-pll.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/dvb-pll.c b/drivers/media/dvb/frontends/dvb-pll.c index 9f6349964cda..7bafe4b962e0 100644 --- a/drivers/media/dvb/frontends/dvb-pll.c +++ b/drivers/media/dvb/frontends/dvb-pll.c | |||
@@ -389,6 +389,20 @@ static struct dvb_pll_desc dvb_pll_samsung_dtos403ih102a = { | |||
389 | } | 389 | } |
390 | }; | 390 | }; |
391 | 391 | ||
392 | /* Samsung TDTC9251DH0 DVB-T NIM, as used on AirStar 2 */ | ||
393 | static struct dvb_pll_desc dvb_pll_samsung_tdtc9251dh0 = { | ||
394 | .name = "Samsung TDTC9251DH0", | ||
395 | .min = 48000000, | ||
396 | .max = 863000000, | ||
397 | .iffreq = 36166667, | ||
398 | .count = 3, | ||
399 | .entries = { | ||
400 | { 157500000, 166667, 0xcc, 0x09 }, | ||
401 | { 443000000, 166667, 0xcc, 0x0a }, | ||
402 | { 863000000, 166667, 0xcc, 0x08 }, | ||
403 | } | ||
404 | }; | ||
405 | |||
392 | /* ----------------------------------------------------------- */ | 406 | /* ----------------------------------------------------------- */ |
393 | 407 | ||
394 | static struct dvb_pll_desc *pll_list[] = { | 408 | static struct dvb_pll_desc *pll_list[] = { |
@@ -407,6 +421,7 @@ static struct dvb_pll_desc *pll_list[] = { | |||
407 | [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261, | 421 | [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261, |
408 | [DVB_PLL_OPERA1] = &dvb_pll_opera1, | 422 | [DVB_PLL_OPERA1] = &dvb_pll_opera1, |
409 | [DVB_PLL_SAMSUNG_DTOS403IH102A] = &dvb_pll_samsung_dtos403ih102a, | 423 | [DVB_PLL_SAMSUNG_DTOS403IH102A] = &dvb_pll_samsung_dtos403ih102a, |
424 | [DVB_PLL_SAMSUNG_TDTC9251DH0] = &dvb_pll_samsung_tdtc9251dh0, | ||
410 | }; | 425 | }; |
411 | 426 | ||
412 | /* ----------------------------------------------------------- */ | 427 | /* ----------------------------------------------------------- */ |