sparc32_dma.c 7.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * QEMU Sparc32 DMA controller emulation
 *
 * Copyright (c) 2006 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
P
pbrook 已提交
24 25 26
#include "hw.h"
#include "sparc32_dma.h"
#include "sun4m.h"
27 28 29 30 31 32 33 34 35 36 37 38 39

/* debug DMA */
//#define DEBUG_DMA

/*
 * This is the DMA controller part of chip STP2000 (Master I/O), also
 * produced as NCR89C100. See
 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C100.txt
 * and
 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/DMA2.txt
 */

#ifdef DEBUG_DMA
40 41
#define DPRINTF(fmt, ...)                               \
    do { printf("DMA: " fmt , ## __VA_ARGS__); } while (0)
42
#else
43
#define DPRINTF(fmt, ...)
44 45
#endif

B
blueswir1 已提交
46 47
#define DMA_REGS 4
#define DMA_SIZE (4 * sizeof(uint32_t))
B
blueswir1 已提交
48 49 50
/* We need the mask, because one instance of the device is not page
   aligned (ledma, start address 0x0010) */
#define DMA_MASK (DMA_SIZE - 1)
51 52 53 54 55 56

#define DMA_VER 0xa0000000
#define DMA_INTR 1
#define DMA_INTREN 0x10
#define DMA_WRITE_MEM 0x100
#define DMA_LOADED 0x04000000
B
blueswir1 已提交
57
#define DMA_DRAIN_FIFO 0x40
58 59 60 61 62 63
#define DMA_RESET 0x80

typedef struct DMAState DMAState;

struct DMAState {
    uint32_t dmaregs[DMA_REGS];
B
blueswir1 已提交
64
    qemu_irq irq;
65 66
    void *iommu;
    qemu_irq dev_reset;
67 68
};

B
bellard 已提交
69
/* Note: on sparc, the lance 16 bit bus is swapped */
70
void ledma_memory_read(void *opaque, target_phys_addr_t addr,
B
bellard 已提交
71
                       uint8_t *buf, int len, int do_bswap)
72 73
{
    DMAState *s = opaque;
B
bellard 已提交
74
    int i;
75 76 77

    DPRINTF("DMA write, direction: %c, addr 0x%8.8x\n",
            s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
B
blueswir1 已提交
78
    addr |= s->dmaregs[3];
B
bellard 已提交
79 80 81 82 83 84 85 86 87 88
    if (do_bswap) {
        sparc_iommu_memory_read(s->iommu, addr, buf, len);
    } else {
        addr &= ~1;
        len &= ~1;
        sparc_iommu_memory_read(s->iommu, addr, buf, len);
        for(i = 0; i < len; i += 2) {
            bswap16s((uint16_t *)(buf + i));
        }
    }
89 90
}

91
void ledma_memory_write(void *opaque, target_phys_addr_t addr,
B
bellard 已提交
92
                        uint8_t *buf, int len, int do_bswap)
93 94
{
    DMAState *s = opaque;
B
bellard 已提交
95 96
    int l, i;
    uint16_t tmp_buf[32];
97 98 99

    DPRINTF("DMA read, direction: %c, addr 0x%8.8x\n",
            s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
B
blueswir1 已提交
100
    addr |= s->dmaregs[3];
B
bellard 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    if (do_bswap) {
        sparc_iommu_memory_write(s->iommu, addr, buf, len);
    } else {
        addr &= ~1;
        len &= ~1;
        while (len > 0) {
            l = len;
            if (l > sizeof(tmp_buf))
                l = sizeof(tmp_buf);
            for(i = 0; i < l; i += 2) {
                tmp_buf[i >> 1] = bswap16(*(uint16_t *)(buf + i));
            }
            sparc_iommu_memory_write(s->iommu, addr, (uint8_t *)tmp_buf, l);
            len -= l;
            buf += l;
            addr += l;
        }
    }
119 120
}

121
static void dma_set_irq(void *opaque, int irq, int level)
122 123
{
    DMAState *s = opaque;
124
    if (level) {
B
blueswir1 已提交
125
        DPRINTF("Raise IRQ\n");
126 127 128 129
        s->dmaregs[0] |= DMA_INTR;
        qemu_irq_raise(s->irq);
    } else {
        s->dmaregs[0] &= ~DMA_INTR;
B
blueswir1 已提交
130
        DPRINTF("Lower IRQ\n");
131 132
        qemu_irq_lower(s->irq);
    }
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
}

void espdma_memory_read(void *opaque, uint8_t *buf, int len)
{
    DMAState *s = opaque;

    DPRINTF("DMA read, direction: %c, addr 0x%8.8x\n",
            s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
    sparc_iommu_memory_read(s->iommu, s->dmaregs[1], buf, len);
    s->dmaregs[0] |= DMA_INTR;
    s->dmaregs[1] += len;
}

void espdma_memory_write(void *opaque, uint8_t *buf, int len)
{
    DMAState *s = opaque;

    DPRINTF("DMA write, direction: %c, addr 0x%8.8x\n",
            s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
    sparc_iommu_memory_write(s->iommu, s->dmaregs[1], buf, len);
    s->dmaregs[0] |= DMA_INTR;
    s->dmaregs[1] += len;
}

static uint32_t dma_mem_readl(void *opaque, target_phys_addr_t addr)
{
    DMAState *s = opaque;
    uint32_t saddr;

B
blueswir1 已提交
162
    saddr = (addr & DMA_MASK) >> 2;
B
blueswir1 已提交
163 164
    DPRINTF("read dmareg " TARGET_FMT_plx ": 0x%8.8x\n", addr,
            s->dmaregs[saddr]);
165 166 167 168 169 170 171 172 173

    return s->dmaregs[saddr];
}

static void dma_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
{
    DMAState *s = opaque;
    uint32_t saddr;

B
blueswir1 已提交
174
    saddr = (addr & DMA_MASK) >> 2;
B
blueswir1 已提交
175 176
    DPRINTF("write dmareg " TARGET_FMT_plx ": 0x%8.8x -> 0x%8.8x\n", addr,
            s->dmaregs[saddr], val);
177 178
    switch (saddr) {
    case 0:
P
pbrook 已提交
179
        if (!(val & DMA_INTREN)) {
B
blueswir1 已提交
180 181
            DPRINTF("Lower IRQ\n");
            qemu_irq_lower(s->irq);
P
pbrook 已提交
182
        }
183
        if (val & DMA_RESET) {
184 185
            qemu_irq_raise(s->dev_reset);
            qemu_irq_lower(s->dev_reset);
B
blueswir1 已提交
186 187
        } else if (val & DMA_DRAIN_FIFO) {
            val &= ~DMA_DRAIN_FIFO;
188
        } else if (val == 0)
B
blueswir1 已提交
189
            val = DMA_DRAIN_FIFO;
190 191 192 193 194 195 196 197 198 199 200 201 202
        val &= 0x0fffffff;
        val |= DMA_VER;
        break;
    case 1:
        s->dmaregs[0] |= DMA_LOADED;
        break;
    default:
        break;
    }
    s->dmaregs[saddr] = val;
}

static CPUReadMemoryFunc *dma_mem_read[3] = {
203 204
    NULL,
    NULL,
205 206 207 208
    dma_mem_readl,
};

static CPUWriteMemoryFunc *dma_mem_write[3] = {
209 210
    NULL,
    NULL,
211 212 213 214 215 216 217
    dma_mem_writel,
};

static void dma_reset(void *opaque)
{
    DMAState *s = opaque;

B
blueswir1 已提交
218
    memset(s->dmaregs, 0, DMA_SIZE);
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
    s->dmaregs[0] = DMA_VER;
}

static void dma_save(QEMUFile *f, void *opaque)
{
    DMAState *s = opaque;
    unsigned int i;

    for (i = 0; i < DMA_REGS; i++)
        qemu_put_be32s(f, &s->dmaregs[i]);
}

static int dma_load(QEMUFile *f, void *opaque, int version_id)
{
    DMAState *s = opaque;
    unsigned int i;

B
blueswir1 已提交
236
    if (version_id != 2)
237 238 239 240 241 242 243
        return -EINVAL;
    for (i = 0; i < DMA_REGS; i++)
        qemu_get_be32s(f, &s->dmaregs[i]);

    return 0;
}

244
void *sparc32_dma_init(target_phys_addr_t daddr, qemu_irq parent_irq,
245
                       void *iommu, qemu_irq **dev_irq, qemu_irq **reset)
246 247 248 249 250 251
{
    DMAState *s;
    int dma_io_memory;

    s = qemu_mallocz(sizeof(DMAState));

252
    s->irq = parent_irq;
253 254
    s->iommu = iommu;

255
    dma_io_memory = cpu_register_io_memory(dma_mem_read, dma_mem_write, s);
B
blueswir1 已提交
256
    cpu_register_physical_memory(daddr, DMA_SIZE, dma_io_memory);
257

B
blueswir1 已提交
258
    register_savevm("sparc32_dma", daddr, 2, dma_save, dma_load, s);
J
Jan Kiszka 已提交
259
    qemu_register_reset(dma_reset, 0, s);
260
    *dev_irq = qemu_allocate_irqs(dma_set_irq, s, 1);
261

262
    *reset = &s->dev_reset;
263

264
    return s;
265
}