/src/sys/arch/arm/imx/ |
imxpwm.c | 70 uint32_t cr, ocr; local in function:imxpwm_enable 72 ocr = cr = PWM_READ(sc, PWM_CR); 78 if (cr != ocr)
|
/src/sys/arch/evbarm/stand/boot2440/ |
dev_sdmmc.c | 475 uint32_t ocr = 0; local in function:sdmmc_enable 502 SET(ocr, MMC_OCR_HCS); 505 * Read the SD/MMC memory OCR value by issuing CMD55 followed 506 * by ACMD41 to read the OCR value from memory-only SD cards. 512 ISSET(sc->caps, SMC_CAPS_SPI_MODE) ? ocr : 0, &card_ocr); 522 DPRINTF(("couldn't read memory OCR\n")); 533 /* get card OCR */ 534 error = sdmmc_mem_spi_read_ocr(sc, ocr, &card_ocr); 536 DPRINTF(("%s: couldn't read SPI memory OCR\n", 551 host_ocr |= ocr; [all...] |
/src/sys/dev/sdmmc/ |
sdmmc_mem.c | 150 uint32_t ocr = 0; local in function:sdmmc_mem_enable 169 SET(ocr, MMC_OCR_HCS); 173 * Read the SD/MMC memory OCR value by issuing CMD55 followed 174 * by ACMD41 to read the OCR value from memory-only SD cards. 180 ISSET(sc->sc_caps, SMC_CAPS_SPI_MODE) ? ocr : 0, &card_ocr); 190 DPRINTF(("%s: couldn't read memory OCR\n", 201 /* get card OCR */ 202 error = sdmmc_mem_spi_read_ocr(sc, ocr, &card_ocr); 204 DPRINTF(("%s: couldn't read SPI memory OCR\n", 230 SET(ocr, MMC_OCR_HCS) [all...] |
sdhc.c | 73 uint32_t ocr; /* OCR value from capabilities */ member in struct:sdhc_host 494 SET(hp->ocr, MMC_OCR_HCS); 499 SET(hp->ocr, MMC_OCR_S18A); 503 SET(hp->ocr, MMC_OCR_S18A); 507 SET(hp->ocr, MMC_OCR_S18A); 511 SET(hp->ocr, MMC_OCR_1_65V_1_95V); 516 SET(hp->ocr, MMC_OCR_2_9V_3_0V | MMC_OCR_3_0V_3_1V); 520 SET(hp->ocr, MMC_OCR_3_2V_3_3V | MMC_OCR_3_3V_3_4V); 871 return hp->ocr; [all...] |
/src/sys/arch/x68k/x68k/ |
iodevice.h | 62 unsigned char ocr; member in struct:dmac
|