dwcmmc_fdt.c revision 1.22 1 1.22 skrll /* $NetBSD: dwcmmc_fdt.c,v 1.22 2024/02/09 08:50:52 skrll Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 2015-2018 Jared McNeill <jmcneill (at) invisible.ca>
5 1.1 jmcneill * All rights reserved.
6 1.1 jmcneill *
7 1.1 jmcneill * Redistribution and use in source and binary forms, with or without
8 1.1 jmcneill * modification, are permitted provided that the following conditions
9 1.1 jmcneill * are met:
10 1.1 jmcneill * 1. Redistributions of source code must retain the above copyright
11 1.1 jmcneill * notice, this list of conditions and the following disclaimer.
12 1.1 jmcneill * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jmcneill * notice, this list of conditions and the following disclaimer in the
14 1.1 jmcneill * documentation and/or other materials provided with the distribution.
15 1.1 jmcneill *
16 1.1 jmcneill * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 jmcneill * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 jmcneill * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 jmcneill * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 jmcneill * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 1.1 jmcneill * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 1.1 jmcneill * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 1.1 jmcneill * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 1.1 jmcneill * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 jmcneill * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 jmcneill * SUCH DAMAGE.
27 1.1 jmcneill */
28 1.1 jmcneill
29 1.1 jmcneill #include <sys/cdefs.h>
30 1.22 skrll __KERNEL_RCSID(0, "$NetBSD: dwcmmc_fdt.c,v 1.22 2024/02/09 08:50:52 skrll Exp $");
31 1.1 jmcneill
32 1.1 jmcneill #include <sys/param.h>
33 1.1 jmcneill #include <sys/bus.h>
34 1.1 jmcneill #include <sys/device.h>
35 1.1 jmcneill #include <sys/intr.h>
36 1.1 jmcneill #include <sys/systm.h>
37 1.1 jmcneill #include <sys/kernel.h>
38 1.1 jmcneill #include <sys/mutex.h>
39 1.1 jmcneill #include <sys/condvar.h>
40 1.1 jmcneill #include <sys/gpio.h>
41 1.1 jmcneill
42 1.1 jmcneill #include <dev/ic/dwc_mmc_var.h>
43 1.9 jmcneill #include <dev/sdmmc/sdmmcchip.h>
44 1.1 jmcneill #include <dev/fdt/fdtvar.h>
45 1.1 jmcneill
46 1.1 jmcneill static int dwcmmc_fdt_match(device_t, cfdata_t, void *);
47 1.1 jmcneill static void dwcmmc_fdt_attach(device_t, device_t, void *);
48 1.1 jmcneill
49 1.9 jmcneill static void dwcmmc_fdt_pre_power_on(struct dwc_mmc_softc *);
50 1.9 jmcneill static void dwcmmc_fdt_post_power_on(struct dwc_mmc_softc *);
51 1.9 jmcneill
52 1.1 jmcneill static int dwcmmc_fdt_card_detect(struct dwc_mmc_softc *);
53 1.2 jmcneill static int dwcmmc_fdt_bus_clock(struct dwc_mmc_softc *, int);
54 1.9 jmcneill static int dwcmmc_fdt_signal_voltage(struct dwc_mmc_softc *, int);
55 1.1 jmcneill
56 1.1 jmcneill struct dwcmmc_fdt_config {
57 1.1 jmcneill u_int ciu_div;
58 1.9 jmcneill u_int flags;
59 1.11 jmcneill uint32_t intr_cardmask;
60 1.1 jmcneill };
61 1.1 jmcneill
62 1.7 jmcneill static const struct dwcmmc_fdt_config dwcmmc_rk3288_config = {
63 1.1 jmcneill .ciu_div = 2,
64 1.9 jmcneill .flags = DWC_MMC_F_USE_HOLD_REG |
65 1.9 jmcneill DWC_MMC_F_DMA,
66 1.11 jmcneill .intr_cardmask = __BIT(24),
67 1.1 jmcneill };
68 1.1 jmcneill
69 1.18 skrll static const struct dwcmmc_fdt_config dwmmc_default_config = {
70 1.17 jmcneill .flags = DWC_MMC_F_USE_HOLD_REG |
71 1.17 jmcneill DWC_MMC_F_DMA,
72 1.17 jmcneill };
73 1.17 jmcneill
74 1.13 thorpej static const struct device_compatible_entry compat_data[] = {
75 1.13 thorpej { .compat = "rockchip,rk3288-dw-mshc", .data = &dwcmmc_rk3288_config },
76 1.17 jmcneill { .compat = "snps,dw-mshc", .data = &dwmmc_default_config },
77 1.15 thorpej DEVICE_COMPAT_EOL
78 1.1 jmcneill };
79 1.1 jmcneill
80 1.1 jmcneill struct dwcmmc_fdt_softc {
81 1.1 jmcneill struct dwc_mmc_softc sc;
82 1.1 jmcneill struct clk *sc_clk_biu;
83 1.1 jmcneill struct clk *sc_clk_ciu;
84 1.1 jmcneill struct fdtbus_gpio_pin *sc_pin_cd;
85 1.1 jmcneill const struct dwcmmc_fdt_config *sc_conf;
86 1.2 jmcneill u_int sc_ciu_div;
87 1.9 jmcneill struct fdtbus_regulator *sc_vqmmc;
88 1.9 jmcneill struct fdtbus_mmc_pwrseq *sc_pwrseq;
89 1.1 jmcneill };
90 1.1 jmcneill
91 1.8 jmcneill CFATTACH_DECL_NEW(dwcmmc_fdt, sizeof(struct dwcmmc_fdt_softc),
92 1.1 jmcneill dwcmmc_fdt_match, dwcmmc_fdt_attach, NULL, NULL);
93 1.1 jmcneill
94 1.1 jmcneill static int
95 1.1 jmcneill dwcmmc_fdt_match(device_t parent, cfdata_t cf, void *aux)
96 1.1 jmcneill {
97 1.1 jmcneill struct fdt_attach_args * const faa = aux;
98 1.1 jmcneill
99 1.16 thorpej return of_compatible_match(faa->faa_phandle, compat_data);
100 1.1 jmcneill }
101 1.1 jmcneill
102 1.1 jmcneill static void
103 1.1 jmcneill dwcmmc_fdt_attach(device_t parent, device_t self, void *aux)
104 1.1 jmcneill {
105 1.1 jmcneill struct dwcmmc_fdt_softc *esc = device_private(self);
106 1.1 jmcneill struct dwc_mmc_softc *sc = &esc->sc;
107 1.1 jmcneill struct fdt_attach_args * const faa = aux;
108 1.1 jmcneill const int phandle = faa->faa_phandle;
109 1.1 jmcneill char intrstr[128];
110 1.3 jmcneill u_int fifo_depth;
111 1.1 jmcneill bus_addr_t addr;
112 1.1 jmcneill bus_size_t size;
113 1.1 jmcneill int error;
114 1.1 jmcneill
115 1.1 jmcneill if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
116 1.1 jmcneill aprint_error(": couldn't get registers\n");
117 1.1 jmcneill return;
118 1.1 jmcneill }
119 1.1 jmcneill
120 1.1 jmcneill if (of_getprop_uint32(phandle, "fifo-depth", &fifo_depth))
121 1.1 jmcneill fifo_depth = 0;
122 1.1 jmcneill
123 1.7 jmcneill fdtbus_clock_assign(phandle);
124 1.7 jmcneill
125 1.1 jmcneill esc->sc_clk_biu = fdtbus_clock_get(phandle, "biu");
126 1.1 jmcneill if (esc->sc_clk_biu == NULL) {
127 1.1 jmcneill aprint_error(": couldn't get clock biu\n");
128 1.1 jmcneill return;
129 1.1 jmcneill }
130 1.1 jmcneill esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu");
131 1.1 jmcneill if (esc->sc_clk_ciu == NULL) {
132 1.1 jmcneill aprint_error(": couldn't get clock ciu\n");
133 1.1 jmcneill return;
134 1.1 jmcneill }
135 1.1 jmcneill
136 1.1 jmcneill error = clk_enable(esc->sc_clk_biu);
137 1.1 jmcneill if (error) {
138 1.1 jmcneill aprint_error(": couldn't enable clock biu: %d\n", error);
139 1.1 jmcneill return;
140 1.1 jmcneill }
141 1.1 jmcneill error = clk_enable(esc->sc_clk_ciu);
142 1.1 jmcneill if (error) {
143 1.1 jmcneill aprint_error(": couldn't enable clock ciu: %d\n", error);
144 1.1 jmcneill return;
145 1.1 jmcneill }
146 1.1 jmcneill
147 1.9 jmcneill esc->sc_vqmmc = fdtbus_regulator_acquire(phandle, "vqmmc-supply");
148 1.9 jmcneill esc->sc_pwrseq = fdtbus_mmc_pwrseq_get(phandle);
149 1.9 jmcneill
150 1.1 jmcneill sc->sc_dev = self;
151 1.1 jmcneill sc->sc_bst = faa->faa_bst;
152 1.22 skrll if (sizeof(bus_addr_t) > 4) {
153 1.22 skrll error = bus_dmatag_subregion(faa->faa_dmat, 0, __MASK(32),
154 1.22 skrll &sc->sc_dmat, BUS_DMA_WAITOK);
155 1.22 skrll if (error != 0) {
156 1.22 skrll aprint_error(": couldn't create DMA tag: %d\n", error);
157 1.22 skrll return;
158 1.22 skrll }
159 1.22 skrll } else {
160 1.22 skrll sc->sc_dmat = faa->faa_dmat;
161 1.22 skrll }
162 1.1 jmcneill error = bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh);
163 1.1 jmcneill if (error) {
164 1.6 christos aprint_error(": couldn't map %#" PRIx64 ": %d\n",
165 1.1 jmcneill (uint64_t)addr, error);
166 1.1 jmcneill return;
167 1.1 jmcneill }
168 1.16 thorpej esc->sc_conf = of_compatible_lookup(phandle, compat_data)->data;
169 1.1 jmcneill
170 1.3 jmcneill if (of_getprop_uint32(phandle, "max-frequency", &sc->sc_clock_freq) != 0)
171 1.3 jmcneill sc->sc_clock_freq = UINT_MAX;
172 1.9 jmcneill if (of_getprop_uint32(phandle, "bus-width", &sc->sc_bus_width) != 0)
173 1.9 jmcneill sc->sc_bus_width = 4;
174 1.2 jmcneill
175 1.1 jmcneill sc->sc_fifo_depth = fifo_depth;
176 1.18 skrll sc->sc_intr_cardmask = esc->sc_conf->intr_cardmask;
177 1.10 jmcneill sc->sc_ciu_div = esc->sc_conf->ciu_div;
178 1.9 jmcneill sc->sc_flags = esc->sc_conf->flags;
179 1.19 jmcneill if (of_getprop_bool(phandle, "non-removable")) {
180 1.19 jmcneill sc->sc_flags |= DWC_MMC_F_NON_REMOVABLE;
181 1.19 jmcneill }
182 1.19 jmcneill if (of_getprop_bool(phandle, "broken-cd")) {
183 1.19 jmcneill sc->sc_flags |= DWC_MMC_F_BROKEN_CD;
184 1.19 jmcneill }
185 1.9 jmcneill sc->sc_pre_power_on = dwcmmc_fdt_pre_power_on;
186 1.9 jmcneill sc->sc_post_power_on = dwcmmc_fdt_post_power_on;
187 1.2 jmcneill sc->sc_bus_clock = dwcmmc_fdt_bus_clock;
188 1.9 jmcneill sc->sc_signal_voltage = dwcmmc_fdt_signal_voltage;
189 1.1 jmcneill
190 1.1 jmcneill esc->sc_pin_cd = fdtbus_gpio_acquire(phandle, "cd-gpios",
191 1.1 jmcneill GPIO_PIN_INPUT);
192 1.1 jmcneill if (esc->sc_pin_cd)
193 1.1 jmcneill sc->sc_card_detect = dwcmmc_fdt_card_detect;
194 1.1 jmcneill
195 1.1 jmcneill aprint_naive("\n");
196 1.2 jmcneill aprint_normal(": DesignWare SD/MMC\n");
197 1.1 jmcneill
198 1.1 jmcneill if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
199 1.1 jmcneill aprint_error_dev(self, "failed to decode interrupt\n");
200 1.1 jmcneill return;
201 1.1 jmcneill }
202 1.1 jmcneill
203 1.1 jmcneill if (dwc_mmc_init(sc) != 0)
204 1.1 jmcneill return;
205 1.1 jmcneill
206 1.12 ryo sc->sc_ih = fdtbus_intr_establish_xname(phandle, 0, IPL_BIO, 0,
207 1.12 ryo dwc_mmc_intr, sc, device_xname(self));
208 1.1 jmcneill if (sc->sc_ih == NULL) {
209 1.1 jmcneill aprint_error_dev(self, "couldn't establish interrupt on %s\n",
210 1.1 jmcneill intrstr);
211 1.1 jmcneill return;
212 1.1 jmcneill }
213 1.1 jmcneill aprint_normal_dev(self, "interrupting on %s\n", intrstr);
214 1.1 jmcneill }
215 1.1 jmcneill
216 1.9 jmcneill static void
217 1.9 jmcneill dwcmmc_fdt_pre_power_on(struct dwc_mmc_softc *sc)
218 1.9 jmcneill {
219 1.9 jmcneill struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev);
220 1.9 jmcneill
221 1.9 jmcneill if (esc->sc_pwrseq != NULL)
222 1.9 jmcneill fdtbus_mmc_pwrseq_pre_power_on(esc->sc_pwrseq);
223 1.9 jmcneill }
224 1.9 jmcneill
225 1.9 jmcneill static void
226 1.9 jmcneill dwcmmc_fdt_post_power_on(struct dwc_mmc_softc *sc)
227 1.9 jmcneill {
228 1.9 jmcneill struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev);
229 1.9 jmcneill
230 1.9 jmcneill if (esc->sc_pwrseq != NULL)
231 1.9 jmcneill fdtbus_mmc_pwrseq_post_power_on(esc->sc_pwrseq);
232 1.9 jmcneill }
233 1.9 jmcneill
234 1.1 jmcneill static int
235 1.1 jmcneill dwcmmc_fdt_card_detect(struct dwc_mmc_softc *sc)
236 1.1 jmcneill {
237 1.1 jmcneill struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev);
238 1.1 jmcneill
239 1.1 jmcneill KASSERT(esc->sc_pin_cd != NULL);
240 1.1 jmcneill
241 1.1 jmcneill return fdtbus_gpio_read(esc->sc_pin_cd);
242 1.1 jmcneill }
243 1.2 jmcneill
244 1.2 jmcneill static int
245 1.2 jmcneill dwcmmc_fdt_bus_clock(struct dwc_mmc_softc *sc, int rate)
246 1.2 jmcneill {
247 1.2 jmcneill struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev);
248 1.21 skrll const u_int ciu_div = sc->sc_ciu_div > 0 ? sc->sc_ciu_div : 1;
249 1.2 jmcneill int error;
250 1.2 jmcneill
251 1.2 jmcneill error = clk_set_rate(esc->sc_clk_ciu, 1000 * rate * ciu_div);
252 1.2 jmcneill if (error != 0) {
253 1.2 jmcneill aprint_error_dev(sc->sc_dev, "failed to set rate to %u kHz: %d\n",
254 1.2 jmcneill rate * ciu_div, error);
255 1.2 jmcneill return error;
256 1.2 jmcneill }
257 1.2 jmcneill
258 1.9 jmcneill sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu);
259 1.2 jmcneill
260 1.2 jmcneill aprint_debug_dev(sc->sc_dev, "set clock rate to %u kHz (target %u kHz)\n",
261 1.20 skrll sc->sc_clock_freq / 1000, rate);
262 1.2 jmcneill
263 1.2 jmcneill return 0;
264 1.2 jmcneill }
265 1.9 jmcneill
266 1.9 jmcneill static int
267 1.9 jmcneill dwcmmc_fdt_signal_voltage(struct dwc_mmc_softc *sc, int signal_voltage)
268 1.9 jmcneill {
269 1.9 jmcneill struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev);
270 1.9 jmcneill u_int uvol;
271 1.9 jmcneill int error;
272 1.9 jmcneill
273 1.9 jmcneill if (esc->sc_vqmmc == NULL)
274 1.9 jmcneill return 0;
275 1.9 jmcneill
276 1.9 jmcneill switch (signal_voltage) {
277 1.9 jmcneill case SDMMC_SIGNAL_VOLTAGE_180:
278 1.9 jmcneill uvol = 1800000;
279 1.9 jmcneill break;
280 1.9 jmcneill case SDMMC_SIGNAL_VOLTAGE_330:
281 1.9 jmcneill uvol = 3300000;
282 1.9 jmcneill break;
283 1.9 jmcneill default:
284 1.9 jmcneill return EINVAL;
285 1.9 jmcneill }
286 1.9 jmcneill
287 1.9 jmcneill error = fdtbus_regulator_supports_voltage(esc->sc_vqmmc, uvol, uvol);
288 1.9 jmcneill if (error != 0)
289 1.9 jmcneill return 0;
290 1.9 jmcneill
291 1.9 jmcneill error = fdtbus_regulator_set_voltage(esc->sc_vqmmc, uvol, uvol);
292 1.9 jmcneill if (error != 0)
293 1.9 jmcneill return error;
294 1.9 jmcneill
295 1.9 jmcneill return fdtbus_regulator_enable(esc->sc_vqmmc);
296 1.9 jmcneill }
297