Message ID | 20200429103248.15029-4-ioana.ciornei@nxp.com |
---|---|
State | New |
Headers | show |
Series | boards: ls2080aqds: transition to CONFIG_DM_ETH | expand |
>-----Original Message----- >From: U-Boot <u-boot-bounces at lists.denx.de> On Behalf Of Ioana Ciornei >Sent: Wednesday, April 29, 2020 4:03 PM >To: u-boot at lists.denx.de; Priyanka Jain <priyanka.jain at nxp.com> >Cc: Alexandru Marginean <alexandru.marginean at nxp.com>; Madalin Bucur ><madalin.bucur at nxp.com>; Florin Laurentiu Chiculita ><florinlaurentiu.chiculita at nxp.com>; Razvan Ionut Cirjan ><razvanionut.cirjan at nxp.com>; Ioana Ciornei <ioana.ciornei at nxp.com> >Subject: [PATCH 3/3] configs: ls2080aqds_tfa_defconfig: enable DM_ETH >and related > >Enable CONFIG_DM_ETH and CONFIG_DM_MDIO and related configs for the >LS2080AQDS board. > >Signed-off-by: Ioana Ciornei <ioana.ciornei at nxp.com> >--- > configs/ls2088aqds_tfa_defconfig | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > >diff --git a/configs/ls2088aqds_tfa_defconfig >b/configs/ls2088aqds_tfa_defconfig >index 9f49736b4f31..9eb7effce56d 100644 >--- a/configs/ls2088aqds_tfa_defconfig >+++ b/configs/ls2088aqds_tfa_defconfig >@@ -3,8 +3,8 @@ CONFIG_TARGET_LS2080AQDS=y CONFIG_TFABOOT=y > CONFIG_SYS_TEXT_BASE=0x82000000 > CONFIG_ENV_SIZE=0x20000 >-CONFIG_ENV_SECT_SIZE=0x20000 > CONFIG_ENV_OFFSET=0x500000 >+CONFIG_ENV_SECT_SIZE=0x20000 <snip> Why you need above change? Regards Priyanka
> Subject: RE: [PATCH 3/3] configs: ls2080aqds_tfa_defconfig: enable DM_ETH > and related > > >-----Original Message----- > >From: U-Boot <u-boot-bounces at lists.denx.de> On Behalf Of Ioana Ciornei > >Sent: Wednesday, April 29, 2020 4:03 PM > >To: u-boot at lists.denx.de; Priyanka Jain <priyanka.jain at nxp.com> > >Cc: Alexandru Marginean <alexandru.marginean at nxp.com>; Madalin Bucur > ><madalin.bucur at nxp.com>; Florin Laurentiu Chiculita > ><florinlaurentiu.chiculita at nxp.com>; Razvan Ionut Cirjan > ><razvanionut.cirjan at nxp.com>; Ioana Ciornei <ioana.ciornei at nxp.com> > >Subject: [PATCH 3/3] configs: ls2080aqds_tfa_defconfig: enable DM_ETH > >and related > > > >Enable CONFIG_DM_ETH and CONFIG_DM_MDIO and related configs for the > >LS2080AQDS board. > > > >Signed-off-by: Ioana Ciornei <ioana.ciornei at nxp.com> > >--- > > configs/ls2088aqds_tfa_defconfig | 10 +++++++++- > > 1 file changed, 9 insertions(+), 1 deletion(-) > > > >diff --git a/configs/ls2088aqds_tfa_defconfig > >b/configs/ls2088aqds_tfa_defconfig > >index 9f49736b4f31..9eb7effce56d 100644 > >--- a/configs/ls2088aqds_tfa_defconfig > >+++ b/configs/ls2088aqds_tfa_defconfig > >@@ -3,8 +3,8 @@ CONFIG_TARGET_LS2080AQDS=y CONFIG_TFABOOT=y > > CONFIG_SYS_TEXT_BASE=0x82000000 > > CONFIG_ENV_SIZE=0x20000 > >-CONFIG_ENV_SECT_SIZE=0x20000 > > CONFIG_ENV_OFFSET=0x500000 > >+CONFIG_ENV_SECT_SIZE=0x20000 > <snip> > > Why you need above change? > > Regards > Priyanka The change above resulted from a make savedefconfig. It's not needed but it would be good to have the defconfigs aligned with the result of the make command. Regards, Ioana
diff --git a/configs/ls2088aqds_tfa_defconfig b/configs/ls2088aqds_tfa_defconfig index 9f49736b4f31..9eb7effce56d 100644 --- a/configs/ls2088aqds_tfa_defconfig +++ b/configs/ls2088aqds_tfa_defconfig @@ -3,8 +3,8 @@ CONFIG_TARGET_LS2080AQDS=y CONFIG_TFABOOT=y CONFIG_SYS_TEXT_BASE=0x82000000 CONFIG_ENV_SIZE=0x20000 -CONFIG_ENV_SECT_SIZE=0x20000 CONFIG_ENV_OFFSET=0x500000 +CONFIG_ENV_SECT_SIZE=0x20000 CONFIG_DM_GPIO=y CONFIG_NR_DRAM_BANKS=3 CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT=y @@ -21,6 +21,7 @@ CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21 CONFIG_CMD_IMLS=y CONFIG_CMD_GREPENV=y CONFIG_CMD_EEPROM=y +CONFIG_CMD_DM=y CONFIG_CMD_GPT=y CONFIG_CMD_I2C=y CONFIG_CMD_MMC=y @@ -33,6 +34,8 @@ CONFIG_MP=y # CONFIG_ISO_PARTITION is not set CONFIG_OF_CONTROL=y CONFIG_DEFAULT_DEVICE_TREE="fsl-ls2080a-qds" +CONFIG_OF_LIST="fsl-ls2080a-qds-42-x" +CONFIG_MULTI_DTB_FIT=y CONFIG_ENV_IS_IN_FLASH=y CONFIG_ENV_IS_IN_MMC=y CONFIG_ENV_IS_IN_SPI_FLASH=y @@ -56,9 +59,14 @@ CONFIG_SYS_FLASH_CFI=y CONFIG_MTD_RAW_NAND=y CONFIG_DM_SPI_FLASH=y CONFIG_PHYLIB=y +CONFIG_DM_ETH=y +CONFIG_DM_MDIO=y +CONFIG_DM_MDIO_MUX=y CONFIG_PHY_GIGE=y CONFIG_E1000=y CONFIG_MII=y +CONFIG_MDIO_MUX_I2CREG=y +CONFIG_FSL_LS_MDIO=y CONFIG_PCI=y CONFIG_DM_PCI=y CONFIG_DM_PCI_COMPAT=y
Enable CONFIG_DM_ETH and CONFIG_DM_MDIO and related configs for the LS2080AQDS board. Signed-off-by: Ioana Ciornei <ioana.ciornei at nxp.com> --- configs/ls2088aqds_tfa_defconfig | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-)