From: Stephen Carlson <stcarlso@linux.microsoft.com>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: Priyanka Jain <priyanka.jain@nxp.com>
Subject: [PATCH v3 0/9] board: freescale: common: Refactor I2C mux driver
Date: Wed, 14 Jul 2021 13:46:22 -0700 (PDT) [thread overview]
Message-ID: <f226ea63-c2a5-e6f-4215-a0327262432@linux.microsoft.com> (raw)
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
reply other threads:[~2021-07-14 20:46 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f226ea63-c2a5-e6f-4215-a0327262432@linux.microsoft.com \
--to=stcarlso@linux.microsoft.com \
--cc=priyanka.jain@nxp.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox