blob: eedf878383837b1978952e6002c51eedca60b2f6 [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>
Avi Kivityb90600e2012-10-03 16:42:37 +020014#include "memory.h"
Paul Brook1ad21342009-05-19 16:17:58 +010015#include "hw/hw.h"
aliguori59a703e2009-02-05 21:23:58 +000016#include "block.h"
Benjamin Herrenschmidt7a0bac42012-06-27 14:50:47 +100017#include "kvm.h"
aliguori244ab902009-02-05 21:23:50 +000018
David Gibsond86a77f2012-06-27 14:50:38 +100019typedef struct DMAContext DMAContext;
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +020020typedef struct ScatterGatherEntry ScatterGatherEntry;
21
David Gibson43cf8ae2012-03-27 13:42:23 +110022typedef enum {
23 DMA_DIRECTION_TO_DEVICE = 0,
24 DMA_DIRECTION_FROM_DEVICE = 1,
25} DMADirection;
26
Paolo Bonzinifead0c22011-11-09 16:58:30 +010027struct QEMUSGList {
28 ScatterGatherEntry *sg;
29 int nsg;
30 int nalloc;
31 size_t size;
David Gibsonc65bcef2012-06-27 14:50:40 +100032 DMAContext *dma;
Paolo Bonzinifead0c22011-11-09 16:58:30 +010033};
34
Avi Kivity4be403c2012-10-04 12:36:04 +020035#ifndef CONFIG_USER_ONLY
David Gibsond9d10552011-10-31 17:06:45 +110036
David Gibsone5332e62012-06-27 14:50:43 +100037/*
38 * When an IOMMU is present, bus addresses become distinct from
39 * CPU/memory physical addresses and may be a different size. Because
40 * the IOVA size depends more on the bus than on the platform, we more
41 * or less have to treat these as 64-bit always to cover all (or at
42 * least most) cases.
43 */
44typedef uint64_t dma_addr_t;
45
46#define DMA_ADDR_BITS 64
47#define DMA_ADDR_FMT "%" PRIx64
48
49typedef int DMATranslateFunc(DMAContext *dma,
50 dma_addr_t addr,
Avi Kivitya8170e52012-10-23 12:30:10 +020051 hwaddr *paddr,
52 hwaddr *len,
David Gibsone5332e62012-06-27 14:50:43 +100053 DMADirection dir);
54typedef void* DMAMapFunc(DMAContext *dma,
55 dma_addr_t addr,
56 dma_addr_t *len,
57 DMADirection dir);
58typedef void DMAUnmapFunc(DMAContext *dma,
59 void *buffer,
60 dma_addr_t len,
61 DMADirection dir,
62 dma_addr_t access_len);
63
64struct DMAContext {
Avi Kivityb90600e2012-10-03 16:42:37 +020065 AddressSpace *as;
David Gibsone5332e62012-06-27 14:50:43 +100066 DMATranslateFunc *translate;
67 DMAMapFunc *map;
68 DMAUnmapFunc *unmap;
69};
70
Peter Maydell9e119082012-10-29 11:34:32 +100071/* A global DMA context corresponding to the address_space_memory
72 * AddressSpace, for sysbus devices which do DMA.
73 */
74extern DMAContext dma_context_memory;
75
Benjamin Herrenschmidt7a0bac42012-06-27 14:50:47 +100076static inline void dma_barrier(DMAContext *dma, DMADirection dir)
77{
78 /*
79 * This is called before DMA read and write operations
80 * unless the _relaxed form is used and is responsible
81 * for providing some sane ordering of accesses vs
82 * concurrently running VCPUs.
83 *
84 * Users of map(), unmap() or lower level st/ld_*
85 * operations are responsible for providing their own
86 * ordering via barriers.
87 *
88 * This primitive implementation does a simple smp_mb()
89 * before each operation which provides pretty much full
90 * ordering.
91 *
92 * A smarter implementation can be devised if needed to
93 * use lighter barriers based on the direction of the
94 * transfer, the DMA context, etc...
95 */
96 if (kvm_enabled()) {
97 smp_mb();
98 }
99}
100
David Gibsone5332e62012-06-27 14:50:43 +1000101static inline bool dma_has_iommu(DMAContext *dma)
102{
Avi Kivityb90600e2012-10-03 16:42:37 +0200103 return dma && dma->translate;
David Gibsone5332e62012-06-27 14:50:43 +1000104}
David Gibsond9d10552011-10-31 17:06:45 +1100105
David Gibsond86a77f2012-06-27 14:50:38 +1000106/* Checks that the given range of addresses is valid for DMA. This is
107 * useful for certain cases, but usually you should just use
108 * dma_memory_{read,write}() and check for errors */
David Gibsone5332e62012-06-27 14:50:43 +1000109bool iommu_dma_memory_valid(DMAContext *dma, dma_addr_t addr, dma_addr_t len,
110 DMADirection dir);
111static inline bool dma_memory_valid(DMAContext *dma,
112 dma_addr_t addr, dma_addr_t len,
113 DMADirection dir)
David Gibsond86a77f2012-06-27 14:50:38 +1000114{
David Gibsone5332e62012-06-27 14:50:43 +1000115 if (!dma_has_iommu(dma)) {
116 return true;
117 } else {
118 return iommu_dma_memory_valid(dma, addr, len, dir);
119 }
David Gibsond86a77f2012-06-27 14:50:38 +1000120}
121
David Gibsone5332e62012-06-27 14:50:43 +1000122int iommu_dma_memory_rw(DMAContext *dma, dma_addr_t addr,
123 void *buf, dma_addr_t len, DMADirection dir);
Benjamin Herrenschmidt7a0bac42012-06-27 14:50:47 +1000124static inline int dma_memory_rw_relaxed(DMAContext *dma, dma_addr_t addr,
125 void *buf, dma_addr_t len,
126 DMADirection dir)
David Gibsond86a77f2012-06-27 14:50:38 +1000127{
David Gibsone5332e62012-06-27 14:50:43 +1000128 if (!dma_has_iommu(dma)) {
129 /* Fast-path for no IOMMU */
Avi Kivityb90600e2012-10-03 16:42:37 +0200130 address_space_rw(dma->as, addr, buf, len, dir == DMA_DIRECTION_FROM_DEVICE);
David Gibsone5332e62012-06-27 14:50:43 +1000131 return 0;
132 } else {
133 return iommu_dma_memory_rw(dma, addr, buf, len, dir);
134 }
David Gibsond86a77f2012-06-27 14:50:38 +1000135}
136
Benjamin Herrenschmidt7a0bac42012-06-27 14:50:47 +1000137static inline int dma_memory_read_relaxed(DMAContext *dma, dma_addr_t addr,
138 void *buf, dma_addr_t len)
139{
140 return dma_memory_rw_relaxed(dma, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
141}
142
143static inline int dma_memory_write_relaxed(DMAContext *dma, dma_addr_t addr,
144 const void *buf, dma_addr_t len)
145{
146 return dma_memory_rw_relaxed(dma, addr, (void *)buf, len,
147 DMA_DIRECTION_FROM_DEVICE);
148}
149
150static inline int dma_memory_rw(DMAContext *dma, dma_addr_t addr,
151 void *buf, dma_addr_t len,
152 DMADirection dir)
153{
154 dma_barrier(dma, dir);
155
156 return dma_memory_rw_relaxed(dma, addr, buf, len, dir);
157}
158
David Gibsond86a77f2012-06-27 14:50:38 +1000159static inline int dma_memory_read(DMAContext *dma, dma_addr_t addr,
160 void *buf, dma_addr_t len)
161{
162 return dma_memory_rw(dma, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
163}
164
165static inline int dma_memory_write(DMAContext *dma, dma_addr_t addr,
166 const void *buf, dma_addr_t len)
167{
168 return dma_memory_rw(dma, addr, (void *)buf, len,
169 DMA_DIRECTION_FROM_DEVICE);
170}
171
David Gibsone5332e62012-06-27 14:50:43 +1000172int iommu_dma_memory_set(DMAContext *dma, dma_addr_t addr, uint8_t c,
173 dma_addr_t len);
174
David Gibsond86a77f2012-06-27 14:50:38 +1000175int dma_memory_set(DMAContext *dma, dma_addr_t addr, uint8_t c, dma_addr_t len);
176
David Gibsone5332e62012-06-27 14:50:43 +1000177void *iommu_dma_memory_map(DMAContext *dma,
178 dma_addr_t addr, dma_addr_t *len,
179 DMADirection dir);
David Gibsond86a77f2012-06-27 14:50:38 +1000180static inline void *dma_memory_map(DMAContext *dma,
181 dma_addr_t addr, dma_addr_t *len,
182 DMADirection dir)
183{
David Gibsone5332e62012-06-27 14:50:43 +1000184 if (!dma_has_iommu(dma)) {
Avi Kivitya8170e52012-10-23 12:30:10 +0200185 hwaddr xlen = *len;
David Gibsone5332e62012-06-27 14:50:43 +1000186 void *p;
David Gibsond86a77f2012-06-27 14:50:38 +1000187
Avi Kivityb90600e2012-10-03 16:42:37 +0200188 p = address_space_map(dma->as, addr, &xlen, dir == DMA_DIRECTION_FROM_DEVICE);
David Gibsone5332e62012-06-27 14:50:43 +1000189 *len = xlen;
190 return p;
191 } else {
192 return iommu_dma_memory_map(dma, addr, len, dir);
193 }
David Gibsond86a77f2012-06-27 14:50:38 +1000194}
195
David Gibsone5332e62012-06-27 14:50:43 +1000196void iommu_dma_memory_unmap(DMAContext *dma,
197 void *buffer, dma_addr_t len,
198 DMADirection dir, dma_addr_t access_len);
David Gibsond86a77f2012-06-27 14:50:38 +1000199static inline void dma_memory_unmap(DMAContext *dma,
200 void *buffer, dma_addr_t len,
201 DMADirection dir, dma_addr_t access_len)
202{
David Gibsone5332e62012-06-27 14:50:43 +1000203 if (!dma_has_iommu(dma)) {
Avi Kivitya8170e52012-10-23 12:30:10 +0200204 address_space_unmap(dma->as, buffer, (hwaddr)len,
Avi Kivityb90600e2012-10-03 16:42:37 +0200205 dir == DMA_DIRECTION_FROM_DEVICE, access_len);
David Gibsone5332e62012-06-27 14:50:43 +1000206 } else {
207 iommu_dma_memory_unmap(dma, buffer, len, dir, access_len);
208 }
David Gibsond86a77f2012-06-27 14:50:38 +1000209}
210
211#define DEFINE_LDST_DMA(_lname, _sname, _bits, _end) \
212 static inline uint##_bits##_t ld##_lname##_##_end##_dma(DMAContext *dma, \
213 dma_addr_t addr) \
214 { \
215 uint##_bits##_t val; \
216 dma_memory_read(dma, addr, &val, (_bits) / 8); \
217 return _end##_bits##_to_cpu(val); \
218 } \
219 static inline void st##_sname##_##_end##_dma(DMAContext *dma, \
220 dma_addr_t addr, \
221 uint##_bits##_t val) \
222 { \
223 val = cpu_to_##_end##_bits(val); \
224 dma_memory_write(dma, addr, &val, (_bits) / 8); \
225 }
226
227static inline uint8_t ldub_dma(DMAContext *dma, dma_addr_t addr)
228{
229 uint8_t val;
230
231 dma_memory_read(dma, addr, &val, 1);
232 return val;
233}
234
235static inline void stb_dma(DMAContext *dma, dma_addr_t addr, uint8_t val)
236{
237 dma_memory_write(dma, addr, &val, 1);
238}
239
240DEFINE_LDST_DMA(uw, w, 16, le);
241DEFINE_LDST_DMA(l, l, 32, le);
242DEFINE_LDST_DMA(q, q, 64, le);
243DEFINE_LDST_DMA(uw, w, 16, be);
244DEFINE_LDST_DMA(l, l, 32, be);
245DEFINE_LDST_DMA(q, q, 64, be);
246
247#undef DEFINE_LDST_DMA
248
Avi Kivityb90600e2012-10-03 16:42:37 +0200249void dma_context_init(DMAContext *dma, AddressSpace *as, DMATranslateFunc translate,
David Gibsone5332e62012-06-27 14:50:43 +1000250 DMAMapFunc map, DMAUnmapFunc unmap);
251
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +0200252struct ScatterGatherEntry {
David Gibsond3231182011-10-31 17:06:46 +1100253 dma_addr_t base;
254 dma_addr_t len;
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +0200255};
aliguori244ab902009-02-05 21:23:50 +0000256
David Gibsonc65bcef2012-06-27 14:50:40 +1000257void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint, DMAContext *dma);
David Gibsond3231182011-10-31 17:06:46 +1100258void qemu_sglist_add(QEMUSGList *qsg, dma_addr_t base, dma_addr_t len);
aliguori244ab902009-02-05 21:23:50 +0000259void qemu_sglist_destroy(QEMUSGList *qsg);
Paolo Bonzini10dc8ae2011-09-16 16:40:01 +0200260#endif
aliguori244ab902009-02-05 21:23:50 +0000261
Christoph Hellwigcb144cc2011-05-19 10:57:59 +0200262typedef BlockDriverAIOCB *DMAIOFunc(BlockDriverState *bs, int64_t sector_num,
263 QEMUIOVector *iov, int nb_sectors,
264 BlockDriverCompletionFunc *cb, void *opaque);
265
266BlockDriverAIOCB *dma_bdrv_io(BlockDriverState *bs,
267 QEMUSGList *sg, uint64_t sector_num,
268 DMAIOFunc *io_func, BlockDriverCompletionFunc *cb,
David Gibson43cf8ae2012-03-27 13:42:23 +1100269 void *opaque, DMADirection dir);
aliguori59a703e2009-02-05 21:23:58 +0000270BlockDriverAIOCB *dma_bdrv_read(BlockDriverState *bs,
271 QEMUSGList *sg, uint64_t sector,
272 BlockDriverCompletionFunc *cb, void *opaque);
273BlockDriverAIOCB *dma_bdrv_write(BlockDriverState *bs,
274 QEMUSGList *sg, uint64_t sector,
275 BlockDriverCompletionFunc *cb, void *opaque);
Paolo Bonzini8171ee32011-07-06 08:02:14 +0200276uint64_t dma_buf_read(uint8_t *ptr, int32_t len, QEMUSGList *sg);
277uint64_t dma_buf_write(uint8_t *ptr, int32_t len, QEMUSGList *sg);
278
Paolo Bonzini84a69352011-09-05 14:20:29 +0200279void dma_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie,
280 QEMUSGList *sg, enum BlockAcctType type);
281
aliguori244ab902009-02-05 21:23:50 +0000282#endif