mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
pci: Let st*_pci_dma() take MemTxAttrs argument
Let devices specify transaction attributes when calling st*_pci_dma(). Keep the default MEMTXATTRS_UNSPECIFIED in the few callers. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20211223115554.3155328-21-philmd@redhat.com>
This commit is contained in:
parent
cd1db8df74
commit
a423a1b523
6 changed files with 52 additions and 34 deletions
|
@ -859,11 +859,12 @@ static inline MemTxResult pci_dma_write(PCIDevice *dev, dma_addr_t addr,
|
|||
MEMTXATTRS_UNSPECIFIED); \
|
||||
return val; \
|
||||
} \
|
||||
static inline void st##_s##_pci_dma(PCIDevice *dev, \
|
||||
dma_addr_t addr, uint##_bits##_t val) \
|
||||
{ \
|
||||
st##_s##_dma(pci_get_address_space(dev), addr, val, \
|
||||
MEMTXATTRS_UNSPECIFIED); \
|
||||
static inline void st##_s##_pci_dma(PCIDevice *dev, \
|
||||
dma_addr_t addr, \
|
||||
uint##_bits##_t val, \
|
||||
MemTxAttrs attrs) \
|
||||
{ \
|
||||
st##_s##_dma(pci_get_address_space(dev), addr, val, attrs); \
|
||||
}
|
||||
|
||||
PCI_DMA_DEFINE_LDST(ub, b, 8);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue