25 lines
719 B
Diff
25 lines
719 B
Diff
diff --git a/arch/arm/mach-sunxi/board.c b/arch/arm/mach-sunxi/board.c
|
|
index 0c4b6dd1ca..5d0bb5e451 100644
|
|
--- a/arch/arm/mach-sunxi/board.c
|
|
+++ b/arch/arm/mach-sunxi/board.c
|
|
@@ -26,6 +26,7 @@
|
|
#include <asm/arch/timer.h>
|
|
#include <asm/arch/tzpc.h>
|
|
#include <asm/arch/mmc.h>
|
|
+#include <asm/arch/prcm.h>
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
@@ -78,6 +79,11 @@ phys_size_t board_get_usable_ram_top(phys_size_t total_size)
|
|
#ifdef CONFIG_SPL_BUILD
|
|
static int gpio_init(void)
|
|
{
|
|
+#if defined(CONFIG_MACH_SUNXI_H3_H5)
|
|
+ /* enable R_PIO GPIO access */
|
|
+ prcm_apb0_enable(PRCM_APB0_GATE_PIO);
|
|
+#endif
|
|
+
|
|
__maybe_unused uint val;
|
|
#if CONFIG_CONS_INDEX == 1 && defined(CONFIG_UART0_PORT_F)
|
|
#if defined(CONFIG_MACH_SUN4I) || \
|