hw/arm/virt-acpi-build: add all missing cpu_to_le's
[qemu/ar7.git] / hw / cris / axis_dev88.c
blob60df8877c1e17908352e0f21d8c8fa89512b713a
1 /*
2 * QEMU model for the AXIS devboard 88.
4 * Copyright (c) 2009 Edgar E. Iglesias, Axis Communications AB.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "qapi/error.h"
27 #include "qemu-common.h"
28 #include "cpu.h"
29 #include "hw/sysbus.h"
30 #include "net/net.h"
31 #include "hw/block/flash.h"
32 #include "hw/boards.h"
33 #include "hw/cris/etraxfs.h"
34 #include "hw/loader.h"
35 #include "elf.h"
36 #include "boot.h"
37 #include "sysemu/block-backend.h"
38 #include "exec/address-spaces.h"
39 #include "sysemu/qtest.h"
40 #include "sysemu/sysemu.h"
42 #define D(x)
43 #define DNAND(x)
45 struct nand_state_t
47 DeviceState *nand;
48 MemoryRegion iomem;
49 unsigned int rdy:1;
50 unsigned int ale:1;
51 unsigned int cle:1;
52 unsigned int ce:1;
55 static struct nand_state_t nand_state;
56 static uint64_t nand_read(void *opaque, hwaddr addr, unsigned size)
58 struct nand_state_t *s = opaque;
59 uint32_t r;
60 int rdy;
62 r = nand_getio(s->nand);
63 nand_getpins(s->nand, &rdy);
64 s->rdy = rdy;
66 DNAND(printf("%s addr=%x r=%x\n", __func__, addr, r));
67 return r;
70 static void
71 nand_write(void *opaque, hwaddr addr, uint64_t value,
72 unsigned size)
74 struct nand_state_t *s = opaque;
75 int rdy;
77 DNAND(printf("%s addr=%x v=%x\n", __func__, addr, (unsigned)value));
78 nand_setpins(s->nand, s->cle, s->ale, s->ce, 1, 0);
79 nand_setio(s->nand, value);
80 nand_getpins(s->nand, &rdy);
81 s->rdy = rdy;
84 static const MemoryRegionOps nand_ops = {
85 .read = nand_read,
86 .write = nand_write,
87 .endianness = DEVICE_NATIVE_ENDIAN,
90 struct tempsensor_t
92 unsigned int shiftreg;
93 unsigned int count;
94 enum {
95 ST_OUT, ST_IN, ST_Z
96 } state;
98 uint16_t regs[3];
101 static void tempsensor_clkedge(struct tempsensor_t *s,
102 unsigned int clk, unsigned int data_in)
104 D(printf("%s clk=%d state=%d sr=%x\n", __func__,
105 clk, s->state, s->shiftreg));
106 if (s->count == 0) {
107 s->count = 16;
108 s->state = ST_OUT;
110 switch (s->state) {
111 case ST_OUT:
112 /* Output reg is clocked at negedge. */
113 if (!clk) {
114 s->count--;
115 s->shiftreg <<= 1;
116 if (s->count == 0) {
117 s->shiftreg = 0;
118 s->state = ST_IN;
119 s->count = 16;
122 break;
123 case ST_Z:
124 if (clk) {
125 s->count--;
126 if (s->count == 0) {
127 s->shiftreg = 0;
128 s->state = ST_OUT;
129 s->count = 16;
132 break;
133 case ST_IN:
134 /* Indata is sampled at posedge. */
135 if (clk) {
136 s->count--;
137 s->shiftreg <<= 1;
138 s->shiftreg |= data_in & 1;
139 if (s->count == 0) {
140 D(printf("%s cfgreg=%x\n", __func__, s->shiftreg));
141 s->regs[0] = s->shiftreg;
142 s->state = ST_OUT;
143 s->count = 16;
145 if ((s->regs[0] & 0xff) == 0) {
146 /* 25 degrees celsius. */
147 s->shiftreg = 0x0b9f;
148 } else if ((s->regs[0] & 0xff) == 0xff) {
149 /* Sensor ID, 0x8100 LM70. */
150 s->shiftreg = 0x8100;
151 } else
152 printf("Invalid tempsens state %x\n", s->regs[0]);
155 break;
160 #define RW_PA_DOUT 0x00
161 #define R_PA_DIN 0x01
162 #define RW_PA_OE 0x02
163 #define RW_PD_DOUT 0x10
164 #define R_PD_DIN 0x11
165 #define RW_PD_OE 0x12
167 static struct gpio_state_t
169 MemoryRegion iomem;
170 struct nand_state_t *nand;
171 struct tempsensor_t tempsensor;
172 uint32_t regs[0x5c / 4];
173 } gpio_state;
175 static uint64_t gpio_read(void *opaque, hwaddr addr, unsigned size)
177 struct gpio_state_t *s = opaque;
178 uint32_t r = 0;
180 addr >>= 2;
181 switch (addr)
183 case R_PA_DIN:
184 r = s->regs[RW_PA_DOUT] & s->regs[RW_PA_OE];
186 /* Encode pins from the nand. */
187 r |= s->nand->rdy << 7;
188 break;
189 case R_PD_DIN:
190 r = s->regs[RW_PD_DOUT] & s->regs[RW_PD_OE];
192 /* Encode temp sensor pins. */
193 r |= (!!(s->tempsensor.shiftreg & 0x10000)) << 4;
194 break;
196 default:
197 r = s->regs[addr];
198 break;
200 return r;
201 D(printf("%s %x=%x\n", __func__, addr, r));
204 static void gpio_write(void *opaque, hwaddr addr, uint64_t value,
205 unsigned size)
207 struct gpio_state_t *s = opaque;
208 D(printf("%s %x=%x\n", __func__, addr, (unsigned)value));
210 addr >>= 2;
211 switch (addr)
213 case RW_PA_DOUT:
214 /* Decode nand pins. */
215 s->nand->ale = !!(value & (1 << 6));
216 s->nand->cle = !!(value & (1 << 5));
217 s->nand->ce = !!(value & (1 << 4));
219 s->regs[addr] = value;
220 break;
222 case RW_PD_DOUT:
223 /* Temp sensor clk. */
224 if ((s->regs[addr] ^ value) & 2)
225 tempsensor_clkedge(&s->tempsensor, !!(value & 2),
226 !!(value & 16));
227 s->regs[addr] = value;
228 break;
230 default:
231 s->regs[addr] = value;
232 break;
236 static const MemoryRegionOps gpio_ops = {
237 .read = gpio_read,
238 .write = gpio_write,
239 .endianness = DEVICE_NATIVE_ENDIAN,
240 .valid = {
241 .min_access_size = 4,
242 .max_access_size = 4,
246 #define INTMEM_SIZE (128 * 1024)
248 static struct cris_load_info li;
250 static
251 void axisdev88_init(MachineState *machine)
253 ram_addr_t ram_size = machine->ram_size;
254 const char *cpu_model = machine->cpu_model;
255 const char *kernel_filename = machine->kernel_filename;
256 const char *kernel_cmdline = machine->kernel_cmdline;
257 CRISCPU *cpu;
258 CPUCRISState *env;
259 DeviceState *dev;
260 SysBusDevice *s;
261 DriveInfo *nand;
262 qemu_irq irq[30], nmi[2];
263 void *etraxfs_dmac;
264 struct etraxfs_dma_client *dma_eth;
265 int i;
266 MemoryRegion *address_space_mem = get_system_memory();
267 MemoryRegion *phys_ram = g_new(MemoryRegion, 1);
268 MemoryRegion *phys_intmem = g_new(MemoryRegion, 1);
270 /* init CPUs */
271 if (cpu_model == NULL) {
272 cpu_model = "crisv32";
274 cpu = cpu_cris_init(cpu_model);
275 env = &cpu->env;
277 /* allocate RAM */
278 memory_region_allocate_system_memory(phys_ram, NULL, "axisdev88.ram",
279 ram_size);
280 memory_region_add_subregion(address_space_mem, 0x40000000, phys_ram);
282 /* The ETRAX-FS has 128Kb on chip ram, the docs refer to it as the
283 internal memory. */
284 memory_region_init_ram(phys_intmem, NULL, "axisdev88.chipram", INTMEM_SIZE,
285 &error_fatal);
286 vmstate_register_ram_global(phys_intmem);
287 memory_region_add_subregion(address_space_mem, 0x38000000, phys_intmem);
289 /* Attach a NAND flash to CS1. */
290 nand = drive_get(IF_MTD, 0, 0);
291 nand_state.nand = nand_init(nand ? blk_by_legacy_dinfo(nand) : NULL,
292 NAND_MFR_STMICRO, 0x39);
293 memory_region_init_io(&nand_state.iomem, NULL, &nand_ops, &nand_state,
294 "nand", 0x05000000);
295 memory_region_add_subregion(address_space_mem, 0x10000000,
296 &nand_state.iomem);
298 gpio_state.nand = &nand_state;
299 memory_region_init_io(&gpio_state.iomem, NULL, &gpio_ops, &gpio_state,
300 "gpio", 0x5c);
301 memory_region_add_subregion(address_space_mem, 0x3001a000,
302 &gpio_state.iomem);
305 dev = qdev_create(NULL, "etraxfs,pic");
306 /* FIXME: Is there a proper way to signal vectors to the CPU core? */
307 qdev_prop_set_ptr(dev, "interrupt_vector", &env->interrupt_vector);
308 qdev_init_nofail(dev);
309 s = SYS_BUS_DEVICE(dev);
310 sysbus_mmio_map(s, 0, 0x3001c000);
311 sysbus_connect_irq(s, 0, qdev_get_gpio_in(DEVICE(cpu), CRIS_CPU_IRQ));
312 sysbus_connect_irq(s, 1, qdev_get_gpio_in(DEVICE(cpu), CRIS_CPU_NMI));
313 for (i = 0; i < 30; i++) {
314 irq[i] = qdev_get_gpio_in(dev, i);
316 nmi[0] = qdev_get_gpio_in(dev, 30);
317 nmi[1] = qdev_get_gpio_in(dev, 31);
319 etraxfs_dmac = etraxfs_dmac_init(0x30000000, 10);
320 for (i = 0; i < 10; i++) {
321 /* On ETRAX, odd numbered channels are inputs. */
322 etraxfs_dmac_connect(etraxfs_dmac, i, irq + 7 + i, i & 1);
325 /* Add the two ethernet blocks. */
326 dma_eth = g_malloc0(sizeof dma_eth[0] * 4); /* Allocate 4 channels. */
327 etraxfs_eth_init(&nd_table[0], 0x30034000, 1, &dma_eth[0], &dma_eth[1]);
328 if (nb_nics > 1) {
329 etraxfs_eth_init(&nd_table[1], 0x30036000, 2, &dma_eth[2], &dma_eth[3]);
332 /* The DMA Connector block is missing, hardwire things for now. */
333 etraxfs_dmac_connect_client(etraxfs_dmac, 0, &dma_eth[0]);
334 etraxfs_dmac_connect_client(etraxfs_dmac, 1, &dma_eth[1]);
335 if (nb_nics > 1) {
336 etraxfs_dmac_connect_client(etraxfs_dmac, 6, &dma_eth[2]);
337 etraxfs_dmac_connect_client(etraxfs_dmac, 7, &dma_eth[3]);
340 /* 2 timers. */
341 sysbus_create_varargs("etraxfs,timer", 0x3001e000, irq[0x1b], nmi[1], NULL);
342 sysbus_create_varargs("etraxfs,timer", 0x3005e000, irq[0x1b], nmi[1], NULL);
344 for (i = 0; i < 4; i++) {
345 etraxfs_ser_create(0x30026000 + i * 0x2000, irq[0x14 + i], serial_hds[i]);
348 if (kernel_filename) {
349 li.image_filename = kernel_filename;
350 li.cmdline = kernel_cmdline;
351 cris_load_image(cpu, &li);
352 } else if (!qtest_enabled()) {
353 fprintf(stderr, "Kernel image must be specified\n");
354 exit(1);
358 static void axisdev88_machine_init(MachineClass *mc)
360 mc->desc = "AXIS devboard 88";
361 mc->init = axisdev88_init;
362 mc->is_default = 1;
365 DEFINE_MACHINE("axis-dev88", axisdev88_machine_init)