Statistics
| Branch: | Revision:

root / hw / axis_dev88.c @ 43ad7e3e

History | View | Annotate | Download (10 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 ca20cf32 Blue Swirl
#include "loader.h"
32 ca20cf32 Blue Swirl
#include "elf.h"
33 77d4f95e Edgar E. Iglesias
#include "cris-boot.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 bc24a225 Paul Brook
    NANDFlashState *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 c227f099 Anthony Liguori
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 c227f099 Anthony Liguori
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 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const 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 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const 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 4a1e6bea edgar_igl
88 4a1e6bea edgar_igl
struct tempsensor_t
89 4a1e6bea edgar_igl
{
90 4a1e6bea edgar_igl
    unsigned int shiftreg;
91 4a1e6bea edgar_igl
    unsigned int count;
92 4a1e6bea edgar_igl
    enum {
93 4a1e6bea edgar_igl
        ST_OUT, ST_IN, ST_Z
94 4a1e6bea edgar_igl
    } state;
95 4a1e6bea edgar_igl
96 4a1e6bea edgar_igl
    uint16_t regs[3];
97 4a1e6bea edgar_igl
};
98 4a1e6bea edgar_igl
99 4a1e6bea edgar_igl
static void tempsensor_clkedge(struct tempsensor_t *s,
100 4a1e6bea edgar_igl
                               unsigned int clk, unsigned int data_in)
101 4a1e6bea edgar_igl
{
102 4a1e6bea edgar_igl
    D(printf("%s clk=%d state=%d sr=%x\n", __func__,
103 4a1e6bea edgar_igl
             clk, s->state, s->shiftreg));
104 4a1e6bea edgar_igl
    if (s->count == 0) {
105 4a1e6bea edgar_igl
        s->count = 16;
106 4a1e6bea edgar_igl
        s->state = ST_OUT;
107 4a1e6bea edgar_igl
    }
108 4a1e6bea edgar_igl
    switch (s->state) {
109 4a1e6bea edgar_igl
        case ST_OUT:
110 4a1e6bea edgar_igl
            /* Output reg is clocked at negedge.  */
111 4a1e6bea edgar_igl
            if (!clk) {
112 4a1e6bea edgar_igl
                s->count--;
113 4a1e6bea edgar_igl
                s->shiftreg <<= 1;
114 4a1e6bea edgar_igl
                if (s->count == 0) {
115 4a1e6bea edgar_igl
                    s->shiftreg = 0;
116 4a1e6bea edgar_igl
                    s->state = ST_IN;
117 4a1e6bea edgar_igl
                    s->count = 16;
118 4a1e6bea edgar_igl
                }
119 4a1e6bea edgar_igl
            }
120 4a1e6bea edgar_igl
            break;
121 4a1e6bea edgar_igl
        case ST_Z:
122 4a1e6bea edgar_igl
            if (clk) {
123 4a1e6bea edgar_igl
                s->count--;
124 4a1e6bea edgar_igl
                if (s->count == 0) {
125 4a1e6bea edgar_igl
                    s->shiftreg = 0;
126 4a1e6bea edgar_igl
                    s->state = ST_OUT;
127 4a1e6bea edgar_igl
                    s->count = 16;
128 4a1e6bea edgar_igl
                }
129 4a1e6bea edgar_igl
            }
130 4a1e6bea edgar_igl
            break;
131 4a1e6bea edgar_igl
        case ST_IN:
132 4a1e6bea edgar_igl
            /* Indata is sampled at posedge.  */
133 4a1e6bea edgar_igl
            if (clk) {
134 4a1e6bea edgar_igl
                s->count--;
135 4a1e6bea edgar_igl
                s->shiftreg <<= 1;
136 4a1e6bea edgar_igl
                s->shiftreg |= data_in & 1;
137 4a1e6bea edgar_igl
                if (s->count == 0) {
138 4a1e6bea edgar_igl
                    D(printf("%s cfgreg=%x\n", __func__, s->shiftreg));
139 4a1e6bea edgar_igl
                    s->regs[0] = s->shiftreg;
140 4a1e6bea edgar_igl
                    s->state = ST_OUT;
141 4a1e6bea edgar_igl
                    s->count = 16;
142 4a1e6bea edgar_igl
143 4a1e6bea edgar_igl
                    if ((s->regs[0] & 0xff) == 0) {
144 4a1e6bea edgar_igl
                        /* 25 degrees celcius.  */
145 4a1e6bea edgar_igl
                        s->shiftreg = 0x0b9f;
146 4a1e6bea edgar_igl
                    } else if ((s->regs[0] & 0xff) == 0xff) {
147 4a1e6bea edgar_igl
                        /* Sensor ID, 0x8100 LM70.  */
148 4a1e6bea edgar_igl
                        s->shiftreg = 0x8100;
149 4a1e6bea edgar_igl
                    } else
150 4a1e6bea edgar_igl
                        printf("Invalid tempsens state %x\n", s->regs[0]);
151 4a1e6bea edgar_igl
                }
152 4a1e6bea edgar_igl
            }
153 4a1e6bea edgar_igl
            break;
154 4a1e6bea edgar_igl
    }
155 4a1e6bea edgar_igl
}
156 4a1e6bea edgar_igl
157 4a1e6bea edgar_igl
158 4a1e6bea edgar_igl
#define RW_PA_DOUT    0x00
159 4a1e6bea edgar_igl
#define R_PA_DIN      0x01
160 4a1e6bea edgar_igl
#define RW_PA_OE      0x02
161 4a1e6bea edgar_igl
#define RW_PD_DOUT    0x10
162 4a1e6bea edgar_igl
#define R_PD_DIN      0x11
163 4a1e6bea edgar_igl
#define RW_PD_OE      0x12
164 4a1e6bea edgar_igl
165 4a1e6bea edgar_igl
static struct gpio_state_t
166 10c144e2 edgar_igl
{
167 10c144e2 edgar_igl
    struct nand_state_t *nand;
168 4a1e6bea edgar_igl
    struct tempsensor_t tempsensor;
169 10c144e2 edgar_igl
    uint32_t regs[0x5c / 4];
170 10c144e2 edgar_igl
} gpio_state;
171 10c144e2 edgar_igl
172 c227f099 Anthony Liguori
static uint32_t gpio_readl (void *opaque, target_phys_addr_t addr)
173 10c144e2 edgar_igl
{
174 10c144e2 edgar_igl
    struct gpio_state_t *s = opaque;
175 10c144e2 edgar_igl
    uint32_t r = 0;
176 10c144e2 edgar_igl
177 10c144e2 edgar_igl
    addr >>= 2;
178 10c144e2 edgar_igl
    switch (addr)
179 10c144e2 edgar_igl
    {
180 10c144e2 edgar_igl
        case R_PA_DIN:
181 10c144e2 edgar_igl
            r = s->regs[RW_PA_DOUT] & s->regs[RW_PA_OE];
182 10c144e2 edgar_igl
183 10c144e2 edgar_igl
            /* Encode pins from the nand.  */
184 10c144e2 edgar_igl
            r |= s->nand->rdy << 7;
185 10c144e2 edgar_igl
            break;
186 4a1e6bea edgar_igl
        case R_PD_DIN:
187 4a1e6bea edgar_igl
            r = s->regs[RW_PD_DOUT] & s->regs[RW_PD_OE];
188 4a1e6bea edgar_igl
189 4a1e6bea edgar_igl
            /* Encode temp sensor pins.  */
190 4a1e6bea edgar_igl
            r |= (!!(s->tempsensor.shiftreg & 0x10000)) << 4;
191 4a1e6bea edgar_igl
            break;
192 4a1e6bea edgar_igl
193 10c144e2 edgar_igl
        default:
194 10c144e2 edgar_igl
            r = s->regs[addr];
195 10c144e2 edgar_igl
            break;
196 10c144e2 edgar_igl
    }
197 10c144e2 edgar_igl
    return r;
198 10c144e2 edgar_igl
    D(printf("%s %x=%x\n", __func__, addr, r));
199 10c144e2 edgar_igl
}
200 10c144e2 edgar_igl
201 c227f099 Anthony Liguori
static void gpio_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
202 10c144e2 edgar_igl
{
203 10c144e2 edgar_igl
    struct gpio_state_t *s = opaque;
204 10c144e2 edgar_igl
    D(printf("%s %x=%x\n", __func__, addr, value));
205 10c144e2 edgar_igl
206 10c144e2 edgar_igl
    addr >>= 2;
207 10c144e2 edgar_igl
    switch (addr)
208 10c144e2 edgar_igl
    {
209 10c144e2 edgar_igl
        case RW_PA_DOUT:
210 10c144e2 edgar_igl
            /* Decode nand pins.  */
211 10c144e2 edgar_igl
            s->nand->ale = !!(value & (1 << 6));
212 10c144e2 edgar_igl
            s->nand->cle = !!(value & (1 << 5));
213 10c144e2 edgar_igl
            s->nand->ce  = !!(value & (1 << 4));
214 10c144e2 edgar_igl
215 10c144e2 edgar_igl
            s->regs[addr] = value;
216 10c144e2 edgar_igl
            break;
217 4a1e6bea edgar_igl
218 4a1e6bea edgar_igl
        case RW_PD_DOUT:
219 4a1e6bea edgar_igl
            /* Temp sensor clk.  */
220 4a1e6bea edgar_igl
            if ((s->regs[addr] ^ value) & 2)
221 4a1e6bea edgar_igl
                tempsensor_clkedge(&s->tempsensor, !!(value & 2),
222 4a1e6bea edgar_igl
                                   !!(value & 16));
223 4a1e6bea edgar_igl
            s->regs[addr] = value;
224 4a1e6bea edgar_igl
            break;
225 4a1e6bea edgar_igl
226 10c144e2 edgar_igl
        default:
227 10c144e2 edgar_igl
            s->regs[addr] = value;
228 10c144e2 edgar_igl
            break;
229 10c144e2 edgar_igl
    }
230 10c144e2 edgar_igl
}
231 10c144e2 edgar_igl
232 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const gpio_read[] = {
233 10c144e2 edgar_igl
    NULL, NULL,
234 10c144e2 edgar_igl
    &gpio_readl,
235 10c144e2 edgar_igl
};
236 10c144e2 edgar_igl
237 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const gpio_write[] = {
238 10c144e2 edgar_igl
    NULL, NULL,
239 10c144e2 edgar_igl
    &gpio_writel,
240 10c144e2 edgar_igl
};
241 10c144e2 edgar_igl
242 10c144e2 edgar_igl
#define INTMEM_SIZE (128 * 1024)
243 10c144e2 edgar_igl
244 77d4f95e Edgar E. Iglesias
static struct cris_load_info li;
245 409dbce5 Aurelien Jarno
246 10c144e2 edgar_igl
static
247 c227f099 Anthony Liguori
void axisdev88_init (ram_addr_t ram_size,
248 ef998233 edgar_igl
                     const char *boot_device,
249 10c144e2 edgar_igl
                     const char *kernel_filename, const char *kernel_cmdline,
250 10c144e2 edgar_igl
                     const char *initrd_filename, const char *cpu_model)
251 10c144e2 edgar_igl
{
252 10c144e2 edgar_igl
    CPUState *env;
253 fd6dc90b Edgar E. Iglesias
    DeviceState *dev;
254 fd6dc90b Edgar E. Iglesias
    SysBusDevice *s;
255 fd6dc90b Edgar E. Iglesias
    qemu_irq irq[30], nmi[2], *cpu_irq;
256 10c144e2 edgar_igl
    void *etraxfs_dmac;
257 10c144e2 edgar_igl
    struct etraxfs_dma_client *eth[2] = {NULL, NULL};
258 10c144e2 edgar_igl
    int i;
259 10c144e2 edgar_igl
    int nand_regs;
260 10c144e2 edgar_igl
    int gpio_regs;
261 c227f099 Anthony Liguori
    ram_addr_t phys_ram;
262 c227f099 Anthony Liguori
    ram_addr_t phys_intmem;
263 10c144e2 edgar_igl
264 10c144e2 edgar_igl
    /* init CPUs */
265 10c144e2 edgar_igl
    if (cpu_model == NULL) {
266 10c144e2 edgar_igl
        cpu_model = "crisv32";
267 10c144e2 edgar_igl
    }
268 10c144e2 edgar_igl
    env = cpu_init(cpu_model);
269 10c144e2 edgar_igl
270 10c144e2 edgar_igl
    /* allocate RAM */
271 1724f049 Alex Williamson
    phys_ram = qemu_ram_alloc(NULL, "axisdev88.ram", ram_size);
272 10c144e2 edgar_igl
    cpu_register_physical_memory(0x40000000, ram_size, phys_ram | IO_MEM_RAM);
273 10c144e2 edgar_igl
274 10c144e2 edgar_igl
    /* The ETRAX-FS has 128Kb on chip ram, the docs refer to it as the 
275 10c144e2 edgar_igl
       internal memory.  */
276 1724f049 Alex Williamson
    phys_intmem = qemu_ram_alloc(NULL, "axisdev88.chipram", INTMEM_SIZE);
277 10c144e2 edgar_igl
    cpu_register_physical_memory(0x38000000, INTMEM_SIZE,
278 10c144e2 edgar_igl
                                 phys_intmem | IO_MEM_RAM);
279 10c144e2 edgar_igl
280 10c144e2 edgar_igl
281 10c144e2 edgar_igl
      /* Attach a NAND flash to CS1.  */
282 4a1e6bea edgar_igl
    nand_state.nand = nand_init(NAND_MFR_STMICRO, 0x39);
283 1eed09cb Avi Kivity
    nand_regs = cpu_register_io_memory(nand_read, nand_write, &nand_state);
284 10c144e2 edgar_igl
    cpu_register_physical_memory(0x10000000, 0x05000000, nand_regs);
285 10c144e2 edgar_igl
286 10c144e2 edgar_igl
    gpio_state.nand = &nand_state;
287 1eed09cb Avi Kivity
    gpio_regs = cpu_register_io_memory(gpio_read, gpio_write, &gpio_state);
288 4a1e6bea edgar_igl
    cpu_register_physical_memory(0x3001a000, 0x5c, gpio_regs);
289 10c144e2 edgar_igl
290 10c144e2 edgar_igl
291 fd6dc90b Edgar E. Iglesias
    cpu_irq = cris_pic_init_cpu(env);
292 fd6dc90b Edgar E. Iglesias
    dev = qdev_create(NULL, "etraxfs,pic");
293 fd6dc90b Edgar E. Iglesias
    /* FIXME: Is there a proper way to signal vectors to the CPU core?  */
294 ee6847d1 Gerd Hoffmann
    qdev_prop_set_ptr(dev, "interrupt_vector", &env->interrupt_vector);
295 e23a1b33 Markus Armbruster
    qdev_init_nofail(dev);
296 fd6dc90b Edgar E. Iglesias
    s = sysbus_from_qdev(dev);
297 fd6dc90b Edgar E. Iglesias
    sysbus_mmio_map(s, 0, 0x3001c000);
298 fd6dc90b Edgar E. Iglesias
    sysbus_connect_irq(s, 0, cpu_irq[0]);
299 fd6dc90b Edgar E. Iglesias
    sysbus_connect_irq(s, 1, cpu_irq[1]);
300 fd6dc90b Edgar E. Iglesias
    for (i = 0; i < 30; i++) {
301 067a3ddc Paul Brook
        irq[i] = qdev_get_gpio_in(dev, i);
302 fd6dc90b Edgar E. Iglesias
    }
303 067a3ddc Paul Brook
    nmi[0] = qdev_get_gpio_in(dev, 30);
304 067a3ddc Paul Brook
    nmi[1] = qdev_get_gpio_in(dev, 31);
305 73cfd29f Edgar E. Iglesias
306 ba494313 Edgar E. Iglesias
    etraxfs_dmac = etraxfs_dmac_init(0x30000000, 10);
307 10c144e2 edgar_igl
    for (i = 0; i < 10; i++) {
308 10c144e2 edgar_igl
        /* On ETRAX, odd numbered channels are inputs.  */
309 73cfd29f Edgar E. Iglesias
        etraxfs_dmac_connect(etraxfs_dmac, i, irq + 7 + i, i & 1);
310 10c144e2 edgar_igl
    }
311 10c144e2 edgar_igl
312 10c144e2 edgar_igl
    /* Add the two ethernet blocks.  */
313 ba494313 Edgar E. Iglesias
    eth[0] = etraxfs_eth_init(&nd_table[0], 0x30034000, 1);
314 0ae18cee aliguori
    if (nb_nics > 1)
315 ba494313 Edgar E. Iglesias
        eth[1] = etraxfs_eth_init(&nd_table[1], 0x30036000, 2);
316 10c144e2 edgar_igl
317 10c144e2 edgar_igl
    /* The DMA Connector block is missing, hardwire things for now.  */
318 10c144e2 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 0, eth[0]);
319 10c144e2 edgar_igl
    etraxfs_dmac_connect_client(etraxfs_dmac, 1, eth[0] + 1);
320 10c144e2 edgar_igl
    if (eth[1]) {
321 10c144e2 edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 6, eth[1]);
322 10c144e2 edgar_igl
        etraxfs_dmac_connect_client(etraxfs_dmac, 7, eth[1] + 1);
323 10c144e2 edgar_igl
    }
324 10c144e2 edgar_igl
325 10c144e2 edgar_igl
    /* 2 timers.  */
326 3b1fd90e Edgar E. Iglesias
    sysbus_create_varargs("etraxfs,timer", 0x3001e000, irq[0x1b], nmi[1], NULL);
327 3b1fd90e Edgar E. Iglesias
    sysbus_create_varargs("etraxfs,timer", 0x3005e000, irq[0x1b], nmi[1], NULL);
328 10c144e2 edgar_igl
329 10c144e2 edgar_igl
    for (i = 0; i < 4; i++) {
330 4b816985 Edgar E. Iglesias
        sysbus_create_simple("etraxfs,serial", 0x30026000 + i * 0x2000,
331 3b1fd90e Edgar E. Iglesias
                             irq[0x14 + i]);
332 10c144e2 edgar_igl
    }
333 10c144e2 edgar_igl
334 77d4f95e Edgar E. Iglesias
    if (!kernel_filename) {
335 77d4f95e Edgar E. Iglesias
        fprintf(stderr, "Kernel image must be specified\n");
336 77d4f95e Edgar E. Iglesias
        exit(1);
337 10c144e2 edgar_igl
    }
338 77d4f95e Edgar E. Iglesias
339 77d4f95e Edgar E. Iglesias
    li.image_filename = kernel_filename;
340 77d4f95e Edgar E. Iglesias
    li.cmdline = kernel_cmdline;
341 77d4f95e Edgar E. Iglesias
    cris_load_image(env, &li);
342 10c144e2 edgar_igl
}
343 10c144e2 edgar_igl
344 f80f9ec9 Anthony Liguori
static QEMUMachine axisdev88_machine = {
345 10c144e2 edgar_igl
    .name = "axis-dev88",
346 10c144e2 edgar_igl
    .desc = "AXIS devboard 88",
347 10c144e2 edgar_igl
    .init = axisdev88_init,
348 10c144e2 edgar_igl
};
349 f80f9ec9 Anthony Liguori
350 f80f9ec9 Anthony Liguori
static void axisdev88_machine_init(void)
351 f80f9ec9 Anthony Liguori
{
352 f80f9ec9 Anthony Liguori
    qemu_register_machine(&axisdev88_machine);
353 f80f9ec9 Anthony Liguori
}
354 f80f9ec9 Anthony Liguori
355 f80f9ec9 Anthony Liguori
machine_init(axisdev88_machine_init);