sdhc.c revision 1.7.2.3 1 1.7.2.3 matt /* $NetBSD: sdhc.c,v 1.7.2.3 2011/12/24 01:33:58 matt Exp $ */
2 1.7.2.2 matt /* $OpenBSD: sdhc.c,v 1.25 2009/01/13 19:44:20 grange Exp $ */
3 1.7.2.2 matt
4 1.7.2.2 matt /*
5 1.7.2.2 matt * Copyright (c) 2006 Uwe Stuehler <uwe (at) openbsd.org>
6 1.7.2.2 matt *
7 1.7.2.2 matt * Permission to use, copy, modify, and distribute this software for any
8 1.7.2.2 matt * purpose with or without fee is hereby granted, provided that the above
9 1.7.2.2 matt * copyright notice and this permission notice appear in all copies.
10 1.7.2.2 matt *
11 1.7.2.2 matt * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 1.7.2.2 matt * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 1.7.2.2 matt * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 1.7.2.2 matt * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 1.7.2.2 matt * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 1.7.2.2 matt * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 1.7.2.2 matt * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 1.7.2.2 matt */
19 1.7.2.2 matt
20 1.7.2.2 matt /*
21 1.7.2.2 matt * SD Host Controller driver based on the SD Host Controller Standard
22 1.7.2.2 matt * Simplified Specification Version 1.00 (www.sdcard.com).
23 1.7.2.2 matt */
24 1.7.2.2 matt
25 1.7.2.2 matt #include <sys/cdefs.h>
26 1.7.2.3 matt __KERNEL_RCSID(0, "$NetBSD: sdhc.c,v 1.7.2.3 2011/12/24 01:33:58 matt Exp $");
27 1.7.2.2 matt
28 1.7.2.2 matt #include <sys/param.h>
29 1.7.2.2 matt #include <sys/device.h>
30 1.7.2.2 matt #include <sys/kernel.h>
31 1.7.2.2 matt #include <sys/kthread.h>
32 1.7.2.2 matt #include <sys/malloc.h>
33 1.7.2.2 matt #include <sys/systm.h>
34 1.7.2.2 matt #include <sys/mutex.h>
35 1.7.2.2 matt #include <sys/condvar.h>
36 1.7.2.2 matt
37 1.7.2.2 matt #include <dev/sdmmc/sdhcreg.h>
38 1.7.2.2 matt #include <dev/sdmmc/sdhcvar.h>
39 1.7.2.2 matt #include <dev/sdmmc/sdmmcchip.h>
40 1.7.2.2 matt #include <dev/sdmmc/sdmmcreg.h>
41 1.7.2.2 matt #include <dev/sdmmc/sdmmcvar.h>
42 1.7.2.2 matt
43 1.7.2.2 matt #ifdef SDHC_DEBUG
44 1.7.2.3 matt int sdhcdebug = 2;
45 1.7.2.2 matt #define DPRINTF(n,s) do { if ((n) <= sdhcdebug) printf s; } while (0)
46 1.7.2.2 matt void sdhc_dump_regs(struct sdhc_host *);
47 1.7.2.2 matt #else
48 1.7.2.2 matt #define DPRINTF(n,s) do {} while (0)
49 1.7.2.2 matt #endif
50 1.7.2.2 matt
51 1.7.2.2 matt #define SDHC_COMMAND_TIMEOUT hz
52 1.7.2.2 matt #define SDHC_BUFFER_TIMEOUT hz
53 1.7.2.2 matt #define SDHC_TRANSFER_TIMEOUT hz
54 1.7.2.2 matt #define SDHC_DMA_TIMEOUT hz
55 1.7.2.2 matt
56 1.7.2.2 matt struct sdhc_host {
57 1.7.2.2 matt struct sdhc_softc *sc; /* host controller device */
58 1.7.2.2 matt
59 1.7.2.2 matt bus_space_tag_t iot; /* host register set tag */
60 1.7.2.2 matt bus_space_handle_t ioh; /* host register set handle */
61 1.7.2.2 matt bus_dma_tag_t dmat; /* host DMA tag */
62 1.7.2.2 matt
63 1.7.2.2 matt device_t sdmmc; /* generic SD/MMC device */
64 1.7.2.2 matt
65 1.7.2.2 matt struct kmutex host_mtx;
66 1.7.2.2 matt
67 1.7.2.2 matt u_int clkbase; /* base clock frequency in KHz */
68 1.7.2.2 matt int maxblklen; /* maximum block length */
69 1.7.2.2 matt uint32_t ocr; /* OCR value from capabilities */
70 1.7.2.2 matt
71 1.7.2.2 matt uint8_t regs[14]; /* host controller state */
72 1.7.2.2 matt
73 1.7.2.2 matt uint16_t intr_status; /* soft interrupt status */
74 1.7.2.2 matt uint16_t intr_error_status; /* soft error status */
75 1.7.2.2 matt struct kmutex intr_mtx;
76 1.7.2.2 matt struct kcondvar intr_cv;
77 1.7.2.2 matt
78 1.7.2.2 matt uint32_t flags; /* flags for this host */
79 1.7.2.2 matt #define SHF_USE_DMA 0x0001
80 1.7.2.2 matt #define SHF_USE_4BIT_MODE 0x0002
81 1.7.2.2 matt };
82 1.7.2.2 matt
83 1.7.2.2 matt #define HDEVNAME(hp) (device_xname((hp)->sc->sc_dev))
84 1.7.2.2 matt
85 1.7.2.2 matt #define HREAD1(hp, reg) \
86 1.7.2.2 matt (bus_space_read_1((hp)->iot, (hp)->ioh, (reg)))
87 1.7.2.2 matt #define HREAD2(hp, reg) \
88 1.7.2.2 matt (bus_space_read_2((hp)->iot, (hp)->ioh, (reg)))
89 1.7.2.2 matt #define HREAD4(hp, reg) \
90 1.7.2.2 matt (bus_space_read_4((hp)->iot, (hp)->ioh, (reg)))
91 1.7.2.2 matt #define HWRITE1(hp, reg, val) \
92 1.7.2.2 matt bus_space_write_1((hp)->iot, (hp)->ioh, (reg), (val))
93 1.7.2.2 matt #define HWRITE2(hp, reg, val) \
94 1.7.2.2 matt bus_space_write_2((hp)->iot, (hp)->ioh, (reg), (val))
95 1.7.2.2 matt #define HWRITE4(hp, reg, val) \
96 1.7.2.2 matt bus_space_write_4((hp)->iot, (hp)->ioh, (reg), (val))
97 1.7.2.2 matt #define HCLR1(hp, reg, bits) \
98 1.7.2.2 matt HWRITE1((hp), (reg), HREAD1((hp), (reg)) & ~(bits))
99 1.7.2.2 matt #define HCLR2(hp, reg, bits) \
100 1.7.2.2 matt HWRITE2((hp), (reg), HREAD2((hp), (reg)) & ~(bits))
101 1.7.2.2 matt #define HSET1(hp, reg, bits) \
102 1.7.2.2 matt HWRITE1((hp), (reg), HREAD1((hp), (reg)) | (bits))
103 1.7.2.2 matt #define HSET2(hp, reg, bits) \
104 1.7.2.2 matt HWRITE2((hp), (reg), HREAD2((hp), (reg)) | (bits))
105 1.7.2.2 matt
106 1.7.2.2 matt static int sdhc_host_reset(sdmmc_chipset_handle_t);
107 1.7.2.2 matt static int sdhc_host_reset1(sdmmc_chipset_handle_t);
108 1.7.2.2 matt static uint32_t sdhc_host_ocr(sdmmc_chipset_handle_t);
109 1.7.2.2 matt static int sdhc_host_maxblklen(sdmmc_chipset_handle_t);
110 1.7.2.2 matt static int sdhc_card_detect(sdmmc_chipset_handle_t);
111 1.7.2.2 matt static int sdhc_write_protect(sdmmc_chipset_handle_t);
112 1.7.2.2 matt static int sdhc_bus_power(sdmmc_chipset_handle_t, uint32_t);
113 1.7.2.2 matt static int sdhc_bus_clock(sdmmc_chipset_handle_t, int);
114 1.7.2.2 matt static int sdhc_bus_width(sdmmc_chipset_handle_t, int);
115 1.7.2.2 matt static void sdhc_card_enable_intr(sdmmc_chipset_handle_t, int);
116 1.7.2.2 matt static void sdhc_card_intr_ack(sdmmc_chipset_handle_t);
117 1.7.2.2 matt static void sdhc_exec_command(sdmmc_chipset_handle_t,
118 1.7.2.2 matt struct sdmmc_command *);
119 1.7.2.2 matt static int sdhc_start_command(struct sdhc_host *, struct sdmmc_command *);
120 1.7.2.2 matt static int sdhc_wait_state(struct sdhc_host *, uint32_t, uint32_t);
121 1.7.2.2 matt static int sdhc_soft_reset(struct sdhc_host *, int);
122 1.7.2.2 matt static int sdhc_wait_intr(struct sdhc_host *, int, int);
123 1.7.2.2 matt static void sdhc_transfer_data(struct sdhc_host *, struct sdmmc_command *);
124 1.7.2.2 matt static int sdhc_transfer_data_pio(struct sdhc_host *, struct sdmmc_command *);
125 1.7.2.2 matt static void sdhc_read_data_pio(struct sdhc_host *, uint8_t *, int);
126 1.7.2.2 matt static void sdhc_write_data_pio(struct sdhc_host *, uint8_t *, int);
127 1.7.2.2 matt
128 1.7.2.2 matt static struct sdmmc_chip_functions sdhc_functions = {
129 1.7.2.2 matt /* host controller reset */
130 1.7.2.2 matt sdhc_host_reset,
131 1.7.2.2 matt
132 1.7.2.2 matt /* host controller capabilities */
133 1.7.2.2 matt sdhc_host_ocr,
134 1.7.2.2 matt sdhc_host_maxblklen,
135 1.7.2.2 matt
136 1.7.2.2 matt /* card detection */
137 1.7.2.2 matt sdhc_card_detect,
138 1.7.2.2 matt
139 1.7.2.2 matt /* write protect */
140 1.7.2.2 matt sdhc_write_protect,
141 1.7.2.2 matt
142 1.7.2.2 matt /* bus power, clock frequency and width */
143 1.7.2.2 matt sdhc_bus_power,
144 1.7.2.2 matt sdhc_bus_clock,
145 1.7.2.2 matt sdhc_bus_width,
146 1.7.2.2 matt
147 1.7.2.2 matt /* command execution */
148 1.7.2.2 matt sdhc_exec_command,
149 1.7.2.2 matt
150 1.7.2.2 matt /* card interrupt */
151 1.7.2.2 matt sdhc_card_enable_intr,
152 1.7.2.2 matt sdhc_card_intr_ack
153 1.7.2.2 matt };
154 1.7.2.2 matt
155 1.7.2.2 matt /*
156 1.7.2.2 matt * Called by attachment driver. For each SD card slot there is one SD
157 1.7.2.2 matt * host controller standard register set. (1.3)
158 1.7.2.2 matt */
159 1.7.2.2 matt int
160 1.7.2.2 matt sdhc_host_found(struct sdhc_softc *sc, bus_space_tag_t iot,
161 1.7.2.2 matt bus_space_handle_t ioh, bus_size_t iosize)
162 1.7.2.2 matt {
163 1.7.2.2 matt struct sdmmcbus_attach_args saa;
164 1.7.2.2 matt struct sdhc_host *hp;
165 1.7.2.2 matt uint32_t caps;
166 1.7.2.2 matt #ifdef SDHC_DEBUG
167 1.7.2.2 matt uint16_t sdhcver;
168 1.7.2.2 matt
169 1.7.2.2 matt sdhcver = bus_space_read_2(iot, ioh, SDHC_HOST_CTL_VERSION);
170 1.7.2.2 matt aprint_normal_dev(sc->sc_dev, "SD Host Specification/Vendor Version ");
171 1.7.2.2 matt switch (SDHC_SPEC_VERSION(sdhcver)) {
172 1.7.2.2 matt case 0x00:
173 1.7.2.2 matt aprint_normal("1.0/%u\n", SDHC_VENDOR_VERSION(sdhcver));
174 1.7.2.2 matt break;
175 1.7.2.2 matt
176 1.7.2.2 matt default:
177 1.7.2.2 matt aprint_normal(">1.0/%u\n", SDHC_VENDOR_VERSION(sdhcver));
178 1.7.2.2 matt break;
179 1.7.2.2 matt }
180 1.7.2.2 matt #endif
181 1.7.2.2 matt
182 1.7.2.2 matt /* Allocate one more host structure. */
183 1.7.2.2 matt hp = malloc(sizeof(struct sdhc_host), M_DEVBUF, M_WAITOK|M_ZERO);
184 1.7.2.2 matt if (hp == NULL) {
185 1.7.2.2 matt aprint_error_dev(sc->sc_dev,
186 1.7.2.2 matt "couldn't alloc memory (sdhc host)\n");
187 1.7.2.2 matt goto err1;
188 1.7.2.2 matt }
189 1.7.2.2 matt sc->sc_host[sc->sc_nhosts++] = hp;
190 1.7.2.2 matt
191 1.7.2.2 matt /* Fill in the new host structure. */
192 1.7.2.2 matt hp->sc = sc;
193 1.7.2.2 matt hp->iot = iot;
194 1.7.2.2 matt hp->ioh = ioh;
195 1.7.2.2 matt hp->dmat = sc->sc_dmat;
196 1.7.2.2 matt
197 1.7.2.2 matt mutex_init(&hp->host_mtx, MUTEX_DEFAULT, IPL_SDMMC);
198 1.7.2.2 matt mutex_init(&hp->intr_mtx, MUTEX_DEFAULT, IPL_SDMMC);
199 1.7.2.2 matt cv_init(&hp->intr_cv, "sdhcintr");
200 1.7.2.2 matt
201 1.7.2.2 matt /*
202 1.7.2.2 matt * Reset the host controller and enable interrupts.
203 1.7.2.2 matt */
204 1.7.2.2 matt (void)sdhc_host_reset(hp);
205 1.7.2.2 matt
206 1.7.2.2 matt /* Determine host capabilities. */
207 1.7.2.2 matt mutex_enter(&hp->host_mtx);
208 1.7.2.2 matt caps = HREAD4(hp, SDHC_CAPABILITIES);
209 1.7.2.2 matt mutex_exit(&hp->host_mtx);
210 1.7.2.2 matt
211 1.7.2.3 matt DPRINTF(1,("%s: caps=0x%08x\n", device_xname(sc->sc_dev), caps));
212 1.7.2.3 matt
213 1.7.2.2 matt #if notyet
214 1.7.2.2 matt /* Use DMA if the host system and the controller support it. */
215 1.7.2.2 matt if (ISSET(sc->sc_flags, SDHC_FLAG_FORCE_DMA)
216 1.7.2.2 matt || ((ISSET(sc->sc_flags, SDHC_FLAG_USE_DMA)
217 1.7.2.2 matt && ISSET(caps, SDHC_DMA_SUPPORT)))) {
218 1.7.2.2 matt SET(hp->flags, SHF_USE_DMA);
219 1.7.2.2 matt aprint_normal_dev(sc->sc_dev, "using DMA transfer\n");
220 1.7.2.2 matt }
221 1.7.2.2 matt #endif
222 1.7.2.2 matt
223 1.7.2.2 matt /*
224 1.7.2.2 matt * Determine the base clock frequency. (2.2.24)
225 1.7.2.2 matt */
226 1.7.2.2 matt if (SDHC_BASE_FREQ_KHZ(caps) != 0)
227 1.7.2.2 matt hp->clkbase = SDHC_BASE_FREQ_KHZ(caps);
228 1.7.2.2 matt if (hp->clkbase == 0) {
229 1.7.2.2 matt /* The attachment driver must tell us. */
230 1.7.2.2 matt aprint_error_dev(sc->sc_dev,"unknown base clock frequency\n");
231 1.7.2.2 matt goto err;
232 1.7.2.3 matt } else if (hp->clkbase < 10000 || hp->clkbase > 255000) {
233 1.7.2.2 matt /* SDHC 1.0 supports only 10-63 MHz. */
234 1.7.2.3 matt /* SDHC 1.0 supports only 10-255 MHz. */
235 1.7.2.2 matt aprint_error_dev(sc->sc_dev,
236 1.7.2.2 matt "base clock frequency out of range: %u MHz\n",
237 1.7.2.2 matt hp->clkbase / 1000);
238 1.7.2.2 matt goto err;
239 1.7.2.2 matt }
240 1.7.2.2 matt DPRINTF(1,("%s: base clock frequency %u MHz\n",
241 1.7.2.2 matt device_xname(sc->sc_dev), hp->clkbase / 1000));
242 1.7.2.2 matt
243 1.7.2.2 matt /*
244 1.7.2.2 matt * XXX Set the data timeout counter value according to
245 1.7.2.2 matt * capabilities. (2.2.15)
246 1.7.2.2 matt */
247 1.7.2.2 matt HWRITE1(hp, SDHC_TIMEOUT_CTL, SDHC_TIMEOUT_MAX);
248 1.7.2.2 matt
249 1.7.2.2 matt /*
250 1.7.2.2 matt * Determine SD bus voltage levels supported by the controller.
251 1.7.2.2 matt */
252 1.7.2.2 matt if (ISSET(caps, SDHC_VOLTAGE_SUPP_1_8V))
253 1.7.2.2 matt SET(hp->ocr, MMC_OCR_1_7V_1_8V | MMC_OCR_1_8V_1_9V);
254 1.7.2.2 matt if (ISSET(caps, SDHC_VOLTAGE_SUPP_3_0V))
255 1.7.2.2 matt SET(hp->ocr, MMC_OCR_2_9V_3_0V | MMC_OCR_3_0V_3_1V);
256 1.7.2.2 matt if (ISSET(caps, SDHC_VOLTAGE_SUPP_3_3V))
257 1.7.2.2 matt SET(hp->ocr, MMC_OCR_3_2V_3_3V | MMC_OCR_3_3V_3_4V);
258 1.7.2.2 matt
259 1.7.2.2 matt /*
260 1.7.2.2 matt * Determine the maximum block length supported by the host
261 1.7.2.2 matt * controller. (2.2.24)
262 1.7.2.2 matt */
263 1.7.2.2 matt switch((caps >> SDHC_MAX_BLK_LEN_SHIFT) & SDHC_MAX_BLK_LEN_MASK) {
264 1.7.2.2 matt case SDHC_MAX_BLK_LEN_512:
265 1.7.2.2 matt hp->maxblklen = 512;
266 1.7.2.2 matt break;
267 1.7.2.2 matt
268 1.7.2.2 matt case SDHC_MAX_BLK_LEN_1024:
269 1.7.2.2 matt hp->maxblklen = 1024;
270 1.7.2.2 matt break;
271 1.7.2.2 matt
272 1.7.2.2 matt case SDHC_MAX_BLK_LEN_2048:
273 1.7.2.2 matt hp->maxblklen = 2048;
274 1.7.2.2 matt break;
275 1.7.2.2 matt
276 1.7.2.3 matt case SDHC_MAX_BLK_LEN_4096:
277 1.7.2.3 matt hp->maxblklen = 4096;
278 1.7.2.3 matt break;
279 1.7.2.3 matt
280 1.7.2.2 matt default:
281 1.7.2.2 matt aprint_error_dev(sc->sc_dev, "max block length unknown\n");
282 1.7.2.2 matt goto err;
283 1.7.2.2 matt }
284 1.7.2.2 matt DPRINTF(1, ("%s: max block length %u byte%s\n",
285 1.7.2.2 matt device_xname(sc->sc_dev), hp->maxblklen,
286 1.7.2.2 matt hp->maxblklen > 1 ? "s" : ""));
287 1.7.2.2 matt
288 1.7.2.3 matt #if 0
289 1.7.2.3 matt if (sc->sc_flags & SDHC_FLAG_HAS_CGM) {
290 1.7.2.3 matt uint16_t clk = HREAD2(hp, SDHC_CLOCK_CTL);
291 1.7.2.3 matt clk |= SDHC_SDCLK_CGM;
292 1.7.2.3 matt HWRITE2(hp, SDHC_CLOCK_CTL, clk);
293 1.7.2.3 matt clk = HREAD2(hp, SDHC_CLOCK_CTL);
294 1.7.2.3 matt if ((clk & SDHC_SDCLK_CGM) == 0) {
295 1.7.2.3 matt sc->sc_flags &= ~SDHC_FLAG_HAS_CGM;
296 1.7.2.3 matt DPRINTF(1, ("%s: CGM indicated but not supported\n",
297 1.7.2.3 matt device_xname(sc->sc_dev)));
298 1.7.2.3 matt }
299 1.7.2.3 matt }
300 1.7.2.3 matt #endif
301 1.7.2.3 matt
302 1.7.2.2 matt /*
303 1.7.2.2 matt * Attach the generic SD/MMC bus driver. (The bus driver must
304 1.7.2.2 matt * not invoke any chipset functions before it is attached.)
305 1.7.2.2 matt */
306 1.7.2.2 matt memset(&saa, 0, sizeof(saa));
307 1.7.2.2 matt saa.saa_busname = "sdmmc";
308 1.7.2.2 matt saa.saa_sct = &sdhc_functions;
309 1.7.2.2 matt saa.saa_sch = hp;
310 1.7.2.2 matt saa.saa_dmat = hp->dmat;
311 1.7.2.3 matt if (sc->sc_flags & SDHC_FLAG_HAS_CGM) {
312 1.7.2.3 matt saa.saa_clkmin = hp->clkbase / 2046;
313 1.7.2.3 matt } else {
314 1.7.2.3 matt saa.saa_clkmin = hp->clkbase / 256;
315 1.7.2.3 matt }
316 1.7.2.2 matt saa.saa_clkmax = hp->clkbase;
317 1.7.2.2 matt saa.saa_caps = SMC_CAPS_4BIT_MODE|SMC_CAPS_AUTO_STOP;
318 1.7.2.3 matt DPRINTF(1, ("%s: clkmin=%d clkmax=%d\n",
319 1.7.2.3 matt device_xname(sc->sc_dev), saa.saa_clkmin, saa.saa_clkmax));
320 1.7.2.2 matt #if notyet
321 1.7.2.2 matt if (ISSET(hp->flags, SHF_USE_DMA))
322 1.7.2.2 matt saa.saa_caps |= SMC_CAPS_DMA;
323 1.7.2.2 matt #endif
324 1.7.2.2 matt
325 1.7.2.2 matt hp->sdmmc = config_found(sc->sc_dev, &saa, NULL);
326 1.7.2.2 matt
327 1.7.2.2 matt return 0;
328 1.7.2.2 matt
329 1.7.2.2 matt err:
330 1.7.2.2 matt cv_destroy(&hp->intr_cv);
331 1.7.2.2 matt mutex_destroy(&hp->intr_mtx);
332 1.7.2.2 matt mutex_destroy(&hp->host_mtx);
333 1.7.2.2 matt free(hp, M_DEVBUF);
334 1.7.2.2 matt sc->sc_host[--sc->sc_nhosts] = NULL;
335 1.7.2.2 matt err1:
336 1.7.2.2 matt return 1;
337 1.7.2.2 matt }
338 1.7.2.2 matt
339 1.7.2.2 matt bool
340 1.7.2.2 matt sdhc_suspend(device_t dev PMF_FN_ARGS)
341 1.7.2.2 matt {
342 1.7.2.2 matt struct sdhc_softc *sc = device_private(dev);
343 1.7.2.2 matt struct sdhc_host *hp;
344 1.7.2.2 matt int n, i;
345 1.7.2.2 matt
346 1.7.2.2 matt /* XXX poll for command completion or suspend command
347 1.7.2.2 matt * in progress */
348 1.7.2.2 matt
349 1.7.2.2 matt /* Save the host controller state. */
350 1.7.2.2 matt for (n = 0; n < sc->sc_nhosts; n++) {
351 1.7.2.2 matt hp = sc->sc_host[n];
352 1.7.2.2 matt for (i = 0; i < sizeof hp->regs; i++)
353 1.7.2.2 matt hp->regs[i] = HREAD1(hp, i);
354 1.7.2.2 matt }
355 1.7.2.2 matt return true;
356 1.7.2.2 matt }
357 1.7.2.2 matt
358 1.7.2.2 matt bool
359 1.7.2.2 matt sdhc_resume(device_t dev PMF_FN_ARGS)
360 1.7.2.2 matt {
361 1.7.2.2 matt struct sdhc_softc *sc = device_private(dev);
362 1.7.2.2 matt struct sdhc_host *hp;
363 1.7.2.2 matt int n, i;
364 1.7.2.2 matt
365 1.7.2.2 matt /* Restore the host controller state. */
366 1.7.2.2 matt for (n = 0; n < sc->sc_nhosts; n++) {
367 1.7.2.2 matt hp = sc->sc_host[n];
368 1.7.2.2 matt (void)sdhc_host_reset(hp);
369 1.7.2.2 matt for (i = 0; i < sizeof hp->regs; i++)
370 1.7.2.2 matt HWRITE1(hp, i, hp->regs[i]);
371 1.7.2.2 matt }
372 1.7.2.2 matt return true;
373 1.7.2.2 matt }
374 1.7.2.2 matt
375 1.7.2.2 matt bool
376 1.7.2.2 matt sdhc_shutdown(device_t dev, int flags)
377 1.7.2.2 matt {
378 1.7.2.2 matt struct sdhc_softc *sc = device_private(dev);
379 1.7.2.2 matt struct sdhc_host *hp;
380 1.7.2.2 matt int i;
381 1.7.2.2 matt
382 1.7.2.2 matt /* XXX chip locks up if we don't disable it before reboot. */
383 1.7.2.2 matt for (i = 0; i < sc->sc_nhosts; i++) {
384 1.7.2.2 matt hp = sc->sc_host[i];
385 1.7.2.2 matt (void)sdhc_host_reset(hp);
386 1.7.2.2 matt }
387 1.7.2.2 matt return true;
388 1.7.2.2 matt }
389 1.7.2.2 matt
390 1.7.2.2 matt /*
391 1.7.2.2 matt * Reset the host controller. Called during initialization, when
392 1.7.2.2 matt * cards are removed, upon resume, and during error recovery.
393 1.7.2.2 matt */
394 1.7.2.2 matt static int
395 1.7.2.2 matt sdhc_host_reset1(sdmmc_chipset_handle_t sch)
396 1.7.2.2 matt {
397 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
398 1.7.2.2 matt uint16_t sdhcimask;
399 1.7.2.2 matt int error;
400 1.7.2.2 matt
401 1.7.2.2 matt /* Don't lock. */
402 1.7.2.2 matt
403 1.7.2.2 matt /* Disable all interrupts. */
404 1.7.2.2 matt HWRITE2(hp, SDHC_NINTR_SIGNAL_EN, 0);
405 1.7.2.2 matt
406 1.7.2.2 matt /*
407 1.7.2.2 matt * Reset the entire host controller and wait up to 100ms for
408 1.7.2.2 matt * the controller to clear the reset bit.
409 1.7.2.2 matt */
410 1.7.2.2 matt error = sdhc_soft_reset(hp, SDHC_RESET_ALL);
411 1.7.2.2 matt if (error)
412 1.7.2.2 matt goto out;
413 1.7.2.2 matt
414 1.7.2.2 matt /* Set data timeout counter value to max for now. */
415 1.7.2.2 matt HWRITE1(hp, SDHC_TIMEOUT_CTL, SDHC_TIMEOUT_MAX);
416 1.7.2.2 matt
417 1.7.2.2 matt /* Enable interrupts. */
418 1.7.2.2 matt sdhcimask = SDHC_CARD_REMOVAL | SDHC_CARD_INSERTION |
419 1.7.2.2 matt SDHC_BUFFER_READ_READY | SDHC_BUFFER_WRITE_READY |
420 1.7.2.2 matt SDHC_DMA_INTERRUPT | SDHC_BLOCK_GAP_EVENT |
421 1.7.2.2 matt SDHC_TRANSFER_COMPLETE | SDHC_COMMAND_COMPLETE;
422 1.7.2.2 matt HWRITE2(hp, SDHC_NINTR_STATUS_EN, sdhcimask);
423 1.7.2.2 matt HWRITE2(hp, SDHC_EINTR_STATUS_EN, SDHC_EINTR_STATUS_MASK);
424 1.7.2.2 matt HWRITE2(hp, SDHC_NINTR_SIGNAL_EN, sdhcimask);
425 1.7.2.2 matt HWRITE2(hp, SDHC_EINTR_SIGNAL_EN, SDHC_EINTR_SIGNAL_MASK);
426 1.7.2.2 matt
427 1.7.2.2 matt out:
428 1.7.2.2 matt return error;
429 1.7.2.2 matt }
430 1.7.2.2 matt
431 1.7.2.2 matt static int
432 1.7.2.2 matt sdhc_host_reset(sdmmc_chipset_handle_t sch)
433 1.7.2.2 matt {
434 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
435 1.7.2.2 matt int error;
436 1.7.2.2 matt
437 1.7.2.2 matt mutex_enter(&hp->host_mtx);
438 1.7.2.2 matt error = sdhc_host_reset1(sch);
439 1.7.2.2 matt mutex_exit(&hp->host_mtx);
440 1.7.2.2 matt
441 1.7.2.2 matt return error;
442 1.7.2.2 matt }
443 1.7.2.2 matt
444 1.7.2.2 matt static uint32_t
445 1.7.2.2 matt sdhc_host_ocr(sdmmc_chipset_handle_t sch)
446 1.7.2.2 matt {
447 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
448 1.7.2.2 matt
449 1.7.2.2 matt return hp->ocr;
450 1.7.2.2 matt }
451 1.7.2.2 matt
452 1.7.2.2 matt static int
453 1.7.2.2 matt sdhc_host_maxblklen(sdmmc_chipset_handle_t sch)
454 1.7.2.2 matt {
455 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
456 1.7.2.2 matt
457 1.7.2.2 matt return hp->maxblklen;
458 1.7.2.2 matt }
459 1.7.2.2 matt
460 1.7.2.2 matt /*
461 1.7.2.2 matt * Return non-zero if the card is currently inserted.
462 1.7.2.2 matt */
463 1.7.2.2 matt static int
464 1.7.2.2 matt sdhc_card_detect(sdmmc_chipset_handle_t sch)
465 1.7.2.2 matt {
466 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
467 1.7.2.2 matt int r;
468 1.7.2.2 matt
469 1.7.2.2 matt mutex_enter(&hp->host_mtx);
470 1.7.2.2 matt r = ISSET(HREAD4(hp, SDHC_PRESENT_STATE), SDHC_CARD_INSERTED);
471 1.7.2.2 matt mutex_exit(&hp->host_mtx);
472 1.7.2.2 matt
473 1.7.2.2 matt if (r)
474 1.7.2.2 matt return 1;
475 1.7.2.2 matt return 0;
476 1.7.2.2 matt }
477 1.7.2.2 matt
478 1.7.2.2 matt /*
479 1.7.2.2 matt * Return non-zero if the card is currently write-protected.
480 1.7.2.2 matt */
481 1.7.2.2 matt static int
482 1.7.2.2 matt sdhc_write_protect(sdmmc_chipset_handle_t sch)
483 1.7.2.2 matt {
484 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
485 1.7.2.2 matt int r;
486 1.7.2.2 matt
487 1.7.2.2 matt mutex_enter(&hp->host_mtx);
488 1.7.2.2 matt r = ISSET(HREAD4(hp, SDHC_PRESENT_STATE), SDHC_WRITE_PROTECT_SWITCH);
489 1.7.2.2 matt mutex_exit(&hp->host_mtx);
490 1.7.2.2 matt
491 1.7.2.2 matt if (!r)
492 1.7.2.2 matt return 1;
493 1.7.2.2 matt return 0;
494 1.7.2.2 matt }
495 1.7.2.2 matt
496 1.7.2.2 matt /*
497 1.7.2.2 matt * Set or change SD bus voltage and enable or disable SD bus power.
498 1.7.2.2 matt * Return zero on success.
499 1.7.2.2 matt */
500 1.7.2.2 matt static int
501 1.7.2.2 matt sdhc_bus_power(sdmmc_chipset_handle_t sch, uint32_t ocr)
502 1.7.2.2 matt {
503 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
504 1.7.2.2 matt uint8_t vdd;
505 1.7.2.2 matt int error = 0;
506 1.7.2.2 matt
507 1.7.2.2 matt mutex_enter(&hp->host_mtx);
508 1.7.2.2 matt
509 1.7.2.2 matt /*
510 1.7.2.2 matt * Disable bus power before voltage change.
511 1.7.2.2 matt */
512 1.7.2.2 matt if (!(hp->sc->sc_flags & SDHC_FLAG_NO_PWR0))
513 1.7.2.2 matt HWRITE1(hp, SDHC_POWER_CTL, 0);
514 1.7.2.2 matt
515 1.7.2.2 matt /* If power is disabled, reset the host and return now. */
516 1.7.2.2 matt if (ocr == 0) {
517 1.7.2.2 matt (void)sdhc_host_reset1(hp);
518 1.7.2.2 matt goto out;
519 1.7.2.2 matt }
520 1.7.2.2 matt
521 1.7.2.2 matt /*
522 1.7.2.2 matt * Select the lowest voltage according to capabilities.
523 1.7.2.2 matt */
524 1.7.2.2 matt ocr &= hp->ocr;
525 1.7.2.2 matt if (ISSET(ocr, MMC_OCR_1_7V_1_8V|MMC_OCR_1_8V_1_9V))
526 1.7.2.2 matt vdd = SDHC_VOLTAGE_1_8V;
527 1.7.2.2 matt else if (ISSET(ocr, MMC_OCR_2_9V_3_0V|MMC_OCR_3_0V_3_1V))
528 1.7.2.2 matt vdd = SDHC_VOLTAGE_3_0V;
529 1.7.2.2 matt else if (ISSET(ocr, MMC_OCR_3_2V_3_3V|MMC_OCR_3_3V_3_4V))
530 1.7.2.2 matt vdd = SDHC_VOLTAGE_3_3V;
531 1.7.2.2 matt else {
532 1.7.2.2 matt /* Unsupported voltage level requested. */
533 1.7.2.2 matt error = EINVAL;
534 1.7.2.2 matt goto out;
535 1.7.2.2 matt }
536 1.7.2.2 matt
537 1.7.2.2 matt /*
538 1.7.2.2 matt * Enable bus power. Wait at least 1 ms (or 74 clocks) plus
539 1.7.2.2 matt * voltage ramp until power rises.
540 1.7.2.2 matt */
541 1.7.2.2 matt HWRITE1(hp, SDHC_POWER_CTL,
542 1.7.2.2 matt (vdd << SDHC_VOLTAGE_SHIFT) | SDHC_BUS_POWER);
543 1.7.2.2 matt sdmmc_delay(10000);
544 1.7.2.2 matt
545 1.7.2.2 matt /*
546 1.7.2.2 matt * The host system may not power the bus due to battery low,
547 1.7.2.2 matt * etc. In that case, the host controller should clear the
548 1.7.2.2 matt * bus power bit.
549 1.7.2.2 matt */
550 1.7.2.2 matt if (!ISSET(HREAD1(hp, SDHC_POWER_CTL), SDHC_BUS_POWER)) {
551 1.7.2.2 matt error = ENXIO;
552 1.7.2.2 matt goto out;
553 1.7.2.2 matt }
554 1.7.2.2 matt
555 1.7.2.2 matt out:
556 1.7.2.2 matt mutex_exit(&hp->host_mtx);
557 1.7.2.2 matt
558 1.7.2.2 matt return error;
559 1.7.2.2 matt }
560 1.7.2.2 matt
561 1.7.2.2 matt /*
562 1.7.2.2 matt * Return the smallest possible base clock frequency divisor value
563 1.7.2.2 matt * for the CLOCK_CTL register to produce `freq' (KHz).
564 1.7.2.2 matt */
565 1.7.2.2 matt static int
566 1.7.2.3 matt sdhc_clock_divisor(struct sdhc_host *hp, u_int freq, int *divp)
567 1.7.2.2 matt {
568 1.7.2.2 matt int div;
569 1.7.2.2 matt
570 1.7.2.3 matt if (hp->sc->sc_flags & SDHC_FLAG_HAS_CGM) {
571 1.7.2.3 matt for (div = hp->clkbase / freq; div <= 0x3ff; div++) {
572 1.7.2.3 matt if ((hp->clkbase / div) <= freq) {
573 1.7.2.3 matt *divp = SDHC_SDCLK_CGM
574 1.7.2.3 matt | ((div & 0x300) << SDHC_SDCLK_XDIV_SHIFT)
575 1.7.2.3 matt | ((div & 0x0ff) << SDHC_SDCLK_DIV_SHIFT);
576 1.7.2.3 matt return false;
577 1.7.2.3 matt }
578 1.7.2.3 matt }
579 1.7.2.3 matt /* No divisor found. */
580 1.7.2.3 matt return true;
581 1.7.2.3 matt }
582 1.7.2.3 matt for (div = 1; div <= 256; div *= 2) {
583 1.7.2.3 matt if ((hp->clkbase / div) <= freq) {
584 1.7.2.3 matt *divp = (div / 2) << SDHC_SDCLK_DIV_SHIFT;
585 1.7.2.3 matt return false;
586 1.7.2.3 matt }
587 1.7.2.3 matt }
588 1.7.2.3 matt
589 1.7.2.2 matt /* No divisor found. */
590 1.7.2.3 matt return true;
591 1.7.2.2 matt }
592 1.7.2.2 matt
593 1.7.2.2 matt /*
594 1.7.2.2 matt * Set or change SDCLK frequency or disable the SD clock.
595 1.7.2.2 matt * Return zero on success.
596 1.7.2.2 matt */
597 1.7.2.2 matt static int
598 1.7.2.2 matt sdhc_bus_clock(sdmmc_chipset_handle_t sch, int freq)
599 1.7.2.2 matt {
600 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
601 1.7.2.2 matt int div;
602 1.7.2.2 matt int timo;
603 1.7.2.2 matt int error = 0;
604 1.7.2.2 matt #ifdef DIAGNOSTIC
605 1.7.2.2 matt int ispresent;
606 1.7.2.2 matt #endif
607 1.7.2.2 matt
608 1.7.2.2 matt #ifdef DIAGNOSTIC
609 1.7.2.2 matt mutex_enter(&hp->host_mtx);
610 1.7.2.2 matt ispresent = ISSET(HREAD4(hp, SDHC_PRESENT_STATE), SDHC_CMD_INHIBIT_MASK);
611 1.7.2.2 matt mutex_exit(&hp->host_mtx);
612 1.7.2.2 matt
613 1.7.2.2 matt /* Must not stop the clock if commands are in progress. */
614 1.7.2.2 matt if (ispresent && sdhc_card_detect(hp))
615 1.7.2.2 matt printf("%s: sdhc_sdclk_frequency_select: command in progress\n",
616 1.7.2.2 matt device_xname(hp->sc->sc_dev));
617 1.7.2.2 matt #endif
618 1.7.2.2 matt
619 1.7.2.2 matt mutex_enter(&hp->host_mtx);
620 1.7.2.2 matt
621 1.7.2.2 matt /*
622 1.7.2.2 matt * Stop SD clock before changing the frequency.
623 1.7.2.2 matt */
624 1.7.2.2 matt HWRITE2(hp, SDHC_CLOCK_CTL, 0);
625 1.7.2.2 matt if (freq == SDMMC_SDCLK_OFF)
626 1.7.2.2 matt goto out;
627 1.7.2.2 matt
628 1.7.2.2 matt /*
629 1.7.2.2 matt * Set the minimum base clock frequency divisor.
630 1.7.2.2 matt */
631 1.7.2.3 matt if (sdhc_clock_divisor(hp, freq, &div)) {
632 1.7.2.2 matt /* Invalid base clock frequency or `freq' value. */
633 1.7.2.2 matt error = EINVAL;
634 1.7.2.2 matt goto out;
635 1.7.2.2 matt }
636 1.7.2.2 matt HWRITE2(hp, SDHC_CLOCK_CTL, div << SDHC_SDCLK_DIV_SHIFT);
637 1.7.2.2 matt
638 1.7.2.2 matt /*
639 1.7.2.2 matt * Start internal clock. Wait 10ms for stabilization.
640 1.7.2.2 matt */
641 1.7.2.2 matt HSET2(hp, SDHC_CLOCK_CTL, SDHC_INTCLK_ENABLE);
642 1.7.2.2 matt for (timo = 1000; timo > 0; timo--) {
643 1.7.2.2 matt if (ISSET(HREAD2(hp, SDHC_CLOCK_CTL), SDHC_INTCLK_STABLE))
644 1.7.2.2 matt break;
645 1.7.2.2 matt sdmmc_delay(10);
646 1.7.2.2 matt }
647 1.7.2.2 matt if (timo == 0) {
648 1.7.2.2 matt error = ETIMEDOUT;
649 1.7.2.2 matt goto out;
650 1.7.2.2 matt }
651 1.7.2.2 matt
652 1.7.2.2 matt /*
653 1.7.2.2 matt * Enable SD clock.
654 1.7.2.2 matt */
655 1.7.2.2 matt HSET2(hp, SDHC_CLOCK_CTL, SDHC_SDCLK_ENABLE);
656 1.7.2.2 matt
657 1.7.2.2 matt out:
658 1.7.2.2 matt mutex_exit(&hp->host_mtx);
659 1.7.2.2 matt
660 1.7.2.2 matt return error;
661 1.7.2.2 matt }
662 1.7.2.2 matt
663 1.7.2.2 matt static int
664 1.7.2.2 matt sdhc_bus_width(sdmmc_chipset_handle_t sch, int width)
665 1.7.2.2 matt {
666 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
667 1.7.2.2 matt int reg;
668 1.7.2.2 matt
669 1.7.2.2 matt switch (width) {
670 1.7.2.2 matt case 1:
671 1.7.2.2 matt case 4:
672 1.7.2.2 matt break;
673 1.7.2.2 matt
674 1.7.2.2 matt default:
675 1.7.2.2 matt DPRINTF(0,("%s: unsupported bus width (%d)\n",
676 1.7.2.2 matt HDEVNAME(hp), width));
677 1.7.2.2 matt return 1;
678 1.7.2.2 matt }
679 1.7.2.2 matt
680 1.7.2.2 matt mutex_enter(&hp->host_mtx);
681 1.7.2.2 matt reg = HREAD1(hp, SDHC_POWER_CTL);
682 1.7.2.2 matt reg &= ~SDHC_4BIT_MODE;
683 1.7.2.2 matt if (width == 4)
684 1.7.2.2 matt reg |= SDHC_4BIT_MODE;
685 1.7.2.2 matt HWRITE1(hp, SDHC_POWER_CTL, reg);
686 1.7.2.2 matt mutex_exit(&hp->host_mtx);
687 1.7.2.2 matt
688 1.7.2.2 matt return 0;
689 1.7.2.2 matt }
690 1.7.2.2 matt
691 1.7.2.2 matt static void
692 1.7.2.2 matt sdhc_card_enable_intr(sdmmc_chipset_handle_t sch, int enable)
693 1.7.2.2 matt {
694 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
695 1.7.2.2 matt
696 1.7.2.2 matt mutex_enter(&hp->host_mtx);
697 1.7.2.2 matt if (enable) {
698 1.7.2.2 matt HSET2(hp, SDHC_NINTR_STATUS_EN, SDHC_CARD_INTERRUPT);
699 1.7.2.2 matt HSET2(hp, SDHC_NINTR_SIGNAL_EN, SDHC_CARD_INTERRUPT);
700 1.7.2.2 matt } else {
701 1.7.2.2 matt HCLR2(hp, SDHC_NINTR_SIGNAL_EN, SDHC_CARD_INTERRUPT);
702 1.7.2.2 matt HCLR2(hp, SDHC_NINTR_STATUS_EN, SDHC_CARD_INTERRUPT);
703 1.7.2.2 matt }
704 1.7.2.2 matt mutex_exit(&hp->host_mtx);
705 1.7.2.2 matt }
706 1.7.2.2 matt
707 1.7.2.2 matt static void
708 1.7.2.2 matt sdhc_card_intr_ack(sdmmc_chipset_handle_t sch)
709 1.7.2.2 matt {
710 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
711 1.7.2.2 matt
712 1.7.2.2 matt mutex_enter(&hp->host_mtx);
713 1.7.2.2 matt HSET2(hp, SDHC_NINTR_STATUS_EN, SDHC_CARD_INTERRUPT);
714 1.7.2.2 matt mutex_exit(&hp->host_mtx);
715 1.7.2.2 matt }
716 1.7.2.2 matt
717 1.7.2.2 matt static int
718 1.7.2.2 matt sdhc_wait_state(struct sdhc_host *hp, uint32_t mask, uint32_t value)
719 1.7.2.2 matt {
720 1.7.2.2 matt uint32_t state;
721 1.7.2.2 matt int timeout;
722 1.7.2.2 matt
723 1.7.2.2 matt for (timeout = 10; timeout > 0; timeout--) {
724 1.7.2.2 matt if (((state = HREAD4(hp, SDHC_PRESENT_STATE)) & mask) == value)
725 1.7.2.2 matt return 0;
726 1.7.2.2 matt sdmmc_delay(10000);
727 1.7.2.2 matt }
728 1.7.2.2 matt DPRINTF(0,("%s: timeout waiting for %x (state=%x)\n", HDEVNAME(hp),
729 1.7.2.2 matt value, state));
730 1.7.2.2 matt return ETIMEDOUT;
731 1.7.2.2 matt }
732 1.7.2.2 matt
733 1.7.2.2 matt static void
734 1.7.2.2 matt sdhc_exec_command(sdmmc_chipset_handle_t sch, struct sdmmc_command *cmd)
735 1.7.2.2 matt {
736 1.7.2.2 matt struct sdhc_host *hp = (struct sdhc_host *)sch;
737 1.7.2.2 matt int error;
738 1.7.2.2 matt
739 1.7.2.2 matt /*
740 1.7.2.2 matt * Start the MMC command, or mark `cmd' as failed and return.
741 1.7.2.2 matt */
742 1.7.2.2 matt error = sdhc_start_command(hp, cmd);
743 1.7.2.2 matt if (error) {
744 1.7.2.2 matt cmd->c_error = error;
745 1.7.2.2 matt goto out;
746 1.7.2.2 matt }
747 1.7.2.2 matt
748 1.7.2.2 matt /*
749 1.7.2.2 matt * Wait until the command phase is done, or until the command
750 1.7.2.2 matt * is marked done for any other reason.
751 1.7.2.2 matt */
752 1.7.2.2 matt if (!sdhc_wait_intr(hp, SDHC_COMMAND_COMPLETE, SDHC_COMMAND_TIMEOUT)) {
753 1.7.2.2 matt cmd->c_error = ETIMEDOUT;
754 1.7.2.2 matt goto out;
755 1.7.2.2 matt }
756 1.7.2.2 matt
757 1.7.2.2 matt /*
758 1.7.2.2 matt * The host controller removes bits [0:7] from the response
759 1.7.2.2 matt * data (CRC) and we pass the data up unchanged to the bus
760 1.7.2.2 matt * driver (without padding).
761 1.7.2.2 matt */
762 1.7.2.2 matt mutex_enter(&hp->host_mtx);
763 1.7.2.2 matt if (cmd->c_error == 0 && ISSET(cmd->c_flags, SCF_RSP_PRESENT)) {
764 1.7.2.2 matt if (ISSET(cmd->c_flags, SCF_RSP_136)) {
765 1.7.2.2 matt uint8_t *p = (uint8_t *)cmd->c_resp;
766 1.7.2.2 matt int i;
767 1.7.2.2 matt
768 1.7.2.2 matt for (i = 0; i < 15; i++)
769 1.7.2.2 matt *p++ = HREAD1(hp, SDHC_RESPONSE + i);
770 1.7.2.2 matt } else {
771 1.7.2.2 matt cmd->c_resp[0] = HREAD4(hp, SDHC_RESPONSE);
772 1.7.2.2 matt }
773 1.7.2.2 matt }
774 1.7.2.2 matt mutex_exit(&hp->host_mtx);
775 1.7.2.2 matt DPRINTF(1,("%s: resp = %08x\n", HDEVNAME(hp), cmd->c_resp[0]));
776 1.7.2.2 matt
777 1.7.2.2 matt /*
778 1.7.2.2 matt * If the command has data to transfer in any direction,
779 1.7.2.2 matt * execute the transfer now.
780 1.7.2.2 matt */
781 1.7.2.2 matt if (cmd->c_error == 0 && cmd->c_data != NULL)
782 1.7.2.2 matt sdhc_transfer_data(hp, cmd);
783 1.7.2.2 matt
784 1.7.2.2 matt out:
785 1.7.2.2 matt mutex_enter(&hp->host_mtx);
786 1.7.2.2 matt /* Turn off the LED. */
787 1.7.2.2 matt HCLR1(hp, SDHC_HOST_CTL, SDHC_LED_ON);
788 1.7.2.2 matt mutex_exit(&hp->host_mtx);
789 1.7.2.2 matt SET(cmd->c_flags, SCF_ITSDONE);
790 1.7.2.2 matt
791 1.7.2.2 matt DPRINTF(1,("%s: cmd %d %s (flags=%08x error=%d)\n", HDEVNAME(hp),
792 1.7.2.2 matt cmd->c_opcode, (cmd->c_error == 0) ? "done" : "abort",
793 1.7.2.2 matt cmd->c_flags, cmd->c_error));
794 1.7.2.2 matt }
795 1.7.2.2 matt
796 1.7.2.2 matt static int
797 1.7.2.2 matt sdhc_start_command(struct sdhc_host *hp, struct sdmmc_command *cmd)
798 1.7.2.2 matt {
799 1.7.2.2 matt uint16_t blksize = 0;
800 1.7.2.2 matt uint16_t blkcount = 0;
801 1.7.2.2 matt uint16_t mode;
802 1.7.2.2 matt uint16_t command;
803 1.7.2.2 matt int error;
804 1.7.2.2 matt
805 1.7.2.2 matt DPRINTF(1,("%s: start cmd %d arg=%08x data=%p dlen=%d flags=%08x "
806 1.7.2.2 matt "proc=%p \"%s\"\n", HDEVNAME(hp), cmd->c_opcode, cmd->c_arg,
807 1.7.2.2 matt cmd->c_data, cmd->c_datalen, cmd->c_flags, curproc,
808 1.7.2.2 matt curproc ? curproc->p_comm : ""));
809 1.7.2.2 matt
810 1.7.2.2 matt /*
811 1.7.2.2 matt * The maximum block length for commands should be the minimum
812 1.7.2.2 matt * of the host buffer size and the card buffer size. (1.7.2)
813 1.7.2.2 matt */
814 1.7.2.2 matt
815 1.7.2.2 matt /* Fragment the data into proper blocks. */
816 1.7.2.2 matt if (cmd->c_datalen > 0) {
817 1.7.2.2 matt blksize = MIN(cmd->c_datalen, cmd->c_blklen);
818 1.7.2.2 matt blkcount = cmd->c_datalen / blksize;
819 1.7.2.2 matt if (cmd->c_datalen % blksize > 0) {
820 1.7.2.2 matt /* XXX: Split this command. (1.7.4) */
821 1.7.2.2 matt aprint_error_dev(hp->sc->sc_dev,
822 1.7.2.2 matt "data not a multiple of %u bytes\n", blksize);
823 1.7.2.2 matt return EINVAL;
824 1.7.2.2 matt }
825 1.7.2.2 matt }
826 1.7.2.2 matt
827 1.7.2.2 matt /* Check limit imposed by 9-bit block count. (1.7.2) */
828 1.7.2.2 matt if (blkcount > SDHC_BLOCK_COUNT_MAX) {
829 1.7.2.2 matt aprint_error_dev(hp->sc->sc_dev, "too much data\n");
830 1.7.2.2 matt return EINVAL;
831 1.7.2.2 matt }
832 1.7.2.2 matt
833 1.7.2.2 matt /* Prepare transfer mode register value. (2.2.5) */
834 1.7.2.2 matt mode = 0;
835 1.7.2.2 matt if (ISSET(cmd->c_flags, SCF_CMD_READ))
836 1.7.2.2 matt mode |= SDHC_READ_MODE;
837 1.7.2.2 matt if (blkcount > 0) {
838 1.7.2.2 matt mode |= SDHC_BLOCK_COUNT_ENABLE;
839 1.7.2.2 matt if (blkcount > 1) {
840 1.7.2.2 matt mode |= SDHC_MULTI_BLOCK_MODE;
841 1.7.2.2 matt /* XXX only for memory commands? */
842 1.7.2.2 matt mode |= SDHC_AUTO_CMD12_ENABLE;
843 1.7.2.2 matt }
844 1.7.2.2 matt }
845 1.7.2.2 matt #if notyet
846 1.7.2.2 matt if (cmd->c_dmap != NULL && cmd->c_datalen > 0)
847 1.7.2.2 matt mode |= SDHC_DMA_ENABLE;
848 1.7.2.2 matt #endif
849 1.7.2.2 matt
850 1.7.2.2 matt /*
851 1.7.2.2 matt * Prepare command register value. (2.2.6)
852 1.7.2.2 matt */
853 1.7.2.2 matt command =
854 1.7.2.2 matt (cmd->c_opcode & SDHC_COMMAND_INDEX_MASK) << SDHC_COMMAND_INDEX_SHIFT;
855 1.7.2.2 matt
856 1.7.2.2 matt if (ISSET(cmd->c_flags, SCF_RSP_CRC))
857 1.7.2.2 matt command |= SDHC_CRC_CHECK_ENABLE;
858 1.7.2.2 matt if (ISSET(cmd->c_flags, SCF_RSP_IDX))
859 1.7.2.2 matt command |= SDHC_INDEX_CHECK_ENABLE;
860 1.7.2.2 matt if (cmd->c_data != NULL)
861 1.7.2.2 matt command |= SDHC_DATA_PRESENT_SELECT;
862 1.7.2.2 matt
863 1.7.2.2 matt if (!ISSET(cmd->c_flags, SCF_RSP_PRESENT))
864 1.7.2.2 matt command |= SDHC_NO_RESPONSE;
865 1.7.2.2 matt else if (ISSET(cmd->c_flags, SCF_RSP_136))
866 1.7.2.2 matt command |= SDHC_RESP_LEN_136;
867 1.7.2.2 matt else if (ISSET(cmd->c_flags, SCF_RSP_BSY))
868 1.7.2.2 matt command |= SDHC_RESP_LEN_48_CHK_BUSY;
869 1.7.2.2 matt else
870 1.7.2.2 matt command |= SDHC_RESP_LEN_48;
871 1.7.2.2 matt
872 1.7.2.2 matt /* Wait until command and data inhibit bits are clear. (1.5) */
873 1.7.2.2 matt error = sdhc_wait_state(hp, SDHC_CMD_INHIBIT_MASK, 0);
874 1.7.2.2 matt if (error)
875 1.7.2.2 matt return error;
876 1.7.2.2 matt
877 1.7.2.2 matt DPRINTF(1,("%s: writing cmd: blksize=%d blkcnt=%d mode=%04x cmd=%04x\n",
878 1.7.2.2 matt HDEVNAME(hp), blksize, blkcount, mode, command));
879 1.7.2.2 matt
880 1.7.2.2 matt mutex_enter(&hp->host_mtx);
881 1.7.2.2 matt
882 1.7.2.2 matt /* Alert the user not to remove the card. */
883 1.7.2.2 matt HSET1(hp, SDHC_HOST_CTL, SDHC_LED_ON);
884 1.7.2.2 matt
885 1.7.2.2 matt /*
886 1.7.2.2 matt * Start a CPU data transfer. Writing to the high order byte
887 1.7.2.2 matt * of the SDHC_COMMAND register triggers the SD command. (1.5)
888 1.7.2.2 matt */
889 1.7.2.2 matt HWRITE2(hp, SDHC_TRANSFER_MODE, mode);
890 1.7.2.2 matt HWRITE2(hp, SDHC_BLOCK_SIZE, blksize);
891 1.7.2.2 matt if (blkcount > 1)
892 1.7.2.2 matt HWRITE2(hp, SDHC_BLOCK_COUNT, blkcount);
893 1.7.2.2 matt HWRITE4(hp, SDHC_ARGUMENT, cmd->c_arg);
894 1.7.2.2 matt HWRITE2(hp, SDHC_COMMAND, command);
895 1.7.2.2 matt
896 1.7.2.2 matt mutex_exit(&hp->host_mtx);
897 1.7.2.2 matt
898 1.7.2.2 matt return 0;
899 1.7.2.2 matt }
900 1.7.2.2 matt
901 1.7.2.2 matt static void
902 1.7.2.2 matt sdhc_transfer_data(struct sdhc_host *hp, struct sdmmc_command *cmd)
903 1.7.2.2 matt {
904 1.7.2.2 matt int error;
905 1.7.2.2 matt
906 1.7.2.2 matt DPRINTF(1,("%s: data transfer: resp=%08x datalen=%u\n", HDEVNAME(hp),
907 1.7.2.2 matt MMC_R1(cmd->c_resp), cmd->c_datalen));
908 1.7.2.2 matt
909 1.7.2.2 matt #ifdef SDHC_DEBUG
910 1.7.2.2 matt /* XXX I forgot why I wanted to know when this happens :-( */
911 1.7.2.2 matt if ((cmd->c_opcode == 52 || cmd->c_opcode == 53) &&
912 1.7.2.2 matt ISSET(MMC_R1(cmd->c_resp), 0xcb00)) {
913 1.7.2.2 matt aprint_error_dev(hp->sc->sc_dev,
914 1.7.2.2 matt "CMD52/53 error response flags %#x\n",
915 1.7.2.2 matt MMC_R1(cmd->c_resp) & 0xff00);
916 1.7.2.2 matt }
917 1.7.2.2 matt #endif
918 1.7.2.2 matt
919 1.7.2.2 matt error = sdhc_transfer_data_pio(hp, cmd);
920 1.7.2.2 matt if (error)
921 1.7.2.2 matt cmd->c_error = error;
922 1.7.2.2 matt SET(cmd->c_flags, SCF_ITSDONE);
923 1.7.2.2 matt
924 1.7.2.2 matt DPRINTF(1,("%s: data transfer done (error=%d)\n",
925 1.7.2.2 matt HDEVNAME(hp), cmd->c_error));
926 1.7.2.2 matt }
927 1.7.2.2 matt
928 1.7.2.2 matt static int
929 1.7.2.2 matt sdhc_transfer_data_pio(struct sdhc_host *hp, struct sdmmc_command *cmd)
930 1.7.2.2 matt {
931 1.7.2.2 matt uint8_t *data = cmd->c_data;
932 1.7.2.2 matt int len, datalen;
933 1.7.2.2 matt int mask;
934 1.7.2.2 matt int error = 0;
935 1.7.2.2 matt
936 1.7.2.2 matt mask = ISSET(cmd->c_flags, SCF_CMD_READ) ?
937 1.7.2.2 matt SDHC_BUFFER_READ_ENABLE : SDHC_BUFFER_WRITE_ENABLE;
938 1.7.2.2 matt datalen = cmd->c_datalen;
939 1.7.2.2 matt
940 1.7.2.2 matt while (datalen > 0) {
941 1.7.2.2 matt if (!sdhc_wait_intr(hp,
942 1.7.2.2 matt SDHC_BUFFER_READ_READY|SDHC_BUFFER_WRITE_READY,
943 1.7.2.2 matt SDHC_BUFFER_TIMEOUT)) {
944 1.7.2.2 matt error = ETIMEDOUT;
945 1.7.2.2 matt break;
946 1.7.2.2 matt }
947 1.7.2.2 matt
948 1.7.2.2 matt error = sdhc_wait_state(hp, mask, mask);
949 1.7.2.2 matt if (error)
950 1.7.2.2 matt break;
951 1.7.2.2 matt
952 1.7.2.2 matt len = MIN(datalen, cmd->c_blklen);
953 1.7.2.2 matt if (ISSET(cmd->c_flags, SCF_CMD_READ))
954 1.7.2.2 matt sdhc_read_data_pio(hp, data, len);
955 1.7.2.2 matt else
956 1.7.2.2 matt sdhc_write_data_pio(hp, data, len);
957 1.7.2.2 matt
958 1.7.2.2 matt data += len;
959 1.7.2.2 matt datalen -= len;
960 1.7.2.2 matt }
961 1.7.2.2 matt
962 1.7.2.2 matt if (error == 0 && !sdhc_wait_intr(hp, SDHC_TRANSFER_COMPLETE,
963 1.7.2.2 matt SDHC_TRANSFER_TIMEOUT))
964 1.7.2.2 matt error = ETIMEDOUT;
965 1.7.2.2 matt
966 1.7.2.2 matt return error;
967 1.7.2.2 matt }
968 1.7.2.2 matt
969 1.7.2.2 matt static void
970 1.7.2.2 matt sdhc_read_data_pio(struct sdhc_host *hp, uint8_t *data, int datalen)
971 1.7.2.2 matt {
972 1.7.2.2 matt
973 1.7.2.2 matt if (((__uintptr_t)data & 3) == 0) {
974 1.7.2.2 matt while (datalen > 3) {
975 1.7.2.2 matt *(uint32_t *)data = HREAD4(hp, SDHC_DATA);
976 1.7.2.2 matt data += 4;
977 1.7.2.2 matt datalen -= 4;
978 1.7.2.2 matt }
979 1.7.2.2 matt if (datalen > 1) {
980 1.7.2.2 matt *(uint16_t *)data = HREAD2(hp, SDHC_DATA);
981 1.7.2.2 matt data += 2;
982 1.7.2.2 matt datalen -= 2;
983 1.7.2.2 matt }
984 1.7.2.2 matt if (datalen > 0) {
985 1.7.2.2 matt *data = HREAD1(hp, SDHC_DATA);
986 1.7.2.2 matt data += 1;
987 1.7.2.2 matt datalen -= 1;
988 1.7.2.2 matt }
989 1.7.2.2 matt } else if (((__uintptr_t)data & 1) == 0) {
990 1.7.2.2 matt while (datalen > 1) {
991 1.7.2.2 matt *(uint16_t *)data = HREAD2(hp, SDHC_DATA);
992 1.7.2.2 matt data += 2;
993 1.7.2.2 matt datalen -= 2;
994 1.7.2.2 matt }
995 1.7.2.2 matt if (datalen > 0) {
996 1.7.2.2 matt *data = HREAD1(hp, SDHC_DATA);
997 1.7.2.2 matt data += 1;
998 1.7.2.2 matt datalen -= 1;
999 1.7.2.2 matt }
1000 1.7.2.2 matt } else {
1001 1.7.2.2 matt while (datalen > 0) {
1002 1.7.2.2 matt *data = HREAD1(hp, SDHC_DATA);
1003 1.7.2.2 matt data += 1;
1004 1.7.2.2 matt datalen -= 1;
1005 1.7.2.2 matt }
1006 1.7.2.2 matt }
1007 1.7.2.2 matt }
1008 1.7.2.2 matt
1009 1.7.2.2 matt static void
1010 1.7.2.2 matt sdhc_write_data_pio(struct sdhc_host *hp, uint8_t *data, int datalen)
1011 1.7.2.2 matt {
1012 1.7.2.2 matt
1013 1.7.2.2 matt if (((__uintptr_t)data & 3) == 0) {
1014 1.7.2.2 matt while (datalen > 3) {
1015 1.7.2.2 matt HWRITE4(hp, SDHC_DATA, *(uint32_t *)data);
1016 1.7.2.2 matt data += 4;
1017 1.7.2.2 matt datalen -= 4;
1018 1.7.2.2 matt }
1019 1.7.2.2 matt if (datalen > 1) {
1020 1.7.2.2 matt HWRITE2(hp, SDHC_DATA, *(uint16_t *)data);
1021 1.7.2.2 matt data += 2;
1022 1.7.2.2 matt datalen -= 2;
1023 1.7.2.2 matt }
1024 1.7.2.2 matt if (datalen > 0) {
1025 1.7.2.2 matt HWRITE1(hp, SDHC_DATA, *data);
1026 1.7.2.2 matt data += 1;
1027 1.7.2.2 matt datalen -= 1;
1028 1.7.2.2 matt }
1029 1.7.2.2 matt } else if (((__uintptr_t)data & 1) == 0) {
1030 1.7.2.2 matt while (datalen > 1) {
1031 1.7.2.2 matt HWRITE2(hp, SDHC_DATA, *(uint16_t *)data);
1032 1.7.2.2 matt data += 2;
1033 1.7.2.2 matt datalen -= 2;
1034 1.7.2.2 matt }
1035 1.7.2.2 matt if (datalen > 0) {
1036 1.7.2.2 matt HWRITE1(hp, SDHC_DATA, *data);
1037 1.7.2.2 matt data += 1;
1038 1.7.2.2 matt datalen -= 1;
1039 1.7.2.2 matt }
1040 1.7.2.2 matt } else {
1041 1.7.2.2 matt while (datalen > 0) {
1042 1.7.2.2 matt HWRITE1(hp, SDHC_DATA, *data);
1043 1.7.2.2 matt data += 1;
1044 1.7.2.2 matt datalen -= 1;
1045 1.7.2.2 matt }
1046 1.7.2.2 matt }
1047 1.7.2.2 matt }
1048 1.7.2.2 matt
1049 1.7.2.2 matt /* Prepare for another command. */
1050 1.7.2.2 matt static int
1051 1.7.2.2 matt sdhc_soft_reset(struct sdhc_host *hp, int mask)
1052 1.7.2.2 matt {
1053 1.7.2.2 matt int timo;
1054 1.7.2.2 matt
1055 1.7.2.2 matt DPRINTF(1,("%s: software reset reg=%08x\n", HDEVNAME(hp), mask));
1056 1.7.2.2 matt
1057 1.7.2.2 matt HWRITE1(hp, SDHC_SOFTWARE_RESET, mask);
1058 1.7.2.2 matt for (timo = 10; timo > 0; timo--) {
1059 1.7.2.2 matt if (!ISSET(HREAD1(hp, SDHC_SOFTWARE_RESET), mask))
1060 1.7.2.2 matt break;
1061 1.7.2.2 matt sdmmc_delay(10000);
1062 1.7.2.2 matt HWRITE1(hp, SDHC_SOFTWARE_RESET, 0);
1063 1.7.2.2 matt }
1064 1.7.2.2 matt if (timo == 0) {
1065 1.7.2.2 matt DPRINTF(1,("%s: timeout reg=%08x\n", HDEVNAME(hp),
1066 1.7.2.2 matt HREAD1(hp, SDHC_SOFTWARE_RESET)));
1067 1.7.2.2 matt HWRITE1(hp, SDHC_SOFTWARE_RESET, 0);
1068 1.7.2.2 matt return ETIMEDOUT;
1069 1.7.2.2 matt }
1070 1.7.2.2 matt
1071 1.7.2.2 matt return 0;
1072 1.7.2.2 matt }
1073 1.7.2.2 matt
1074 1.7.2.2 matt static int
1075 1.7.2.2 matt sdhc_wait_intr(struct sdhc_host *hp, int mask, int timo)
1076 1.7.2.2 matt {
1077 1.7.2.2 matt int status;
1078 1.7.2.2 matt
1079 1.7.2.2 matt mask |= SDHC_ERROR_INTERRUPT;
1080 1.7.2.2 matt
1081 1.7.2.2 matt mutex_enter(&hp->intr_mtx);
1082 1.7.2.2 matt status = hp->intr_status & mask;
1083 1.7.2.2 matt while (status == 0) {
1084 1.7.2.2 matt if (cv_timedwait(&hp->intr_cv, &hp->intr_mtx, timo)
1085 1.7.2.2 matt == EWOULDBLOCK) {
1086 1.7.2.2 matt status |= SDHC_ERROR_INTERRUPT;
1087 1.7.2.2 matt break;
1088 1.7.2.2 matt }
1089 1.7.2.2 matt status = hp->intr_status & mask;
1090 1.7.2.2 matt }
1091 1.7.2.2 matt hp->intr_status &= ~status;
1092 1.7.2.2 matt
1093 1.7.2.2 matt DPRINTF(2,("%s: intr status %#x error %#x\n", HDEVNAME(hp), status,
1094 1.7.2.2 matt hp->intr_error_status));
1095 1.7.2.2 matt
1096 1.7.2.2 matt /* Command timeout has higher priority than command complete. */
1097 1.7.2.2 matt if (ISSET(status, SDHC_ERROR_INTERRUPT)) {
1098 1.7.2.2 matt hp->intr_error_status = 0;
1099 1.7.2.2 matt (void)sdhc_soft_reset(hp, SDHC_RESET_DAT|SDHC_RESET_CMD);
1100 1.7.2.2 matt status = 0;
1101 1.7.2.2 matt }
1102 1.7.2.2 matt mutex_exit(&hp->intr_mtx);
1103 1.7.2.2 matt
1104 1.7.2.2 matt return status;
1105 1.7.2.2 matt }
1106 1.7.2.2 matt
1107 1.7.2.2 matt /*
1108 1.7.2.2 matt * Established by attachment driver at interrupt priority IPL_SDMMC.
1109 1.7.2.2 matt */
1110 1.7.2.2 matt int
1111 1.7.2.2 matt sdhc_intr(void *arg)
1112 1.7.2.2 matt {
1113 1.7.2.2 matt struct sdhc_softc *sc = (struct sdhc_softc *)arg;
1114 1.7.2.2 matt struct sdhc_host *hp;
1115 1.7.2.2 matt int host;
1116 1.7.2.2 matt int done = 0;
1117 1.7.2.2 matt uint16_t status;
1118 1.7.2.2 matt uint16_t error;
1119 1.7.2.2 matt
1120 1.7.2.2 matt /* We got an interrupt, but we don't know from which slot. */
1121 1.7.2.2 matt for (host = 0; host < sc->sc_nhosts; host++) {
1122 1.7.2.2 matt hp = sc->sc_host[host];
1123 1.7.2.2 matt if (hp == NULL)
1124 1.7.2.2 matt continue;
1125 1.7.2.2 matt
1126 1.7.2.2 matt /* Find out which interrupts are pending. */
1127 1.7.2.2 matt status = HREAD2(hp, SDHC_NINTR_STATUS);
1128 1.7.2.2 matt if (!ISSET(status, SDHC_NINTR_STATUS_MASK))
1129 1.7.2.2 matt continue; /* no interrupt for us */
1130 1.7.2.2 matt
1131 1.7.2.2 matt /* Acknowledge the interrupts we are about to handle. */
1132 1.7.2.2 matt HWRITE2(hp, SDHC_NINTR_STATUS, status);
1133 1.7.2.2 matt DPRINTF(2,("%s: interrupt status=%x\n", HDEVNAME(hp),
1134 1.7.2.2 matt status));
1135 1.7.2.2 matt
1136 1.7.2.2 matt if (!ISSET(status, SDHC_NINTR_STATUS_MASK))
1137 1.7.2.2 matt continue;
1138 1.7.2.2 matt
1139 1.7.2.2 matt /* Claim this interrupt. */
1140 1.7.2.2 matt done = 1;
1141 1.7.2.2 matt
1142 1.7.2.2 matt /*
1143 1.7.2.2 matt * Service error interrupts.
1144 1.7.2.2 matt */
1145 1.7.2.2 matt if (ISSET(status, SDHC_ERROR_INTERRUPT)) {
1146 1.7.2.2 matt /* Acknowledge error interrupts. */
1147 1.7.2.2 matt error = HREAD2(hp, SDHC_EINTR_STATUS);
1148 1.7.2.2 matt HWRITE2(hp, SDHC_EINTR_STATUS, error);
1149 1.7.2.2 matt DPRINTF(2,("%s: error interrupt, status=%x\n",
1150 1.7.2.2 matt HDEVNAME(hp), error));
1151 1.7.2.2 matt
1152 1.7.2.2 matt if (ISSET(error, SDHC_CMD_TIMEOUT_ERROR|
1153 1.7.2.2 matt SDHC_DATA_TIMEOUT_ERROR)) {
1154 1.7.2.2 matt hp->intr_error_status |= error;
1155 1.7.2.2 matt hp->intr_status |= status;
1156 1.7.2.2 matt cv_broadcast(&hp->intr_cv);
1157 1.7.2.2 matt }
1158 1.7.2.2 matt }
1159 1.7.2.2 matt
1160 1.7.2.2 matt /*
1161 1.7.2.2 matt * Wake up the sdmmc event thread to scan for cards.
1162 1.7.2.2 matt */
1163 1.7.2.2 matt if (ISSET(status, SDHC_CARD_REMOVAL|SDHC_CARD_INSERTION))
1164 1.7.2.2 matt sdmmc_needs_discover(hp->sdmmc);
1165 1.7.2.2 matt
1166 1.7.2.2 matt /*
1167 1.7.2.2 matt * Wake up the blocking process to service command
1168 1.7.2.2 matt * related interrupt(s).
1169 1.7.2.2 matt */
1170 1.7.2.2 matt if (ISSET(status, SDHC_BUFFER_READ_READY|
1171 1.7.2.2 matt SDHC_BUFFER_WRITE_READY|SDHC_COMMAND_COMPLETE|
1172 1.7.2.2 matt SDHC_TRANSFER_COMPLETE|SDHC_DMA_INTERRUPT)) {
1173 1.7.2.2 matt hp->intr_status |= status;
1174 1.7.2.2 matt cv_broadcast(&hp->intr_cv);
1175 1.7.2.2 matt }
1176 1.7.2.2 matt
1177 1.7.2.2 matt /*
1178 1.7.2.2 matt * Service SD card interrupts.
1179 1.7.2.2 matt */
1180 1.7.2.2 matt if (ISSET(status, SDHC_CARD_INTERRUPT)) {
1181 1.7.2.2 matt DPRINTF(0,("%s: card interrupt\n", HDEVNAME(hp)));
1182 1.7.2.2 matt HCLR2(hp, SDHC_NINTR_STATUS_EN, SDHC_CARD_INTERRUPT);
1183 1.7.2.2 matt sdmmc_card_intr(hp->sdmmc);
1184 1.7.2.2 matt }
1185 1.7.2.2 matt }
1186 1.7.2.2 matt
1187 1.7.2.2 matt return done;
1188 1.7.2.2 matt }
1189 1.7.2.2 matt
1190 1.7.2.2 matt #ifdef SDHC_DEBUG
1191 1.7.2.2 matt void
1192 1.7.2.2 matt sdhc_dump_regs(struct sdhc_host *hp)
1193 1.7.2.2 matt {
1194 1.7.2.2 matt
1195 1.7.2.2 matt printf("0x%02x PRESENT_STATE: %x\n", SDHC_PRESENT_STATE,
1196 1.7.2.2 matt HREAD4(hp, SDHC_PRESENT_STATE));
1197 1.7.2.2 matt printf("0x%02x POWER_CTL: %x\n", SDHC_POWER_CTL,
1198 1.7.2.2 matt HREAD1(hp, SDHC_POWER_CTL));
1199 1.7.2.2 matt printf("0x%02x NINTR_STATUS: %x\n", SDHC_NINTR_STATUS,
1200 1.7.2.2 matt HREAD2(hp, SDHC_NINTR_STATUS));
1201 1.7.2.2 matt printf("0x%02x EINTR_STATUS: %x\n", SDHC_EINTR_STATUS,
1202 1.7.2.2 matt HREAD2(hp, SDHC_EINTR_STATUS));
1203 1.7.2.2 matt printf("0x%02x NINTR_STATUS_EN: %x\n", SDHC_NINTR_STATUS_EN,
1204 1.7.2.2 matt HREAD2(hp, SDHC_NINTR_STATUS_EN));
1205 1.7.2.2 matt printf("0x%02x EINTR_STATUS_EN: %x\n", SDHC_EINTR_STATUS_EN,
1206 1.7.2.2 matt HREAD2(hp, SDHC_EINTR_STATUS_EN));
1207 1.7.2.2 matt printf("0x%02x NINTR_SIGNAL_EN: %x\n", SDHC_NINTR_SIGNAL_EN,
1208 1.7.2.2 matt HREAD2(hp, SDHC_NINTR_SIGNAL_EN));
1209 1.7.2.2 matt printf("0x%02x EINTR_SIGNAL_EN: %x\n", SDHC_EINTR_SIGNAL_EN,
1210 1.7.2.2 matt HREAD2(hp, SDHC_EINTR_SIGNAL_EN));
1211 1.7.2.2 matt printf("0x%02x CAPABILITIES: %x\n", SDHC_CAPABILITIES,
1212 1.7.2.2 matt HREAD4(hp, SDHC_CAPABILITIES));
1213 1.7.2.2 matt printf("0x%02x MAX_CAPABILITIES: %x\n", SDHC_MAX_CAPABILITIES,
1214 1.7.2.2 matt HREAD4(hp, SDHC_MAX_CAPABILITIES));
1215 1.7.2.2 matt }
1216 1.7.2.2 matt #endif
1217