sparc32_dma.c 7.1 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/*
 * 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.
 */
#include "vl.h"

/* 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
#define DPRINTF(fmt, args...) \
do { printf("DMA: " fmt , ##args); } while (0)
#else
#define DPRINTF(fmt, args...)
#endif

B
blueswir1 已提交
44 45 46
#define DMA_REGS 4
#define DMA_SIZE (4 * sizeof(uint32_t))
#define DMA_MAXADDR (DMA_SIZE - 1)
47 48 49 50 51 52

#define DMA_VER 0xa0000000
#define DMA_INTR 1
#define DMA_INTREN 0x10
#define DMA_WRITE_MEM 0x100
#define DMA_LOADED 0x04000000
B
blueswir1 已提交
53
#define DMA_DRAIN_FIFO 0x40
54 55 56 57 58 59
#define DMA_RESET 0x80

typedef struct DMAState DMAState;

struct DMAState {
    uint32_t dmaregs[DMA_REGS];
B
blueswir1 已提交
60 61 62
    qemu_irq irq;
    void *iommu, *dev_opaque;
    void (*dev_reset)(void *dev_opaque);
P
pbrook 已提交
63
    qemu_irq *pic;
64 65
};

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

    DPRINTF("DMA write, direction: %c, addr 0x%8.8x\n",
            s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
B
blueswir1 已提交
75
    addr |= s->dmaregs[3];
B
bellard 已提交
76 77 78 79 80 81 82 83 84 85
    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));
        }
    }
86 87
}

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

    DPRINTF("DMA read, direction: %c, addr 0x%8.8x\n",
            s->dmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', s->dmaregs[1]);
B
blueswir1 已提交
97
    addr |= s->dmaregs[3];
B
bellard 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    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;
        }
    }
116 117 118 119 120 121
}

void espdma_raise_irq(void *opaque)
{
    DMAState *s = opaque;

P
pbrook 已提交
122
    DPRINTF("Raise ESP IRQ\n");
123
    s->dmaregs[0] |= DMA_INTR;
B
blueswir1 已提交
124
    qemu_irq_raise(s->irq);
125 126 127 128 129 130 131
}

void espdma_clear_irq(void *opaque)
{
    DMAState *s = opaque;

    s->dmaregs[0] &= ~DMA_INTR;
P
pbrook 已提交
132
    DPRINTF("Lower ESP IRQ\n");
B
blueswir1 已提交
133
    qemu_irq_lower(s->irq);
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 162 163
}

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;

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

    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;

    saddr = (addr & DMA_MAXADDR) >> 2;
B
blueswir1 已提交
176 177
    DPRINTF("write dmareg " TARGET_FMT_plx ": 0x%8.8x -> 0x%8.8x\n", addr,
            s->dmaregs[saddr], val);
178 179
    switch (saddr) {
    case 0:
P
pbrook 已提交
180
        if (!(val & DMA_INTREN)) {
B
blueswir1 已提交
181 182
            DPRINTF("Lower IRQ\n");
            qemu_irq_lower(s->irq);
P
pbrook 已提交
183
        }
184
        if (val & DMA_RESET) {
B
blueswir1 已提交
185 186 187
            s->dev_reset(s->dev_opaque);
        } 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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
        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] = {
    dma_mem_readl,
    dma_mem_readl,
    dma_mem_readl,
};

static CPUWriteMemoryFunc *dma_mem_write[3] = {
    dma_mem_writel,
    dma_mem_writel,
    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;
}

B
blueswir1 已提交
244
void *sparc32_dma_init(target_phys_addr_t daddr, qemu_irq irq, void *iommu)
245 246 247 248 249 250 251 252
{
    DMAState *s;
    int dma_io_memory;

    s = qemu_mallocz(sizeof(DMAState));
    if (!s)
        return NULL;

B
blueswir1 已提交
253
    s->irq = irq;
254 255 256
    s->iommu = iommu;

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

B
blueswir1 已提交
259
    register_savevm("sparc32_dma", daddr, 2, dma_save, dma_load, s);
260 261 262 263 264
    qemu_register_reset(dma_reset, s);

    return s;
}

B
blueswir1 已提交
265 266
void sparc32_dma_set_reset_data(void *opaque, void (*dev_reset)(void *opaque),
                                void *dev_opaque)
267 268 269
{
    DMAState *s = opaque;

B
blueswir1 已提交
270 271
    s->dev_reset = dev_reset;
    s->dev_opaque = dev_opaque;
272
}