
On Mon, Oct 9, 2017 at 4:11 AM, Calvin Johnson calvin.johnson@nxp.com wrote:
Ethernet support on all three LS1012A platforms(FRDM, QDS and RDB) is enabled with this patch.
eth.c files for all 3 platforms contain board ethernet initialization function and also function to reset phy.
Signed-off-by: Calvin Johnson calvin.johnson@nxp.com Signed-off-by: Anjaneyulu Jagarlmudi anji.jagarlmudi@nxp.com
board/freescale/ls1012afrdm/Makefile | 1 + board/freescale/ls1012afrdm/eth.c | 86 +++++++++ board/freescale/ls1012afrdm/ls1012afrdm.c | 5 - board/freescale/ls1012aqds/Makefile | 1 + board/freescale/ls1012aqds/eth.c | 263 ++++++++++++++++++++++++++ board/freescale/ls1012aqds/ls1012aqds.c | 97 +++++++++- board/freescale/ls1012aqds/ls1012aqds_pfe.h | 48 +++++ board/freescale/ls1012aqds/ls1012aqds_qixis.h | 2 +- board/freescale/ls1012ardb/Makefile | 1 + board/freescale/ls1012ardb/eth.c | 70 +++++++ board/freescale/ls1012ardb/ls1012ardb.c | 4 - include/configs/ls1012ardb.h | 5 + 12 files changed, 568 insertions(+), 15 deletions(-) create mode 100644 board/freescale/ls1012afrdm/eth.c create mode 100644 board/freescale/ls1012aqds/eth.c create mode 100644 board/freescale/ls1012aqds/ls1012aqds_pfe.h create mode 100644 board/freescale/ls1012ardb/eth.c
It seems reasonable to add support for each platform in individual patches.
-Joe