]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
nxp: Finish migration of SYS_FSL_SRDS_[12] to Kconfig
authorTom Rini <trini@konsulko.com>
Tue, 10 Jan 2023 16:19:42 +0000 (11:19 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 20 Jan 2023 17:27:23 +0000 (12:27 -0500)
As this is used on both ARM and PowerPC platforms, this needs to be
listed in arch/Kconfig.nxp and match how they're currently used by
select'ing them under the required PowerPC ARCH_xxx options.

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/Kconfig.nxp
arch/arm/cpu/armv7/ls102xa/Kconfig
arch/arm/cpu/armv8/fsl-layerscape/Kconfig
arch/powerpc/cpu/mpc85xx/Kconfig
arch/powerpc/include/asm/config_mpc85xx.h

index 645b4ce05714330b974f49b50d9b0ddd34cd418e..6e1c44b7ea82ad5a941a1c3564256d29115fc0db 100644 (file)
@@ -286,4 +286,13 @@ config HAS_FSL_DR_USB
 config SYS_DPAA_FMAN
        bool
 
+config SYS_FSL_SRDS_1
+       bool
+
+config SYS_FSL_SRDS_2
+       bool
+
+config SYS_HAS_SERDES
+       bool
+
 endmenu
index 64fea9a0c4d98afd15f5aa354e2246cf472a297c..0edcf4c5ee7ab65c508642553fe321edda8c53fa 100644 (file)
@@ -93,15 +93,6 @@ config SYS_FSL_ERRATUM_A010315
 config SYS_FSL_HAS_CCI400
        bool
 
-config SYS_FSL_SRDS_1
-       bool
-
-config SYS_FSL_SRDS_2
-       bool
-
-config SYS_HAS_SERDES
-       bool
-
 config SYS_FSL_ERRATUM_A008407
        bool
 
index dcb1ca5e12e854e02d43fe2471bce2767b958547..a8b493e2f8753e77144d69c569c6aa0d7ed8df13 100644 (file)
@@ -567,18 +567,9 @@ config SYS_DP_DDR_BASE_PHY
          DDR controller uses this value as the base address for binding.
          It is mapped to CONFIG_SYS_DP_DDR_BASE for core to access.
 
-config SYS_FSL_SRDS_1
-       bool
-
-config SYS_FSL_SRDS_2
-       bool
-
 config SYS_NXP_SRDS_3
        bool
 
-config SYS_HAS_SERDES
-       bool
-
 config FSL_TZASC_1
        bool
 
index 2c54a9e2120fd85d9e02c9a6dec56f2d09c52e0e..e813bf094d116ced614e8c3e81ed9a932e5fd41f 100644 (file)
@@ -313,6 +313,8 @@ config ARCH_B4860
        select SYS_FSL_PCIE_COMPAT_QORIQ_PCIE_v24
        select SYS_FSL_SEC_BE
        select SYS_FSL_SEC_COMPAT_4
+       select SYS_FSL_SRDS_1
+       select SYS_FSL_SRDS_2
        select SYS_FSL_SRIO_LIODN
        select SYS_FSL_QMAN_V3 if SYS_DPAA_QBMAN
        select SYS_FSL_USB1_PHY_ENABLE
@@ -780,6 +782,7 @@ config ARCH_T1024
        select SYS_FSL_SEC_BE
        select SYS_FSL_SEC_COMPAT_5
        select SYS_FSL_SINGLE_SOURCE_CLK
+       select SYS_FSL_SRDS_1
        select SYS_FSL_QMAN_V3 if SYS_DPAA_QBMAN
        select SYS_FSL_USB_DUAL_PHY_ENABLE
        select FSL_IFC
@@ -813,6 +816,7 @@ config ARCH_T1040
        select SYS_FSL_SEC_BE
        select SYS_FSL_SEC_COMPAT_5
        select SYS_FSL_SINGLE_SOURCE_CLK
+       select SYS_FSL_SRDS_1
        select SYS_FSL_QMAN_V3 if SYS_DPAA_QBMAN
        select SYS_FSL_USB_DUAL_PHY_ENABLE
        select FSL_IFC
@@ -845,6 +849,7 @@ config ARCH_T1042
        select SYS_FSL_SEC_BE
        select SYS_FSL_SEC_COMPAT_5
        select SYS_FSL_SINGLE_SOURCE_CLK
+       select SYS_FSL_SRDS_1
        select SYS_FSL_QMAN_V3 if SYS_DPAA_QBMAN
        select SYS_FSL_USB_DUAL_PHY_ENABLE
        select FSL_IFC
@@ -880,6 +885,8 @@ config ARCH_T2080
        select SYS_FSL_PCIE_COMPAT_QORIQ_PCIE_v30
        select SYS_FSL_SEC_BE
        select SYS_FSL_SEC_COMPAT_4
+       select SYS_FSL_SRDS_1
+       select SYS_FSL_SRDS_2
        select SYS_FSL_SRIO_LIODN
        select SYS_FSL_QMAN_V3 if SYS_DPAA_QBMAN
        select SYS_FSL_USB_DUAL_PHY_ENABLE
@@ -921,6 +928,8 @@ config ARCH_T4240
        select SYS_FSL_PCIE_COMPAT_QORIQ_PCIE_v30
        select SYS_FSL_SEC_BE
        select SYS_FSL_SEC_COMPAT_4
+       select SYS_FSL_SRDS_1
+       select SYS_FSL_SRDS_2
        select SYS_FSL_SRIO_LIODN
        select SYS_FSL_QMAN_V3 if SYS_DPAA_QBMAN
        select SYS_FSL_USB_DUAL_PHY_ENABLE
@@ -1198,9 +1207,6 @@ config SYS_FSL_ERRATUM_SRIO_A004034
 config SYS_FSL_ERRATUM_USB14
        bool
 
-config SYS_HAS_SERDES
-       bool
-
 config SYS_P4080_ERRATUM_CPU22
        bool
 
index 03e86d868b2563fc945d3a1daf7d551c63f2e2e6..d990ecff96f0edfe2e96e2a96b6874ce757a8bfc 100644 (file)
@@ -96,8 +96,6 @@
 #define CFG_SYS_NUM_FM2_DTSEC  8
 #define CFG_SYS_NUM_FM2_10GEC  1
 #endif
-#define CONFIG_SYS_FSL_SRDS_1
-#define CONFIG_SYS_FSL_SRDS_2
 #define CFG_SYS_FSL_SRDS_3
 #define CFG_SYS_FSL_SRDS_4
 #define CFG_SYS_NUM_FMAN               2
 #define CFG_SYS_FSL_SRIO_IB_WIN_NUM    5
 
 #elif defined(CONFIG_ARCH_B4860) || defined(CONFIG_ARCH_B4420)
-#define CONFIG_SYS_FSL_SRDS_1
-#define CONFIG_SYS_FSL_SRDS_2
 #define CFG_SYS_NUM_FMAN               1
 #define CFG_SYS_FM1_CLK                0
 #define CFG_SYS_FM_MURAM_SIZE  0x60000
 
 #elif defined(CONFIG_ARCH_T1040) || defined(CONFIG_ARCH_T1042)
 #define CFG_SYS_FSL_CLUSTER_CLOCKS   { 1, 1, 1, 1 }
-#define CONFIG_SYS_FSL_SRDS_1
 #define CFG_SYS_NUM_FMAN               1
 #define CFG_SYS_NUM_FM1_DTSEC  5
 #define CFG_PME_PLAT_CLK_DIV           2
 
 #elif defined(CONFIG_ARCH_T1024)
 #define CFG_SYS_FSL_CLUSTER_CLOCKS  { 1, 1, 1, 1 }
-#define CONFIG_SYS_FSL_SRDS_1
 #define CFG_SYS_NUM_FMAN               1
 #define CFG_SYS_NUM_FM1_DTSEC  4
 #define CFG_SYS_NUM_FM1_10GEC  1
 #elif defined(CONFIG_ARCH_T2080)
 #define CFG_SYS_NUM_FMAN               1
 #define CFG_SYS_FSL_CLUSTER_CLOCKS     { 1, 4, 4, 4 }
-#define CONFIG_SYS_FSL_SRDS_1
 #if defined(CONFIG_ARCH_T2080)
 #define CFG_SYS_NUM_FM1_DTSEC  8
 #define CFG_SYS_NUM_FM1_10GEC  4
-#define CONFIG_SYS_FSL_SRDS_2
 #define CFG_SYS_FSL_SRIO_MAX_PORTS     2
 #define CFG_SYS_FSL_SRIO_OB_WIN_NUM    9
 #define CFG_SYS_FSL_SRIO_IB_WIN_NUM    5