The Allwinner A527 SoC features two Ethernet controllers utilizing different IP blocks. While gmac0 uses the older sun8i-emac IP, gmac1 is based on the Synopsys DesignWare Ethernet QOS IP.
This enables the DWC_ETH_QOS_SUNXI driver and the required PHY interface configurations in the defconfig for the Radxa Cubie A5E board, activating the gmac1 port. Signed-off-by: Junhui Liu <[email protected]> --- configs/radxa-cubie-a5e_defconfig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configs/radxa-cubie-a5e_defconfig b/configs/radxa-cubie-a5e_defconfig index 52a23615e60..fbfddf2773c 100644 --- a/configs/radxa-cubie-a5e_defconfig +++ b/configs/radxa-cubie-a5e_defconfig @@ -25,6 +25,12 @@ CONFIG_SYS_I2C_MVTWSI=y CONFIG_SYS_I2C_SLAVE=0x7f CONFIG_SYS_I2C_SPEED=400000 CONFIG_SUPPORT_EMMC_BOOT=y +CONFIG_DM_MDIO=y +CONFIG_DM_ETH_PHY=y +CONFIG_DWC_ETH_QOS=y +CONFIG_DWC_ETH_QOS_SUNXI=y +CONFIG_RGMII=y +CONFIG_RMII=y CONFIG_SUN8I_EMAC=y CONFIG_PHY_REALTEK=y CONFIG_REGULATOR_AXP=y -- 2.54.0

