Home
last modified time | relevance | path

Searched refs:rocr (Results 1 – 9 of 9) sorted by relevance

/linux-3.4.99/drivers/mmc/core/
Dsdio_ops.c22 int mmc_send_io_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr) in mmc_send_io_op_cond() argument
62 if (rocr) in mmc_send_io_op_cond()
63 *rocr = cmd.resp[mmc_host_is_spi(host) ? 1 : 0]; in mmc_send_io_op_cond()
Dsdio_ops.h15 int mmc_send_io_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
Dsd_ops.c150 int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr) in mmc_send_app_op_cond() argument
187 if (rocr && !mmc_host_is_spi(host)) in mmc_send_app_op_cond()
188 *rocr = cmd.resp[0]; in mmc_send_app_op_cond()
Dsd.h8 int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr);
Dsd_ops.h16 int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
Dsd.c726 int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr) in mmc_sd_get_cid() argument
762 err = mmc_send_app_op_cond(host, ocr, rocr); in mmc_sd_get_cid()
770 if (!mmc_host_is_spi(host) && rocr && in mmc_sd_get_cid()
771 ((*rocr & 0x41000000) == 0x41000000)) { in mmc_sd_get_cid()
909 u32 rocr = 0; in mmc_sd_init_card() local
917 err = mmc_sd_get_cid(host, ocr, cid, &rocr); in mmc_sd_init_card()
969 if (rocr & SD_ROCR_S18A) { in mmc_sd_init_card()
Dmmc_ops.h18 int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
Dmmc_ops.c131 int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr) in mmc_send_op_cond() argument
165 if (rocr && !mmc_host_is_spi(host)) in mmc_send_op_cond()
166 *rocr = cmd.resp[0]; in mmc_send_op_cond()
Dmmc.c828 u32 rocr; in mmc_init_card() local
851 err = mmc_send_op_cond(host, ocr | (1 << 30), &rocr); in mmc_init_card()
949 if (!(mmc_card_blockaddr(card)) && (rocr & (1<<30))) in mmc_init_card()