arm: highbank: Enable OF_CONTROL
authorAndre Przywara <andre.przywara@arm.com>
Mon, 12 Apr 2021 00:04:51 +0000 (01:04 +0100)
committerTom Rini <trini@konsulko.com>
Tue, 20 Apr 2021 11:31:12 +0000 (07:31 -0400)
All Calxeda machines are actually a poster book example of device tree
usage: the DT is loaded from flash by the management processor into
DRAM, the memory node is populated with the detected DRAM size and this
DT is then handed over to the kernel.
So it's a shame that U-Boot didn't participate in this chain, but
fortunately this is easy to fix:

Define CONFIG_OF_CONTROL and CONFIG_OF_BOARD, and provide a trivial
function to tell U-Boot about the (fixed) location of the DTB in DRAM.
Then enable DM_SERIAL, to let the PL011 driver pick up the UART platform
data from the DT. Also define AHCI, to bring this driver into the driver
model world as well.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
arch/arm/Kconfig
board/highbank/highbank.c
configs/highbank_defconfig
include/configs/highbank.h

index 15b8454..3586426 100644 (file)
@@ -711,7 +711,14 @@ config ARCH_S5PC1XX
 config ARCH_HIGHBANK
        bool "Calxeda Highbank"
        select CPU_V7A
-       select PL011_SERIAL
+       select PL01X_SERIAL
+       select DM
+       select DM_SERIAL
+       select OF_CONTROL
+       select OF_BOARD
+       select CLK
+       select CLK_CCF
+       select AHCI
 
 config ARCH_INTEGRATOR
        bool "ARM Ltd. Integrator family"
index 906bd9b..2e2300a 100644 (file)
@@ -119,6 +119,16 @@ int ft_board_setup(void *fdt, struct bd_info *bd)
 }
 #endif
 
+void *board_fdt_blob_setup(void)
+{
+       /*
+        * The ECME management processor loads the DTB from NOR flash
+        * into DRAM (at 4KB), where it gets patched to contain the
+        * detected memory size.
+        */
+       return (void *)0x1000;
+}
+
 static int is_highbank(void)
 {
        uint32_t midr;
index 369b65c..773ed7a 100644 (file)
@@ -26,3 +26,4 @@ CONFIG_BOOTCOUNT_LIMIT=y
 CONFIG_SCSI=y
 CONFIG_CONS_INDEX=0
 CONFIG_OF_LIBFDT=y
+CONFIG_OF_BOARD=y
index 5e3cc3a..7f37c81 100644 (file)
@@ -18,7 +18,6 @@
 #define CONFIG_SYS_MALLOC_LEN          (512 * 1024)
 
 #define CONFIG_PL011_CLOCK             150000000
-#define CONFIG_PL01x_PORTS             { (void *)(0xFFF36000) }
 
 #define CONFIG_SYS_BOOTCOUNT_LE                /* Use little-endian accessors */