public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 0/6] apalis imx8qm 4gb wb it v1.0b module support
@ 2019-05-31 16:00 Marcel Ziswiler
  2019-05-31 16:00 ` [U-Boot] [PATCH v3 1/6] arm: dts: imx8qm: add lpuart1, lpuart2, lpuart3, lpuart4 Marcel Ziswiler
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Marcel Ziswiler @ 2019-05-31 16:00 UTC (permalink / raw)
  To: u-boot


This series adds support for more lpuart instances, support for i2c0,
i2c1, i2c2, i2c3, i2c4, fixes support for uSDHC2, fixes CPU frequency
reporting, fixes fuse driver and last but not least introduces support
for the Toradex Apalis iMX8QM 4GB WB IT V1.0B module.

This series is available together with the last few clean-up patches
and the Colibri iMX8X patch series on our git server [1] as well.

[1] http://git.toradex.com/cgit/u-boot-toradex.git/log/?h=for-next

Changes in v3:
- no longer explicitly disable CONFIG_CMD_CRC32, CONFIG_CMD_EXPORTENV,
  CONFIG_CMD_IMLS and CONFIG_CMD_IMPORTENV
- increase max gunzip size (CONFIG_SYS_BOOTM_LEN) to 64 MB
- rename board file and folder to more generic apalis-imx8 to be used
  for all SKUs
- just exclusively use distro_bootcmd trying SD cards before eMMC
- enable FDT relocation
- added update_uboot helper wrapper as internally suggested by Igor

Changes in v2:
- Use firmware-imx-8.0 matching NXP's sumo-4.14.78-1.0.0_ga BSP as
  suggested by Max.
- Drop Qualcomm (formwerly Atheros) AR8031 specific board_phy_config()
  stuff not applicable to the Micrel PHY we are using as suggested by Max.
- Drop CONFIG_FEC_XCV_TYPE in favour of device tree configuration therof
  as suggested by Max.

Marcel Ziswiler (6):
  arm: dts: imx8qm: add lpuart1, lpuart2, lpuart3, lpuart4
  arm: dts: imx8qm: add support for i2c0, i2c1, i2c2, i2c3 and i2c4
  clk: imx8qm: fix usdhc2 clocks
  imx8qm: fix cpu frequency reporting
  imx8: fuse: fix fuse driver
  board: toradex: add apalis imx8qm 4gb wb it v1.0b module support

 arch/arm/dts/Makefile                         |   1 +
 arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi    | 128 ++++
 arch/arm/dts/fsl-imx8qm-apalis.dts            | 615 ++++++++++++++++++
 arch/arm/dts/fsl-imx8qm.dtsi                  | 155 +++++
 arch/arm/mach-imx/imx8/Kconfig                |   6 +
 arch/arm/mach-imx/imx8/cpu.c                  |   4 +-
 board/toradex/apalis-imx8/Kconfig             |  30 +
 board/toradex/apalis-imx8/MAINTAINERS         |   9 +
 board/toradex/apalis-imx8/Makefile            |   6 +
 board/toradex/apalis-imx8/README              |  66 ++
 board/toradex/apalis-imx8/apalis-imx8.c       | 149 +++++
 .../apalis-imx8/apalis-imx8qm-imximage.cfg    |  24 +
 configs/apalis-imx8qm_defconfig               |  56 ++
 drivers/clk/imx/clk-imx8qm.c                  |  18 +
 drivers/misc/imx8/fuse.c                      |   2 -
 include/configs/apalis-imx8.h                 | 131 ++++
 16 files changed, 1397 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi
 create mode 100644 arch/arm/dts/fsl-imx8qm-apalis.dts
 create mode 100644 board/toradex/apalis-imx8/Kconfig
 create mode 100644 board/toradex/apalis-imx8/MAINTAINERS
 create mode 100644 board/toradex/apalis-imx8/Makefile
 create mode 100644 board/toradex/apalis-imx8/README
 create mode 100644 board/toradex/apalis-imx8/apalis-imx8.c
 create mode 100644 board/toradex/apalis-imx8/apalis-imx8qm-imximage.cfg
 create mode 100644 configs/apalis-imx8qm_defconfig
 create mode 100644 include/configs/apalis-imx8.h

-- 
2.21.0

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-06-10  9:49 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-31 16:00 [U-Boot] [PATCH v3 0/6] apalis imx8qm 4gb wb it v1.0b module support Marcel Ziswiler
2019-05-31 16:00 ` [U-Boot] [PATCH v3 1/6] arm: dts: imx8qm: add lpuart1, lpuart2, lpuart3, lpuart4 Marcel Ziswiler
2019-06-10  9:40   ` [U-Boot] [PATCH v3 1/6] arm: dts: imx8qm: add lpuart1, lpuart2, sbabic at denx.de
2019-05-31 16:00 ` [U-Boot] [PATCH v3 2/6] arm: dts: imx8qm: add support for i2c0, i2c1, i2c2, i2c3 and i2c4 Marcel Ziswiler
2019-06-10  9:49   ` [U-Boot] [PATCH v3 2/6] arm: dts: imx8qm: add support for i2c0, i2c1, sbabic at denx.de
2019-05-31 16:00 ` [U-Boot] [PATCH v3 3/6] clk: imx8qm: fix usdhc2 clocks Marcel Ziswiler
2019-06-10  9:41   ` sbabic at denx.de
2019-05-31 16:00 ` [U-Boot] [PATCH v3 4/6] imx8qm: fix cpu frequency reporting Marcel Ziswiler
2019-06-10  9:40   ` sbabic at denx.de
2019-05-31 16:00 ` [U-Boot] [PATCH v3 5/6] imx8: fuse: fix fuse driver Marcel Ziswiler
2019-06-10  9:39   ` sbabic at denx.de
2019-05-31 16:00 ` [U-Boot] [PATCH v3 6/6] board: toradex: add apalis imx8qm 4gb wb it v1.0b module support Marcel Ziswiler
2019-06-10  9:49   ` [U-Boot] [PATCH v3 6/6] board: toradex: add apalis imx8qm 4gb wb it sbabic at denx.de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox