allwinner-a10.c (5a720b1ed55a80672fdacf340fda0224f17146f3) allwinner-a10.c (46517dd4971fc1fdd5b379e72cc377626ad98160)
1/*
2 * Allwinner A10 SoC emulation
3 *
4 * Copyright (C) 2013 Li Guang
5 * Written by Li Guang <lig.fnst@cn.fujitsu.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the

--- 9 unchanged lines hidden (view full) ---

18#include "qemu/osdep.h"
19#include "exec/address-spaces.h"
20#include "qapi/error.h"
21#include "qemu/module.h"
22#include "cpu.h"
23#include "hw/sysbus.h"
24#include "hw/arm/allwinner-a10.h"
25#include "hw/misc/unimp.h"
1/*
2 * Allwinner A10 SoC emulation
3 *
4 * Copyright (C) 2013 Li Guang
5 * Written by Li Guang <lig.fnst@cn.fujitsu.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the

--- 9 unchanged lines hidden (view full) ---

18#include "qemu/osdep.h"
19#include "exec/address-spaces.h"
20#include "qapi/error.h"
21#include "qemu/module.h"
22#include "cpu.h"
23#include "hw/sysbus.h"
24#include "hw/arm/allwinner-a10.h"
25#include "hw/misc/unimp.h"
26#include "sysemu/sysemu.h"
26
27static void aw_a10_init(Object *obj)
28{
29 AwA10State *s = AW_A10(obj);
30
31 object_initialize_child(obj, "cpu", &s->cpu, sizeof(s->cpu),
32 "cortex-a8-" TYPE_ARM_CPU, &error_abort, NULL);
33

--- 110 unchanged lines hidden ---
27
28static void aw_a10_init(Object *obj)
29{
30 AwA10State *s = AW_A10(obj);
31
32 object_initialize_child(obj, "cpu", &s->cpu, sizeof(s->cpu),
33 "cortex-a8-" TYPE_ARM_CPU, &error_abort, NULL);
34

--- 110 unchanged lines hidden ---