misc: rtsx: Improve compatibility for rts5261

Change initial clock to improve compatibility for rts5261

Signed-off-by: Rui Feng <rui_feng@realsil.com.cn>
Link: https://lore.kernel.org/r/1586918237-3016-1-git-send-email-rui_feng@realsil.com.cn
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Rui Feng 2020-04-15 10:37:17 +08:00 коммит произвёл Greg Kroah-Hartman
Родитель 19df2f8ea9
Коммит c18c1f1035
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -639,8 +639,13 @@ int rts5261_pci_switch_clock(struct rtsx_pcr *pcr, unsigned int card_clock,
if (initial_mode) { if (initial_mode) {
/* We use 250k(around) here, in initial stage */ /* We use 250k(around) here, in initial stage */
clk_divider = SD_CLK_DIVIDE_128; if (is_version(pcr, PID_5261, IC_VER_D)) {
card_clock = 30000000; clk_divider = SD_CLK_DIVIDE_256;
card_clock = 60000000;
} else {
clk_divider = SD_CLK_DIVIDE_128;
card_clock = 30000000;
}
} else { } else {
clk_divider = SD_CLK_DIVIDE_0; clk_divider = SD_CLK_DIVIDE_0;
} }