Statistics
| Branch: | Revision:

root / hw / axis_dev88.c @ 10c144e2

History | View | Annotate | Download (7.9 kB)

1 10c144e2 edgar_igl
/*
2 10c144e2 edgar_igl
 * QEMU model for the AXIS devboard 88.
3 10c144e2 edgar_igl
 *
4 10c144e2 edgar_igl
 * Copyright (c) 2009 Edgar E. Iglesias, Axis Communications AB.
5 10c144e2 edgar_igl
 *
6 10c144e2 edgar_igl
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 10c144e2 edgar_igl
 * of this software and associated documentation files (the "Software"), to deal
8 10c144e2 edgar_igl
 * in the Software without restriction, including without limitation the rights
9 10c144e2 edgar_igl
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 10c144e2 edgar_igl
 * copies of the Software, and to permit persons to whom the Software is
11 10c144e2 edgar_igl
 * furnished to do so, subject to the following conditions:
12 10c144e2 edgar_igl
 *
13 10c144e2 edgar_igl
 * The above copyright notice and this permission notice shall be included in
14 10c144e2 edgar_igl
 * all copies or substantial portions of the Software.
15 10c144e2 edgar_igl
 *
16 10c144e2 edgar_igl
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 10c144e2 edgar_igl
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 10c144e2 edgar_igl
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 10c144e2 edgar_igl
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 10c144e2 edgar_igl
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 10c144e2 edgar_igl
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 10c144e2 edgar_igl
 * THE SOFTWARE.
23 10c144e2 edgar_igl
 */
24 10c144e2 edgar_igl
#include <time.h>
25 10c144e2 edgar_igl
#include <sys/time.h>
26 10c144e2 edgar_igl
#include "hw.h"
27 10c144e2 edgar_igl
#include "net.h"
28 10c144e2 edgar_igl
#include "flash.h"
29 10c144e2 edgar_igl
#include "sysemu.h"
30 10c144e2 edgar_igl
#include "devices.h"
31 10c144e2 edgar_igl
#include "boards.h"
32 10c144e2 edgar_igl
33 10c144e2 edgar_igl
#include "etraxfs.h"
34 10c144e2 edgar_igl
35 10c144e2 edgar_igl
#define D(x)
36 10c144e2 edgar_igl
#define DNAND(x)
37 10c144e2 edgar_igl
38 10c144e2 edgar_igl
struct nand_state_t
39 10c144e2 edgar_igl
{
40 10c144e2 edgar_igl
    struct nand_flash_s *nand;
41 10c144e2 edgar_igl
    unsigned int rdy:1;
42 10c144e2 edgar_igl
    unsigned int ale:1;
43 10c144e2 edgar_igl
    unsigned int cle:1;
44 10c144e2 edgar_igl
    unsigned int ce:1;
45 10c144e2 edgar_igl
};
46 10c144e2 edgar_igl
47 10c144e2 edgar_igl
static struct nand_state_t nand_state;
48 10c144e2 edgar_igl
static uint32_t nand_readl (void *opaque, target_phys_addr_t addr)
49 10c144e2 edgar_igl
{
50 10c144e2 edgar_igl
    struct nand_state_t *s = opaque;
51 10c144e2 edgar_igl
    uint32_t r;
52 10c144e2 edgar_igl
    int rdy;
53 10c144e2 edgar_igl
54 10c144e2 edgar_igl
    r = nand_getio(s->nand);
55 10c144e2 edgar_igl
    nand_getpins(s->nand, &rdy);
56 10c144e2 edgar_igl
    s->rdy = rdy;
57 10c144e2 edgar_igl
58 10c144e2 edgar_igl
    DNAND(printf("%s addr=%x r=%x\n", __func__, addr, r));
59 10c144e2 edgar_igl
    return r;
60 10c144e2 edgar_igl
}
61 10c144e2 edgar_igl
62 10c144e2 edgar_igl
static void
63 10c144e2 edgar_igl
nand_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
64 10c144e2 edgar_igl
{
65 10c144e2 edgar_igl
    struct nand_state_t *s = opaque;
66 10c144e2 edgar_igl
    int rdy;
67 10c144e2 edgar_igl
68 10c144e2 edgar_igl
    DNAND(printf("%s addr=%x v=%x\n", __func__, addr, value));
69 10c144e2 edgar_igl
    nand_setpins(s->nand, s->cle, s->ale, s->ce, 1, 0);
70 10c144e2 edgar_igl
    nand_setio(s->nand, value);
71 10c144e2 edgar_igl
    nand_getpins(s->nand, &rdy);
72 10c144e2 edgar_igl
    s->rdy = rdy;
73 10c144e2 edgar_igl
}
74 10c144e2 edgar_igl
75 10c144e2 edgar_igl
static CPUReadMemoryFunc *nand_read[] = {
76 10c144e2 edgar_igl
    &nand_readl,
77 10c144e2 edgar_igl
    &nand_readl,
78 10c144e2 edgar_igl
    &nand_readl,
79 10c144e2 edgar_igl
};
80 10c144e2 edgar_igl
81 10c144e2 edgar_igl
static CPUWriteMemoryFunc *nand_write[] = {
82 10c144e2 edgar_igl
    &nand_writel,
83 10c144e2 edgar_igl
    &nand_writel,
84 10c144e2 edgar_igl
    &nand_writel,
85 10c144e2 edgar_igl
};
86 10c144e2 edgar_igl
87 10c144e2 edgar_igl
#define RW_PA_DOUT 0
88 10c144e2 edgar_igl
#define R_PA_DIN   1
89 10c144e2 edgar_igl
#define RW_PA_OE   2
90 10c144e2 edgar_igl
struct gpio_state_t
91 10c144e2 edgar_igl
{
92 10c144e2 edgar_igl
    struct nand_state_t *nand;
93 10c144e2 edgar_igl
    uint32_t regs[0x5c / 4];
94 10c144e2 edgar_igl
} gpio_state;
95 10c144e2 edgar_igl
96 10c144e2 edgar_igl
static uint32_t gpio_readl (void *opaque, target_phys_addr_t addr)
97 10c144e2 edgar_igl
{
98 10c144e2 edgar_igl
    struct gpio_state_t *s = opaque;
99 10c144e2 edgar_igl
    uint32_t r = 0;
100 10c144e2 edgar_igl
101 10c144e2 edgar_igl
    addr >>= 2;
102 10c144e2 edgar_igl
    switch (addr)
103 10c144e2 edgar_igl
    {
104 10c144e2 edgar_igl
        case R_PA_DIN:
105 10c144e2 edgar_igl
            r = s->regs[RW_PA_DOUT] & s->regs[RW_PA_OE];
106 10c144e2 edgar_igl
107 10c144e2 edgar_igl
            /* Encode pins from the nand.  */
108 10c144e2 edgar_igl
            r |= s->nand->rdy << 7;
109 10c144e2 edgar_igl
            break;
110 10c144e2 edgar_igl
        default:
111 10c144e2 edgar_igl
            r = s->regs[addr];
112 10c144e2 edgar_igl
            break;
113 10c144e2 edgar_igl
    }
114 10c144e2 edgar_igl
    return r;
115 10c144e2 edgar_igl
    D(printf("%s %x=%x\n", __func__, addr, r));
116 10c144e2 edgar_igl
}
117 10c144e2 edgar_igl
118 10c144e2 edgar_igl
static void gpio_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
119 10c144e2 edgar_igl
{
120 10c144e2 edgar_igl
    struct gpio_state_t *s = opaque;
121 10c144e2 edgar_igl
    D(printf("%s %x=%x\n", __func__, addr, value));
122 10c144e2 edgar_igl
123 10c144e2 edgar_igl
    addr >>= 2;
124 10c144e2 edgar_igl
    switch (addr)
125 10c144e2 edgar_igl
    {
126 10c144e2 edgar_igl
        case RW_PA_DOUT:
127 10c144e2 edgar_igl
            /* Decode nand pins.  */
128 10c144e2 edgar_igl
            s->nand->ale = !!(value & (1 << 6));
129 10c144e2 edgar_igl
            s->nand->cle = !!(value & (1 << 5));
130 10c144e2 edgar_igl
            s->nand->ce  = !!(value & (1 << 4));
131 10c144e2 edgar_igl
132 10c144e2 edgar_igl
            s->regs[addr] = value;
133 10c144e2 edgar_igl
            break;
134 10c144e2 edgar_igl
        default:
135 10c144e2 edgar_igl
            s->regs[addr] = value;
136 10c144e2 edgar_igl
            break;
137 10c144e2 edgar_igl
    }
138 10c144e2 edgar_igl
}
139 10c144e2 edgar_igl
140 10c144e2 edgar_igl
static CPUReadMemoryFunc *gpio_read[] = {
141 10c144e2 edgar_igl
    NULL, NULL,
142 10c144e2 edgar_igl
    &gpio_readl,
143 10c144e2 edgar_igl
};
144 10c144e2 edgar_igl
145 10c144e2 edgar_igl
static CPUWriteMemoryFunc *gpio_write[] = {
146 10c144e2 edgar_igl
    NULL, NULL,
147 10c144e2 edgar_igl
    &gpio_writel,
148 10c144e2 edgar_igl
};
149 10c144e2 edgar_igl
150 10c144e2 edgar_igl
#define INTMEM_SIZE (128 * 1024)
151 10c144e2 edgar_igl
152 10c144e2 edgar_igl
static uint32_t bootstrap_pc;
153 10c144e2 edgar_igl
static void main_cpu_reset(void *opaque)
154 10c144e2 edgar_igl
{
155 10c144e2 edgar_igl
    CPUState *env = opaque;
156 10c144e2 edgar_igl
    cpu_reset(env);
157 10c144e2 edgar_igl
158 10c144e2 edgar_igl
    env->pc = bootstrap_pc;
159 10c144e2 edgar_igl
}
160 10c144e2 edgar_igl
161 10c144e2 edgar_igl
static
162 10c144e2 edgar_igl
void axisdev88_init (ram_addr_t ram_size, int vga_ram_size,
163 10c144e2 edgar_igl
                     const char *boot_device, DisplayState *ds,
164 10c144e2 edgar_igl
                     const char *kernel_filename, const char *kernel_cmdline,
165 10c144e2 edgar_igl
                     const char *initrd_filename, const char *cpu_model)
166 10c144e2 edgar_igl
{
167 10c144e2 edgar_igl
    CPUState *env;
168 10c144e2 edgar_igl
    struct etraxfs_pic *pic;
169 10c144e2 edgar_igl
    void *etraxfs_dmac;
170 10c144e2 edgar_igl
    struct etraxfs_dma_client *eth[2] = {NULL, NULL};
171 10c144e2 edgar_igl
    int kernel_size;
172 10c144e2 edgar_igl
    int i;
173 10c144e2 edgar_igl
    int nand_regs;
174 10c144e2 edgar_igl
    int gpio_regs;
175 10c144e2 edgar_igl
    ram_addr_t phys_ram;
176 10c144e2 edgar_igl
    ram_addr_t phys_intmem;
177 10c144e2 edgar_igl
178 10c144e2 edgar_igl
    /* init CPUs */
179 10c144e2 edgar_igl
    if (cpu_model == NULL) {
180 10c144e2 edgar_igl
        cpu_model = "crisv32";
181 10c144e2 edgar_igl
    }
182 10c144e2 edgar_igl
    env = cpu_init(cpu_model);
183 10c144e2 edgar_igl
    qemu_register_reset(main_cpu_reset, env);
184 10c144e2 edgar_igl
185 10c144e2 edgar_igl
    /* allocate RAM */
186 10c144e2 edgar_igl
    phys_ram = qemu_ram_alloc(ram_size);
187 10c144e2 edgar_igl
    cpu_register_physical_memory(0x40000000, ram_size, phys_ram | IO_MEM_RAM);
188 10c144e2 edgar_igl
189 10c144e2 edgar_igl
    /* The ETRAX-FS has 128Kb on chip ram, the docs refer to it as the 
190 10c144e2 edgar_igl
       internal memory.  */
191 10c144e2 edgar_igl
    phys_intmem = qemu_ram_alloc(INTMEM_SIZE);
192 10c144e2 edgar_igl
    cpu_register_physical_memory(0x38000000, INTMEM_SIZE,
193 10c144e2 edgar_igl
                                 phys_intmem | IO_MEM_RAM);
194 10c144e2 edgar_igl
195 10c144e2 edgar_igl
196 10c144e2 edgar_igl
      /* Attach a NAND flash to CS1.  */
197 10c144e2 edgar_igl
    nand_state.nand = nand_init(NAND_MFR_STMICRO, 0xf1);
198 10c144e2 edgar_igl
    nand_regs = cpu_register_io_memory(0, nand_read, nand_write, &nand_state);
199 10c144e2 edgar_igl
    cpu_register_physical_memory(0x10000000, 0x05000000, nand_regs);
200 10c144e2 edgar_igl
201 10c144e2 edgar_igl
    gpio_state.nand = &nand_state;
202 10c144e2 edgar_igl
    gpio_regs = cpu_register_io_memory(0, gpio_read, gpio_write, &gpio_state);
203 10c144e2 edgar_igl
    cpu_register_physical_memory(0x3001a000, 0x1c, gpio_regs);
204 10c144e2 edgar_igl
205 10c144e2 edgar_igl
206 10c144e2 edgar_igl
    pic = etraxfs_pic_init(env, 0x3001c000);
207 10c144e2 edgar_igl
    etraxfs_dmac = etraxfs_dmac_init(env, 0x30000000, 10);
208 10c144e2 edgar_igl
    for (i = 0; i < 10; i++) {
209 10c144e2 edgar_igl
        /* On ETRAX, odd numbered channels are inputs.  */
210 10c144e2 edgar_igl
        etraxfs_dmac_connect(etraxfs_dmac, i, pic->irq + 7 + i, i & 1);
211 10c144e2 edgar_igl
    }
212 10c144e2 edgar_igl
213 10c144e2 edgar_igl
    /* Add the two ethernet blocks.  */
214 10c144e2 edgar_igl
    eth[0] = etraxfs_eth_init(&nd_table[0], env, pic->irq + 25, 0x30034000);
215 10c144e2 edgar_igl
    if (nb_nics > 1)
216 10c144e2 edgar_igl
        eth[1] = etraxfs_eth_init(&nd_table[1], env, pic->irq + 26, 0x30036000);
217 10c144e2 edgar_igl
218 10c144e2 edgar_igl
    /* The DMA Connector block is missing, hardwire things for now.  */
219 10c144e2 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 0, eth[0]);
220 10c144e2 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 1, eth[0] + 1);
221 10c144e2 edgar_igl
    if (eth[1]) {
222 10c144e2 edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 6, eth[1]);
223 10c144e2 edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 7, eth[1] + 1);
224 10c144e2 edgar_igl
    }
225 10c144e2 edgar_igl
226 10c144e2 edgar_igl
    /* 2 timers.  */
227 10c144e2 edgar_igl
    etraxfs_timer_init(env, pic->irq + 0x1b, pic->nmi + 1, 0x3001e000);
228 10c144e2 edgar_igl
    etraxfs_timer_init(env, pic->irq + 0x1b, pic->nmi + 1, 0x3005e000);
229 10c144e2 edgar_igl
230 10c144e2 edgar_igl
    for (i = 0; i < 4; i++) {
231 10c144e2 edgar_igl
        if (serial_hds[i]) {
232 10c144e2 edgar_igl
            etraxfs_ser_init(env, pic->irq + 0x14 + i,
233 10c144e2 edgar_igl
                             serial_hds[i], 0x30026000 + i * 0x2000);
234 10c144e2 edgar_igl
        }
235 10c144e2 edgar_igl
    }
236 10c144e2 edgar_igl
237 10c144e2 edgar_igl
    if (kernel_filename) {
238 10c144e2 edgar_igl
        uint64_t entry, high;
239 10c144e2 edgar_igl
        int kcmdline_len;
240 10c144e2 edgar_igl
241 10c144e2 edgar_igl
        /* Boots a kernel elf binary, os/linux-2.6/vmlinux from the axis 
242 10c144e2 edgar_igl
           devboard SDK.  */
243 10c144e2 edgar_igl
        kernel_size = load_elf(kernel_filename, -0x80000000LL,
244 10c144e2 edgar_igl
                               &entry, NULL, &high);
245 10c144e2 edgar_igl
        bootstrap_pc = entry;
246 10c144e2 edgar_igl
        if (kernel_size < 0) {
247 10c144e2 edgar_igl
            /* Takes a kimage from the axis devboard SDK.  */
248 10c144e2 edgar_igl
            kernel_size = load_image(kernel_filename, phys_ram_base + 0x4000);
249 10c144e2 edgar_igl
            bootstrap_pc = 0x40004000;
250 10c144e2 edgar_igl
            env->regs[9] = 0x40004000 + kernel_size;
251 10c144e2 edgar_igl
        }
252 10c144e2 edgar_igl
        env->regs[8] = 0x56902387; /* RAM init magic.  */
253 10c144e2 edgar_igl
254 10c144e2 edgar_igl
        if (kernel_cmdline && (kcmdline_len = strlen(kernel_cmdline))) {
255 10c144e2 edgar_igl
            if (kcmdline_len > 256) {
256 10c144e2 edgar_igl
                fprintf(stderr, "Too long CRIS kernel cmdline (max 256)\n");
257 10c144e2 edgar_igl
                exit(1);
258 10c144e2 edgar_igl
            }
259 10c144e2 edgar_igl
            pstrcpy_targphys(high, 256, kernel_cmdline);
260 10c144e2 edgar_igl
            /* Let the kernel know we are modifying the cmdline.  */
261 10c144e2 edgar_igl
            env->regs[10] = 0x87109563;
262 10c144e2 edgar_igl
            env->regs[11] = high;
263 10c144e2 edgar_igl
        }
264 10c144e2 edgar_igl
    }
265 10c144e2 edgar_igl
    env->pc = bootstrap_pc;
266 10c144e2 edgar_igl
267 10c144e2 edgar_igl
    printf ("pc =%x\n", env->pc);
268 10c144e2 edgar_igl
    printf ("ram size =%ld\n", ram_size);
269 10c144e2 edgar_igl
}
270 10c144e2 edgar_igl
271 10c144e2 edgar_igl
QEMUMachine axisdev88_machine = {
272 10c144e2 edgar_igl
    .name = "axis-dev88",
273 10c144e2 edgar_igl
    .desc = "AXIS devboard 88",
274 10c144e2 edgar_igl
    .init = axisdev88_init,
275 10c144e2 edgar_igl
    .ram_require = 0x8000000,
276 10c144e2 edgar_igl
};