Home
last modified time | relevance | path

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

/external/coreboot/src/drivers/spi/
Dspi_sdcard.c113 static void spi_sdcard_sendbyte(const struct spi_sdcard *card, uint8_t b) in spi_sdcard_sendbyte() function
296 spi_sdcard_sendbyte(card, (cmd | 0x40) & 0x7f); in spi_sdcard_do_command_help()
298 spi_sdcard_sendbyte(card, (argument >> (8 * 3)) & 0xff); in spi_sdcard_do_command_help()
299 spi_sdcard_sendbyte(card, (argument >> (8 * 2)) & 0xff); in spi_sdcard_do_command_help()
300 spi_sdcard_sendbyte(card, (argument >> (8 * 1)) & 0xff); in spi_sdcard_do_command_help()
301 spi_sdcard_sendbyte(card, (argument >> (8 * 0)) & 0xff); in spi_sdcard_do_command_help()
303 spi_sdcard_sendbyte(card, crc); in spi_sdcard_do_command_help()
429 spi_sdcard_sendbyte(card, 0xff); in spi_sdcard_init()
669 spi_sdcard_sendbyte(card, CT_BLOCK_START); in spi_sdcard_single_write()
673 spi_sdcard_sendbyte(card, ((uint8_t *)buff)[i]); in spi_sdcard_single_write()
[all …]