]> git.proxmox.com Git - mirror_qemu.git/blame - hw/sparc32_dma.c
vhost-net: disable mergeable buffers
[mirror_qemu.git] / hw / sparc32_dma.c
CommitLineData
67e999be
FB
1/*
2 * QEMU Sparc32 DMA controller emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5 *
6f57bbf4
AT
6 * Modifications:
7 * 2010-Feb-14 Artyom Tarasenko : reworked irq generation
8 *
67e999be
FB
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * THE SOFTWARE.
26 */
6f6260c7 27
87ecb68b
PB
28#include "hw.h"
29#include "sparc32_dma.h"
30#include "sun4m.h"
6f6260c7 31#include "sysbus.h"
67e999be
FB
32
33/* debug DMA */
34//#define DEBUG_DMA
35
36/*
37 * This is the DMA controller part of chip STP2000 (Master I/O), also
38 * produced as NCR89C100. See
39 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C100.txt
40 * and
41 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/DMA2.txt
42 */
43
44#ifdef DEBUG_DMA
001faf32
BS
45#define DPRINTF(fmt, ...) \
46 do { printf("DMA: " fmt , ## __VA_ARGS__); } while (0)
67e999be 47#else
001faf32 48#define DPRINTF(fmt, ...)
67e999be
FB
49#endif
50
5aca8c3b
BS
51#define DMA_REGS 4
52#define DMA_SIZE (4 * sizeof(uint32_t))
09723aa1
BS
53/* We need the mask, because one instance of the device is not page
54 aligned (ledma, start address 0x0010) */
55#define DMA_MASK (DMA_SIZE - 1)
67e999be
FB
56
57#define DMA_VER 0xa0000000
58#define DMA_INTR 1
59#define DMA_INTREN 0x10
60#define DMA_WRITE_MEM 0x100
61#define DMA_LOADED 0x04000000
5aca8c3b 62#define DMA_DRAIN_FIFO 0x40
67e999be
FB
63#define DMA_RESET 0x80
64
65typedef struct DMAState DMAState;
66
67struct DMAState {
6f6260c7 68 SysBusDevice busdev;
67e999be 69 uint32_t dmaregs[DMA_REGS];
5aca8c3b 70 qemu_irq irq;
2d069bab 71 void *iommu;
2d069bab 72 qemu_irq dev_reset;
67e999be
FB
73};
74
9b94dc32 75/* Note: on sparc, the lance 16 bit bus is swapped */
c227f099 76void ledma_memory_read(void *opaque, target_phys_addr_t addr,
9b94dc32 77 uint8_t *buf, int len, int do_bswap)
67e999be
FB
78{
79 DMAState *s = opaque;
9b94dc32 80 int i;
67e999be
FB
81
82 DPRINTF("DMA write, direction: %c, addr 0x%8.8x\n",
83 s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
5aca8c3b 84 addr |= s->dmaregs[3];
9b94dc32
FB
85 if (do_bswap) {
86 sparc_iommu_memory_read(s->iommu, addr, buf, len);
87 } else {
88 addr &= ~1;
89 len &= ~1;
90 sparc_iommu_memory_read(s->iommu, addr, buf, len);
91 for(i = 0; i < len; i += 2) {
92 bswap16s((uint16_t *)(buf + i));
93 }
94 }
67e999be
FB
95}
96
c227f099 97void ledma_memory_write(void *opaque, target_phys_addr_t addr,
9b94dc32 98 uint8_t *buf, int len, int do_bswap)
67e999be
FB
99{
100 DMAState *s = opaque;
9b94dc32
FB
101 int l, i;
102 uint16_t tmp_buf[32];
67e999be
FB
103
104 DPRINTF("DMA read, direction: %c, addr 0x%8.8x\n",
105 s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
5aca8c3b 106 addr |= s->dmaregs[3];
9b94dc32
FB
107 if (do_bswap) {
108 sparc_iommu_memory_write(s->iommu, addr, buf, len);
109 } else {
110 addr &= ~1;
111 len &= ~1;
112 while (len > 0) {
113 l = len;
114 if (l > sizeof(tmp_buf))
115 l = sizeof(tmp_buf);
116 for(i = 0; i < l; i += 2) {
117 tmp_buf[i >> 1] = bswap16(*(uint16_t *)(buf + i));
118 }
119 sparc_iommu_memory_write(s->iommu, addr, (uint8_t *)tmp_buf, l);
120 len -= l;
121 buf += l;
122 addr += l;
123 }
124 }
67e999be
FB
125}
126
70c0de96 127static void dma_set_irq(void *opaque, int irq, int level)
67e999be
FB
128{
129 DMAState *s = opaque;
70c0de96 130 if (level) {
70c0de96 131 s->dmaregs[0] |= DMA_INTR;
6f57bbf4
AT
132 if (s->dmaregs[0] & DMA_INTREN) {
133 DPRINTF("Raise IRQ\n");
134 qemu_irq_raise(s->irq);
135 }
70c0de96 136 } else {
6f57bbf4
AT
137 if (s->dmaregs[0] & DMA_INTR) {
138 s->dmaregs[0] &= ~DMA_INTR;
139 if (s->dmaregs[0] & DMA_INTREN) {
140 DPRINTF("Lower IRQ\n");
141 qemu_irq_lower(s->irq);
142 }
143 }
70c0de96 144 }
67e999be
FB
145}
146
147void espdma_memory_read(void *opaque, uint8_t *buf, int len)
148{
149 DMAState *s = opaque;
150
151 DPRINTF("DMA read, direction: %c, addr 0x%8.8x\n",
152 s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
153 sparc_iommu_memory_read(s->iommu, s->dmaregs[1], buf, len);
67e999be
FB
154 s->dmaregs[1] += len;
155}
156
157void espdma_memory_write(void *opaque, uint8_t *buf, int len)
158{
159 DMAState *s = opaque;
160
161 DPRINTF("DMA write, direction: %c, addr 0x%8.8x\n",
162 s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
163 sparc_iommu_memory_write(s->iommu, s->dmaregs[1], buf, len);
67e999be
FB
164 s->dmaregs[1] += len;
165}
166
c227f099 167static uint32_t dma_mem_readl(void *opaque, target_phys_addr_t addr)
67e999be
FB
168{
169 DMAState *s = opaque;
170 uint32_t saddr;
171
09723aa1 172 saddr = (addr & DMA_MASK) >> 2;
5aca8c3b
BS
173 DPRINTF("read dmareg " TARGET_FMT_plx ": 0x%8.8x\n", addr,
174 s->dmaregs[saddr]);
67e999be
FB
175
176 return s->dmaregs[saddr];
177}
178
c227f099 179static void dma_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
67e999be
FB
180{
181 DMAState *s = opaque;
182 uint32_t saddr;
183
09723aa1 184 saddr = (addr & DMA_MASK) >> 2;
5aca8c3b
BS
185 DPRINTF("write dmareg " TARGET_FMT_plx ": 0x%8.8x -> 0x%8.8x\n", addr,
186 s->dmaregs[saddr], val);
67e999be
FB
187 switch (saddr) {
188 case 0:
6f57bbf4
AT
189 if (val & DMA_INTREN) {
190 if (val & DMA_INTR) {
191 DPRINTF("Raise IRQ\n");
192 qemu_irq_raise(s->irq);
193 }
194 } else {
195 if (s->dmaregs[0] & (DMA_INTR | DMA_INTREN)) {
196 DPRINTF("Lower IRQ\n");
197 qemu_irq_lower(s->irq);
198 }
d537cf6c 199 }
67e999be 200 if (val & DMA_RESET) {
2d069bab
BS
201 qemu_irq_raise(s->dev_reset);
202 qemu_irq_lower(s->dev_reset);
5aca8c3b
BS
203 } else if (val & DMA_DRAIN_FIFO) {
204 val &= ~DMA_DRAIN_FIFO;
67e999be 205 } else if (val == 0)
5aca8c3b 206 val = DMA_DRAIN_FIFO;
67e999be
FB
207 val &= 0x0fffffff;
208 val |= DMA_VER;
209 break;
210 case 1:
211 s->dmaregs[0] |= DMA_LOADED;
212 break;
67e999be
FB
213 default:
214 break;
215 }
216 s->dmaregs[saddr] = val;
217}
218
d60efc6b 219static CPUReadMemoryFunc * const dma_mem_read[3] = {
7c560456
BS
220 NULL,
221 NULL,
67e999be
FB
222 dma_mem_readl,
223};
224
d60efc6b 225static CPUWriteMemoryFunc * const dma_mem_write[3] = {
7c560456
BS
226 NULL,
227 NULL,
67e999be
FB
228 dma_mem_writel,
229};
230
49ef6c90 231static void dma_reset(DeviceState *d)
67e999be 232{
49ef6c90 233 DMAState *s = container_of(d, DMAState, busdev.qdev);
67e999be 234
5aca8c3b 235 memset(s->dmaregs, 0, DMA_SIZE);
67e999be 236 s->dmaregs[0] = DMA_VER;
67e999be
FB
237}
238
75c497dc
BS
239static const VMStateDescription vmstate_dma = {
240 .name ="sparc32_dma",
241 .version_id = 2,
242 .minimum_version_id = 2,
243 .minimum_version_id_old = 2,
244 .fields = (VMStateField []) {
245 VMSTATE_UINT32_ARRAY(dmaregs, DMAState, DMA_REGS),
246 VMSTATE_END_OF_LIST()
247 }
248};
67e999be 249
81a322d4 250static int sparc32_dma_init1(SysBusDevice *dev)
6f6260c7
BS
251{
252 DMAState *s = FROM_SYSBUS(DMAState, dev);
253 int dma_io_memory;
67e999be 254
6f6260c7 255 sysbus_init_irq(dev, &s->irq);
67e999be 256
1eed09cb 257 dma_io_memory = cpu_register_io_memory(dma_mem_read, dma_mem_write, s);
6f6260c7 258 sysbus_init_mmio(dev, DMA_SIZE, dma_io_memory);
67e999be 259
6f6260c7 260 qdev_init_gpio_in(&dev->qdev, dma_set_irq, 1);
74ff8d90 261 qdev_init_gpio_out(&dev->qdev, &s->dev_reset, 1);
49ef6c90 262
81a322d4 263 return 0;
6f6260c7 264}
67e999be 265
6f6260c7
BS
266static SysBusDeviceInfo sparc32_dma_info = {
267 .init = sparc32_dma_init1,
268 .qdev.name = "sparc32_dma",
269 .qdev.size = sizeof(DMAState),
49ef6c90
BS
270 .qdev.vmsd = &vmstate_dma,
271 .qdev.reset = dma_reset,
ee6847d1 272 .qdev.props = (Property[]) {
3180d772
GH
273 DEFINE_PROP_PTR("iommu_opaque", DMAState, iommu),
274 DEFINE_PROP_END_OF_LIST(),
6f6260c7
BS
275 }
276};
277
278static void sparc32_dma_register_devices(void)
279{
280 sysbus_register_withprop(&sparc32_dma_info);
67e999be 281}
6f6260c7
BS
282
283device_init(sparc32_dma_register_devices)