summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorWilliam Zhang <[email protected]>2022-05-09 09:28:02 -0700
committerTom Rini <[email protected]>2022-06-10 13:37:32 -0400
commitf8209d30512d2e9c994d32cccfceda3a1e065cab (patch)
tree6ebb0c881dd77383ec365ffa7cdf7d207578c77b /include
parentd7ef2ef7c87528c359e110d7170e01a98aaecf14 (diff)
arm: bcmbca: introduce the bcmbca architecture and 47622 SOC
This is the initial support for Broadcom's ARM-based 47622 SOC. In this change, our first SOC is an armv7 platform called 47622. The initial support includes a bare-bone implementation and dts with ARM PL011 uart. The SOC-specific code resides in arch/arm/mach-bcmbca/<soc> and board related code is in board/broadcom/bcmba. The u-boot image can be loaded from flash or network to the entry point address in the memory and boot from there. Signed-off-by: William Zhang <[email protected]> Signed-off-by: Kursad Oney <[email protected]> Signed-off-by: Anand Gore <[email protected]> Reviewed-by: Philippe Reynes <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/bcm947622.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/configs/bcm947622.h b/include/configs/bcm947622.h
new file mode 100644
index 00000000000..3a02806878b
--- /dev/null
+++ b/include/configs/bcm947622.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * (C) Copyright 2022 Broadcom Ltd.
+ */
+
+#ifndef __BCM947622_H
+#define __BCM947622_H
+
+#define CONFIG_SYS_BOOTM_LEN (32 * 1024 * 1024)
+
+#define CONFIG_SYS_SDRAM_BASE 0x00000000
+
+#define COUNTER_FREQUENCY 50000000
+#endif