4 * Copyright (c) 2009 Red Hat
6 * This work is licensed under the terms of the GNU General Public License
7 * (GNU GPL), version 2 or later.
17 typedef struct ScatterGatherEntry ScatterGatherEntry;
20 DMA_DIRECTION_TO_DEVICE = 0,
21 DMA_DIRECTION_FROM_DEVICE = 1,
25 ScatterGatherEntry *sg;
31 #if defined(TARGET_PHYS_ADDR_BITS)
32 typedef target_phys_addr_t dma_addr_t;
34 #define DMA_ADDR_FMT TARGET_FMT_plx
36 struct ScatterGatherEntry {
41 void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint);
42 void qemu_sglist_add(QEMUSGList *qsg, dma_addr_t base, dma_addr_t len);
43 void qemu_sglist_destroy(QEMUSGList *qsg);
46 typedef BlockDriverAIOCB *DMAIOFunc(BlockDriverState *bs, int64_t sector_num,
47 QEMUIOVector *iov, int nb_sectors,
48 BlockDriverCompletionFunc *cb, void *opaque);
50 BlockDriverAIOCB *dma_bdrv_io(BlockDriverState *bs,
51 QEMUSGList *sg, uint64_t sector_num,
52 DMAIOFunc *io_func, BlockDriverCompletionFunc *cb,
53 void *opaque, DMADirection dir);
54 BlockDriverAIOCB *dma_bdrv_read(BlockDriverState *bs,
55 QEMUSGList *sg, uint64_t sector,
56 BlockDriverCompletionFunc *cb, void *opaque);
57 BlockDriverAIOCB *dma_bdrv_write(BlockDriverState *bs,
58 QEMUSGList *sg, uint64_t sector,
59 BlockDriverCompletionFunc *cb, void *opaque);
60 uint64_t dma_buf_read(uint8_t *ptr, int32_t len, QEMUSGList *sg);
61 uint64_t dma_buf_write(uint8_t *ptr, int32_t len, QEMUSGList *sg);
63 void dma_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie,
64 QEMUSGList *sg, enum BlockAcctType type);