diff options
author | Chen-Yu Tsai <wens@csie.org> | 2014-10-22 16:47:44 +0800 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2014-10-24 09:35:39 +0200 |
commit | 8ebe4f429266a7cb9011f5b3ab51226297f41210 (patch) | |
tree | 3e2bfbf2489b2ec2191ec9ae08694109433d1ef0 /arch/arm/include/asm/arch-sunxi | |
parent | e637b30b9c9f454427e7277eddb6b1f489f3bbc8 (diff) | |
download | u-boot-imx-8ebe4f429266a7cb9011f5b3ab51226297f41210.zip u-boot-imx-8ebe4f429266a7cb9011f5b3ab51226297f41210.tar.gz u-boot-imx-8ebe4f429266a7cb9011f5b3ab51226297f41210.tar.bz2 |
ARM: sunxi: Add basic A23 support
The basic blocks of the A23 are similar to the A31 (sun6i). Re-use
sun6i code for initial clock, gpio, and uart setup.
There is no SPL support for A23, as we do not have any documentation
or sample code for DRAM initialization.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'arch/arm/include/asm/arch-sunxi')
-rw-r--r-- | arch/arm/include/asm/arch-sunxi/clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-sunxi/clock.h b/arch/arm/include/asm/arch-sunxi/clock.h index 8f5d860..012c2af 100644 --- a/arch/arm/include/asm/arch-sunxi/clock.h +++ b/arch/arm/include/asm/arch-sunxi/clock.h @@ -15,7 +15,7 @@ #define CLK_GATE_CLOSE 0x0 /* clock control module regs definition */ -#ifdef CONFIG_SUN6I +#if defined(CONFIG_SUN6I) || defined(CONFIG_SUN8I) #include <asm/arch/clock_sun6i.h> #else #include <asm/arch/clock_sun4i.h> |