dwcmmc_fdt.c revision 1.6 1 /* $NetBSD: dwcmmc_fdt.c,v 1.6 2018/07/17 00:42:06 christos Exp $ */
2
3 /*-
4 * Copyright (c) 2015-2018 Jared McNeill <jmcneill (at) invisible.ca>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29 #include <sys/cdefs.h>
30 __KERNEL_RCSID(0, "$NetBSD: dwcmmc_fdt.c,v 1.6 2018/07/17 00:42:06 christos Exp $");
31
32 #include <sys/param.h>
33 #include <sys/bus.h>
34 #include <sys/device.h>
35 #include <sys/intr.h>
36 #include <sys/systm.h>
37 #include <sys/kernel.h>
38 #include <sys/mutex.h>
39 #include <sys/condvar.h>
40 #include <sys/gpio.h>
41
42 #include <dev/ic/dwc_mmc_var.h>
43 #include <dev/fdt/fdtvar.h>
44
45 static int dwcmmc_fdt_match(device_t, cfdata_t, void *);
46 static void dwcmmc_fdt_attach(device_t, device_t, void *);
47
48 static int dwcmmc_fdt_card_detect(struct dwc_mmc_softc *);
49 static int dwcmmc_fdt_bus_clock(struct dwc_mmc_softc *, int);
50
51 struct dwcmmc_fdt_config {
52 u_int ciu_div;
53 };
54
55 static const struct dwcmmc_fdt_config dwcmmc_rk3328_config = {
56 .ciu_div = 2,
57 };
58
59 static const struct of_compat_data compat_data[] = {
60 { "rockchip,rk3328-dw-mshc", (uintptr_t)&dwcmmc_rk3328_config },
61 { NULL }
62 };
63
64 struct dwcmmc_fdt_softc {
65 struct dwc_mmc_softc sc;
66 struct clk *sc_clk_biu;
67 struct clk *sc_clk_ciu;
68 struct fdtbus_gpio_pin *sc_pin_cd;
69 const struct dwcmmc_fdt_config *sc_conf;
70 u_int sc_ciu_div;
71 };
72
73 CFATTACH_DECL_NEW(dwcmmc_fdt, sizeof(struct dwc_mmc_softc),
74 dwcmmc_fdt_match, dwcmmc_fdt_attach, NULL, NULL);
75
76 static int
77 dwcmmc_fdt_match(device_t parent, cfdata_t cf, void *aux)
78 {
79 struct fdt_attach_args * const faa = aux;
80
81 return of_match_compat_data(faa->faa_phandle, compat_data);
82 }
83
84 static void
85 dwcmmc_fdt_attach(device_t parent, device_t self, void *aux)
86 {
87 struct dwcmmc_fdt_softc *esc = device_private(self);
88 struct dwc_mmc_softc *sc = &esc->sc;
89 struct fdt_attach_args * const faa = aux;
90 const int phandle = faa->faa_phandle;
91 char intrstr[128];
92 u_int fifo_depth;
93 bus_addr_t addr;
94 bus_size_t size;
95 int error;
96
97 if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
98 aprint_error(": couldn't get registers\n");
99 return;
100 }
101
102 if (of_getprop_uint32(phandle, "fifo-depth", &fifo_depth))
103 fifo_depth = 0;
104
105 esc->sc_clk_biu = fdtbus_clock_get(phandle, "biu");
106 if (esc->sc_clk_biu == NULL) {
107 aprint_error(": couldn't get clock biu\n");
108 return;
109 }
110 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu");
111 if (esc->sc_clk_ciu == NULL) {
112 aprint_error(": couldn't get clock ciu\n");
113 return;
114 }
115
116 error = clk_enable(esc->sc_clk_biu);
117 if (error) {
118 aprint_error(": couldn't enable clock biu: %d\n", error);
119 return;
120 }
121 error = clk_enable(esc->sc_clk_ciu);
122 if (error) {
123 aprint_error(": couldn't enable clock ciu: %d\n", error);
124 return;
125 }
126
127 sc->sc_dev = self;
128 sc->sc_bst = faa->faa_bst;
129 sc->sc_dmat = faa->faa_dmat;
130 error = bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh);
131 if (error) {
132 aprint_error(": couldn't map %#" PRIx64 ": %d\n",
133 (uint64_t)addr, error);
134 return;
135 }
136 esc->sc_conf = (void *)of_search_compatible(phandle, compat_data)->data;
137
138
139 if (of_getprop_uint32(phandle, "max-frequency", &sc->sc_clock_freq) != 0)
140 sc->sc_clock_freq = UINT_MAX;
141
142 sc->sc_fifo_depth = fifo_depth;
143 sc->sc_flags = DWC_MMC_F_USE_HOLD_REG | DWC_MMC_F_DMA;
144 sc->sc_bus_clock = dwcmmc_fdt_bus_clock;
145
146 esc->sc_pin_cd = fdtbus_gpio_acquire(phandle, "cd-gpios",
147 GPIO_PIN_INPUT);
148 if (esc->sc_pin_cd)
149 sc->sc_card_detect = dwcmmc_fdt_card_detect;
150
151 aprint_naive("\n");
152 aprint_normal(": DesignWare SD/MMC\n");
153
154 if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
155 aprint_error_dev(self, "failed to decode interrupt\n");
156 return;
157 }
158
159 if (dwc_mmc_init(sc) != 0)
160 return;
161
162 sc->sc_ih = fdtbus_intr_establish(phandle, 0, IPL_BIO, 0,
163 dwc_mmc_intr, sc);
164 if (sc->sc_ih == NULL) {
165 aprint_error_dev(self, "couldn't establish interrupt on %s\n",
166 intrstr);
167 return;
168 }
169 aprint_normal_dev(self, "interrupting on %s\n", intrstr);
170 }
171
172 static int
173 dwcmmc_fdt_card_detect(struct dwc_mmc_softc *sc)
174 {
175 struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev);
176
177 KASSERT(esc->sc_pin_cd != NULL);
178
179 return fdtbus_gpio_read(esc->sc_pin_cd);
180 }
181
182 static int
183 dwcmmc_fdt_bus_clock(struct dwc_mmc_softc *sc, int rate)
184 {
185 struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev);
186 const u_int ciu_div = esc->sc_conf->ciu_div > 0 ? esc->sc_conf->ciu_div : 1;
187 int error;
188
189 error = clk_set_rate(esc->sc_clk_ciu, 1000 * rate * ciu_div);
190 if (error != 0) {
191 aprint_error_dev(sc->sc_dev, "failed to set rate to %u kHz: %d\n",
192 rate * ciu_div, error);
193 return error;
194 }
195
196 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu) / ciu_div;
197
198 aprint_debug_dev(sc->sc_dev, "set clock rate to %u kHz (target %u kHz)\n",
199 sc->sc_clock_freq, rate);
200
201 return 0;
202 }
203