sh_pci.c 5.7 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
/*
 * SuperH on-chip PCIC emulation.
 *
 * Copyright (c) 2008 Takashi YOSHII
 *
 * 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 "hw.h"
#include "sh.h"
#include "pci.h"
27
#include "pci_host.h"
28
#include "sh_pci.h"
29 30 31 32 33 34 35 36 37 38
#include "bswap.h"

typedef struct {
    PCIBus *bus;
    PCIDevice *dev;
    uint32_t par;
    uint32_t mbr;
    uint32_t iobr;
} SHPCIC;

A
Anthony Liguori 已提交
39
static void sh_pci_reg_write (void *p, target_phys_addr_t addr, uint32_t val)
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
{
    SHPCIC *pcic = p;
    switch(addr) {
    case 0 ... 0xfc:
        cpu_to_le32w((uint32_t*)(pcic->dev->config + addr), val);
        break;
    case 0x1c0:
        pcic->par = val;
        break;
    case 0x1c4:
        pcic->mbr = val;
        break;
    case 0x1c8:
        pcic->iobr = val;
        break;
    case 0x220:
        pci_data_write(pcic->bus, pcic->par, val, 4);
        break;
    }
}

A
Anthony Liguori 已提交
61
static uint32_t sh_pci_reg_read (void *p, target_phys_addr_t addr)
62 63 64 65 66 67 68 69 70 71 72 73 74
{
    SHPCIC *pcic = p;
    switch(addr) {
    case 0 ... 0xfc:
        return le32_to_cpup((uint32_t*)(pcic->dev->config + addr));
    case 0x1c0:
        return pcic->par;
    case 0x220:
        return pci_data_read(pcic->bus, pcic->par, 4);
    }
    return 0;
}

A
Anthony Liguori 已提交
75
static void sh_pci_data_write (SHPCIC *pcic, target_phys_addr_t addr,
76 77
                               uint32_t val, int size)
{
78
    pci_data_write(pcic->bus, addr + pcic->mbr, val, size);
79 80
}

A
Anthony Liguori 已提交
81
static uint32_t sh_pci_mem_read (SHPCIC *pcic, target_phys_addr_t addr,
82 83
                                 int size)
{
84
    return pci_data_read(pcic->bus, addr + pcic->mbr, size);
85 86
}

A
Anthony Liguori 已提交
87
static void sh_pci_writeb (void *p, target_phys_addr_t addr, uint32_t val)
88 89 90 91
{
    sh_pci_data_write(p, addr, val, 1);
}

A
Anthony Liguori 已提交
92
static void sh_pci_writew (void *p, target_phys_addr_t addr, uint32_t val)
93 94 95 96
{
    sh_pci_data_write(p, addr, val, 2);
}

A
Anthony Liguori 已提交
97
static void sh_pci_writel (void *p, target_phys_addr_t addr, uint32_t val)
98 99 100 101
{
    sh_pci_data_write(p, addr, val, 4);
}

A
Anthony Liguori 已提交
102
static uint32_t sh_pci_readb (void *p, target_phys_addr_t addr)
103 104 105 106
{
    return sh_pci_mem_read(p, addr, 1);
}

A
Anthony Liguori 已提交
107
static uint32_t sh_pci_readw (void *p, target_phys_addr_t addr)
108 109 110 111
{
    return sh_pci_mem_read(p, addr, 2);
}

A
Anthony Liguori 已提交
112
static uint32_t sh_pci_readl (void *p, target_phys_addr_t addr)
113 114 115 116
{
    return sh_pci_mem_read(p, addr, 4);
}

A
Anthony Liguori 已提交
117
static int sh_pci_addr2port(SHPCIC *pcic, target_phys_addr_t addr)
118
{
119
    return addr + pcic->iobr;
120 121
}

A
Anthony Liguori 已提交
122
static void sh_pci_outb (void *p, target_phys_addr_t addr, uint32_t val)
123
{
124
    cpu_outb(sh_pci_addr2port(p, addr), val);
125 126
}

A
Anthony Liguori 已提交
127
static void sh_pci_outw (void *p, target_phys_addr_t addr, uint32_t val)
128
{
129
    cpu_outw(sh_pci_addr2port(p, addr), val);
130 131
}

A
Anthony Liguori 已提交
132
static void sh_pci_outl (void *p, target_phys_addr_t addr, uint32_t val)
133
{
134
    cpu_outl(sh_pci_addr2port(p, addr), val);
135 136
}

A
Anthony Liguori 已提交
137
static uint32_t sh_pci_inb (void *p, target_phys_addr_t addr)
138
{
139
    return cpu_inb(sh_pci_addr2port(p, addr));
140 141
}

A
Anthony Liguori 已提交
142
static uint32_t sh_pci_inw (void *p, target_phys_addr_t addr)
143
{
144
    return cpu_inw(sh_pci_addr2port(p, addr));
145 146
}

A
Anthony Liguori 已提交
147
static uint32_t sh_pci_inl (void *p, target_phys_addr_t addr)
148
{
149
    return cpu_inl(sh_pci_addr2port(p, addr));
150 151 152
}

typedef struct {
153 154
    CPUReadMemoryFunc * const r[3];
    CPUWriteMemoryFunc * const w[3];
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
} MemOp;

static MemOp sh_pci_reg = {
    { NULL, NULL, sh_pci_reg_read },
    { NULL, NULL, sh_pci_reg_write },
};

static MemOp sh_pci_mem = {
    { sh_pci_readb, sh_pci_readw, sh_pci_readl },
    { sh_pci_writeb, sh_pci_writew, sh_pci_writel },
};

static MemOp sh_pci_iop = {
    { sh_pci_inb, sh_pci_inw, sh_pci_inl },
    { sh_pci_outb, sh_pci_outw, sh_pci_outl },
};

PCIBus *sh_pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
173
                            void *opaque, int devfn_min, int nirq)
174 175 176 177 178
{
    SHPCIC *p;
    int mem, reg, iop;

    p = qemu_mallocz(sizeof(SHPCIC));
P
Paul Brook 已提交
179
    p->bus = pci_register_bus(NULL, "pci",
180
                              set_irq, map_irq, opaque, devfn_min, nirq);
181 182 183

    p->dev = pci_register_device(p->bus, "SH PCIC", sizeof(PCIDevice),
                                 -1, NULL, NULL);
184 185 186
    reg = cpu_register_io_memory(sh_pci_reg.r, sh_pci_reg.w, p);
    iop = cpu_register_io_memory(sh_pci_iop.r, sh_pci_iop.w, p);
    mem = cpu_register_io_memory(sh_pci_mem.r, sh_pci_mem.w, p);
187 188 189 190 191 192
    cpu_register_physical_memory(0x1e200000, 0x224, reg);
    cpu_register_physical_memory(0x1e240000, 0x40000, iop);
    cpu_register_physical_memory(0x1d000000, 0x1000000, mem);
    cpu_register_physical_memory(0xfe200000, 0x224, reg);
    cpu_register_physical_memory(0xfe240000, 0x40000, iop);
    cpu_register_physical_memory(0xfd000000, 0x1000000, mem);
193

194
    pci_config_set_vendor_id(p->dev->config, PCI_VENDOR_ID_HITACHI);
195
    pci_config_set_device_id(p->dev->config, PCI_DEVICE_ID_HITACHI_SH7751R);
196 197 198 199 200 201 202
    p->dev->config[0x04] = 0x80;
    p->dev->config[0x05] = 0x00;
    p->dev->config[0x06] = 0x90;
    p->dev->config[0x07] = 0x02;

    return p->bus;
}