Searched refs:rocr (Results 1 – 10 of 10) sorted by relevance
/linux-6.1.9/drivers/mmc/core/ |
D | sdio_ops.c | 18 int mmc_send_io_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr) in mmc_send_io_op_cond() argument 56 if (rocr) in mmc_send_io_op_cond() 57 *rocr = cmd.resp[mmc_host_is_spi(host) ? 1 : 0]; in mmc_send_io_op_cond()
|
D | sdio.c | 664 u32 rocr = 0; in mmc_sdio_init_card() local 682 err = mmc_send_io_op_cond(host, ocr, &rocr); in mmc_sdio_init_card() 702 if ((rocr & R4_MEMORY_PRESENT) && in mmc_sdio_init_card() 703 mmc_sd_get_cid(host, ocr & rocr, card->raw_cid, NULL) == 0) { in mmc_sdio_init_card() 740 if (rocr & ocr & R4_18V_PRESENT) { in mmc_sdio_init_card() 1203 u32 ocr, rocr; in mmc_attach_sdio() local 1217 rocr = mmc_select_voltage(host, ocr); in mmc_attach_sdio() 1222 if (!rocr) { in mmc_attach_sdio() 1230 err = mmc_sdio_init_card(host, rocr, NULL); in mmc_attach_sdio()
|
D | sd_ops.c | 118 int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr) in mmc_send_app_op_cond() argument 156 if (rocr && !mmc_host_is_spi(host)) in mmc_send_app_op_cond() 157 *rocr = cmd.resp[0]; in mmc_send_app_op_cond()
|
D | sd.c | 815 int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr) in mmc_sd_get_cid() argument 862 err = mmc_send_app_op_cond(host, ocr, rocr); in mmc_sd_get_cid() 874 rocr && (*rocr & SD_ROCR_S18A)) { in mmc_sd_get_cid() 1409 u32 rocr = 0; in mmc_sd_init_card() local 1414 err = mmc_sd_get_cid(host, ocr, cid, &rocr); in mmc_sd_init_card() 1502 if (rocr & SD_ROCR_S18A && mmc_host_uhs(host)) { in mmc_sd_init_card() 1816 u32 ocr, rocr; in mmc_attach_sd() local 1845 rocr = mmc_select_voltage(host, ocr); in mmc_attach_sd() 1850 if (!rocr) { in mmc_attach_sd() 1858 err = mmc_sd_init_card(host, rocr, NULL); in mmc_attach_sd()
|
D | sd.h | 12 int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr);
|
D | sd_ops.h | 17 int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
|
D | sdio_ops.h | 18 int mmc_send_io_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
|
D | mmc_ops.h | 29 int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
|
D | mmc_ops.c | 223 int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr) in mmc_send_op_cond() argument 243 if (rocr && !mmc_host_is_spi(host)) in mmc_send_op_cond() 244 *rocr = cmd.resp[0]; in mmc_send_op_cond()
|
D | mmc.c | 1604 u32 rocr; in mmc_init_card() local 1622 err = mmc_send_op_cond(host, ocr | (1 << 30), &rocr); in mmc_init_card() 1728 if (rocr & BIT(30)) in mmc_init_card() 2285 u32 ocr, rocr; in mmc_attach_mmc() local 2310 rocr = mmc_select_voltage(host, ocr); in mmc_attach_mmc() 2315 if (!rocr) { in mmc_attach_mmc() 2323 err = mmc_init_card(host, rocr, NULL); in mmc_attach_mmc()
|