Hello,
is there something missing in this series for it to be applied?
I would like to add support for a 2nd k3/am64x board based on this. So
it would be nice to know if I can do it the same way or should wait for
more k3 changes to come in first?
Regards,
Wadim
Am 20.12.23 um 10:18 schrieb Wadim Egorov:
v4:
- Rebase on current next
- Drop schema file overrides from binman
v3: https://lists.denx.de/pipermail/u-boot/2023-December/539779.html
v2: https://lists.denx.de/pipermail/u-boot/2023-November/538971.html
v1: https://lists.denx.de/pipermail/u-boot/2023-October/535750.html
Wadim Egorov (2):
board: phytec: am62x: Add PHYTEC phyCORE-AM62x SoM
doc: board: phytec: Add phyCORE-AM62x
arch/arm/dts/Makefile | 4 +-
.../arm/dts/k3-am62-phycore-som-ddr4-2gb.dtsi | 2190 +++++++++++++++++
arch/arm/dts/k3-am62-phycore-som.dtsi | 324 +++
.../k3-am625-phyboard-lyra-rdk-u-boot.dtsi | 166 ++
arch/arm/dts/k3-am625-phyboard-lyra-rdk.dts | 266 ++
arch/arm/dts/k3-am625-phycore-som-binman.dtsi | 314 +++
arch/arm/dts/k3-am625-r5-phycore-som-2gb.dts | 119 +
arch/arm/mach-k3/am62x/Kconfig | 17 +
board/phytec/phycore_am62x/Kconfig | 33 +
board/phytec/phycore_am62x/MAINTAINERS | 15 +
board/phytec/phycore_am62x/Makefile | 8 +
board/phytec/phycore_am62x/board-cfg.yaml | 36 +
board/phytec/phycore_am62x/phycore-am62x.c | 59 +
board/phytec/phycore_am62x/phycore_am62x.env | 23 +
board/phytec/phycore_am62x/pm-cfg.yaml | 12 +
board/phytec/phycore_am62x/rm-cfg.yaml | 1088 ++++++++
board/phytec/phycore_am62x/sec-cfg.yaml | 379 +++
configs/phycore_am62x_a53_defconfig | 115 +
configs/phycore_am62x_r5_defconfig | 130 +
doc/board/phytec/index.rst | 1 +
doc/board/phytec/phycore-am62x.rst | 158 ++
doc/board/ti/k3.rst | 1 +
include/configs/phycore_am62x.h | 15 +
23 files changed, 5472 insertions(+), 1 deletion(-)
create mode 100644 arch/arm/dts/k3-am62-phycore-som-ddr4-2gb.dtsi
create mode 100644 arch/arm/dts/k3-am62-phycore-som.dtsi
create mode 100644 arch/arm/dts/k3-am625-phyboard-lyra-rdk-u-boot.dtsi
create mode 100644 arch/arm/dts/k3-am625-phyboard-lyra-rdk.dts
create mode 100644 arch/arm/dts/k3-am625-phycore-som-binman.dtsi
create mode 100644 arch/arm/dts/k3-am625-r5-phycore-som-2gb.dts
create mode 100644 board/phytec/phycore_am62x/Kconfig
create mode 100644 board/phytec/phycore_am62x/MAINTAINERS
create mode 100644 board/phytec/phycore_am62x/Makefile
create mode 100644 board/phytec/phycore_am62x/board-cfg.yaml
create mode 100644 board/phytec/phycore_am62x/phycore-am62x.c
create mode 100644 board/phytec/phycore_am62x/phycore_am62x.env
create mode 100644 board/phytec/phycore_am62x/pm-cfg.yaml
create mode 100644 board/phytec/phycore_am62x/rm-cfg.yaml
create mode 100644 board/phytec/phycore_am62x/sec-cfg.yaml
create mode 100644 configs/phycore_am62x_a53_defconfig
create mode 100644 configs/phycore_am62x_r5_defconfig
create mode 100644 doc/board/phytec/phycore-am62x.rst
create mode 100644 include/configs/phycore_am62x.h