Home
last modified time | relevance | path

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

/openbmc/qemu/include/hw/sd/
H A Dsdhci.h86 uint32_t buf_maxsz; member
/openbmc/qemu/hw/sd/
H A Dsdhci.c476 assert(s->data_count < s->buf_maxsz); in sdhci_read_dataport()
565 assert(s->data_count < s->buf_maxsz); in sdhci_write_dataport()
1186 if (extract32(s->blksize, 0, 12) > s->buf_maxsz) { in sdhci_write()
1189 s->buf_maxsz); in sdhci_write()
1191 s->blksize = deposit32(s->blksize, 0, 12, s->buf_maxsz); in sdhci_write()
1440 s->buf_maxsz = sdhci_get_fifolen(s); in sdhci_common_realize()
1441 s->fifo_buffer = g_malloc0(s->buf_maxsz); in sdhci_common_realize()
1506 VMSTATE_VBUFFER_UINT32(fifo_buffer, SDHCIState, 1, NULL, buf_maxsz),