Searched refs:buf_maxsz (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/include/hw/sd/ |
H A D | sdhci.h | 86 uint32_t buf_maxsz; member
|
/openbmc/qemu/hw/sd/ |
H A D | sdhci.c | 484 assert(s->data_count < s->buf_maxsz); in sdhci_read_dataport() 575 assert(s->data_count < s->buf_maxsz); in sdhci_write_dataport() 1201 if (extract32(s->blksize, 0, 12) > s->buf_maxsz) { in sdhci_write() 1204 s->buf_maxsz); in sdhci_write() 1206 s->blksize = deposit32(s->blksize, 0, 12, s->buf_maxsz); in sdhci_write() 1461 s->buf_maxsz = sdhci_get_fifolen(s); in sdhci_common_realize() 1462 s->fifo_buffer = g_malloc0(s->buf_maxsz); in sdhci_common_realize() 1529 VMSTATE_VBUFFER_UINT32(fifo_buffer, SDHCIState, 1, NULL, buf_maxsz),
|