diff options
author | Tony Lindgren <tony@atomide.com> | 2010-03-01 17:19:05 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-03-01 17:19:05 -0500 |
commit | d702d12167a2c05a346f49aac7a311d597762495 (patch) | |
tree | baae42c299cce34d6df24b5d01f8b1d0b481bd9a /drivers/media/common/tuners/tuner-xc2028.c | |
parent | 9418c65f9bd861d0f7e39aab9cfb3aa6f2275d11 (diff) | |
parent | ac0f6f927db539e03e1f3f61bcd4ed57d5cde7a9 (diff) |
Merge with mainline to remove plat-omap/Kconfig conflict
Conflicts:
arch/arm/plat-omap/Kconfig
Diffstat (limited to 'drivers/media/common/tuners/tuner-xc2028.c')
-rw-r--r-- | drivers/media/common/tuners/tuner-xc2028.c | 79 |
1 files changed, 62 insertions, 17 deletions
diff --git a/drivers/media/common/tuners/tuner-xc2028.c b/drivers/media/common/tuners/tuner-xc2028.c index f270e605da83..be51c294b375 100644 --- a/drivers/media/common/tuners/tuner-xc2028.c +++ b/drivers/media/common/tuners/tuner-xc2028.c | |||
@@ -917,30 +917,68 @@ static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */, | |||
917 | * that xc2028 will be in a safe state. | 917 | * that xc2028 will be in a safe state. |
918 | * Maybe this might also be needed for DTV. | 918 | * Maybe this might also be needed for DTV. |
919 | */ | 919 | */ |
920 | if (new_mode == T_ANALOG_TV) | 920 | if (new_mode == T_ANALOG_TV) { |
921 | rc = send_seq(priv, {0x00, 0x00}); | 921 | rc = send_seq(priv, {0x00, 0x00}); |
922 | 922 | ||
923 | /* | 923 | /* Analog modes require offset = 0 */ |
924 | * Digital modes require an offset to adjust to the | 924 | } else { |
925 | * proper frequency. | 925 | /* |
926 | * Analog modes require offset = 0 | 926 | * Digital modes require an offset to adjust to the |
927 | */ | 927 | * proper frequency. The offset depends on what |
928 | if (new_mode == T_DIGITAL_TV) { | 928 | * firmware version is used. |
929 | /* Sets the offset according with firmware */ | 929 | */ |
930 | |||
931 | /* | ||
932 | * Adjust to the center frequency. This is calculated by the | ||
933 | * formula: offset = 1.25MHz - BW/2 | ||
934 | * For DTV 7/8, the firmware uses BW = 8000, so it needs a | ||
935 | * further adjustment to get the frequency center on VHF | ||
936 | */ | ||
930 | if (priv->cur_fw.type & DTV6) | 937 | if (priv->cur_fw.type & DTV6) |
931 | offset = 1750000; | 938 | offset = 1750000; |
932 | else if (priv->cur_fw.type & DTV7) | 939 | else if (priv->cur_fw.type & DTV7) |
933 | offset = 2250000; | 940 | offset = 2250000; |
934 | else /* DTV8 or DTV78 */ | 941 | else /* DTV8 or DTV78 */ |
935 | offset = 2750000; | 942 | offset = 2750000; |
943 | if ((priv->cur_fw.type & DTV78) && freq < 470000000) | ||
944 | offset -= 500000; | ||
936 | 945 | ||
937 | /* | 946 | /* |
938 | * We must adjust the offset by 500kHz when | 947 | * xc3028 additional "magic" |
939 | * tuning a 7MHz VHF channel with DTV78 firmware | 948 | * Depending on the firmware version, it needs some adjustments |
940 | * (used in Australia, Italy and Germany) | 949 | * to properly centralize the frequency. This seems to be |
950 | * needed to compensate the SCODE table adjustments made by | ||
951 | * newer firmwares | ||
941 | */ | 952 | */ |
942 | if ((priv->cur_fw.type & DTV78) && freq < 470000000) | 953 | |
943 | offset -= 500000; | 954 | #if 1 |
955 | /* | ||
956 | * The proper adjustment would be to do it at s-code table. | ||
957 | * However, this didn't work, as reported by | ||
958 | * Robert Lowery <rglowery@exemail.com.au> | ||
959 | */ | ||
960 | |||
961 | if (priv->cur_fw.type & DTV7) | ||
962 | offset += 500000; | ||
963 | |||
964 | #else | ||
965 | /* | ||
966 | * Still need tests for XC3028L (firmware 3.2 or upper) | ||
967 | * So, for now, let's just comment the per-firmware | ||
968 | * version of this change. Reports with xc3028l working | ||
969 | * with and without the lines bellow are welcome | ||
970 | */ | ||
971 | |||
972 | if (priv->firm_version < 0x0302) { | ||
973 | if (priv->cur_fw.type & DTV7) | ||
974 | offset += 500000; | ||
975 | } else { | ||
976 | if (priv->cur_fw.type & DTV7) | ||
977 | offset -= 300000; | ||
978 | else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */ | ||
979 | offset += 200000; | ||
980 | } | ||
981 | #endif | ||
944 | } | 982 | } |
945 | 983 | ||
946 | div = (freq - offset + DIV / 2) / DIV; | 984 | div = (freq - offset + DIV / 2) / DIV; |
@@ -1097,17 +1135,24 @@ static int xc2028_set_params(struct dvb_frontend *fe, | |||
1097 | 1135 | ||
1098 | /* All S-code tables need a 200kHz shift */ | 1136 | /* All S-code tables need a 200kHz shift */ |
1099 | if (priv->ctrl.demod) { | 1137 | if (priv->ctrl.demod) { |
1100 | demod = priv->ctrl.demod + 200; | 1138 | demod = priv->ctrl.demod; |
1139 | |||
1140 | /* | ||
1141 | * Newer firmwares require a 200 kHz offset only for ATSC | ||
1142 | */ | ||
1143 | if (type == ATSC || priv->firm_version < 0x0302) | ||
1144 | demod += 200; | ||
1101 | /* | 1145 | /* |
1102 | * The DTV7 S-code table needs a 700 kHz shift. | 1146 | * The DTV7 S-code table needs a 700 kHz shift. |
1103 | * Thanks to Terry Wu <terrywu2009@gmail.com> for reporting this | ||
1104 | * | 1147 | * |
1105 | * DTV7 is only used in Australia. Germany or Italy may also | 1148 | * DTV7 is only used in Australia. Germany or Italy may also |
1106 | * use this firmware after initialization, but a tune to a UHF | 1149 | * use this firmware after initialization, but a tune to a UHF |
1107 | * channel should then cause DTV78 to be used. | 1150 | * channel should then cause DTV78 to be used. |
1151 | * | ||
1152 | * Unfortunately, on real-field tests, the s-code offset | ||
1153 | * didn't work as expected, as reported by | ||
1154 | * Robert Lowery <rglowery@exemail.com.au> | ||
1108 | */ | 1155 | */ |
1109 | if (type & DTV7) | ||
1110 | demod += 500; | ||
1111 | } | 1156 | } |
1112 | 1157 | ||
1113 | return generic_set_freq(fe, p->frequency, | 1158 | return generic_set_freq(fe, p->frequency, |