I went through the FMD1216 datasheet and updated the FMD PLL bands based on the official document. The current values differ from the datasheet. The existing dvb-pll.c values appear to work fine for the HVR1100, and also work fine for many of the existing FMD tuner products so I don't know whether this patch will be accepted or not. Some of the existing bands are out (just a little) so tuning problems with the current values may not be completely obvious. The current values are close, but not accurate. I submit this for comment/review. If we feel the patch is appropriate I'll re-submit with sign-off. Any testers who would like to try this out, I'd appreciate the feedback. Regards, Steve Toth -------------- next part -------------- Index: linux/drivers/media/dvb/frontends/dvb-pll.c =================================================================== RCS file: /cvs/video4linux/v4l-dvb/linux/drivers/media/dvb/frontends/dvb-pll.c,v retrieving revision 1.13 diff -u -p -r1.13 dvb-pll.c --- linux/drivers/media/dvb/frontends/dvb-pll.c 27 Oct 2005 04:11:59 -0000 1.13 +++ linux/drivers/media/dvb/frontends/dvb-pll.c 28 Nov 2005 22:26:55 -0000 @@ -252,18 +252,18 @@ static void fmd1216me_bw(u8 *buf, u32 fr struct dvb_pll_desc dvb_pll_fmd1216me = { .name = "Philips FMD1216ME", - .min = 50870000, - .max = 858000000, + .min = 48000000, + .max = 862000000, .setbw = fmd1216me_bw, .count = 7, .entries = { - { 143870000, 36213333, 166667, 0xbc, 0x41 }, - { 158870000, 36213333, 166667, 0xf4, 0x41 }, - { 329870000, 36213333, 166667, 0xbc, 0x42 }, - { 441870000, 36213333, 166667, 0xf4, 0x42 }, - { 625870000, 36213333, 166667, 0xbc, 0x44 }, - { 803870000, 36213333, 166667, 0xf4, 0x44 }, - { 999999999, 36213333, 166667, 0xfc, 0x44 }, + { 141999999, 36130000, 166700, 0xbc, 0x01 }, + { 161999999, 36130000, 166700, 0xf4, 0x01 }, + { 381999999, 36130000, 166700, 0xb4, 0x02 }, + { 437999999, 36130000, 166700, 0xfc, 0x02 }, + { 637999999, 36130000, 166700, 0xbc, 0x04 }, + { 845999999, 36130000, 166700, 0xf4, 0x04 }, + { 862000000, 36130000, 166700, 0xfc, 0x04 }, } }; EXPORT_SYMBOL(dvb_pll_fmd1216me);