
On 04/26/2017 08:45 AM, Amrita Kumari wrote:
Add support RGMII protocol
Freescale's LDPAA2 support RGMII protocol. LS1088A is the first Soc supporting both RGMII and SGMII.
Signed-off-by: Prabhakar Kushwaha prabhakar.kushwaha@nxp.com Signed-off-by: Amrita Kumari amrita.kumari@nxp.com
arch/arm/cpu/armv8/fsl-layerscape/Kconfig | 14 +++++++++++ arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 5 ++++ .../include/asm/arch-fsl-layerscape/fsl_serdes.h | 1 + .../include/asm/arch-fsl-layerscape/immap_lsch3.h | 6 +++++ board/freescale/ls1088a/eth_ls1088aqds.c | 1 - drivers/net/ldpaa_eth/ldpaa_wriop.c | 9 ++++++++ drivers/net/ldpaa_eth/ls1088a.c | 27 ++++++++++++++++++++++ include/configs/ls1088a_common.h | 1 + include/fsl-mc/ldpaa_wriop.h | 2 ++ 9 files changed, 65 insertions(+), 1 deletion(-)
diff --git a/arch/arm/cpu/armv8/fsl-layerscape/Kconfig b/arch/arm/cpu/armv8/fsl-layerscape/Kconfig index 8270431..fcde6e2 100644 --- a/arch/arm/cpu/armv8/fsl-layerscape/Kconfig +++ b/arch/arm/cpu/armv8/fsl-layerscape/Kconfig @@ -72,6 +72,9 @@ config ARCH_LS1088A select SYS_FSL_ERRATUM_A008850 select ARCH_EARLY_INIT_R select BOARD_EARLY_INIT_F
select SYS_FSL_EC1
select SYS_FSL_EC2
select SYS_HAS_RGMII
config ARCH_LS2080A bool
@@ -406,6 +409,17 @@ config SYS_FSL_ERRATUM_A009660 config SYS_FSL_ERRATUM_A009929 bool
+config SYS_FSL_EC1
- bool
+config SYS_FSL_EC2
- bool
Please add "help" to explain what these two options are. The names are not revealing much. Do not send a patch to internal and upstream list in the same email.
York