versatilepb.c 9.7 KB
Newer Older
1
/*
2
 * ARM Versatile Platform/Application Baseboard System emulation.
3
 *
4
 * Copyright (c) 2005-2007 CodeSourcery.
5 6 7 8 9
 * Written by Paul Brook
 *
 * This code is licenced under the GPL.
 */

P
Paul Brook 已提交
10
#include "sysbus.h"
P
pbrook 已提交
11 12 13 14 15 16 17
#include "arm-misc.h"
#include "primecell.h"
#include "devices.h"
#include "net.h"
#include "sysemu.h"
#include "pci.h"
#include "boards.h"
18 19 20 21 22

/* Primary interrupt controller.  */

typedef struct vpb_sic_state
{
P
Paul Brook 已提交
23
  SysBusDevice busdev;
24 25 26
  uint32_t level;
  uint32_t mask;
  uint32_t pic_enable;
P
Paul Brook 已提交
27
  qemu_irq parent[32];
28 29 30 31 32 33 34 35
  int irq;
} vpb_sic_state;

static void vpb_sic_update(vpb_sic_state *s)
{
    uint32_t flags;

    flags = s->level & s->mask;
P
pbrook 已提交
36
    qemu_set_irq(s->parent[s->irq], flags != 0);
37 38 39 40 41 42 43 44 45 46 47
}

static void vpb_sic_update_pic(vpb_sic_state *s)
{
    int i;
    uint32_t mask;

    for (i = 21; i <= 30; i++) {
        mask = 1u << i;
        if (!(s->pic_enable & mask))
            continue;
P
pbrook 已提交
48
        qemu_set_irq(s->parent[i], (s->level & mask) != 0);
49 50 51 52 53 54 55 56 57 58 59
    }
}

static void vpb_sic_set_irq(void *opaque, int irq, int level)
{
    vpb_sic_state *s = (vpb_sic_state *)opaque;
    if (level)
        s->level |= 1u << irq;
    else
        s->level &= ~(1u << irq);
    if (s->pic_enable & (1u << irq))
P
pbrook 已提交
60
        qemu_set_irq(s->parent[irq], level);
61 62 63
    vpb_sic_update(s);
}

M
malc 已提交
64
static uint32_t vpb_sic_read(void *opaque, a_target_phys_addr offset)
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
{
    vpb_sic_state *s = (vpb_sic_state *)opaque;

    switch (offset >> 2) {
    case 0: /* STATUS */
        return s->level & s->mask;
    case 1: /* RAWSTAT */
        return s->level;
    case 2: /* ENABLE */
        return s->mask;
    case 4: /* SOFTINT */
        return s->level & 1;
    case 8: /* PICENABLE */
        return s->pic_enable;
    default:
P
pbrook 已提交
80
        printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
81 82 83 84
        return 0;
    }
}

M
malc 已提交
85
static void vpb_sic_write(void *opaque, a_target_phys_addr offset,
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
                          uint32_t value)
{
    vpb_sic_state *s = (vpb_sic_state *)opaque;

    switch (offset >> 2) {
    case 2: /* ENSET */
        s->mask |= value;
        break;
    case 3: /* ENCLR */
        s->mask &= ~value;
        break;
    case 4: /* SOFTINTSET */
        if (value)
            s->mask |= 1;
        break;
    case 5: /* SOFTINTCLR */
        if (value)
            s->mask &= ~1u;
        break;
    case 8: /* PICENSET */
        s->pic_enable |= (value & 0x7fe00000);
        vpb_sic_update_pic(s);
        break;
    case 9: /* PICENCLR */
        s->pic_enable &= ~value;
        vpb_sic_update_pic(s);
        break;
    default:
P
pbrook 已提交
114
        printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
115 116 117 118 119
        return;
    }
    vpb_sic_update(s);
}

120
static CPUReadMemoryFunc * const vpb_sic_readfn[] = {
121 122 123 124 125
   vpb_sic_read,
   vpb_sic_read,
   vpb_sic_read
};

126
static CPUWriteMemoryFunc * const vpb_sic_writefn[] = {
127 128 129 130 131
   vpb_sic_write,
   vpb_sic_write,
   vpb_sic_write
};

132
static int vpb_sic_init(SysBusDevice *dev)
133
{
P
Paul Brook 已提交
134
    vpb_sic_state *s = FROM_SYSBUS(vpb_sic_state, dev);
135
    int iomemtype;
P
Paul Brook 已提交
136
    int i;
137

P
Paul Brook 已提交
138
    qdev_init_gpio_in(&dev->qdev, vpb_sic_set_irq, 32);
P
Paul Brook 已提交
139
    for (i = 0; i < 32; i++) {
P
Paul Brook 已提交
140
        sysbus_init_irq(dev, &s->parent[i]);
P
Paul Brook 已提交
141
    }
P
Paul Brook 已提交
142
    s->irq = 31;
143
    iomemtype = cpu_register_io_memory(vpb_sic_readfn,
144
                                       vpb_sic_writefn, s);
P
Paul Brook 已提交
145
    sysbus_init_mmio(dev, 0x1000, iomemtype);
146
    /* ??? Save/restore.  */
147
    return 0;
148 149 150 151
}

/* Board init.  */

152 153 154
/* The AB and PB boards both use the same core, just with different
   peripherans and expansion busses.  For now we emulate a subset of the
   PB peripherals and just change the board ID.  */
155

156 157
static struct arm_boot_info versatile_binfo;

M
malc 已提交
158
static void versatile_init(a_ram_addr ram_size,
159
                     const char *boot_device,
160
                     const char *kernel_filename, const char *kernel_cmdline,
P
pbrook 已提交
161 162
                     const char *initrd_filename, const char *cpu_model,
                     int board_id)
163 164
{
    CPUState *env;
M
malc 已提交
165
    a_ram_addr ram_offset;
P
Paul Brook 已提交
166 167
    qemu_irq *cpu_pic;
    qemu_irq pic[32];
P
Paul Brook 已提交
168
    qemu_irq sic[32];
P
Paul Brook 已提交
169
    DeviceState *dev;
P
pbrook 已提交
170 171 172 173
    PCIBus *pci_bus;
    NICInfo *nd;
    int n;
    int done_smc = 0;
174

P
pbrook 已提交
175 176
    if (!cpu_model)
        cpu_model = "arm926";
B
bellard 已提交
177 178 179 180 181
    env = cpu_init(cpu_model);
    if (!env) {
        fprintf(stderr, "Unable to find CPU definition\n");
        exit(1);
    }
P
pbrook 已提交
182
    ram_offset = qemu_ram_alloc(ram_size);
T
ths 已提交
183
    /* ??? RAM should repeat to fill physical memory space.  */
184
    /* SDRAM at address zero.  */
P
pbrook 已提交
185
    cpu_register_physical_memory(0, ram_size, ram_offset | IO_MEM_RAM);
186

P
pbrook 已提交
187
    arm_sysctl_init(0x10000000, 0x41007004);
P
Paul Brook 已提交
188 189 190 191
    cpu_pic = arm_pic_init_cpu(env);
    dev = sysbus_create_varargs("pl190", 0x10140000,
                                cpu_pic[0], cpu_pic[1], NULL);
    for (n = 0; n < 32; n++) {
P
Paul Brook 已提交
192
        pic[n] = qdev_get_gpio_in(dev, n);
P
Paul Brook 已提交
193
    }
P
Paul Brook 已提交
194 195 196
    dev = sysbus_create_simple("versatilepb_sic", 0x10003000, NULL);
    for (n = 0; n < 32; n++) {
        sysbus_connect_irq(sysbus_from_qdev(dev), n, pic[n]);
P
Paul Brook 已提交
197
        sic[n] = qdev_get_gpio_in(dev, n);
P
Paul Brook 已提交
198
    }
P
Paul Brook 已提交
199 200 201

    sysbus_create_simple("pl050_keyboard", 0x10006000, sic[3]);
    sysbus_create_simple("pl050_mouse", 0x10007000, sic[4]);
202

P
Paul Brook 已提交
203 204
    dev = sysbus_create_varargs("versatile_pci", 0x40000000,
                                sic[27], sic[28], sic[29], sic[30], NULL);
P
Paul Brook 已提交
205
    pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
P
Paul Brook 已提交
206

P
pbrook 已提交
207 208 209 210
    /* The Versatile PCI bridge does not provide access to PCI IO space,
       so many of the qemu PCI devices are not useable.  */
    for(n = 0; n < nb_nics; n++) {
        nd = &nd_table[n];
211 212

        if ((!nd->model && !done_smc) || strcmp(nd->model, "smc91c111") == 0) {
P
pbrook 已提交
213
            smc91c111_init(nd, 0x10010000, sic[25]);
214
            done_smc = 1;
215
        } else {
216
            pci_nic_init(nd, "rtl8139", NULL);
217 218
        }
    }
P
pbrook 已提交
219
    if (usb_enabled) {
G
Gerd Hoffmann 已提交
220
        usb_ohci_init_pci(pci_bus, -1);
P
pbrook 已提交
221
    }
P
Paul Brook 已提交
222 223 224 225
    n = drive_get_max_bus(IF_SCSI);
    while (n >= 0) {
        pci_create_simple(pci_bus, -1, "lsi53c895a");
        n--;
P
pbrook 已提交
226
    }
227

P
Paul Brook 已提交
228 229 230 231
    sysbus_create_simple("pl011", 0x101f1000, pic[12]);
    sysbus_create_simple("pl011", 0x101f2000, pic[13]);
    sysbus_create_simple("pl011", 0x101f3000, pic[14]);
    sysbus_create_simple("pl011", 0x10009000, sic[6]);
232

P
Paul Brook 已提交
233
    sysbus_create_simple("pl080", 0x10130000, pic[17]);
P
Paul Brook 已提交
234 235
    sysbus_create_simple("sp804", 0x101e2000, pic[4]);
    sysbus_create_simple("sp804", 0x101e3000, pic[5]);
236 237 238

    /* The versatile/PB actually has a modified Color LCD controller
       that includes hardware cursor support from the PL111.  */
P
Paul Brook 已提交
239
    sysbus_create_simple("pl110_versatile", 0x10120000, pic[16]);
240

P
Paul Brook 已提交
241 242
    sysbus_create_varargs("pl181", 0x10005000, sic[22], sic[1], NULL);
    sysbus_create_varargs("pl181", 0x1000b000, sic[23], sic[2], NULL);
243

P
pbrook 已提交
244
    /* Add PL031 Real Time Clock. */
P
Paul Brook 已提交
245
    sysbus_create_simple("pl031", 0x101e8000, pic[10]);
P
pbrook 已提交
246

247
    /* Memory map for Versatile/PB:  */
248 249 250 251 252
    /* 0x10000000 System registers.  */
    /* 0x10001000 PCI controller config registers.  */
    /* 0x10002000 Serial bus interface.  */
    /*  0x10003000 Secondary interrupt controller.  */
    /* 0x10004000 AACI (audio).  */
253
    /*  0x10005000 MMCI0.  */
254 255 256 257 258
    /*  0x10006000 KMI0 (keyboard).  */
    /*  0x10007000 KMI1 (mouse).  */
    /* 0x10008000 Character LCD Interface.  */
    /*  0x10009000 UART3.  */
    /* 0x1000a000 Smart card 1.  */
259
    /*  0x1000b000 MMCI1.  */
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
    /*  0x10010000 Ethernet.  */
    /* 0x10020000 USB.  */
    /* 0x10100000 SSMC.  */
    /* 0x10110000 MPMC.  */
    /*  0x10120000 CLCD Controller.  */
    /*  0x10130000 DMA Controller.  */
    /*  0x10140000 Vectored interrupt controller.  */
    /* 0x101d0000 AHB Monitor Interface.  */
    /* 0x101e0000 System Controller.  */
    /* 0x101e1000 Watchdog Interface.  */
    /* 0x101e2000 Timer 0/1.  */
    /* 0x101e3000 Timer 2/3.  */
    /* 0x101e4000 GPIO port 0.  */
    /* 0x101e5000 GPIO port 1.  */
    /* 0x101e6000 GPIO port 2.  */
    /* 0x101e7000 GPIO port 3.  */
    /* 0x101e8000 RTC.  */
    /* 0x101f0000 Smart card 0.  */
    /*  0x101f1000 UART0.  */
    /*  0x101f2000 UART1.  */
    /*  0x101f3000 UART2.  */
    /* 0x101f4000 SSPI.  */

283 284 285 286 287 288
    versatile_binfo.ram_size = ram_size;
    versatile_binfo.kernel_filename = kernel_filename;
    versatile_binfo.kernel_cmdline = kernel_cmdline;
    versatile_binfo.initrd_filename = initrd_filename;
    versatile_binfo.board_id = board_id;
    arm_load_kernel(env, &versatile_binfo);
289 290
}

M
malc 已提交
291
static void vpb_init(a_ram_addr ram_size,
292
                     const char *boot_device,
293
                     const char *kernel_filename, const char *kernel_cmdline,
294
                     const char *initrd_filename, const char *cpu_model)
295
{
P
Paul Brook 已提交
296
    versatile_init(ram_size,
297
                   boot_device,
298
                   kernel_filename, kernel_cmdline,
P
pbrook 已提交
299
                   initrd_filename, cpu_model, 0x183);
300 301
}

M
malc 已提交
302
static void vab_init(a_ram_addr ram_size,
303
                     const char *boot_device,
304
                     const char *kernel_filename, const char *kernel_cmdline,
305
                     const char *initrd_filename, const char *cpu_model)
306
{
P
Paul Brook 已提交
307
    versatile_init(ram_size,
308
                   boot_device,
309
                   kernel_filename, kernel_cmdline,
P
pbrook 已提交
310
                   initrd_filename, cpu_model, 0x25e);
311 312
}

313
static QEMUMachine versatilepb_machine = {
314 315 316 317
    .name = "versatilepb",
    .desc = "ARM Versatile/PB (ARM926EJ-S)",
    .init = vpb_init,
    .use_scsi = 1,
318
};
319

320
static QEMUMachine versatileab_machine = {
321 322 323 324
    .name = "versatileab",
    .desc = "ARM Versatile/AB (ARM926EJ-S)",
    .init = vab_init,
    .use_scsi = 1,
325
};
P
Paul Brook 已提交
326

327 328 329 330 331 332 333 334
static void versatile_machine_init(void)
{
    qemu_register_machine(&versatilepb_machine);
    qemu_register_machine(&versatileab_machine);
}

machine_init(versatile_machine_init);

P
Paul Brook 已提交
335 336 337 338 339 340 341
static void versatilepb_register_devices(void)
{
    sysbus_register_dev("versatilepb_sic", sizeof(vpb_sic_state),
                        vpb_sic_init);
}

device_init(versatilepb_register_devices)