Statistics
| Branch: | Revision:

root / hw / axis_dev88.c @ 88b3be20

History | View | Annotate | Download (11.1 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 4b816985 Edgar E. Iglesias
25 4b816985 Edgar E. Iglesias
#include "sysbus.h"
26 10c144e2 edgar_igl
#include "net.h"
27 10c144e2 edgar_igl
#include "flash.h"
28 10c144e2 edgar_igl
#include "boards.h"
29 4b816985 Edgar E. Iglesias
#include "sysemu.h"
30 10c144e2 edgar_igl
#include "etraxfs.h"
31 10c144e2 edgar_igl
32 10c144e2 edgar_igl
#define D(x)
33 10c144e2 edgar_igl
#define DNAND(x)
34 10c144e2 edgar_igl
35 10c144e2 edgar_igl
struct nand_state_t
36 10c144e2 edgar_igl
{
37 bc24a225 Paul Brook
    NANDFlashState *nand;
38 10c144e2 edgar_igl
    unsigned int rdy:1;
39 10c144e2 edgar_igl
    unsigned int ale:1;
40 10c144e2 edgar_igl
    unsigned int cle:1;
41 10c144e2 edgar_igl
    unsigned int ce:1;
42 10c144e2 edgar_igl
};
43 10c144e2 edgar_igl
44 10c144e2 edgar_igl
static struct nand_state_t nand_state;
45 10c144e2 edgar_igl
static uint32_t nand_readl (void *opaque, target_phys_addr_t addr)
46 10c144e2 edgar_igl
{
47 10c144e2 edgar_igl
    struct nand_state_t *s = opaque;
48 10c144e2 edgar_igl
    uint32_t r;
49 10c144e2 edgar_igl
    int rdy;
50 10c144e2 edgar_igl
51 10c144e2 edgar_igl
    r = nand_getio(s->nand);
52 10c144e2 edgar_igl
    nand_getpins(s->nand, &rdy);
53 10c144e2 edgar_igl
    s->rdy = rdy;
54 10c144e2 edgar_igl
55 10c144e2 edgar_igl
    DNAND(printf("%s addr=%x r=%x\n", __func__, addr, r));
56 10c144e2 edgar_igl
    return r;
57 10c144e2 edgar_igl
}
58 10c144e2 edgar_igl
59 10c144e2 edgar_igl
static void
60 10c144e2 edgar_igl
nand_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
61 10c144e2 edgar_igl
{
62 10c144e2 edgar_igl
    struct nand_state_t *s = opaque;
63 10c144e2 edgar_igl
    int rdy;
64 10c144e2 edgar_igl
65 10c144e2 edgar_igl
    DNAND(printf("%s addr=%x v=%x\n", __func__, addr, value));
66 10c144e2 edgar_igl
    nand_setpins(s->nand, s->cle, s->ale, s->ce, 1, 0);
67 10c144e2 edgar_igl
    nand_setio(s->nand, value);
68 10c144e2 edgar_igl
    nand_getpins(s->nand, &rdy);
69 10c144e2 edgar_igl
    s->rdy = rdy;
70 10c144e2 edgar_igl
}
71 10c144e2 edgar_igl
72 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const nand_read[] = {
73 10c144e2 edgar_igl
    &nand_readl,
74 10c144e2 edgar_igl
    &nand_readl,
75 10c144e2 edgar_igl
    &nand_readl,
76 10c144e2 edgar_igl
};
77 10c144e2 edgar_igl
78 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const nand_write[] = {
79 10c144e2 edgar_igl
    &nand_writel,
80 10c144e2 edgar_igl
    &nand_writel,
81 10c144e2 edgar_igl
    &nand_writel,
82 10c144e2 edgar_igl
};
83 10c144e2 edgar_igl
84 4a1e6bea edgar_igl
85 4a1e6bea edgar_igl
struct tempsensor_t
86 4a1e6bea edgar_igl
{
87 4a1e6bea edgar_igl
    unsigned int shiftreg;
88 4a1e6bea edgar_igl
    unsigned int count;
89 4a1e6bea edgar_igl
    enum {
90 4a1e6bea edgar_igl
        ST_OUT, ST_IN, ST_Z
91 4a1e6bea edgar_igl
    } state;
92 4a1e6bea edgar_igl
93 4a1e6bea edgar_igl
    uint16_t regs[3];
94 4a1e6bea edgar_igl
};
95 4a1e6bea edgar_igl
96 4a1e6bea edgar_igl
static void tempsensor_clkedge(struct tempsensor_t *s,
97 4a1e6bea edgar_igl
                               unsigned int clk, unsigned int data_in)
98 4a1e6bea edgar_igl
{
99 4a1e6bea edgar_igl
    D(printf("%s clk=%d state=%d sr=%x\n", __func__,
100 4a1e6bea edgar_igl
             clk, s->state, s->shiftreg));
101 4a1e6bea edgar_igl
    if (s->count == 0) {
102 4a1e6bea edgar_igl
        s->count = 16;
103 4a1e6bea edgar_igl
        s->state = ST_OUT;
104 4a1e6bea edgar_igl
    }
105 4a1e6bea edgar_igl
    switch (s->state) {
106 4a1e6bea edgar_igl
        case ST_OUT:
107 4a1e6bea edgar_igl
            /* Output reg is clocked at negedge.  */
108 4a1e6bea edgar_igl
            if (!clk) {
109 4a1e6bea edgar_igl
                s->count--;
110 4a1e6bea edgar_igl
                s->shiftreg <<= 1;
111 4a1e6bea edgar_igl
                if (s->count == 0) {
112 4a1e6bea edgar_igl
                    s->shiftreg = 0;
113 4a1e6bea edgar_igl
                    s->state = ST_IN;
114 4a1e6bea edgar_igl
                    s->count = 16;
115 4a1e6bea edgar_igl
                }
116 4a1e6bea edgar_igl
            }
117 4a1e6bea edgar_igl
            break;
118 4a1e6bea edgar_igl
        case ST_Z:
119 4a1e6bea edgar_igl
            if (clk) {
120 4a1e6bea edgar_igl
                s->count--;
121 4a1e6bea edgar_igl
                if (s->count == 0) {
122 4a1e6bea edgar_igl
                    s->shiftreg = 0;
123 4a1e6bea edgar_igl
                    s->state = ST_OUT;
124 4a1e6bea edgar_igl
                    s->count = 16;
125 4a1e6bea edgar_igl
                }
126 4a1e6bea edgar_igl
            }
127 4a1e6bea edgar_igl
            break;
128 4a1e6bea edgar_igl
        case ST_IN:
129 4a1e6bea edgar_igl
            /* Indata is sampled at posedge.  */
130 4a1e6bea edgar_igl
            if (clk) {
131 4a1e6bea edgar_igl
                s->count--;
132 4a1e6bea edgar_igl
                s->shiftreg <<= 1;
133 4a1e6bea edgar_igl
                s->shiftreg |= data_in & 1;
134 4a1e6bea edgar_igl
                if (s->count == 0) {
135 4a1e6bea edgar_igl
                    D(printf("%s cfgreg=%x\n", __func__, s->shiftreg));
136 4a1e6bea edgar_igl
                    s->regs[0] = s->shiftreg;
137 4a1e6bea edgar_igl
                    s->state = ST_OUT;
138 4a1e6bea edgar_igl
                    s->count = 16;
139 4a1e6bea edgar_igl
140 4a1e6bea edgar_igl
                    if ((s->regs[0] & 0xff) == 0) {
141 4a1e6bea edgar_igl
                        /* 25 degrees celcius.  */
142 4a1e6bea edgar_igl
                        s->shiftreg = 0x0b9f;
143 4a1e6bea edgar_igl
                    } else if ((s->regs[0] & 0xff) == 0xff) {
144 4a1e6bea edgar_igl
                        /* Sensor ID, 0x8100 LM70.  */
145 4a1e6bea edgar_igl
                        s->shiftreg = 0x8100;
146 4a1e6bea edgar_igl
                    } else
147 4a1e6bea edgar_igl
                        printf("Invalid tempsens state %x\n", s->regs[0]);
148 4a1e6bea edgar_igl
                }
149 4a1e6bea edgar_igl
            }
150 4a1e6bea edgar_igl
            break;
151 4a1e6bea edgar_igl
    }
152 4a1e6bea edgar_igl
}
153 4a1e6bea edgar_igl
154 4a1e6bea edgar_igl
155 4a1e6bea edgar_igl
#define RW_PA_DOUT    0x00
156 4a1e6bea edgar_igl
#define R_PA_DIN      0x01
157 4a1e6bea edgar_igl
#define RW_PA_OE      0x02
158 4a1e6bea edgar_igl
#define RW_PD_DOUT    0x10
159 4a1e6bea edgar_igl
#define R_PD_DIN      0x11
160 4a1e6bea edgar_igl
#define RW_PD_OE      0x12
161 4a1e6bea edgar_igl
162 4a1e6bea edgar_igl
static struct gpio_state_t
163 10c144e2 edgar_igl
{
164 10c144e2 edgar_igl
    struct nand_state_t *nand;
165 4a1e6bea edgar_igl
    struct tempsensor_t tempsensor;
166 10c144e2 edgar_igl
    uint32_t regs[0x5c / 4];
167 10c144e2 edgar_igl
} gpio_state;
168 10c144e2 edgar_igl
169 10c144e2 edgar_igl
static uint32_t gpio_readl (void *opaque, target_phys_addr_t addr)
170 10c144e2 edgar_igl
{
171 10c144e2 edgar_igl
    struct gpio_state_t *s = opaque;
172 10c144e2 edgar_igl
    uint32_t r = 0;
173 10c144e2 edgar_igl
174 10c144e2 edgar_igl
    addr >>= 2;
175 10c144e2 edgar_igl
    switch (addr)
176 10c144e2 edgar_igl
    {
177 10c144e2 edgar_igl
        case R_PA_DIN:
178 10c144e2 edgar_igl
            r = s->regs[RW_PA_DOUT] & s->regs[RW_PA_OE];
179 10c144e2 edgar_igl
180 10c144e2 edgar_igl
            /* Encode pins from the nand.  */
181 10c144e2 edgar_igl
            r |= s->nand->rdy << 7;
182 10c144e2 edgar_igl
            break;
183 4a1e6bea edgar_igl
        case R_PD_DIN:
184 4a1e6bea edgar_igl
            r = s->regs[RW_PD_DOUT] & s->regs[RW_PD_OE];
185 4a1e6bea edgar_igl
186 4a1e6bea edgar_igl
            /* Encode temp sensor pins.  */
187 4a1e6bea edgar_igl
            r |= (!!(s->tempsensor.shiftreg & 0x10000)) << 4;
188 4a1e6bea edgar_igl
            break;
189 4a1e6bea edgar_igl
190 10c144e2 edgar_igl
        default:
191 10c144e2 edgar_igl
            r = s->regs[addr];
192 10c144e2 edgar_igl
            break;
193 10c144e2 edgar_igl
    }
194 10c144e2 edgar_igl
    return r;
195 10c144e2 edgar_igl
    D(printf("%s %x=%x\n", __func__, addr, r));
196 10c144e2 edgar_igl
}
197 10c144e2 edgar_igl
198 10c144e2 edgar_igl
static void gpio_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
199 10c144e2 edgar_igl
{
200 10c144e2 edgar_igl
    struct gpio_state_t *s = opaque;
201 10c144e2 edgar_igl
    D(printf("%s %x=%x\n", __func__, addr, value));
202 10c144e2 edgar_igl
203 10c144e2 edgar_igl
    addr >>= 2;
204 10c144e2 edgar_igl
    switch (addr)
205 10c144e2 edgar_igl
    {
206 10c144e2 edgar_igl
        case RW_PA_DOUT:
207 10c144e2 edgar_igl
            /* Decode nand pins.  */
208 10c144e2 edgar_igl
            s->nand->ale = !!(value & (1 << 6));
209 10c144e2 edgar_igl
            s->nand->cle = !!(value & (1 << 5));
210 10c144e2 edgar_igl
            s->nand->ce  = !!(value & (1 << 4));
211 10c144e2 edgar_igl
212 10c144e2 edgar_igl
            s->regs[addr] = value;
213 10c144e2 edgar_igl
            break;
214 4a1e6bea edgar_igl
215 4a1e6bea edgar_igl
        case RW_PD_DOUT:
216 4a1e6bea edgar_igl
            /* Temp sensor clk.  */
217 4a1e6bea edgar_igl
            if ((s->regs[addr] ^ value) & 2)
218 4a1e6bea edgar_igl
                tempsensor_clkedge(&s->tempsensor, !!(value & 2),
219 4a1e6bea edgar_igl
                                   !!(value & 16));
220 4a1e6bea edgar_igl
            s->regs[addr] = value;
221 4a1e6bea edgar_igl
            break;
222 4a1e6bea edgar_igl
223 10c144e2 edgar_igl
        default:
224 10c144e2 edgar_igl
            s->regs[addr] = value;
225 10c144e2 edgar_igl
            break;
226 10c144e2 edgar_igl
    }
227 10c144e2 edgar_igl
}
228 10c144e2 edgar_igl
229 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const gpio_read[] = {
230 10c144e2 edgar_igl
    NULL, NULL,
231 10c144e2 edgar_igl
    &gpio_readl,
232 10c144e2 edgar_igl
};
233 10c144e2 edgar_igl
234 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const gpio_write[] = {
235 10c144e2 edgar_igl
    NULL, NULL,
236 10c144e2 edgar_igl
    &gpio_writel,
237 10c144e2 edgar_igl
};
238 10c144e2 edgar_igl
239 10c144e2 edgar_igl
#define INTMEM_SIZE (128 * 1024)
240 10c144e2 edgar_igl
241 10c144e2 edgar_igl
static uint32_t bootstrap_pc;
242 10c144e2 edgar_igl
static void main_cpu_reset(void *opaque)
243 10c144e2 edgar_igl
{
244 10c144e2 edgar_igl
    CPUState *env = opaque;
245 10c144e2 edgar_igl
    cpu_reset(env);
246 10c144e2 edgar_igl
247 10c144e2 edgar_igl
    env->pc = bootstrap_pc;
248 10c144e2 edgar_igl
}
249 10c144e2 edgar_igl
250 10c144e2 edgar_igl
static
251 fbe1b595 Paul Brook
void axisdev88_init (ram_addr_t ram_size,
252 ef998233 edgar_igl
                     const char *boot_device,
253 10c144e2 edgar_igl
                     const char *kernel_filename, const char *kernel_cmdline,
254 10c144e2 edgar_igl
                     const char *initrd_filename, const char *cpu_model)
255 10c144e2 edgar_igl
{
256 10c144e2 edgar_igl
    CPUState *env;
257 fd6dc90b Edgar E. Iglesias
    DeviceState *dev;
258 fd6dc90b Edgar E. Iglesias
    SysBusDevice *s;
259 fd6dc90b Edgar E. Iglesias
    qemu_irq irq[30], nmi[2], *cpu_irq;
260 10c144e2 edgar_igl
    void *etraxfs_dmac;
261 10c144e2 edgar_igl
    struct etraxfs_dma_client *eth[2] = {NULL, NULL};
262 10c144e2 edgar_igl
    int kernel_size;
263 10c144e2 edgar_igl
    int i;
264 10c144e2 edgar_igl
    int nand_regs;
265 10c144e2 edgar_igl
    int gpio_regs;
266 10c144e2 edgar_igl
    ram_addr_t phys_ram;
267 10c144e2 edgar_igl
    ram_addr_t phys_intmem;
268 10c144e2 edgar_igl
269 10c144e2 edgar_igl
    /* init CPUs */
270 10c144e2 edgar_igl
    if (cpu_model == NULL) {
271 10c144e2 edgar_igl
        cpu_model = "crisv32";
272 10c144e2 edgar_igl
    }
273 10c144e2 edgar_igl
    env = cpu_init(cpu_model);
274 a08d4367 Jan Kiszka
    qemu_register_reset(main_cpu_reset, env);
275 10c144e2 edgar_igl
276 10c144e2 edgar_igl
    /* allocate RAM */
277 10c144e2 edgar_igl
    phys_ram = qemu_ram_alloc(ram_size);
278 10c144e2 edgar_igl
    cpu_register_physical_memory(0x40000000, ram_size, phys_ram | IO_MEM_RAM);
279 10c144e2 edgar_igl
280 10c144e2 edgar_igl
    /* The ETRAX-FS has 128Kb on chip ram, the docs refer to it as the 
281 10c144e2 edgar_igl
       internal memory.  */
282 10c144e2 edgar_igl
    phys_intmem = qemu_ram_alloc(INTMEM_SIZE);
283 10c144e2 edgar_igl
    cpu_register_physical_memory(0x38000000, INTMEM_SIZE,
284 10c144e2 edgar_igl
                                 phys_intmem | IO_MEM_RAM);
285 10c144e2 edgar_igl
286 10c144e2 edgar_igl
287 10c144e2 edgar_igl
      /* Attach a NAND flash to CS1.  */
288 4a1e6bea edgar_igl
    nand_state.nand = nand_init(NAND_MFR_STMICRO, 0x39);
289 1eed09cb Avi Kivity
    nand_regs = cpu_register_io_memory(nand_read, nand_write, &nand_state);
290 10c144e2 edgar_igl
    cpu_register_physical_memory(0x10000000, 0x05000000, nand_regs);
291 10c144e2 edgar_igl
292 10c144e2 edgar_igl
    gpio_state.nand = &nand_state;
293 1eed09cb Avi Kivity
    gpio_regs = cpu_register_io_memory(gpio_read, gpio_write, &gpio_state);
294 4a1e6bea edgar_igl
    cpu_register_physical_memory(0x3001a000, 0x5c, gpio_regs);
295 10c144e2 edgar_igl
296 10c144e2 edgar_igl
297 fd6dc90b Edgar E. Iglesias
    cpu_irq = cris_pic_init_cpu(env);
298 fd6dc90b Edgar E. Iglesias
    dev = qdev_create(NULL, "etraxfs,pic");
299 fd6dc90b Edgar E. Iglesias
    /* FIXME: Is there a proper way to signal vectors to the CPU core?  */
300 ee6847d1 Gerd Hoffmann
    qdev_prop_set_ptr(dev, "interrupt_vector", &env->interrupt_vector);
301 fd6dc90b Edgar E. Iglesias
    qdev_init(dev);
302 fd6dc90b Edgar E. Iglesias
    s = sysbus_from_qdev(dev);
303 fd6dc90b Edgar E. Iglesias
    sysbus_mmio_map(s, 0, 0x3001c000);
304 fd6dc90b Edgar E. Iglesias
    sysbus_connect_irq(s, 0, cpu_irq[0]);
305 fd6dc90b Edgar E. Iglesias
    sysbus_connect_irq(s, 1, cpu_irq[1]);
306 fd6dc90b Edgar E. Iglesias
    for (i = 0; i < 30; i++) {
307 067a3ddc Paul Brook
        irq[i] = qdev_get_gpio_in(dev, i);
308 fd6dc90b Edgar E. Iglesias
    }
309 067a3ddc Paul Brook
    nmi[0] = qdev_get_gpio_in(dev, 30);
310 067a3ddc Paul Brook
    nmi[1] = qdev_get_gpio_in(dev, 31);
311 73cfd29f Edgar E. Iglesias
312 ba494313 Edgar E. Iglesias
    etraxfs_dmac = etraxfs_dmac_init(0x30000000, 10);
313 10c144e2 edgar_igl
    for (i = 0; i < 10; i++) {
314 10c144e2 edgar_igl
        /* On ETRAX, odd numbered channels are inputs.  */
315 73cfd29f Edgar E. Iglesias
        etraxfs_dmac_connect(etraxfs_dmac, i, irq + 7 + i, i & 1);
316 10c144e2 edgar_igl
    }
317 10c144e2 edgar_igl
318 10c144e2 edgar_igl
    /* Add the two ethernet blocks.  */
319 ba494313 Edgar E. Iglesias
    eth[0] = etraxfs_eth_init(&nd_table[0], 0x30034000, 1);
320 0ae18cee aliguori
    if (nb_nics > 1)
321 ba494313 Edgar E. Iglesias
        eth[1] = etraxfs_eth_init(&nd_table[1], 0x30036000, 2);
322 10c144e2 edgar_igl
323 10c144e2 edgar_igl
    /* The DMA Connector block is missing, hardwire things for now.  */
324 10c144e2 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 0, eth[0]);
325 10c144e2 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 1, eth[0] + 1);
326 10c144e2 edgar_igl
    if (eth[1]) {
327 10c144e2 edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 6, eth[1]);
328 10c144e2 edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 7, eth[1] + 1);
329 10c144e2 edgar_igl
    }
330 10c144e2 edgar_igl
331 10c144e2 edgar_igl
    /* 2 timers.  */
332 3b1fd90e Edgar E. Iglesias
    sysbus_create_varargs("etraxfs,timer", 0x3001e000, irq[0x1b], nmi[1], NULL);
333 3b1fd90e Edgar E. Iglesias
    sysbus_create_varargs("etraxfs,timer", 0x3005e000, irq[0x1b], nmi[1], NULL);
334 10c144e2 edgar_igl
335 10c144e2 edgar_igl
    for (i = 0; i < 4; i++) {
336 4b816985 Edgar E. Iglesias
        sysbus_create_simple("etraxfs,serial", 0x30026000 + i * 0x2000,
337 3b1fd90e Edgar E. Iglesias
                             irq[0x14 + i]);
338 10c144e2 edgar_igl
    }
339 10c144e2 edgar_igl
340 10c144e2 edgar_igl
    if (kernel_filename) {
341 10c144e2 edgar_igl
        uint64_t entry, high;
342 10c144e2 edgar_igl
        int kcmdline_len;
343 10c144e2 edgar_igl
344 10c144e2 edgar_igl
        /* Boots a kernel elf binary, os/linux-2.6/vmlinux from the axis 
345 10c144e2 edgar_igl
           devboard SDK.  */
346 10c144e2 edgar_igl
        kernel_size = load_elf(kernel_filename, -0x80000000LL,
347 10c144e2 edgar_igl
                               &entry, NULL, &high);
348 10c144e2 edgar_igl
        bootstrap_pc = entry;
349 10c144e2 edgar_igl
        if (kernel_size < 0) {
350 10c144e2 edgar_igl
            /* Takes a kimage from the axis devboard SDK.  */
351 dcac9679 pbrook
            kernel_size = load_image_targphys(kernel_filename, 0x40004000,
352 dcac9679 pbrook
                                              ram_size);
353 10c144e2 edgar_igl
            bootstrap_pc = 0x40004000;
354 10c144e2 edgar_igl
            env->regs[9] = 0x40004000 + kernel_size;
355 10c144e2 edgar_igl
        }
356 10c144e2 edgar_igl
        env->regs[8] = 0x56902387; /* RAM init magic.  */
357 10c144e2 edgar_igl
358 10c144e2 edgar_igl
        if (kernel_cmdline && (kcmdline_len = strlen(kernel_cmdline))) {
359 10c144e2 edgar_igl
            if (kcmdline_len > 256) {
360 10c144e2 edgar_igl
                fprintf(stderr, "Too long CRIS kernel cmdline (max 256)\n");
361 10c144e2 edgar_igl
                exit(1);
362 10c144e2 edgar_igl
            }
363 10c144e2 edgar_igl
            /* Let the kernel know we are modifying the cmdline.  */
364 10c144e2 edgar_igl
            env->regs[10] = 0x87109563;
365 d33fd9d1 Edgar E. Iglesias
            env->regs[11] = 0x40000000;
366 d33fd9d1 Edgar E. Iglesias
            pstrcpy_targphys(env->regs[11], 256, kernel_cmdline);
367 10c144e2 edgar_igl
        }
368 10c144e2 edgar_igl
    }
369 10c144e2 edgar_igl
    env->pc = bootstrap_pc;
370 10c144e2 edgar_igl
371 10c144e2 edgar_igl
    printf ("pc =%x\n", env->pc);
372 10c144e2 edgar_igl
    printf ("ram size =%ld\n", ram_size);
373 10c144e2 edgar_igl
}
374 10c144e2 edgar_igl
375 f80f9ec9 Anthony Liguori
static QEMUMachine axisdev88_machine = {
376 10c144e2 edgar_igl
    .name = "axis-dev88",
377 10c144e2 edgar_igl
    .desc = "AXIS devboard 88",
378 10c144e2 edgar_igl
    .init = axisdev88_init,
379 10c144e2 edgar_igl
};
380 f80f9ec9 Anthony Liguori
381 f80f9ec9 Anthony Liguori
static void axisdev88_machine_init(void)
382 f80f9ec9 Anthony Liguori
{
383 f80f9ec9 Anthony Liguori
    qemu_register_machine(&axisdev88_machine);
384 f80f9ec9 Anthony Liguori
}
385 f80f9ec9 Anthony Liguori
386 f80f9ec9 Anthony Liguori
machine_init(axisdev88_machine_init);