public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH V2 00/17] Add support for J721E SK
@ 2021-11-02 14:05 Sinthu Raja
  2021-11-02 14:05 ` [PATCH V2 01/17] common: make: Support show_board_info() as part of SPL build Sinthu Raja
                   ` (16 more replies)
  0 siblings, 17 replies; 33+ messages in thread
From: Sinthu Raja @ 2021-11-02 14:05 UTC (permalink / raw)
  To: u-boot; +Cc: Praneeth Bajjuri, Sinthu Raja

From: Sinthu Raja <sinthu.raja@ti.com>

Hi All,
This series adds support for J721E SK [1]. Below is the detailed description
of the J721E SoC and the SK board supporting features.

Changes in V2:
Board name updated from EAIK to SK. 
* So changed the occurrences of EAIK to SK. 
* Rename files from eaik to sk.

[1]  https://www.ti.com/tool/SK-TDA4VM

Sinthu Raja (17):
  common: make: Support show_board_info() as part of SPL build
  drivers: power: pmic: Add support for tps659412 PMIC
  drivers: power: regulator: tps65941_regulator: Add support for 3Phase
    buck
  board: ti: j721e: Guard functions with right #ifdef to avoid build
    warnings
  board: ti: j721e: Enable support for reading EEPROM at next alternate
    address
  board: ti: j721e: Add support to update board_name for j721e-sk
  board: ti: j721e: Disable probing of daughtercards
  board: ti: j721e: Add support for detecting multiple device trees
  arm: j721e: Add support for selecting DT based on EEPROM
  arm: dts: k3-j721e-r5-common-proc-board: Do not use power-domains for
    I2C
  arm: dts: k3-j721e-sk: Add initial A72 specific dts support
  arm: dts: k3-j721e-r5-sk: Add initial R5 specific dts support for
    j721e-sk
  configs: j721e_evm_r5: Enable support for building multiple dtbs into
    FIT
  configs: j721e_evm_a72: Add SK dtb as part of DTB FIT
  configs: j721e_evm_a72: Align OSPI partitions on erase block boundary
  configs: j721e_evm: Store env in MMC FAT partition
  include: configs: Update env for selecting right dtb

 arch/arm/dts/Makefile                         |   4 +-
 .../arm/dts/k3-j721e-r5-common-proc-board.dts |   5 +
 arch/arm/dts/k3-j721e-r5-sk-u-boot.dtsi       |  31 +
 arch/arm/dts/k3-j721e-r5-sk.dts               | 646 ++++++++++++++
 arch/arm/dts/k3-j721e-sk-u-boot.dtsi          | 280 +++++++
 arch/arm/dts/k3-j721e-sk.dts                  | 791 ++++++++++++++++++
 arch/arm/mach-k3/j721e_init.c                 |  62 ++
 board/ti/j721e/evm.c                          |  46 +-
 common/Makefile                               |   3 +-
 configs/j721e_evm_a72_defconfig               |  11 +-
 configs/j721e_evm_r5_defconfig                |   4 +
 drivers/power/pmic/tps65941.c                 |   1 +
 drivers/power/regulator/tps65941_regulator.c  |   2 +
 include/configs/j721e_evm.h                   |   4 +
 14 files changed, 1876 insertions(+), 14 deletions(-)
 create mode 100644 arch/arm/dts/k3-j721e-r5-sk-u-boot.dtsi
 create mode 100644 arch/arm/dts/k3-j721e-r5-sk.dts
 create mode 100644 arch/arm/dts/k3-j721e-sk-u-boot.dtsi
 create mode 100644 arch/arm/dts/k3-j721e-sk.dts

-- 
2.31.1


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

end of thread, other threads:[~2021-11-12 14:46 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-02 14:05 [PATCH V2 00/17] Add support for J721E SK Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 01/17] common: make: Support show_board_info() as part of SPL build Sinthu Raja
2021-11-08 15:49   ` Tom Rini
2021-11-02 14:05 ` [PATCH V2 02/17] drivers: power: pmic: Add support for tps659412 PMIC Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 03/17] drivers: power: regulator: tps65941_regulator: Add support for 3Phase buck Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 04/17] board: ti: j721e: Guard functions with right #ifdef to avoid build warnings Sinthu Raja
2021-11-08 15:49   ` Tom Rini
2021-11-02 14:05 ` [PATCH V2 05/17] board: ti: j721e: Enable support for reading EEPROM at next alternate address Sinthu Raja
2021-11-08 15:51   ` Tom Rini
2021-11-02 14:05 ` [PATCH V2 06/17] board: ti: j721e: Add support to update board_name for j721e-sk Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 07/17] board: ti: j721e: Disable probing of daughtercards Sinthu Raja
2021-11-08 15:51   ` Tom Rini
2021-11-12 12:20     ` Sinthu Raja M
2021-11-02 14:05 ` [PATCH V2 08/17] board: ti: j721e: Add support for detecting multiple device trees Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 09/17] arm: j721e: Add support for selecting DT based on EEPROM Sinthu Raja
2021-11-08 15:53   ` Tom Rini
2021-11-12 13:32     ` Sinthu Raja M
2021-11-12 14:46       ` Tom Rini
2021-11-02 14:05 ` [PATCH V2 10/17] arm: dts: k3-j721e-r5-common-proc-board: Do not use power-domains for I2C Sinthu Raja
2021-11-08 15:46   ` Tom Rini
2021-11-12 11:58     ` Sinthu Raja M
2021-11-12 14:42       ` Tom Rini
2021-11-02 14:05 ` [PATCH V2 11/17] arm: dts: k3-j721e-sk: Add initial A72 specific dts support Sinthu Raja
2021-11-08 15:47   ` Tom Rini
2021-11-12 11:59     ` Sinthu Raja M
2021-11-02 14:05 ` [PATCH V2 12/17] arm: dts: k3-j721e-r5-sk: Add initial R5 specific dts support for j721e-sk Sinthu Raja
2021-11-08 15:47   ` Tom Rini
2021-11-12 11:58     ` Sinthu Raja M
2021-11-02 14:05 ` [PATCH V2 13/17] configs: j721e_evm_r5: Enable support for building multiple dtbs into FIT Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 14/17] configs: j721e_evm_a72: Add SK dtb as part of DTB FIT Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 15/17] configs: j721e_evm_a72: Align OSPI partitions on erase block boundary Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 16/17] configs: j721e_evm: Store env in MMC FAT partition Sinthu Raja
2021-11-02 14:05 ` [PATCH V2 17/17] include: configs: Update env for selecting right dtb Sinthu Raja

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