summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-11-16 13:10:39 -0500
committerTom Rini <trini@konsulko.com>2022-12-05 16:06:07 -0500
commit97396cc9ce9963ece8778b3a7c6f918745ef25b2 (patch)
treebada35e043e58663c1ec6f07266b81549be2419f /arch
parent3b8dfc42a239cbb1561e7ecbc116b69fb6913355 (diff)
downloadu-boot-97396cc9ce9963ece8778b3a7c6f918745ef25b2.tar.gz
u-boot-97396cc9ce9963ece8778b3a7c6f918745ef25b2.tar.bz2
u-boot-97396cc9ce9963ece8778b3a7c6f918745ef25b2.zip
Convert CONFIG_SYS_SRIO et al to Kconfig
This converts the following to Kconfig: CONFIG_SRIO1 CONFIG_SRIO2 CONFIG_SRIO_PCIE_BOOT_MASTER CONFIG_SYS_SRIO Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/Kconfig15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index c355a95453..cf93a7b1da 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -44,6 +44,21 @@ config SYS_INIT_RAM_LOCK
bool "Lock some portion of L1 for initial ram stack"
depends on MPC83xx || MPC85xx
+config SYS_SRIO
+ bool "Serial RapidIO support"
+
+config SRIO1
+ bool "Board has SRIO 1 port available"
+ depends on SYS_SRIO
+
+config SRIO2
+ bool "Board has SRIO 2 port available"
+ depends on SYS_SRIO
+
+config SRIO_PCIE_BOOT_MASTER
+ bool "Board can support master function for Boot from SRIO and PCIE"
+ depends on SYS_SRIO
+
source "arch/powerpc/cpu/mpc83xx/Kconfig"
source "arch/powerpc/cpu/mpc85xx/Kconfig"
source "arch/powerpc/cpu/mpc8xx/Kconfig"