aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2020-01-17 14:09:30 +0000
committerPeter Maydell <peter.maydell@linaro.org>2020-01-17 14:09:30 +0000
commit7f0ec9893cc8c99e7ee928fdc66bb3046f3e4cd4 (patch)
tree8cab17355ae7e7923d3f377eacc43a6bda44d49d /hw
parente33ee3097f705bd7d3ae14a177e12a4b16055970 (diff)
downloadqemu-7f0ec9893cc8c99e7ee928fdc66bb3046f3e4cd4.zip
qemu-7f0ec9893cc8c99e7ee928fdc66bb3046f3e4cd4.tar.gz
qemu-7f0ec9893cc8c99e7ee928fdc66bb3046f3e4cd4.tar.bz2
hw/arm/allwinner-a10: Move SoC definitions out of header
These definitions are specific to the A10 SoC and don't need to be exported to the different Allwinner peripherals. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20191230110953.25496-4-f4bug@amsat.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r--hw/arm/allwinner-a10.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/arm/allwinner-a10.c b/hw/arm/allwinner-a10.c
index 118032c..0f1af5a 100644
--- a/hw/arm/allwinner-a10.c
+++ b/hw/arm/allwinner-a10.c
@@ -25,6 +25,12 @@
#include "hw/misc/unimp.h"
#include "sysemu/sysemu.h"
+#define AW_A10_PIC_REG_BASE 0x01c20400
+#define AW_A10_PIT_REG_BASE 0x01c20c00
+#define AW_A10_UART0_REG_BASE 0x01c28000
+#define AW_A10_EMAC_BASE 0x01c0b000
+#define AW_A10_SATA_BASE 0x01c18000
+
static void aw_a10_init(Object *obj)
{
AwA10State *s = AW_A10(obj);