[PATCH v2 0/8] lpc32xx updates
Trevor Woerner
twoerner at gmail.com
Fri Jun 11 04:35:34 CEST 2021
This patch series starts with some lpc32xx-related cleanups, then adds
support for a new LPC32XX board: the Embedded Artists LPC3250 DevKit v2.
The series then goes on to look at the lpc32xx i2c driver. It starts off by
perfomring some cleanups, adds some fixes so that it fully works in DM/OF
mode, does a Kconfig conversion, then adds i2c to the ea-lpc3250devkitv2
configuration (with examples).
Trevor Woerner (8):
lpc32xx: Kconfig: switch to CONFIG_CONS_INDEX
lpc32xx: import device tree from Linux
arm: lpc32xx: add EA LPC3250 DevKitv2 board support
lpc32xx: i2c: remove unused define
lpc32xx: i2c: fix base address
lpc32xx: i2c: finish DM/OF code
Kconfig: convert CONFIG_SYS_I2C_LPC32XX
lpc32xx: ea-lpc3250devkitv2: enable i2c (DM)
arch/arm/dts/Makefile | 2 +
arch/arm/dts/lpc3250-ea3250-u-boot.dtsi | 15 +
arch/arm/dts/lpc3250-ea3250.dts | 273 ++++++++++
arch/arm/dts/lpc32xx.dtsi | 508 ++++++++++++++++++
arch/arm/include/asm/arch-lpc32xx/config.h | 4 +-
arch/arm/mach-lpc32xx/Kconfig | 4 +
arch/arm/mach-lpc32xx/devices.c | 3 +-
board/ea/ea-lpc3250devkitv2/Kconfig | 15 +
board/ea/ea-lpc3250devkitv2/MAINTAINERS | 9 +
board/ea/ea-lpc3250devkitv2/Makefile | 4 +
board/ea/ea-lpc3250devkitv2/README.rst | 186 +++++++
.../ea-lpc3250devkitv2/ea-lpc3250devkitv2.c | 41 ++
board/timll/devkit3250/devkit3250.c | 2 +-
board/timll/devkit3250/devkit3250_spl.c | 2 +-
board/work-microwave/work_92105/work_92105.c | 2 +-
.../work_92105/work_92105_spl.c | 2 +-
configs/devkit3250_defconfig | 3 +
configs/ea-lpc3250devkitv2_defconfig | 26 +
configs/work_92105_defconfig | 3 +
drivers/i2c/Kconfig | 6 +
drivers/i2c/lpc32xx_i2c.c | 15 +-
include/configs/devkit3250.h | 6 -
include/configs/ea-lpc3250devkitv2.h | 37 ++
include/configs/work_92105.h | 6 -
include/dt-bindings/clock/lpc32xx-clock.h | 58 ++
scripts/config_whitelist.txt | 2 -
26 files changed, 1205 insertions(+), 29 deletions(-)
create mode 100644 arch/arm/dts/lpc3250-ea3250-u-boot.dtsi
create mode 100644 arch/arm/dts/lpc3250-ea3250.dts
create mode 100644 arch/arm/dts/lpc32xx.dtsi
create mode 100644 board/ea/ea-lpc3250devkitv2/Kconfig
create mode 100644 board/ea/ea-lpc3250devkitv2/MAINTAINERS
create mode 100644 board/ea/ea-lpc3250devkitv2/Makefile
create mode 100644 board/ea/ea-lpc3250devkitv2/README.rst
create mode 100644 board/ea/ea-lpc3250devkitv2/ea-lpc3250devkitv2.c
create mode 100644 configs/ea-lpc3250devkitv2_defconfig
create mode 100644 include/configs/ea-lpc3250devkitv2.h
create mode 100644 include/dt-bindings/clock/lpc32xx-clock.h
--
2.30.0.rc0
More information about the U-Boot
mailing list