Home
last modified time | relevance | path

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

/external/arm-trusted-firmware/plat/socionext/uniphier/
Duniphier_emmc.c85 unsigned int resp_type; member
115 if (!(cmd->resp_type & MMC_RSP_PRESENT)) in uniphier_emmc_send_cmd()
117 else if (cmd->resp_type & MMC_RSP_136) in uniphier_emmc_send_cmd()
119 else if (cmd->resp_type & MMC_RSP_BUSY) in uniphier_emmc_send_cmd()
124 if (cmd->resp_type & MMC_RSP_CRC) in uniphier_emmc_send_cmd()
126 if (cmd->resp_type & MMC_RSP_OPCODE) in uniphier_emmc_send_cmd()
131 if (cmd->resp_type & MMC_RSP_BUSY || cmd->is_data) in uniphier_emmc_send_cmd()
159 cmd.resp_type = MMC_RSP_R1b; in uniphier_emmc_switch_part()
173 cmd.resp_type = MMC_RSP_R2; in uniphier_emmc_check_device_size()
213 cmd.resp_type = MMC_RSP_R1; in uniphier_emmc_load_image()
[all …]
/external/arm-trusted-firmware/drivers/imx/usdhc/
Dimx_usdhc.c165 if (cmd->resp_type & MMC_RSP_48 && cmd->resp_type != MMC_RESPONSE_R2) in imx_usdhc_send_cmd()
167 else if (cmd->resp_type & MMC_RSP_136) in imx_usdhc_send_cmd()
169 else if (cmd->resp_type & MMC_RSP_BUSY) in imx_usdhc_send_cmd()
172 if (cmd->resp_type & MMC_RSP_CMD_IDX) in imx_usdhc_send_cmd()
175 if (cmd->resp_type & MMC_RSP_CRC) in imx_usdhc_send_cmd()
203 if (cmd->resp_type & MMC_RSP_136) { in imx_usdhc_send_cmd()
/external/arm-trusted-firmware/drivers/st/mmc/
Dstm32_sdmmc2.c176 cmd_stop.resp_type = MMC_RESPONSE_R1B; in stm32_sdmmc2_stop_transfer()
203 if (cmd->resp_type == 0U) { in stm32_sdmmc2_send_cmd_req()
207 if ((cmd->resp_type & MMC_RSP_48) != 0U) { in stm32_sdmmc2_send_cmd_req()
208 if ((cmd->resp_type & MMC_RSP_136) != 0U) { in stm32_sdmmc2_send_cmd_req()
211 } else if ((cmd->resp_type & MMC_RSP_CRC) != 0U) { in stm32_sdmmc2_send_cmd_req()
273 if ((cmd->resp_type & MMC_RSP_BUSY) != 0U) { in stm32_sdmmc2_send_cmd_req()
307 (cmd->resp_type == MMC_RESPONSE_R7)))) { in stm32_sdmmc2_send_cmd_req()
501 cmd.resp_type = MMC_RESPONSE_R1; in stm32_sdmmc2_prepare()
/external/arm-trusted-firmware/drivers/rpi3/sdhost/
Drpi3_sdhost.c301 if ((cmd->resp_type & MMC_RSP_136) && in rpi3_sdhost_send_cmd()
302 (cmd->resp_type & MMC_RSP_BUSY)) { in rpi3_sdhost_send_cmd()
307 if (cmd->resp_type & MMC_RSP_48 && cmd->resp_type != MMC_RESPONSE_R2) { in rpi3_sdhost_send_cmd()
311 } else if (cmd->resp_type & MMC_RSP_136) { in rpi3_sdhost_send_cmd()
320 if (cmd->resp_type & MMC_RSP_BUSY) { in rpi3_sdhost_send_cmd()
/external/webrtc/p2p/base/
Dturn_server.cc102 int resp_type = (req) ? GetStunSuccessResponseType(req->type()) : -1; in InitResponse() local
103 if (resp_type == -1) in InitResponse()
105 resp->SetType(resp_type); in InitResponse()
114 int resp_type = (req) ? GetStunErrorResponseType(req->type()) : -1; in InitErrorResponse() local
115 if (resp_type == -1) in InitErrorResponse()
117 resp->SetType(resp_type); in InitErrorResponse()
/external/arm-trusted-firmware/include/drivers/
Dmmc.h117 unsigned int resp_type; member
/external/rust/crates/grpcio-compiler/src/
Dcodegen.rs498 let (req, req_type, resp_type) = match self.method_type().0 { in write_service()
510 fq_grpc(resp_type), in write_service()
/external/arm-trusted-firmware/drivers/synopsys/emmc/
Ddw_mmc.c269 switch (cmd->resp_type) { in dw_send_cmd()
/external/arm-trusted-firmware/drivers/mmc/
Dmmc.c57 cmd.resp_type = r_type; in mmc_send_cmd()