summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-09-20 08:49:36 -0400
committerTom Rini <trini@konsulko.com>2022-09-20 08:49:36 -0400
commit245746e8e09a408fc5f72762b3d430c3ecd60dfc (patch)
tree50fad5ea00b28b32516a6334f2c79b789039a58a /board
parente9a1ff9724348408144c7f1c5b5cc26130ba46e5 (diff)
parent7086defa048cc5303291b592192a18d69c6510cf (diff)
Merge tag 'u-boot-at91-2023.01-a' of https://source.denx.de/u-boot/custodians/u-boot-at91 into next
First set of u-boot-at91 features for the 2023.01 cycle: This feature set includes the important update on PIO4 pinctrl driver that solves a long time mismatch between Linux and U-boot, related on the unification of pinctrl and gpio driver support, now respecting the pinctrl bindings ABI; and also support for pinctrl subnodes. The feature set also adds support for PDA screen detection for sam9x60_curiosity board , one fix for SD-Card reinsertion and one fix for sam9x60 clocks.
Diffstat (limited to 'board')
-rw-r--r--board/atmel/sam9x60_curiosity/sam9x60_curiosity.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/atmel/sam9x60_curiosity/sam9x60_curiosity.c b/board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
index d8f32c93b5..8cf67d148d 100644
--- a/board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
+++ b/board/atmel/sam9x60_curiosity/sam9x60_curiosity.c
@@ -19,6 +19,8 @@
#include <asm/io.h>
#include <asm/mach-types.h>
+extern void at91_pda_detect(void);
+
DECLARE_GLOBAL_DATA_PTR;
void at91_prepare_cpu_var(void);
@@ -27,6 +29,8 @@ int board_late_init(void)
{
at91_prepare_cpu_var();
+ at91_pda_detect();
+
return 0;
}