1 /* $NetBSD: sdhc.c,v 1.3 2009/10/02 04:33:58 uebayasi Exp $ */
2 /* $OpenBSD: sdhc.c,v 1.25 2009/01/13 19:44:20 grange Exp $ */
5 * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 * SD Host Controller driver based on the SD Host Controller Standard
22 * Simplified Specification Version 1.00 (www.sdcard.com).
25 #include <sys/cdefs.h>
26 __KERNEL_RCSID(0, "$NetBSD: sdhc.c,v 1.3 2009/10/02 04:33:58 uebayasi Exp $");
28 #include <sys/param.h>
29 #include <sys/device.h>
30 #include <sys/kernel.h>
31 #include <sys/kthread.h>
32 #include <sys/malloc.h>
33 #include <sys/systm.h>
34 #include <sys/mutex.h>
35 #include <sys/condvar.h>
37 #include <dev/sdmmc/sdhcreg.h>
38 #include <dev/sdmmc/sdhcvar.h>
39 #include <dev/sdmmc/sdmmcchip.h>
40 #include <dev/sdmmc/sdmmcreg.h>
41 #include <dev/sdmmc/sdmmcvar.h>
45 #define DPRINTF(n,s) do { if ((n) <= sdhcdebug) printf s; } while (0)
46 void sdhc_dump_regs(struct sdhc_host
*);
48 #define DPRINTF(n,s) do {} while (0)
51 #define SDHC_COMMAND_TIMEOUT hz
52 #define SDHC_BUFFER_TIMEOUT hz
53 #define SDHC_TRANSFER_TIMEOUT hz
54 #define SDHC_DMA_TIMEOUT hz
57 struct sdhc_softc
*sc
; /* host controller device */
59 bus_space_tag_t iot
; /* host register set tag */
60 bus_space_handle_t ioh
; /* host register set handle */
61 bus_dma_tag_t dmat
; /* host DMA tag */
63 device_t sdmmc
; /* generic SD/MMC device */
65 struct kmutex host_mtx
;
67 u_int clkbase
; /* base clock frequency in KHz */
68 int maxblklen
; /* maximum block length */
69 uint32_t ocr
; /* OCR value from capabilities */
71 uint8_t regs
[14]; /* host controller state */
73 uint16_t intr_status
; /* soft interrupt status */
74 uint16_t intr_error_status
; /* soft error status */
75 struct kmutex intr_mtx
;
76 struct kcondvar intr_cv
;
78 uint32_t flags
; /* flags for this host */
79 #define SHF_USE_DMA 0x0001
80 #define SHF_USE_4BIT_MODE 0x0002
83 #define HDEVNAME(hp) (device_xname((hp)->sc->sc_dev))
85 #define HREAD1(hp, reg) \
86 (bus_space_read_1((hp)->iot, (hp)->ioh, (reg)))
87 #define HREAD2(hp, reg) \
88 (bus_space_read_2((hp)->iot, (hp)->ioh, (reg)))
89 #define HREAD4(hp, reg) \
90 (bus_space_read_4((hp)->iot, (hp)->ioh, (reg)))
91 #define HWRITE1(hp, reg, val) \
92 bus_space_write_1((hp)->iot, (hp)->ioh, (reg), (val))
93 #define HWRITE2(hp, reg, val) \
94 bus_space_write_2((hp)->iot, (hp)->ioh, (reg), (val))
95 #define HWRITE4(hp, reg, val) \
96 bus_space_write_4((hp)->iot, (hp)->ioh, (reg), (val))
97 #define HCLR1(hp, reg, bits) \
98 HWRITE1((hp), (reg), HREAD1((hp), (reg)) & ~(bits))
99 #define HCLR2(hp, reg, bits) \
100 HWRITE2((hp), (reg), HREAD2((hp), (reg)) & ~(bits))
101 #define HSET1(hp, reg, bits) \
102 HWRITE1((hp), (reg), HREAD1((hp), (reg)) | (bits))
103 #define HSET2(hp, reg, bits) \
104 HWRITE2((hp), (reg), HREAD2((hp), (reg)) | (bits))
106 static int sdhc_host_reset(sdmmc_chipset_handle_t
);
107 static int sdhc_host_reset1(sdmmc_chipset_handle_t
);
108 static uint32_t sdhc_host_ocr(sdmmc_chipset_handle_t
);
109 static int sdhc_host_maxblklen(sdmmc_chipset_handle_t
);
110 static int sdhc_card_detect(sdmmc_chipset_handle_t
);
111 static int sdhc_write_protect(sdmmc_chipset_handle_t
);
112 static int sdhc_bus_power(sdmmc_chipset_handle_t
, uint32_t);
113 static int sdhc_bus_clock(sdmmc_chipset_handle_t
, int);
114 static int sdhc_bus_width(sdmmc_chipset_handle_t
, int);
115 static void sdhc_card_enable_intr(sdmmc_chipset_handle_t
, int);
116 static void sdhc_card_intr_ack(sdmmc_chipset_handle_t
);
117 static void sdhc_exec_command(sdmmc_chipset_handle_t
,
118 struct sdmmc_command
*);
119 static int sdhc_start_command(struct sdhc_host
*, struct sdmmc_command
*);
120 static int sdhc_wait_state(struct sdhc_host
*, uint32_t, uint32_t);
121 static int sdhc_soft_reset(struct sdhc_host
*, int);
122 static int sdhc_wait_intr(struct sdhc_host
*, int, int);
123 static void sdhc_transfer_data(struct sdhc_host
*, struct sdmmc_command
*);
124 static int sdhc_transfer_data_pio(struct sdhc_host
*, struct sdmmc_command
*);
125 static void sdhc_read_data_pio(struct sdhc_host
*, uint8_t *, int);
126 static void sdhc_write_data_pio(struct sdhc_host
*, uint8_t *, int);
128 static struct sdmmc_chip_functions sdhc_functions
= {
129 /* host controller reset */
132 /* host controller capabilities */
142 /* bus power, clock frequency and width */
147 /* command execution */
151 sdhc_card_enable_intr
,
156 * Called by attachment driver. For each SD card slot there is one SD
157 * host controller standard register set. (1.3)
160 sdhc_host_found(struct sdhc_softc
*sc
, bus_space_tag_t iot
,
161 bus_space_handle_t ioh
, bus_size_t iosize
)
163 struct sdmmcbus_attach_args saa
;
164 struct sdhc_host
*hp
;
169 sdhcver
= bus_space_read_2(iot
, ioh
, SDHC_HOST_CTL_VERSION
);
170 aprint_normal_dev(sc
->sc_dev
, "SD Host Specification/Vendor Version ");
171 switch (SDHC_SPEC_VERSION(sdhcver
)) {
173 aprint_normal("1.0/%u\n", SDHC_VENDOR_VERSION(sdhcver
));
177 aprint_normal(">1.0/%u\n", SDHC_VENDOR_VERSION(sdhcver
));
182 /* Allocate one more host structure. */
183 hp
= malloc(sizeof(struct sdhc_host
), M_DEVBUF
, M_WAITOK
|M_ZERO
);
185 aprint_error_dev(sc
->sc_dev
,
186 "couldn't alloc memory (sdhc host)\n");
189 sc
->sc_host
[sc
->sc_nhosts
++] = hp
;
191 /* Fill in the new host structure. */
195 hp
->dmat
= sc
->sc_dmat
;
197 mutex_init(&hp
->host_mtx
, MUTEX_DEFAULT
, IPL_SDMMC
);
198 mutex_init(&hp
->intr_mtx
, MUTEX_DEFAULT
, IPL_SDMMC
);
199 cv_init(&hp
->intr_cv
, "sdhcintr");
202 * Reset the host controller and enable interrupts.
204 (void)sdhc_host_reset(hp
);
206 /* Determine host capabilities. */
207 mutex_enter(&hp
->host_mtx
);
208 caps
= HREAD4(hp
, SDHC_CAPABILITIES
);
209 mutex_exit(&hp
->host_mtx
);
212 /* Use DMA if the host system and the controller support it. */
213 if (ISSET(sc
->sc_flags
, SDHC_FLAG_FORCE_DMA
)
214 || ((ISSET(sc
->sc_flags
, SDHC_FLAG_USE_DMA
)
215 && ISSET(caps
, SDHC_DMA_SUPPORT
)))) {
216 SET(hp
->flags
, SHF_USE_DMA
);
217 aprint_normal_dev(sc
->sc_dev
, "using DMA transfer\n");
222 * Determine the base clock frequency. (2.2.24)
224 if (SDHC_BASE_FREQ_KHZ(caps
) != 0)
225 hp
->clkbase
= SDHC_BASE_FREQ_KHZ(caps
);
226 if (hp
->clkbase
== 0) {
227 /* The attachment driver must tell us. */
228 aprint_error_dev(sc
->sc_dev
,"unknown base clock frequency\n");
230 } else if (hp
->clkbase
< 10000 || hp
->clkbase
> 63000) {
231 /* SDHC 1.0 supports only 10-63 MHz. */
232 aprint_error_dev(sc
->sc_dev
,
233 "base clock frequency out of range: %u MHz\n",
237 DPRINTF(1,("%s: base clock frequency %u MHz\n",
238 device_xname(sc
->sc_dev
), hp
->clkbase
/ 1000));
241 * XXX Set the data timeout counter value according to
242 * capabilities. (2.2.15)
244 HWRITE1(hp
, SDHC_TIMEOUT_CTL
, SDHC_TIMEOUT_MAX
);
247 * Determine SD bus voltage levels supported by the controller.
249 if (ISSET(caps
, SDHC_VOLTAGE_SUPP_1_8V
))
250 SET(hp
->ocr
, MMC_OCR_1_7V_1_8V
| MMC_OCR_1_8V_1_9V
);
251 if (ISSET(caps
, SDHC_VOLTAGE_SUPP_3_0V
))
252 SET(hp
->ocr
, MMC_OCR_2_9V_3_0V
| MMC_OCR_3_0V_3_1V
);
253 if (ISSET(caps
, SDHC_VOLTAGE_SUPP_3_3V
))
254 SET(hp
->ocr
, MMC_OCR_3_2V_3_3V
| MMC_OCR_3_3V_3_4V
);
257 * Determine the maximum block length supported by the host
258 * controller. (2.2.24)
260 switch((caps
>> SDHC_MAX_BLK_LEN_SHIFT
) & SDHC_MAX_BLK_LEN_MASK
) {
261 case SDHC_MAX_BLK_LEN_512
:
265 case SDHC_MAX_BLK_LEN_1024
:
266 hp
->maxblklen
= 1024;
269 case SDHC_MAX_BLK_LEN_2048
:
270 hp
->maxblklen
= 2048;
274 aprint_error_dev(sc
->sc_dev
, "max block length unknown\n");
277 DPRINTF(1, ("%s: max block length %u byte%s\n",
278 device_xname(sc
->sc_dev
), hp
->maxblklen
,
279 hp
->maxblklen
> 1 ? "s" : ""));
282 * Attach the generic SD/MMC bus driver. (The bus driver must
283 * not invoke any chipset functions before it is attached.)
285 memset(&saa
, 0, sizeof(saa
));
286 saa
.saa_busname
= "sdmmc";
287 saa
.saa_sct
= &sdhc_functions
;
289 saa
.saa_dmat
= hp
->dmat
;
290 saa
.saa_clkmin
= hp
->clkbase
/ 256;
291 saa
.saa_clkmax
= hp
->clkbase
;
292 saa
.saa_caps
= SMC_CAPS_4BIT_MODE
|SMC_CAPS_AUTO_STOP
;
294 if (ISSET(hp
->flags
, SHF_USE_DMA
))
295 saa
.saa_caps
|= SMC_CAPS_DMA
;
298 hp
->sdmmc
= config_found(sc
->sc_dev
, &saa
, NULL
);
303 cv_destroy(&hp
->intr_cv
);
304 mutex_destroy(&hp
->intr_mtx
);
305 mutex_destroy(&hp
->host_mtx
);
307 sc
->sc_host
[--sc
->sc_nhosts
] = NULL
;
313 sdhc_suspend(device_t dev
, pmf_qual_t qual
)
315 struct sdhc_softc
*sc
= device_private(dev
);
316 struct sdhc_host
*hp
;
319 /* XXX poll for command completion or suspend command
322 /* Save the host controller state. */
323 for (n
= 0; n
< sc
->sc_nhosts
; n
++) {
325 for (i
= 0; i
< sizeof hp
->regs
; i
++)
326 hp
->regs
[i
] = HREAD1(hp
, i
);
332 sdhc_resume(device_t dev
, pmf_qual_t qual
)
334 struct sdhc_softc
*sc
= device_private(dev
);
335 struct sdhc_host
*hp
;
338 /* Restore the host controller state. */
339 for (n
= 0; n
< sc
->sc_nhosts
; n
++) {
341 (void)sdhc_host_reset(hp
);
342 for (i
= 0; i
< sizeof hp
->regs
; i
++)
343 HWRITE1(hp
, i
, hp
->regs
[i
]);
349 sdhc_shutdown(device_t dev
, int flags
)
351 struct sdhc_softc
*sc
= device_private(dev
);
352 struct sdhc_host
*hp
;
355 /* XXX chip locks up if we don't disable it before reboot. */
356 for (i
= 0; i
< sc
->sc_nhosts
; i
++) {
358 (void)sdhc_host_reset(hp
);
364 * Reset the host controller. Called during initialization, when
365 * cards are removed, upon resume, and during error recovery.
368 sdhc_host_reset1(sdmmc_chipset_handle_t sch
)
370 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
376 /* Disable all interrupts. */
377 HWRITE2(hp
, SDHC_NINTR_SIGNAL_EN
, 0);
380 * Reset the entire host controller and wait up to 100ms for
381 * the controller to clear the reset bit.
383 error
= sdhc_soft_reset(hp
, SDHC_RESET_ALL
);
387 /* Set data timeout counter value to max for now. */
388 HWRITE1(hp
, SDHC_TIMEOUT_CTL
, SDHC_TIMEOUT_MAX
);
390 /* Enable interrupts. */
391 sdhcimask
= SDHC_CARD_REMOVAL
| SDHC_CARD_INSERTION
|
392 SDHC_BUFFER_READ_READY
| SDHC_BUFFER_WRITE_READY
|
393 SDHC_DMA_INTERRUPT
| SDHC_BLOCK_GAP_EVENT
|
394 SDHC_TRANSFER_COMPLETE
| SDHC_COMMAND_COMPLETE
;
395 HWRITE2(hp
, SDHC_NINTR_STATUS_EN
, sdhcimask
);
396 HWRITE2(hp
, SDHC_EINTR_STATUS_EN
, SDHC_EINTR_STATUS_MASK
);
397 HWRITE2(hp
, SDHC_NINTR_SIGNAL_EN
, sdhcimask
);
398 HWRITE2(hp
, SDHC_EINTR_SIGNAL_EN
, SDHC_EINTR_SIGNAL_MASK
);
405 sdhc_host_reset(sdmmc_chipset_handle_t sch
)
407 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
410 mutex_enter(&hp
->host_mtx
);
411 error
= sdhc_host_reset1(sch
);
412 mutex_exit(&hp
->host_mtx
);
418 sdhc_host_ocr(sdmmc_chipset_handle_t sch
)
420 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
426 sdhc_host_maxblklen(sdmmc_chipset_handle_t sch
)
428 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
430 return hp
->maxblklen
;
434 * Return non-zero if the card is currently inserted.
437 sdhc_card_detect(sdmmc_chipset_handle_t sch
)
439 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
442 mutex_enter(&hp
->host_mtx
);
443 r
= ISSET(HREAD4(hp
, SDHC_PRESENT_STATE
), SDHC_CARD_INSERTED
);
444 mutex_exit(&hp
->host_mtx
);
452 * Return non-zero if the card is currently write-protected.
455 sdhc_write_protect(sdmmc_chipset_handle_t sch
)
457 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
460 mutex_enter(&hp
->host_mtx
);
461 r
= ISSET(HREAD4(hp
, SDHC_PRESENT_STATE
), SDHC_WRITE_PROTECT_SWITCH
);
462 mutex_exit(&hp
->host_mtx
);
470 * Set or change SD bus voltage and enable or disable SD bus power.
471 * Return zero on success.
474 sdhc_bus_power(sdmmc_chipset_handle_t sch
, uint32_t ocr
)
476 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
480 mutex_enter(&hp
->host_mtx
);
483 * Disable bus power before voltage change.
485 if (!(hp
->sc
->sc_flags
& SDHC_FLAG_NO_PWR0
))
486 HWRITE1(hp
, SDHC_POWER_CTL
, 0);
488 /* If power is disabled, reset the host and return now. */
490 (void)sdhc_host_reset1(hp
);
495 * Select the lowest voltage according to capabilities.
498 if (ISSET(ocr
, MMC_OCR_1_7V_1_8V
|MMC_OCR_1_8V_1_9V
))
499 vdd
= SDHC_VOLTAGE_1_8V
;
500 else if (ISSET(ocr
, MMC_OCR_2_9V_3_0V
|MMC_OCR_3_0V_3_1V
))
501 vdd
= SDHC_VOLTAGE_3_0V
;
502 else if (ISSET(ocr
, MMC_OCR_3_2V_3_3V
|MMC_OCR_3_3V_3_4V
))
503 vdd
= SDHC_VOLTAGE_3_3V
;
505 /* Unsupported voltage level requested. */
511 * Enable bus power. Wait at least 1 ms (or 74 clocks) plus
512 * voltage ramp until power rises.
514 HWRITE1(hp
, SDHC_POWER_CTL
,
515 (vdd
<< SDHC_VOLTAGE_SHIFT
) | SDHC_BUS_POWER
);
519 * The host system may not power the bus due to battery low,
520 * etc. In that case, the host controller should clear the
523 if (!ISSET(HREAD1(hp
, SDHC_POWER_CTL
), SDHC_BUS_POWER
)) {
529 mutex_exit(&hp
->host_mtx
);
535 * Return the smallest possible base clock frequency divisor value
536 * for the CLOCK_CTL register to produce `freq' (KHz).
539 sdhc_clock_divisor(struct sdhc_host
*hp
, u_int freq
)
543 for (div
= 1; div
<= 256; div
*= 2)
544 if ((hp
->clkbase
/ div
) <= freq
)
546 /* No divisor found. */
551 * Set or change SDCLK frequency or disable the SD clock.
552 * Return zero on success.
555 sdhc_bus_clock(sdmmc_chipset_handle_t sch
, int freq
)
557 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
566 mutex_enter(&hp
->host_mtx
);
567 ispresent
= ISSET(HREAD4(hp
, SDHC_PRESENT_STATE
), SDHC_CMD_INHIBIT_MASK
);
568 mutex_exit(&hp
->host_mtx
);
570 /* Must not stop the clock if commands are in progress. */
571 if (ispresent
&& sdhc_card_detect(hp
))
572 printf("%s: sdhc_sdclk_frequency_select: command in progress\n",
573 device_xname(hp
->sc
->sc_dev
));
576 mutex_enter(&hp
->host_mtx
);
579 * Stop SD clock before changing the frequency.
581 HWRITE2(hp
, SDHC_CLOCK_CTL
, 0);
582 if (freq
== SDMMC_SDCLK_OFF
)
586 * Set the minimum base clock frequency divisor.
588 if ((div
= sdhc_clock_divisor(hp
, freq
)) < 0) {
589 /* Invalid base clock frequency or `freq' value. */
593 HWRITE2(hp
, SDHC_CLOCK_CTL
, div
<< SDHC_SDCLK_DIV_SHIFT
);
596 * Start internal clock. Wait 10ms for stabilization.
598 HSET2(hp
, SDHC_CLOCK_CTL
, SDHC_INTCLK_ENABLE
);
599 for (timo
= 1000; timo
> 0; timo
--) {
600 if (ISSET(HREAD2(hp
, SDHC_CLOCK_CTL
), SDHC_INTCLK_STABLE
))
612 HSET2(hp
, SDHC_CLOCK_CTL
, SDHC_SDCLK_ENABLE
);
615 mutex_exit(&hp
->host_mtx
);
621 sdhc_bus_width(sdmmc_chipset_handle_t sch
, int width
)
623 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
632 DPRINTF(0,("%s: unsupported bus width (%d)\n",
633 HDEVNAME(hp
), width
));
637 mutex_enter(&hp
->host_mtx
);
638 reg
= HREAD1(hp
, SDHC_POWER_CTL
);
639 reg
&= ~SDHC_4BIT_MODE
;
641 reg
|= SDHC_4BIT_MODE
;
642 HWRITE1(hp
, SDHC_POWER_CTL
, reg
);
643 mutex_exit(&hp
->host_mtx
);
649 sdhc_card_enable_intr(sdmmc_chipset_handle_t sch
, int enable
)
651 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
653 mutex_enter(&hp
->host_mtx
);
655 HSET2(hp
, SDHC_NINTR_STATUS_EN
, SDHC_CARD_INTERRUPT
);
656 HSET2(hp
, SDHC_NINTR_SIGNAL_EN
, SDHC_CARD_INTERRUPT
);
658 HCLR2(hp
, SDHC_NINTR_SIGNAL_EN
, SDHC_CARD_INTERRUPT
);
659 HCLR2(hp
, SDHC_NINTR_STATUS_EN
, SDHC_CARD_INTERRUPT
);
661 mutex_exit(&hp
->host_mtx
);
665 sdhc_card_intr_ack(sdmmc_chipset_handle_t sch
)
667 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
669 mutex_enter(&hp
->host_mtx
);
670 HSET2(hp
, SDHC_NINTR_STATUS_EN
, SDHC_CARD_INTERRUPT
);
671 mutex_exit(&hp
->host_mtx
);
675 sdhc_wait_state(struct sdhc_host
*hp
, uint32_t mask
, uint32_t value
)
680 for (timeout
= 10; timeout
> 0; timeout
--) {
681 if (((state
= HREAD4(hp
, SDHC_PRESENT_STATE
)) & mask
) == value
)
685 DPRINTF(0,("%s: timeout waiting for %x (state=%x)\n", HDEVNAME(hp
),
691 sdhc_exec_command(sdmmc_chipset_handle_t sch
, struct sdmmc_command
*cmd
)
693 struct sdhc_host
*hp
= (struct sdhc_host
*)sch
;
697 * Start the MMC command, or mark `cmd' as failed and return.
699 error
= sdhc_start_command(hp
, cmd
);
701 cmd
->c_error
= error
;
706 * Wait until the command phase is done, or until the command
707 * is marked done for any other reason.
709 if (!sdhc_wait_intr(hp
, SDHC_COMMAND_COMPLETE
, SDHC_COMMAND_TIMEOUT
)) {
710 cmd
->c_error
= ETIMEDOUT
;
715 * The host controller removes bits [0:7] from the response
716 * data (CRC) and we pass the data up unchanged to the bus
717 * driver (without padding).
719 mutex_enter(&hp
->host_mtx
);
720 if (cmd
->c_error
== 0 && ISSET(cmd
->c_flags
, SCF_RSP_PRESENT
)) {
721 if (ISSET(cmd
->c_flags
, SCF_RSP_136
)) {
722 uint8_t *p
= (uint8_t *)cmd
->c_resp
;
725 for (i
= 0; i
< 15; i
++)
726 *p
++ = HREAD1(hp
, SDHC_RESPONSE
+ i
);
728 cmd
->c_resp
[0] = HREAD4(hp
, SDHC_RESPONSE
);
731 mutex_exit(&hp
->host_mtx
);
732 DPRINTF(1,("%s: resp = %08x\n", HDEVNAME(hp
), cmd
->c_resp
[0]));
735 * If the command has data to transfer in any direction,
736 * execute the transfer now.
738 if (cmd
->c_error
== 0 && cmd
->c_data
!= NULL
)
739 sdhc_transfer_data(hp
, cmd
);
742 mutex_enter(&hp
->host_mtx
);
743 /* Turn off the LED. */
744 HCLR1(hp
, SDHC_HOST_CTL
, SDHC_LED_ON
);
745 mutex_exit(&hp
->host_mtx
);
746 SET(cmd
->c_flags
, SCF_ITSDONE
);
748 DPRINTF(1,("%s: cmd %d %s (flags=%08x error=%d)\n", HDEVNAME(hp
),
749 cmd
->c_opcode
, (cmd
->c_error
== 0) ? "done" : "abort",
750 cmd
->c_flags
, cmd
->c_error
));
754 sdhc_start_command(struct sdhc_host
*hp
, struct sdmmc_command
*cmd
)
756 uint16_t blksize
= 0;
757 uint16_t blkcount
= 0;
762 DPRINTF(1,("%s: start cmd %d arg=%08x data=%p dlen=%d flags=%08x "
763 "proc=%p \"%s\"\n", HDEVNAME(hp
), cmd
->c_opcode
, cmd
->c_arg
,
764 cmd
->c_data
, cmd
->c_datalen
, cmd
->c_flags
, curproc
,
765 curproc
? curproc
->p_comm
: ""));
768 * The maximum block length for commands should be the minimum
769 * of the host buffer size and the card buffer size. (1.7.2)
772 /* Fragment the data into proper blocks. */
773 if (cmd
->c_datalen
> 0) {
774 blksize
= MIN(cmd
->c_datalen
, cmd
->c_blklen
);
775 blkcount
= cmd
->c_datalen
/ blksize
;
776 if (cmd
->c_datalen
% blksize
> 0) {
777 /* XXX: Split this command. (1.7.4) */
778 aprint_error_dev(hp
->sc
->sc_dev
,
779 "data not a multiple of %u bytes\n", blksize
);
784 /* Check limit imposed by 9-bit block count. (1.7.2) */
785 if (blkcount
> SDHC_BLOCK_COUNT_MAX
) {
786 aprint_error_dev(hp
->sc
->sc_dev
, "too much data\n");
790 /* Prepare transfer mode register value. (2.2.5) */
792 if (ISSET(cmd
->c_flags
, SCF_CMD_READ
))
793 mode
|= SDHC_READ_MODE
;
795 mode
|= SDHC_BLOCK_COUNT_ENABLE
;
797 mode
|= SDHC_MULTI_BLOCK_MODE
;
798 /* XXX only for memory commands? */
799 mode
|= SDHC_AUTO_CMD12_ENABLE
;
803 if (cmd
->c_dmap
!= NULL
&& cmd
->c_datalen
> 0)
804 mode
|= SDHC_DMA_ENABLE
;
808 * Prepare command register value. (2.2.6)
811 (cmd
->c_opcode
& SDHC_COMMAND_INDEX_MASK
) << SDHC_COMMAND_INDEX_SHIFT
;
813 if (ISSET(cmd
->c_flags
, SCF_RSP_CRC
))
814 command
|= SDHC_CRC_CHECK_ENABLE
;
815 if (ISSET(cmd
->c_flags
, SCF_RSP_IDX
))
816 command
|= SDHC_INDEX_CHECK_ENABLE
;
817 if (cmd
->c_data
!= NULL
)
818 command
|= SDHC_DATA_PRESENT_SELECT
;
820 if (!ISSET(cmd
->c_flags
, SCF_RSP_PRESENT
))
821 command
|= SDHC_NO_RESPONSE
;
822 else if (ISSET(cmd
->c_flags
, SCF_RSP_136
))
823 command
|= SDHC_RESP_LEN_136
;
824 else if (ISSET(cmd
->c_flags
, SCF_RSP_BSY
))
825 command
|= SDHC_RESP_LEN_48_CHK_BUSY
;
827 command
|= SDHC_RESP_LEN_48
;
829 /* Wait until command and data inhibit bits are clear. (1.5) */
830 error
= sdhc_wait_state(hp
, SDHC_CMD_INHIBIT_MASK
, 0);
834 DPRINTF(1,("%s: writing cmd: blksize=%d blkcnt=%d mode=%04x cmd=%04x\n",
835 HDEVNAME(hp
), blksize
, blkcount
, mode
, command
));
837 mutex_enter(&hp
->host_mtx
);
839 /* Alert the user not to remove the card. */
840 HSET1(hp
, SDHC_HOST_CTL
, SDHC_LED_ON
);
843 * Start a CPU data transfer. Writing to the high order byte
844 * of the SDHC_COMMAND register triggers the SD command. (1.5)
846 HWRITE2(hp
, SDHC_TRANSFER_MODE
, mode
);
847 HWRITE2(hp
, SDHC_BLOCK_SIZE
, blksize
);
849 HWRITE2(hp
, SDHC_BLOCK_COUNT
, blkcount
);
850 HWRITE4(hp
, SDHC_ARGUMENT
, cmd
->c_arg
);
851 HWRITE2(hp
, SDHC_COMMAND
, command
);
853 mutex_exit(&hp
->host_mtx
);
859 sdhc_transfer_data(struct sdhc_host
*hp
, struct sdmmc_command
*cmd
)
863 DPRINTF(1,("%s: data transfer: resp=%08x datalen=%u\n", HDEVNAME(hp
),
864 MMC_R1(cmd
->c_resp
), cmd
->c_datalen
));
867 /* XXX I forgot why I wanted to know when this happens :-( */
868 if ((cmd
->c_opcode
== 52 || cmd
->c_opcode
== 53) &&
869 ISSET(MMC_R1(cmd
->c_resp
), 0xcb00)) {
870 aprint_error_dev(hp
->sc
->sc_dev
,
871 "CMD52/53 error response flags %#x\n",
872 MMC_R1(cmd
->c_resp
) & 0xff00);
876 error
= sdhc_transfer_data_pio(hp
, cmd
);
878 cmd
->c_error
= error
;
879 SET(cmd
->c_flags
, SCF_ITSDONE
);
881 DPRINTF(1,("%s: data transfer done (error=%d)\n",
882 HDEVNAME(hp
), cmd
->c_error
));
886 sdhc_transfer_data_pio(struct sdhc_host
*hp
, struct sdmmc_command
*cmd
)
888 uint8_t *data
= cmd
->c_data
;
893 mask
= ISSET(cmd
->c_flags
, SCF_CMD_READ
) ?
894 SDHC_BUFFER_READ_ENABLE
: SDHC_BUFFER_WRITE_ENABLE
;
895 datalen
= cmd
->c_datalen
;
897 while (datalen
> 0) {
898 if (!sdhc_wait_intr(hp
,
899 SDHC_BUFFER_READ_READY
|SDHC_BUFFER_WRITE_READY
,
900 SDHC_BUFFER_TIMEOUT
)) {
905 error
= sdhc_wait_state(hp
, mask
, mask
);
909 len
= MIN(datalen
, cmd
->c_blklen
);
910 if (ISSET(cmd
->c_flags
, SCF_CMD_READ
))
911 sdhc_read_data_pio(hp
, data
, len
);
913 sdhc_write_data_pio(hp
, data
, len
);
919 if (error
== 0 && !sdhc_wait_intr(hp
, SDHC_TRANSFER_COMPLETE
,
920 SDHC_TRANSFER_TIMEOUT
))
927 sdhc_read_data_pio(struct sdhc_host
*hp
, uint8_t *data
, int datalen
)
930 if (((__uintptr_t
)data
& 3) == 0) {
931 while (datalen
> 3) {
932 *(uint32_t *)data
= HREAD4(hp
, SDHC_DATA
);
937 *(uint16_t *)data
= HREAD2(hp
, SDHC_DATA
);
942 *data
= HREAD1(hp
, SDHC_DATA
);
946 } else if (((__uintptr_t
)data
& 1) == 0) {
947 while (datalen
> 1) {
948 *(uint16_t *)data
= HREAD2(hp
, SDHC_DATA
);
953 *data
= HREAD1(hp
, SDHC_DATA
);
958 while (datalen
> 0) {
959 *data
= HREAD1(hp
, SDHC_DATA
);
967 sdhc_write_data_pio(struct sdhc_host
*hp
, uint8_t *data
, int datalen
)
970 if (((__uintptr_t
)data
& 3) == 0) {
971 while (datalen
> 3) {
972 HWRITE4(hp
, SDHC_DATA
, *(uint32_t *)data
);
977 HWRITE2(hp
, SDHC_DATA
, *(uint16_t *)data
);
982 HWRITE1(hp
, SDHC_DATA
, *data
);
986 } else if (((__uintptr_t
)data
& 1) == 0) {
987 while (datalen
> 1) {
988 HWRITE2(hp
, SDHC_DATA
, *(uint16_t *)data
);
993 HWRITE1(hp
, SDHC_DATA
, *data
);
998 while (datalen
> 0) {
999 HWRITE1(hp
, SDHC_DATA
, *data
);
1006 /* Prepare for another command. */
1008 sdhc_soft_reset(struct sdhc_host
*hp
, int mask
)
1012 DPRINTF(1,("%s: software reset reg=%08x\n", HDEVNAME(hp
), mask
));
1014 HWRITE1(hp
, SDHC_SOFTWARE_RESET
, mask
);
1015 for (timo
= 10; timo
> 0; timo
--) {
1016 if (!ISSET(HREAD1(hp
, SDHC_SOFTWARE_RESET
), mask
))
1019 HWRITE1(hp
, SDHC_SOFTWARE_RESET
, 0);
1022 DPRINTF(1,("%s: timeout reg=%08x\n", HDEVNAME(hp
),
1023 HREAD1(hp
, SDHC_SOFTWARE_RESET
)));
1024 HWRITE1(hp
, SDHC_SOFTWARE_RESET
, 0);
1032 sdhc_wait_intr(struct sdhc_host
*hp
, int mask
, int timo
)
1036 mask
|= SDHC_ERROR_INTERRUPT
;
1038 mutex_enter(&hp
->intr_mtx
);
1039 status
= hp
->intr_status
& mask
;
1040 while (status
== 0) {
1041 if (cv_timedwait(&hp
->intr_cv
, &hp
->intr_mtx
, timo
)
1043 status
|= SDHC_ERROR_INTERRUPT
;
1046 status
= hp
->intr_status
& mask
;
1048 hp
->intr_status
&= ~status
;
1050 DPRINTF(2,("%s: intr status %#x error %#x\n", HDEVNAME(hp
), status
,
1051 hp
->intr_error_status
));
1053 /* Command timeout has higher priority than command complete. */
1054 if (ISSET(status
, SDHC_ERROR_INTERRUPT
)) {
1055 hp
->intr_error_status
= 0;
1056 (void)sdhc_soft_reset(hp
, SDHC_RESET_DAT
|SDHC_RESET_CMD
);
1059 mutex_exit(&hp
->intr_mtx
);
1065 * Established by attachment driver at interrupt priority IPL_SDMMC.
1068 sdhc_intr(void *arg
)
1070 struct sdhc_softc
*sc
= (struct sdhc_softc
*)arg
;
1071 struct sdhc_host
*hp
;
1077 /* We got an interrupt, but we don't know from which slot. */
1078 for (host
= 0; host
< sc
->sc_nhosts
; host
++) {
1079 hp
= sc
->sc_host
[host
];
1083 /* Find out which interrupts are pending. */
1084 status
= HREAD2(hp
, SDHC_NINTR_STATUS
);
1085 if (!ISSET(status
, SDHC_NINTR_STATUS_MASK
))
1086 continue; /* no interrupt for us */
1088 /* Acknowledge the interrupts we are about to handle. */
1089 HWRITE2(hp
, SDHC_NINTR_STATUS
, status
);
1090 DPRINTF(2,("%s: interrupt status=%x\n", HDEVNAME(hp
),
1093 if (!ISSET(status
, SDHC_NINTR_STATUS_MASK
))
1096 /* Claim this interrupt. */
1100 * Service error interrupts.
1102 if (ISSET(status
, SDHC_ERROR_INTERRUPT
)) {
1103 /* Acknowledge error interrupts. */
1104 error
= HREAD2(hp
, SDHC_EINTR_STATUS
);
1105 HWRITE2(hp
, SDHC_EINTR_STATUS
, error
);
1106 DPRINTF(2,("%s: error interrupt, status=%x\n",
1107 HDEVNAME(hp
), error
));
1109 if (ISSET(error
, SDHC_CMD_TIMEOUT_ERROR
|
1110 SDHC_DATA_TIMEOUT_ERROR
)) {
1111 hp
->intr_error_status
|= error
;
1112 hp
->intr_status
|= status
;
1113 cv_broadcast(&hp
->intr_cv
);
1118 * Wake up the sdmmc event thread to scan for cards.
1120 if (ISSET(status
, SDHC_CARD_REMOVAL
|SDHC_CARD_INSERTION
))
1121 sdmmc_needs_discover(hp
->sdmmc
);
1124 * Wake up the blocking process to service command
1125 * related interrupt(s).
1127 if (ISSET(status
, SDHC_BUFFER_READ_READY
|
1128 SDHC_BUFFER_WRITE_READY
|SDHC_COMMAND_COMPLETE
|
1129 SDHC_TRANSFER_COMPLETE
|SDHC_DMA_INTERRUPT
)) {
1130 hp
->intr_status
|= status
;
1131 cv_broadcast(&hp
->intr_cv
);
1135 * Service SD card interrupts.
1137 if (ISSET(status
, SDHC_CARD_INTERRUPT
)) {
1138 DPRINTF(0,("%s: card interrupt\n", HDEVNAME(hp
)));
1139 HCLR2(hp
, SDHC_NINTR_STATUS_EN
, SDHC_CARD_INTERRUPT
);
1140 sdmmc_card_intr(hp
->sdmmc
);
1149 sdhc_dump_regs(struct sdhc_host
*hp
)
1152 printf("0x%02x PRESENT_STATE: %x\n", SDHC_PRESENT_STATE
,
1153 HREAD4(hp
, SDHC_PRESENT_STATE
));
1154 printf("0x%02x POWER_CTL: %x\n", SDHC_POWER_CTL
,
1155 HREAD1(hp
, SDHC_POWER_CTL
));
1156 printf("0x%02x NINTR_STATUS: %x\n", SDHC_NINTR_STATUS
,
1157 HREAD2(hp
, SDHC_NINTR_STATUS
));
1158 printf("0x%02x EINTR_STATUS: %x\n", SDHC_EINTR_STATUS
,
1159 HREAD2(hp
, SDHC_EINTR_STATUS
));
1160 printf("0x%02x NINTR_STATUS_EN: %x\n", SDHC_NINTR_STATUS_EN
,
1161 HREAD2(hp
, SDHC_NINTR_STATUS_EN
));
1162 printf("0x%02x EINTR_STATUS_EN: %x\n", SDHC_EINTR_STATUS_EN
,
1163 HREAD2(hp
, SDHC_EINTR_STATUS_EN
));
1164 printf("0x%02x NINTR_SIGNAL_EN: %x\n", SDHC_NINTR_SIGNAL_EN
,
1165 HREAD2(hp
, SDHC_NINTR_SIGNAL_EN
));
1166 printf("0x%02x EINTR_SIGNAL_EN: %x\n", SDHC_EINTR_SIGNAL_EN
,
1167 HREAD2(hp
, SDHC_EINTR_SIGNAL_EN
));
1168 printf("0x%02x CAPABILITIES: %x\n", SDHC_CAPABILITIES
,
1169 HREAD4(hp
, SDHC_CAPABILITIES
));
1170 printf("0x%02x MAX_CAPABILITIES: %x\n", SDHC_MAX_CAPABILITIES
,
1171 HREAD4(hp
, SDHC_MAX_CAPABILITIES
));