Statistics
| Branch: | Revision:

root / hw / etraxfs.c @ 69bf405b

History | View | Annotate | Download (5.3 kB)

1 83fa1010 ths
/*
2 83fa1010 ths
 * QEMU ETRAX System Emulator
3 83fa1010 ths
 *
4 83fa1010 ths
 * Copyright (c) 2007 Edgar E. Iglesias, Axis Communications AB.
5 83fa1010 ths
 *
6 83fa1010 ths
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 83fa1010 ths
 * of this software and associated documentation files (the "Software"), to deal
8 83fa1010 ths
 * in the Software without restriction, including without limitation the rights
9 83fa1010 ths
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 83fa1010 ths
 * copies of the Software, and to permit persons to whom the Software is
11 83fa1010 ths
 * furnished to do so, subject to the following conditions:
12 83fa1010 ths
 *
13 83fa1010 ths
 * The above copyright notice and this permission notice shall be included in
14 83fa1010 ths
 * all copies or substantial portions of the Software.
15 83fa1010 ths
 *
16 83fa1010 ths
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 83fa1010 ths
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 83fa1010 ths
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 83fa1010 ths
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 83fa1010 ths
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 83fa1010 ths
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 83fa1010 ths
 * THE SOFTWARE.
23 83fa1010 ths
 */
24 83fa1010 ths
25 4b816985 Edgar E. Iglesias
#include "sysbus.h"
26 4b816985 Edgar E. Iglesias
#include "boards.h"
27 4b816985 Edgar E. Iglesias
#include "net.h"
28 3b1fd90e Edgar E. Iglesias
#include "flash.h"
29 5ef98b47 edgar_igl
#include "etraxfs.h"
30 ca20cf32 Blue Swirl
#include "loader.h"
31 ca20cf32 Blue Swirl
#include "elf.h"
32 77d4f95e Edgar E. Iglesias
#include "cris-boot.h"
33 2446333c Blue Swirl
#include "blockdev.h"
34 b01cde7b edgar_igl
35 b01cde7b edgar_igl
#define FLASH_SIZE 0x2000000
36 b01cde7b edgar_igl
#define INTMEM_SIZE (128 * 1024)
37 83fa1010 ths
38 77d4f95e Edgar E. Iglesias
static struct cris_load_info li;
39 5439779e edgar_igl
40 77d4f95e Edgar E. Iglesias
static void flash_cpu_reset(void *opaque)
41 5439779e edgar_igl
{
42 5439779e edgar_igl
    CPUState *env = opaque;
43 5439779e edgar_igl
    cpu_reset(env);
44 409dbce5 Aurelien Jarno
}
45 409dbce5 Aurelien Jarno
46 83fa1010 ths
static
47 c227f099 Anthony Liguori
void bareetraxfs_init (ram_addr_t ram_size,
48 3023f332 aliguori
                       const char *boot_device,
49 83fa1010 ths
                       const char *kernel_filename, const char *kernel_cmdline,
50 83fa1010 ths
                       const char *initrd_filename, const char *cpu_model)
51 83fa1010 ths
{
52 fd6dc90b Edgar E. Iglesias
    DeviceState *dev;
53 562183de Edgar E. Iglesias
    SysBusDevice *s;
54 83fa1010 ths
    CPUState *env;
55 fd6dc90b Edgar E. Iglesias
    qemu_irq irq[30], nmi[2], *cpu_irq; 
56 fa1bdde4 edgar_igl
    void *etraxfs_dmac;
57 4eeed608 edgar_igl
    struct etraxfs_dma_client *eth[2] = {NULL, NULL};
58 751c6a17 Gerd Hoffmann
    DriveInfo *dinfo;
59 48318011 edgar_igl
    int i;
60 c227f099 Anthony Liguori
    ram_addr_t phys_ram;
61 c227f099 Anthony Liguori
    ram_addr_t phys_flash;
62 c227f099 Anthony Liguori
    ram_addr_t phys_intmem;
63 83fa1010 ths
64 83fa1010 ths
    /* init CPUs */
65 83fa1010 ths
    if (cpu_model == NULL) {
66 83fa1010 ths
        cpu_model = "crisv32";
67 83fa1010 ths
    }
68 aaed909a bellard
    env = cpu_init(cpu_model);
69 83fa1010 ths
70 83fa1010 ths
    /* allocate RAM */
71 1724f049 Alex Williamson
    phys_ram = qemu_ram_alloc(NULL, "etraxfs.ram", ram_size);
72 e62b5b13 edgar_igl
    cpu_register_physical_memory(0x40000000, ram_size, phys_ram | IO_MEM_RAM);
73 e62b5b13 edgar_igl
74 b01cde7b edgar_igl
    /* The ETRAX-FS has 128Kb on chip ram, the docs refer to it as the 
75 980f8a0b edgar_igl
       internal memory.  */
76 1724f049 Alex Williamson
    phys_intmem = qemu_ram_alloc(NULL, "etraxfs.chipram", INTMEM_SIZE);
77 5439779e edgar_igl
    cpu_register_physical_memory(0x38000000, INTMEM_SIZE,
78 5439779e edgar_igl
                                 phys_intmem | IO_MEM_RAM);
79 5439779e edgar_igl
80 e62b5b13 edgar_igl
81 1724f049 Alex Williamson
    phys_flash = qemu_ram_alloc(NULL, "etraxfs.flash", FLASH_SIZE);
82 751c6a17 Gerd Hoffmann
    dinfo = drive_get(IF_PFLASH, 0, 0);
83 5439779e edgar_igl
    pflash_cfi02_register(0x0, phys_flash,
84 751c6a17 Gerd Hoffmann
                          dinfo ? dinfo->bdrv : NULL, (64 * 1024),
85 5439779e edgar_igl
                          FLASH_SIZE >> 16,
86 5439779e edgar_igl
                          1, 2, 0x0000, 0x0000, 0x0000, 0x0000,
87 5f9fc5ad Blue Swirl
                          0x555, 0x2aa, 0);
88 fd6dc90b Edgar E. Iglesias
    cpu_irq = cris_pic_init_cpu(env);
89 562183de Edgar E. Iglesias
    dev = qdev_create(NULL, "etraxfs,pic");
90 fd6dc90b Edgar E. Iglesias
    /* FIXME: Is there a proper way to signal vectors to the CPU core?  */
91 ee6847d1 Gerd Hoffmann
    qdev_prop_set_ptr(dev, "interrupt_vector", &env->interrupt_vector);
92 e23a1b33 Markus Armbruster
    qdev_init_nofail(dev);
93 562183de Edgar E. Iglesias
    s = sysbus_from_qdev(dev);
94 562183de Edgar E. Iglesias
    sysbus_mmio_map(s, 0, 0x3001c000);
95 562183de Edgar E. Iglesias
    sysbus_connect_irq(s, 0, cpu_irq[0]);
96 562183de Edgar E. Iglesias
    sysbus_connect_irq(s, 1, cpu_irq[1]);
97 fd6dc90b Edgar E. Iglesias
    for (i = 0; i < 30; i++) {
98 067a3ddc Paul Brook
        irq[i] = qdev_get_gpio_in(dev, i);
99 fd6dc90b Edgar E. Iglesias
    }
100 067a3ddc Paul Brook
    nmi[0] = qdev_get_gpio_in(dev, 30);
101 067a3ddc Paul Brook
    nmi[1] = qdev_get_gpio_in(dev, 31);
102 73cfd29f Edgar E. Iglesias
103 ba494313 Edgar E. Iglesias
    etraxfs_dmac = etraxfs_dmac_init(0x30000000, 10);
104 48318011 edgar_igl
    for (i = 0; i < 10; i++) {
105 5439779e edgar_igl
        /* On ETRAX, odd numbered channels are inputs.  */
106 73cfd29f Edgar E. Iglesias
        etraxfs_dmac_connect(etraxfs_dmac, i, irq + 7 + i, i & 1);
107 48318011 edgar_igl
    }
108 48318011 edgar_igl
109 4eeed608 edgar_igl
    /* Add the two ethernet blocks.  */
110 ba494313 Edgar E. Iglesias
    eth[0] = etraxfs_eth_init(&nd_table[0], 0x30034000, 1);
111 0ae18cee aliguori
    if (nb_nics > 1)
112 ba494313 Edgar E. Iglesias
        eth[1] = etraxfs_eth_init(&nd_table[1], 0x30036000, 2);
113 5439779e edgar_igl
114 48318011 edgar_igl
    /* The DMA Connector block is missing, hardwire things for now.  */
115 4eeed608 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 0, eth[0]);
116 4eeed608 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 1, eth[0] + 1);
117 4eeed608 edgar_igl
    if (eth[1]) {
118 5439779e edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 6, eth[1]);
119 5439779e edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 7, eth[1] + 1);
120 4eeed608 edgar_igl
    }
121 48318011 edgar_igl
122 ca87d03b edgar_igl
    /* 2 timers.  */
123 3b1fd90e Edgar E. Iglesias
    sysbus_create_varargs("etraxfs,timer", 0x3001e000, irq[0x1b], nmi[1], NULL);
124 3b1fd90e Edgar E. Iglesias
    sysbus_create_varargs("etraxfs,timer", 0x3005e000, irq[0x1b], nmi[1], NULL);
125 48318011 edgar_igl
126 48318011 edgar_igl
    for (i = 0; i < 4; i++) {
127 4b816985 Edgar E. Iglesias
        sysbus_create_simple("etraxfs,serial", 0x30026000 + i * 0x2000,
128 4b816985 Edgar E. Iglesias
                             irq[0x14 + i]); 
129 48318011 edgar_igl
    }
130 83fa1010 ths
131 5439779e edgar_igl
    if (kernel_filename) {
132 77d4f95e Edgar E. Iglesias
        li.image_filename = kernel_filename;
133 77d4f95e Edgar E. Iglesias
        li.cmdline = kernel_cmdline;
134 77d4f95e Edgar E. Iglesias
        cris_load_image(env, &li);
135 77d4f95e Edgar E. Iglesias
    } else {
136 77d4f95e Edgar E. Iglesias
        if (!dinfo) {
137 77d4f95e Edgar E. Iglesias
            fprintf(stderr,
138 77d4f95e Edgar E. Iglesias
                    "Provide a kernel image or a flash image to boot from.\n");
139 77d4f95e Edgar E. Iglesias
           exit(1);
140 fa1bdde4 edgar_igl
        }
141 83fa1010 ths
142 77d4f95e Edgar E. Iglesias
        /* Nothing more to do for flash images, those boot from addr 0.  */
143 77d4f95e Edgar E. Iglesias
        qemu_register_reset(flash_cpu_reset, env);
144 77d4f95e Edgar E. Iglesias
    }
145 83fa1010 ths
}
146 83fa1010 ths
147 f80f9ec9 Anthony Liguori
static QEMUMachine bareetraxfs_machine = {
148 4b32e168 aliguori
    .name = "bareetraxfs",
149 4b32e168 aliguori
    .desc = "Bare ETRAX FS board",
150 4b32e168 aliguori
    .init = bareetraxfs_init,
151 0c257437 Anthony Liguori
    .is_default = 1,
152 83fa1010 ths
};
153 f80f9ec9 Anthony Liguori
154 f80f9ec9 Anthony Liguori
static void bareetraxfs_machine_init(void)
155 f80f9ec9 Anthony Liguori
{
156 f80f9ec9 Anthony Liguori
    qemu_register_machine(&bareetraxfs_machine);
157 f80f9ec9 Anthony Liguori
}
158 f80f9ec9 Anthony Liguori
159 f80f9ec9 Anthony Liguori
machine_init(bareetraxfs_machine_init);