[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/6] hw/arm/allwinner-a10: Move SoC definitions out of header
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 3/6] hw/arm/allwinner-a10: Move SoC definitions out of header |
Date: |
Mon, 30 Dec 2019 12:09:50 +0100 |
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é <address@hidden>
---
include/hw/arm/allwinner-a10.h | 6 ------
hw/arm/allwinner-a10.c | 6 ++++++
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/include/hw/arm/allwinner-a10.h b/include/hw/arm/allwinner-a10.h
index 7d2d215630..941c61e533 100644
--- a/include/hw/arm/allwinner-a10.h
+++ b/include/hw/arm/allwinner-a10.h
@@ -12,12 +12,6 @@
#include "target/arm/cpu.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
-
#define AW_A10_SDRAM_BASE 0x40000000
#define TYPE_AW_A10 "allwinner-a10"
diff --git a/hw/arm/allwinner-a10.c b/hw/arm/allwinner-a10.c
index 118032c8c7..0f1af5a880 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);
--
2.21.0
- [PATCH 0/6] hw/arm/cubieboard: Few cleanups, add acceptance tests, Philippe Mathieu-Daudé, 2019/12/30
- [PATCH 1/6] tests/boot_linux_console: Add initrd test for the CubieBoard, Philippe Mathieu-Daudé, 2019/12/30
- [PATCH 3/6] hw/arm/allwinner-a10: Move SoC definitions out of header,
Philippe Mathieu-Daudé <=
- [PATCH 2/6] tests/boot_linux_console: Add a SD card test for the CubieBoard, Philippe Mathieu-Daudé, 2019/12/30
- [PATCH 5/6] hw/arm/allwinner-a10: Remove local qemu_irq variables, Philippe Mathieu-Daudé, 2019/12/30
- [PATCH 4/6] hw/arm/allwinner-a10: Simplify by passing IRQs with qdev_pass_gpios(), Philippe Mathieu-Daudé, 2019/12/30
- [RFC PATCH 6/6] hw/arm/cubieboard: Disable unsupported M-USB in device tree blob, Philippe Mathieu-Daudé, 2019/12/30