1 /* Driver for Realtek PCI-Express card reader
3 * Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2, or (at your option) any
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, see <http://www.gnu.org/licenses/>.
19 * Wei WANG <wei_wang@realsil.com.cn>
20 * No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
22 * Roger Tseng <rogerable@realtek.com>
23 * No. 2, Innovation Road II, Hsinchu Science Park, Hsinchu 300, Taiwan
26 #include <linux/module.h>
27 #include <linux/delay.h>
28 #include <linux/mfd/rtsx_pci.h>
32 static int rts5227_extra_init_hw(struct rtsx_pcr
*pcr
)
36 rtsx_pci_init_cmd(pcr
);
38 /* Configure GPIO as output */
39 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, GPIO_CTL
, 0x02, 0x02);
40 /* Switch LDO3318 source from DV33 to card_3v3 */
41 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, LDO_PWR_SEL
, 0x03, 0x00);
42 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, LDO_PWR_SEL
, 0x03, 0x01);
43 /* LED shine disabled, set initial shine cycle period */
44 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, OLT_LED_CTL
, 0x0F, 0x02);
46 pcie_capability_read_word(pcr
->pci
, PCI_EXP_DEVCTL2
, &cap
);
47 if (cap
& PCI_EXP_LTR_EN
)
48 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, LTR_CTL
, 0xFF, 0xA3);
50 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, OBFF_CFG
, 0x03, 0x03);
51 /* Configure force_clock_req
52 * Maybe We should define 0xFF03 as some name
54 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, 0xFF03, 0x08, 0x08);
56 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
,
57 SD30_CLK_DRIVE_SEL
, 0xFF, 0x96);
58 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
,
59 SD30_CMD_DRIVE_SEL
, 0xFF, 0x96);
60 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
,
61 SD30_DAT_DRIVE_SEL
, 0xFF, 0x96);
63 return rtsx_pci_send_cmd(pcr
, 100);
66 static int rts5227_optimize_phy(struct rtsx_pcr
*pcr
)
68 /* Optimize RX sensitivity */
69 return rtsx_pci_write_phy_register(pcr
, 0x00, 0xBA42);
72 static int rts5227_turn_on_led(struct rtsx_pcr
*pcr
)
74 return rtsx_pci_write_register(pcr
, GPIO_CTL
, 0x02, 0x02);
77 static int rts5227_turn_off_led(struct rtsx_pcr
*pcr
)
79 return rtsx_pci_write_register(pcr
, GPIO_CTL
, 0x02, 0x00);
82 static int rts5227_enable_auto_blink(struct rtsx_pcr
*pcr
)
84 return rtsx_pci_write_register(pcr
, OLT_LED_CTL
, 0x08, 0x08);
87 static int rts5227_disable_auto_blink(struct rtsx_pcr
*pcr
)
89 return rtsx_pci_write_register(pcr
, OLT_LED_CTL
, 0x08, 0x00);
92 static int rts5227_card_power_on(struct rtsx_pcr
*pcr
, int card
)
96 rtsx_pci_init_cmd(pcr
);
97 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, CARD_PWR_CTL
,
98 SD_POWER_MASK
, SD_PARTIAL_POWER_ON
);
99 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, PWR_GATE_CTRL
,
100 LDO3318_PWR_MASK
, 0x02);
101 err
= rtsx_pci_send_cmd(pcr
, 100);
105 /* To avoid too large in-rush current */
108 rtsx_pci_init_cmd(pcr
);
109 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, CARD_PWR_CTL
,
110 SD_POWER_MASK
, SD_POWER_ON
);
111 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, PWR_GATE_CTRL
,
112 LDO3318_PWR_MASK
, 0x06);
113 err
= rtsx_pci_send_cmd(pcr
, 100);
120 static int rts5227_card_power_off(struct rtsx_pcr
*pcr
, int card
)
122 rtsx_pci_init_cmd(pcr
);
123 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, CARD_PWR_CTL
,
124 SD_POWER_MASK
| PMOS_STRG_MASK
,
125 SD_POWER_OFF
| PMOS_STRG_400mA
);
126 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, PWR_GATE_CTRL
,
127 LDO3318_PWR_MASK
, 0X00);
128 return rtsx_pci_send_cmd(pcr
, 100);
131 static int rts5227_switch_output_voltage(struct rtsx_pcr
*pcr
, u8 voltage
)
136 if (voltage
== OUTPUT_3V3
) {
137 err
= rtsx_pci_write_phy_register(pcr
, 0x08, 0x4FC0 | 0x24);
141 } else if (voltage
== OUTPUT_1V8
) {
142 err
= rtsx_pci_write_phy_register(pcr
, 0x11, 0x3C02);
145 err
= rtsx_pci_write_phy_register(pcr
, 0x08, 0x4C80 | 0x24);
154 rtsx_pci_init_cmd(pcr
);
155 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, SD30_CLK_DRIVE_SEL
,
157 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, SD30_CMD_DRIVE_SEL
,
159 rtsx_pci_add_cmd(pcr
, WRITE_REG_CMD
, SD30_DAT_DRIVE_SEL
,
161 return rtsx_pci_send_cmd(pcr
, 100);
164 static const struct pcr_ops rts5227_pcr_ops
= {
165 .extra_init_hw
= rts5227_extra_init_hw
,
166 .optimize_phy
= rts5227_optimize_phy
,
167 .turn_on_led
= rts5227_turn_on_led
,
168 .turn_off_led
= rts5227_turn_off_led
,
169 .enable_auto_blink
= rts5227_enable_auto_blink
,
170 .disable_auto_blink
= rts5227_disable_auto_blink
,
171 .card_power_on
= rts5227_card_power_on
,
172 .card_power_off
= rts5227_card_power_off
,
173 .switch_output_voltage
= rts5227_switch_output_voltage
,
175 .conv_clk_and_div_n
= NULL
,
178 /* SD Pull Control Enable:
179 * SD_DAT[3:0] ==> pull up
183 * SD_CLK ==> pull down
185 static const u32 rts5227_sd_pull_ctl_enable_tbl
[] = {
186 RTSX_REG_PAIR(CARD_PULL_CTL2
, 0xAA),
187 RTSX_REG_PAIR(CARD_PULL_CTL3
, 0xE9),
191 /* SD Pull Control Disable:
192 * SD_DAT[3:0] ==> pull down
194 * SD_WP ==> pull down
195 * SD_CMD ==> pull down
196 * SD_CLK ==> pull down
198 static const u32 rts5227_sd_pull_ctl_disable_tbl
[] = {
199 RTSX_REG_PAIR(CARD_PULL_CTL2
, 0x55),
200 RTSX_REG_PAIR(CARD_PULL_CTL3
, 0xD5),
204 /* MS Pull Control Enable:
206 * others ==> pull down
208 static const u32 rts5227_ms_pull_ctl_enable_tbl
[] = {
209 RTSX_REG_PAIR(CARD_PULL_CTL5
, 0x55),
210 RTSX_REG_PAIR(CARD_PULL_CTL6
, 0x15),
214 /* MS Pull Control Disable:
216 * others ==> pull down
218 static const u32 rts5227_ms_pull_ctl_disable_tbl
[] = {
219 RTSX_REG_PAIR(CARD_PULL_CTL5
, 0x55),
220 RTSX_REG_PAIR(CARD_PULL_CTL6
, 0x15),
224 void rts5227_init_params(struct rtsx_pcr
*pcr
)
226 pcr
->extra_caps
= EXTRA_CAPS_SD_SDR50
| EXTRA_CAPS_SD_SDR104
;
228 pcr
->ops
= &rts5227_pcr_ops
;
230 pcr
->sd_pull_ctl_enable_tbl
= rts5227_sd_pull_ctl_enable_tbl
;
231 pcr
->sd_pull_ctl_disable_tbl
= rts5227_sd_pull_ctl_disable_tbl
;
232 pcr
->ms_pull_ctl_enable_tbl
= rts5227_ms_pull_ctl_enable_tbl
;
233 pcr
->ms_pull_ctl_disable_tbl
= rts5227_ms_pull_ctl_disable_tbl
;