public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v3 0/9] board: freescale: common: Refactor I2C mux driver
@ 2021-07-14 20:46 Stephen Carlson
  0 siblings, 0 replies; only message in thread
From: Stephen Carlson @ 2021-07-14 20:46 UTC (permalink / raw)
  To: U-Boot Mailing List; +Cc: Priyanka Jain

This patch set unifies code from multiple Freescale boards for the PCA9547
I2C mux into one location, and adds a Kconfig to disable the mux for new
Freescale boards which do not include it.

This patch set has been tested on the following boards:

LX2160ARDB
LX2160AQDS
LX2162AQDS
LS1046AFRWY
LS1046ARDB
LS2088ARDB
LS1043ARDB
LS1043AQDS
LS1088ARDB
LS1088AQDS

Signed-off-by: Stephen Carlson <stcarlso@linux.microsoft.com>
Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
Tested-by: Zhao Zheng <zhao.zheng@nxp.com>

Stephen Carlson (9):
   board: freescale: Refactor NXP common mux code
   board: freescale: ls1021aqds: Update I2C mux config
   board: freescale: ls1043aqds: Update I2C mux config
   board: freescale: ls1046a: Update I2C mux config
   board: freescale: ls1088a: Update I2C mux config
   board: freescale: ls2080: Update I2C mux config
   board: freescale: lx2160a: Update I2C mux config
   board: freescale: t2080qds: Update I2C mux config
   board: freescale: ls2088a: Update I2C mux config

  board/freescale/common/Kconfig                |  6 ++
  board/freescale/common/Makefile               | 11 ++++
  board/freescale/common/i2c_common.c           | 34 +++++++++++
  board/freescale/common/i2c_common.h           | 30 ++++++++++
  board/freescale/common/i2c_mux.c              | 40 +++++++++++++
  board/freescale/common/i2c_mux.h              | 15 +++++
  board/freescale/common/vid.c                  | 58 ++++---------------
  board/freescale/ls1021aqds/dcu.c              | 26 +--------
  board/freescale/ls1021aqds/ls1021aqds.c       | 26 +--------
  board/freescale/ls1043aqds/ls1043aqds.c       | 27 +--------
  board/freescale/ls1046afrwy/ls1046afrwy.c     | 27 +--------
  board/freescale/ls1046aqds/ls1046aqds.c       | 26 +--------
  board/freescale/ls1088a/ls1088a.c             | 32 ++--------
  board/freescale/ls2080aqds/ls2080aqds.c       | 25 +-------
  board/freescale/ls2080ardb/ls2080ardb.c       | 27 +--------
  board/freescale/lx2160a/lx2160a.c             | 31 ++--------
  board/freescale/t208xqds/t208xqds.c           | 26 +--------
  configs/T2080QDS_NAND_defconfig               |  1 +
  configs/T2080QDS_SDCARD_defconfig             |  1 +
  configs/T2080QDS_SECURE_BOOT_defconfig        |  1 +
  configs/T2080QDS_SPIFLASH_defconfig           |  1 +
  configs/T2080QDS_SRIO_PCIE_BOOT_defconfig     |  1 +
  configs/T2080QDS_defconfig                    |  1 +
  configs/ls1021aqds_ddr4_nor_defconfig         |  1 +
  configs/ls1021aqds_ddr4_nor_lpuart_defconfig  |  1 +
  configs/ls1021aqds_nand_defconfig             |  1 +
  configs/ls1021aqds_nor_SECURE_BOOT_defconfig  |  1 +
  configs/ls1021aqds_nor_defconfig              |  1 +
  configs/ls1021aqds_nor_lpuart_defconfig       |  1 +
  configs/ls1021aqds_qspi_defconfig             |  1 +
  configs/ls1021aqds_sdcard_ifc_defconfig       |  1 +
  configs/ls1021aqds_sdcard_qspi_defconfig      |  1 +
  configs/ls1043aqds_defconfig                  |  1 +
  configs/ls1043aqds_lpuart_defconfig           |  1 +
  configs/ls1043aqds_nand_defconfig             |  1 +
  configs/ls1043aqds_nor_ddr3_defconfig         |  1 +
  configs/ls1043aqds_qspi_defconfig             |  1 +
  configs/ls1043aqds_sdcard_ifc_defconfig       |  1 +
  configs/ls1043aqds_sdcard_qspi_defconfig      |  1 +
  configs/ls1043aqds_tfa_SECURE_BOOT_defconfig  |  1 +
  configs/ls1043aqds_tfa_defconfig              |  1 +
  configs/ls1046afrwy_tfa_SECURE_BOOT_defconfig |  1 +
  configs/ls1046afrwy_tfa_defconfig             |  1 +
  configs/ls1046aqds_SECURE_BOOT_defconfig      |  1 +
  configs/ls1046aqds_defconfig                  |  1 +
  configs/ls1046aqds_lpuart_defconfig           |  1 +
  configs/ls1046aqds_nand_defconfig             |  1 +
  configs/ls1046aqds_qspi_defconfig             |  1 +
  configs/ls1046aqds_sdcard_ifc_defconfig       |  1 +
  configs/ls1046aqds_sdcard_qspi_defconfig      |  1 +
  configs/ls1046aqds_tfa_SECURE_BOOT_defconfig  |  1 +
  configs/ls1046aqds_tfa_defconfig              |  1 +
  configs/ls1088aqds_defconfig                  |  1 +
  configs/ls1088aqds_qspi_SECURE_BOOT_defconfig |  1 +
  configs/ls1088aqds_qspi_defconfig             |  1 +
  configs/ls1088aqds_sdcard_ifc_defconfig       |  1 +
  configs/ls1088aqds_sdcard_qspi_defconfig      |  1 +
  configs/ls1088aqds_tfa_defconfig              |  1 +
  configs/ls1088ardb_qspi_SECURE_BOOT_defconfig |  1 +
  configs/ls1088ardb_qspi_defconfig             |  1 +
  ...1088ardb_sdcard_qspi_SECURE_BOOT_defconfig |  1 +
  configs/ls1088ardb_sdcard_qspi_defconfig      |  1 +
  configs/ls1088ardb_tfa_SECURE_BOOT_defconfig  |  1 +
  configs/ls1088ardb_tfa_defconfig              |  1 +
  configs/ls2080aqds_SECURE_BOOT_defconfig      |  1 +
  configs/ls2080aqds_defconfig                  |  1 +
  configs/ls2080aqds_nand_defconfig             |  1 +
  configs/ls2080aqds_qspi_defconfig             |  1 +
  configs/ls2080aqds_sdcard_defconfig           |  1 +
  configs/ls2080ardb_SECURE_BOOT_defconfig      |  1 +
  configs/ls2080ardb_defconfig                  |  1 +
  configs/ls2080ardb_nand_defconfig             |  1 +
  configs/ls2081ardb_defconfig                  |  1 +
  configs/ls2088aqds_tfa_defconfig              |  1 +
  configs/ls2088ardb_qspi_SECURE_BOOT_defconfig |  1 +
  configs/ls2088ardb_qspi_defconfig             |  1 +
  configs/ls2088ardb_tfa_SECURE_BOOT_defconfig  |  1 +
  configs/ls2088ardb_tfa_defconfig              |  1 +
  configs/lx2160aqds_tfa_SECURE_BOOT_defconfig  |  1 +
  configs/lx2160aqds_tfa_defconfig              |  1 +
  configs/lx2160ardb_tfa_SECURE_BOOT_defconfig  |  1 +
  configs/lx2160ardb_tfa_defconfig              |  1 +
  configs/lx2160ardb_tfa_stmm_defconfig         |  1 +
  configs/lx2162aqds_tfa_SECURE_BOOT_defconfig  |  1 +
  configs/lx2162aqds_tfa_defconfig              |  1 +
  .../lx2162aqds_tfa_verified_boot_defconfig    |  1 +
  86 files changed, 240 insertions(+), 296 deletions(-)
  create mode 100644 board/freescale/common/i2c_common.c
  create mode 100644 board/freescale/common/i2c_common.h
  create mode 100644 board/freescale/common/i2c_mux.c
  create mode 100644 board/freescale/common/i2c_mux.h

-- 
2.17.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-07-14 20:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-14 20:46 [PATCH v3 0/9] board: freescale: common: Refactor I2C mux driver Stephen Carlson

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