diff options
author | Andre Przywara <andre.przywara@arm.com> | 2022-07-03 00:14:24 +0100 |
---|---|---|
committer | Andre Przywara <andre.przywara@arm.com> | 2023-10-22 23:41:52 +0100 |
commit | beeace9ba1689e6eaba8d286f885a5f0e973b26e (patch) | |
tree | 8f2ea3aab963a09a96982f86128089a986db7c6f /arch/arm/mach-sunxi | |
parent | 5b7c58fbba568808791b636e4ee23e2348e58c0b (diff) | |
download | u-boot-beeace9ba1689e6eaba8d286f885a5f0e973b26e.zip u-boot-beeace9ba1689e6eaba8d286f885a5f0e973b26e.tar.gz u-boot-beeace9ba1689e6eaba8d286f885a5f0e973b26e.tar.bz2 |
sunxi: refactor serial base addresses to avoid asm/arch/cpu.h
At the moment we have each SoC's memory map defined in its own cpu.h,
which is included in include/configs/sunxi_common.h. This will be a
problem with the introduction of Allwinner RISC-V support.
Remove the inclusion of that header file from the common config header,
instead move the required serial base addresses (for the SPL) into a
separate header file. Then include the original cpu.h file only where
we really need it, which is only under arch/arm now.
This disentangles the architecture specific header files from the
generic code.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'arch/arm/mach-sunxi')
-rw-r--r-- | arch/arm/mach-sunxi/gtbus_sun9i.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-sunxi/timer.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-sunxi/gtbus_sun9i.c b/arch/arm/mach-sunxi/gtbus_sun9i.c index cf011c4..5624621 100644 --- a/arch/arm/mach-sunxi/gtbus_sun9i.c +++ b/arch/arm/mach-sunxi/gtbus_sun9i.c @@ -8,6 +8,7 @@ #include <common.h> #include <asm/io.h> +#include <asm/arch/cpu.h> #include <asm/arch/gtbus_sun9i.h> #include <asm/arch/sys_proto.h> diff --git a/arch/arm/mach-sunxi/timer.c b/arch/arm/mach-sunxi/timer.c index fc9d419..9a6f6c0 100644 --- a/arch/arm/mach-sunxi/timer.c +++ b/arch/arm/mach-sunxi/timer.c @@ -10,6 +10,7 @@ #include <time.h> #include <asm/global_data.h> #include <asm/io.h> +#include <asm/arch/cpu.h> #include <asm/arch/timer.h> #include <linux/delay.h> |