From: Jim Shu Date: Tue, 4 Jan 2022 06:34:08 +0000 (+0800) Subject: hw/dma: sifive_pdma: permit 4/8-byte access size of PDMA registers X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e6b0408a1728c001a0cc0568b9daae5f92e239ee;p=qemu.git hw/dma: sifive_pdma: permit 4/8-byte access size of PDMA registers It's obvious that PDMA supports 64-bit access of 64-bit registers, and in previous commit, we confirm that PDMA supports 32-bit access of both 32/64-bit registers. Thus, we configure 32/64-bit memory access of PDMA registers as valid in general. Signed-off-by: Jim Shu Reviewed-by: Frank Chang Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Alistair Francis Reviewed-by: Bin Meng Tested-by: Bin Meng Message-id: 20220104063408.658169-3-jim.shu@sifive.com Signed-off-by: Alistair Francis --- diff --git a/hw/dma/sifive_pdma.c b/hw/dma/sifive_pdma.c index f4df16449b..1dd88f3479 100644 --- a/hw/dma/sifive_pdma.c +++ b/hw/dma/sifive_pdma.c @@ -444,6 +444,10 @@ static const MemoryRegionOps sifive_pdma_ops = { .impl = { .min_access_size = 4, .max_access_size = 8, + }, + .valid = { + .min_access_size = 4, + .max_access_size = 8, } };