Home
last modified time | relevance | path

Searched refs:cmdreg (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/tests/qtest/libqos/
H A Dsdhci-cmd.c76 uint16_t cmdreg) in sdhci_cmd_regs() argument
82 qtest_writew(qts, base_addr + SDHC_CMDREG, cmdreg); in sdhci_cmd_regs()
H A Dsdhci-cmd.h64 uint16_t cmdreg);
/openbmc/u-boot/arch/arm/include/asm/arch-tegra/
H A Dtegra_mmc.h27 unsigned short cmdreg; /* _CMD_XFER_MODE_0 31:16 cmd reg */ member
/openbmc/qemu/include/hw/sd/
H A Dsdhci.h59 uint16_t cmdreg; /* Command Register */ member
/openbmc/qemu/hw/sd/
H A Dsdhci.c345 request.cmd = s->cmdreg >> 8; in sdhci_send_command()
351 if (s->cmdreg & SDHC_CMD_RESPONSE) { in sdhci_send_command()
375 (s->cmdreg & SDHC_CMD_RESPONSE) == SDHC_CMD_RSP_WITH_BUSY) { in sdhci_send_command()
387 (s->cmdreg & SDHC_CMD_DATA_PRESENT)) { in sdhci_send_command()
998 ((s->cmdreg & SDHC_CMD_DATA_PRESENT) || in sdhci_can_issue_command()
999 ((s->cmdreg & SDHC_CMD_RESPONSE) == SDHC_CMD_RSP_WITH_BUSY && in sdhci_can_issue_command()
1000 !(SDHC_COMMAND_TYPE(s->cmdreg) == SDHC_CMD_ABORT))))) { in sdhci_can_issue_command()
1049 ret = s->trnmod | (s->cmdreg << 16); in sdhci_read()
1248 MASKED_WRITE(s->cmdreg, mask >> 16, value >> 16); in sdhci_write()
1518 VMSTATE_UINT16(cmdreg, SDHCIState),
/openbmc/u-boot/drivers/mmc/
H A Dtegra_mmc.c212 writew((cmd->cmdidx << 8) | flags, &priv->reg->cmdreg); in tegra_mmc_send_cmd_bounced()