
Hi Martyn,
On 08/11/2017 16:59, Martyn Welch wrote:
This series improves the support on the bx50v3 devices (b540v3, b650v3 and b850v3) and utilising features recently added as part of the PPD implementation.
NOTE: This series requires the PPD series: https://lists.denx.de/pipermail/u-boot/2017-November/310865.html
Changes outside of the bx50v3/ppd specifc areas:
- Added driver for RX8010SJ RTC.
- Added functionality to e1000 driver to enable wrting of EEPROM/MAC address.
Hannu Lounento (5): net: e1000: add support for writing to EEPROM
See Tom's comments about this patch :
http://patchwork.ozlabs.org/patch/849710/
I moved out the series from u-boot-imx until the issues and warnings will be fixed.
Best regards, Stefano Babic
net: e1000: split e1000_read_mac_addr net: e1000: implement eth_write_hwaddr board: ge: bx50v3: program MAC address to I210 board: ge: bx50v3: mount rootfs read-only
Ian Ray (5): configs: Add network device support for bx50v3 products board: ge: bx50v3: Support FIT and select configuration based on VPD config: ge_bx50v3: read boot script configs: ge_bx50v3: enable bootcount configs: ge_bx50v3: automatic partition selection and video output failure message
Martyn Welch (4): board: ge: mx53ppd: Move check_time() to common location board: ge: Enable access to i2c bus 1 and 2 board: ge: bx50v3: move FEC MAC address programming to driver board: ge: bx50v3: Enable hardware watchdog
Nandor Han (2): rtc: adding RX8010SJ rtc driver board,ge,bx50v3 - rtc time validation
board/ge/bx50v3/bx50v3.c | 130 ++++++++++----- board/ge/common/Makefile | 2 +- board/ge/common/ge_common.c | 55 +++++++ board/ge/common/ge_common.h | 7 + board/ge/mx53ppd/mx53ppd.c | 47 +----- configs/ge_b450v3_defconfig | 7 +- configs/ge_b650v3_defconfig | 7 +- configs/ge_b850v3_defconfig | 8 +- drivers/net/e1000.c | 292 +++++++++++++++++++++++++++++++--- drivers/net/e1000.h | 3 + drivers/rtc/Kconfig | 6 + drivers/rtc/Makefile | 1 + drivers/rtc/rx8010sj.c | 378 ++++++++++++++++++++++++++++++++++++++++++++ include/configs/ge_bx50v3.h | 190 +++++++++------------- 14 files changed, 911 insertions(+), 222 deletions(-) create mode 100644 board/ge/common/ge_common.c create mode 100644 board/ge/common/ge_common.h create mode 100644 drivers/rtc/rx8010sj.c