hw/sd/sdcard: Add sd_acmd_SET_CLR_CARD_DETECT handler (ACMD42)
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Cédric Le Goater <clg@redhat.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Message-Id: <20240628070216.92609-74-philmd@linaro.org>
This commit is contained in:
parent
c79cbe44ec
commit
7614306f2a
25
hw/sd/sd.c
25
hw/sd/sd.c
@ -261,7 +261,6 @@ static const char *sd_acmd_name(SDState *sd, uint8_t cmd)
|
|||||||
[14] = "DPS_spec", [15] = "DPS_spec",
|
[14] = "DPS_spec", [15] = "DPS_spec",
|
||||||
[16] = "DPS_spec",
|
[16] = "DPS_spec",
|
||||||
[18] = "SECU_spec",
|
[18] = "SECU_spec",
|
||||||
[42] = "SET_CLR_CARD_DETECT",
|
|
||||||
[51] = "SEND_SCR",
|
[51] = "SEND_SCR",
|
||||||
[52] = "SECU_spec", [53] = "SECU_spec",
|
[52] = "SECU_spec", [53] = "SECU_spec",
|
||||||
[54] = "SECU_spec",
|
[54] = "SECU_spec",
|
||||||
@ -1729,6 +1728,17 @@ static sd_rsp_type_t sd_acmd_SD_APP_OP_COND(SDState *sd, SDRequest req)
|
|||||||
return sd_r3;
|
return sd_r3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ACMD42 */
|
||||||
|
static sd_rsp_type_t sd_acmd_SET_CLR_CARD_DETECT(SDState *sd, SDRequest req)
|
||||||
|
{
|
||||||
|
if (sd->state != sd_transfer_state) {
|
||||||
|
return sd_invalid_state_for_cmd(sd, req);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bringing in the 50KOhm pull-up resistor... Done. */
|
||||||
|
return sd_r1;
|
||||||
|
}
|
||||||
|
|
||||||
static sd_rsp_type_t sd_normal_command(SDState *sd, SDRequest req)
|
static sd_rsp_type_t sd_normal_command(SDState *sd, SDRequest req)
|
||||||
{
|
{
|
||||||
uint64_t addr;
|
uint64_t addr;
|
||||||
@ -1853,17 +1863,6 @@ static sd_rsp_type_t sd_app_command(SDState *sd,
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch (req.cmd) {
|
switch (req.cmd) {
|
||||||
case 42: /* ACMD42: SET_CLR_CARD_DETECT */
|
|
||||||
switch (sd->state) {
|
|
||||||
case sd_transfer_state:
|
|
||||||
/* Bringing in the 50KOhm pull-up resistor... Done. */
|
|
||||||
return sd_r1;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 51: /* ACMD51: SEND_SCR */
|
case 51: /* ACMD51: SEND_SCR */
|
||||||
switch (sd->state) {
|
switch (sd->state) {
|
||||||
case sd_transfer_state:
|
case sd_transfer_state:
|
||||||
@ -2333,6 +2332,7 @@ static const SDProto sd_proto_spi = {
|
|||||||
[22] = {8, sd_spi, "SEND_NUM_WR_BLOCKS", sd_acmd_SEND_NUM_WR_BLOCKS},
|
[22] = {8, sd_spi, "SEND_NUM_WR_BLOCKS", sd_acmd_SEND_NUM_WR_BLOCKS},
|
||||||
[23] = {8, sd_spi, "SET_WR_BLK_ERASE_COUNT", sd_acmd_SET_WR_BLK_ERASE_COUNT},
|
[23] = {8, sd_spi, "SET_WR_BLK_ERASE_COUNT", sd_acmd_SET_WR_BLK_ERASE_COUNT},
|
||||||
[41] = {8, sd_spi, "SEND_OP_COND", spi_cmd_SEND_OP_COND},
|
[41] = {8, sd_spi, "SEND_OP_COND", spi_cmd_SEND_OP_COND},
|
||||||
|
[42] = {8, sd_spi, "SET_CLR_CARD_DETECT", sd_acmd_SET_CLR_CARD_DETECT},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -2392,6 +2392,7 @@ static const SDProto sd_proto_sd = {
|
|||||||
[22] = {8, sd_adtc, "SEND_NUM_WR_BLOCKS", sd_acmd_SEND_NUM_WR_BLOCKS},
|
[22] = {8, sd_adtc, "SEND_NUM_WR_BLOCKS", sd_acmd_SEND_NUM_WR_BLOCKS},
|
||||||
[23] = {8, sd_ac, "SET_WR_BLK_ERASE_COUNT", sd_acmd_SET_WR_BLK_ERASE_COUNT},
|
[23] = {8, sd_ac, "SET_WR_BLK_ERASE_COUNT", sd_acmd_SET_WR_BLK_ERASE_COUNT},
|
||||||
[41] = {8, sd_bcr, "SD_APP_OP_COND", sd_acmd_SD_APP_OP_COND},
|
[41] = {8, sd_bcr, "SD_APP_OP_COND", sd_acmd_SD_APP_OP_COND},
|
||||||
|
[42] = {8, sd_ac, "SET_CLR_CARD_DETECT", sd_acmd_SET_CLR_CARD_DETECT},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user