You need to sign in or sign up before continuing.
dma-helpers.c 5.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * DMA helper functions
 *
 * Copyright (c) 2009 Red Hat
 *
 * This work is licensed under the terms of the GNU General Public License
 * (GNU GPL), version 2 or later.
 */

#include "dma.h"
11
#include "block_int.h"
K
Kevin Wolf 已提交
12
#include "trace.h"
13 14 15

void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint)
{
16
    qsg->sg = g_malloc(alloc_hint * sizeof(ScatterGatherEntry));
17 18 19 20 21
    qsg->nsg = 0;
    qsg->nalloc = alloc_hint;
    qsg->size = 0;
}

22
void qemu_sglist_add(QEMUSGList *qsg, dma_addr_t base, dma_addr_t len)
23 24 25
{
    if (qsg->nsg == qsg->nalloc) {
        qsg->nalloc = 2 * qsg->nalloc + 1;
26
        qsg->sg = g_realloc(qsg->sg, qsg->nalloc * sizeof(ScatterGatherEntry));
27 28 29 30 31 32 33 34 35
    }
    qsg->sg[qsg->nsg].base = base;
    qsg->sg[qsg->nsg].len = len;
    qsg->size += len;
    ++qsg->nsg;
}

void qemu_sglist_destroy(QEMUSGList *qsg)
{
36
    g_free(qsg->sg);
37 38
}

39
typedef struct {
40
    BlockDriverAIOCB common;
41 42 43 44
    BlockDriverState *bs;
    BlockDriverAIOCB *acb;
    QEMUSGList *sg;
    uint64_t sector_num;
45
    bool to_dev;
46
    bool in_cancel;
47
    int sg_cur_index;
48
    dma_addr_t sg_cur_byte;
49 50
    QEMUIOVector iov;
    QEMUBH *bh;
51
    DMAIOFunc *io_func;
52
} DMAAIOCB;
53 54 55 56 57

static void dma_bdrv_cb(void *opaque, int ret);

static void reschedule_dma(void *opaque)
{
58
    DMAAIOCB *dbs = (DMAAIOCB *)opaque;
59 60 61

    qemu_bh_delete(dbs->bh);
    dbs->bh = NULL;
62
    dma_bdrv_cb(dbs, 0);
63 64 65 66
}

static void continue_after_map_failure(void *opaque)
{
67
    DMAAIOCB *dbs = (DMAAIOCB *)opaque;
68 69 70 71 72

    dbs->bh = qemu_bh_new(reschedule_dma, dbs);
    qemu_bh_schedule(dbs->bh);
}

73
static void dma_bdrv_unmap(DMAAIOCB *dbs)
74 75 76 77 78
{
    int i;

    for (i = 0; i < dbs->iov.niov; ++i) {
        cpu_physical_memory_unmap(dbs->iov.iov[i].iov_base,
79
                                  dbs->iov.iov[i].iov_len, !dbs->to_dev,
80 81
                                  dbs->iov.iov[i].iov_len);
    }
82 83 84 85 86
    qemu_iovec_reset(&dbs->iov);
}

static void dma_complete(DMAAIOCB *dbs, int ret)
{
K
Kevin Wolf 已提交
87 88
    trace_dma_complete(dbs, ret, dbs->common.cb);

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    dma_bdrv_unmap(dbs);
    if (dbs->common.cb) {
        dbs->common.cb(dbs->common.opaque, ret);
    }
    qemu_iovec_destroy(&dbs->iov);
    if (dbs->bh) {
        qemu_bh_delete(dbs->bh);
        dbs->bh = NULL;
    }
    if (!dbs->in_cancel) {
        /* Requests may complete while dma_aio_cancel is in progress.  In
         * this case, the AIOCB should not be released because it is still
         * referenced by dma_aio_cancel.  */
        qemu_aio_release(dbs);
    }
104 105
}

B
blueswir1 已提交
106
static void dma_bdrv_cb(void *opaque, int ret)
107 108
{
    DMAAIOCB *dbs = (DMAAIOCB *)opaque;
A
Anthony Liguori 已提交
109
    target_phys_addr_t cur_addr, cur_len;
110 111
    void *mem;

K
Kevin Wolf 已提交
112 113
    trace_dma_bdrv_cb(dbs, ret);

114 115 116
    dbs->acb = NULL;
    dbs->sector_num += dbs->iov.size / 512;
    dma_bdrv_unmap(dbs);
117 118

    if (dbs->sg_cur_index == dbs->sg->nsg || ret < 0) {
119
        dma_complete(dbs, ret);
120 121 122 123 124 125
        return;
    }

    while (dbs->sg_cur_index < dbs->sg->nsg) {
        cur_addr = dbs->sg->sg[dbs->sg_cur_index].base + dbs->sg_cur_byte;
        cur_len = dbs->sg->sg[dbs->sg_cur_index].len - dbs->sg_cur_byte;
126
        mem = cpu_physical_memory_map(cur_addr, &cur_len, !dbs->to_dev);
127 128 129 130 131 132 133 134 135 136 137
        if (!mem)
            break;
        qemu_iovec_add(&dbs->iov, mem, cur_len);
        dbs->sg_cur_byte += cur_len;
        if (dbs->sg_cur_byte == dbs->sg->sg[dbs->sg_cur_index].len) {
            dbs->sg_cur_byte = 0;
            ++dbs->sg_cur_index;
        }
    }

    if (dbs->iov.size == 0) {
K
Kevin Wolf 已提交
138
        trace_dma_map_wait(dbs);
139 140 141 142
        cpu_register_map_client(dbs, continue_after_map_failure);
        return;
    }

143 144
    dbs->acb = dbs->io_func(dbs->bs, dbs->sector_num, &dbs->iov,
                            dbs->iov.size / 512, dma_bdrv_cb, dbs);
145
    if (!dbs->acb) {
146
        dma_complete(dbs, -EIO);
147
    }
148 149
}

150 151 152 153
static void dma_aio_cancel(BlockDriverAIOCB *acb)
{
    DMAAIOCB *dbs = container_of(acb, DMAAIOCB, common);

K
Kevin Wolf 已提交
154 155
    trace_dma_aio_cancel(dbs);

156
    if (dbs->acb) {
157 158 159 160 161
        BlockDriverAIOCB *acb = dbs->acb;
        dbs->acb = NULL;
        dbs->in_cancel = true;
        bdrv_aio_cancel(acb);
        dbs->in_cancel = false;
162
    }
163 164
    dbs->common.cb = NULL;
    dma_complete(dbs, 0);
165 166 167 168 169 170 171
}

static AIOPool dma_aio_pool = {
    .aiocb_size         = sizeof(DMAAIOCB),
    .cancel             = dma_aio_cancel,
};

172
BlockDriverAIOCB *dma_bdrv_io(
173
    BlockDriverState *bs, QEMUSGList *sg, uint64_t sector_num,
174
    DMAIOFunc *io_func, BlockDriverCompletionFunc *cb,
175
    void *opaque, bool to_dev)
176
{
177
    DMAAIOCB *dbs = qemu_aio_get(&dma_aio_pool, bs, cb, opaque);
178

K
Kevin Wolf 已提交
179 180
    trace_dma_bdrv_io(dbs, bs, sector_num, to_dev);

181
    dbs->acb = NULL;
182 183 184 185 186
    dbs->bs = bs;
    dbs->sg = sg;
    dbs->sector_num = sector_num;
    dbs->sg_cur_index = 0;
    dbs->sg_cur_byte = 0;
187
    dbs->to_dev = to_dev;
188
    dbs->io_func = io_func;
189 190 191
    dbs->bh = NULL;
    qemu_iovec_init(&dbs->iov, sg->nsg);
    dma_bdrv_cb(dbs, 0);
192
    return &dbs->common;
193 194 195 196 197 198 199
}


BlockDriverAIOCB *dma_bdrv_read(BlockDriverState *bs,
                                QEMUSGList *sg, uint64_t sector,
                                void (*cb)(void *opaque, int ret), void *opaque)
{
200
    return dma_bdrv_io(bs, sg, sector, bdrv_aio_readv, cb, opaque, false);
201 202 203 204 205 206
}

BlockDriverAIOCB *dma_bdrv_write(BlockDriverState *bs,
                                 QEMUSGList *sg, uint64_t sector,
                                 void (*cb)(void *opaque, int ret), void *opaque)
{
207
    return dma_bdrv_io(bs, sg, sector, bdrv_aio_writev, cb, opaque, true);
208
}