blob: 20e86d28eefb3e032ab8f27eda939573f41745ce [file] [log] [blame]
aliguori244ab902009-02-05 21:23:50 +00001/*
2 * DMA helper functions
3 *
4 * Copyright (c) 2009 Red Hat
5 *
6 * This work is licensed under the terms of the GNU General Public License
7 * (GNU GPL), version 2 or later.
8 */
9
10#ifndef DMA_H
11#define DMA_H
12
13#include <stdio.h>
Paul Brook1ad21342009-05-19 16:17:58 +010014//#include "cpu.h"
15#include "hw/hw.h"
aliguori59a703e2009-02-05 21:23:58 +000016#include "block.h"
aliguori244ab902009-02-05 21:23:50 +000017
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +020018typedef struct ScatterGatherEntry ScatterGatherEntry;
19
Paolo Bonzinifead0c22011-11-09 16:58:30 +010020struct QEMUSGList {
21 ScatterGatherEntry *sg;
22 int nsg;
23 int nalloc;
24 size_t size;
25};
26
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +020027#if defined(TARGET_PHYS_ADDR_BITS)
David Gibsond9d10552011-10-31 17:06:45 +110028typedef target_phys_addr_t dma_addr_t;
29
30#define DMA_ADDR_FMT TARGET_FMT_plx
31
32typedef enum {
33 DMA_DIRECTION_TO_DEVICE = 0,
34 DMA_DIRECTION_FROM_DEVICE = 1,
35} DMADirection;
36
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +020037struct ScatterGatherEntry {
David Gibsond3231182011-10-31 17:06:46 +110038 dma_addr_t base;
39 dma_addr_t len;
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +020040};
aliguori244ab902009-02-05 21:23:50 +000041
aliguori244ab902009-02-05 21:23:50 +000042void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint);
David Gibsond3231182011-10-31 17:06:46 +110043void qemu_sglist_add(QEMUSGList *qsg, dma_addr_t base, dma_addr_t len);
aliguori244ab902009-02-05 21:23:50 +000044void qemu_sglist_destroy(QEMUSGList *qsg);
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +020045#endif
aliguori244ab902009-02-05 21:23:50 +000046
Christoph Hellwigcb144cc2011-05-19 10:57:59 +020047typedef BlockDriverAIOCB *DMAIOFunc(BlockDriverState *bs, int64_t sector_num,
48 QEMUIOVector *iov, int nb_sectors,
49 BlockDriverCompletionFunc *cb, void *opaque);
50
51BlockDriverAIOCB *dma_bdrv_io(BlockDriverState *bs,
52 QEMUSGList *sg, uint64_t sector_num,
53 DMAIOFunc *io_func, BlockDriverCompletionFunc *cb,
Paolo Bonzinibbca72c2011-09-16 16:40:00 +020054 void *opaque, bool to_dev);
aliguori59a703e2009-02-05 21:23:58 +000055BlockDriverAIOCB *dma_bdrv_read(BlockDriverState *bs,
56 QEMUSGList *sg, uint64_t sector,
57 BlockDriverCompletionFunc *cb, void *opaque);
58BlockDriverAIOCB *dma_bdrv_write(BlockDriverState *bs,
59 QEMUSGList *sg, uint64_t sector,
60 BlockDriverCompletionFunc *cb, void *opaque);
Paolo Bonzini8171ee32011-07-06 08:02:14 +020061uint64_t dma_buf_read(uint8_t *ptr, int32_t len, QEMUSGList *sg);
62uint64_t dma_buf_write(uint8_t *ptr, int32_t len, QEMUSGList *sg);
63
Paolo Bonzini84a69352011-09-05 14:20:29 +020064void dma_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie,
65 QEMUSGList *sg, enum BlockAcctType type);
66
aliguori244ab902009-02-05 21:23:50 +000067#endif