From: Vignesh Raghavendra <vigneshr@ti.com>
To: Tom Rini <trini@konsulko.com>, Dave Gerlach <d-gerlach@ti.com>,
Lukasz Majewski <lukma@denx.de>,
Sean Anderson <seanga2@gmail.com>, Peng Fan <peng.fan@nxp.com>,
Jaehoon Chung <jh80.chung@samsung.com>
Cc: Simon Glass <sjg@chromium.org>,
Vignesh Raghavendra <vigneshr@ti.com>, Suman Anna <s-anna@ti.com>,
Nishanth Menon <nm@ti.com>,
Aswath Govindraju <a-govindraju@ti.com>,
Bryan Brattlof <bb@ti.com>, <u-boot@lists.denx.de>,
Georgi Vlaev <g-vlaev@ti.com>
Subject: [PATCH 00/11] TI: Add support for AM62 SoC
Date: Fri, 15 Apr 2022 19:39:20 +0530 [thread overview]
Message-ID: <20220415140931.490047-1-vigneshr@ti.com> (raw)
This adds basic support for TI's new AM62 family of SoCs and AM625 Starter Kit EVM
with SD boot and networking support at U-Boot prompt
Aswath Govindraju (1):
drivers: mmc: am654_sdhci: Add new compatible for AM62 SoC
Nishanth Menon (1):
arm: dts: Add support for AM62-SK
Suman Anna (6):
dt-bindings: pinctrl: k3: Introduce pinmux definitions for AM62
soc: ti: k3-socinfo: Add entry for AM62X SoC family
arm: mach-k3: Introduce the basic files to support AM62
arm: mach-k3: am62: Introduce autogenerated SoC data
arm: dts: Introduce base AM62 SoC dtsi files
board: ti: Introduce the basic files to support AM62 SK board
Vignesh Raghavendra (3):
dma: ti: Add PSIL data for AM62x DMASS
configs: Add configs for AM62x SK
doc: ti: Add readme for AM62x SK
arch/arm/dts/Makefile | 3 +
arch/arm/dts/k3-am62-ddr.dtsi | 11 +
arch/arm/dts/k3-am62-main.dtsi | 533 ++++
arch/arm/dts/k3-am62-mcu.dtsi | 56 +
arch/arm/dts/k3-am62-wakeup.dtsi | 41 +
arch/arm/dts/k3-am62.dtsi | 105 +
arch/arm/dts/k3-am625-r5-sk.dts | 130 +
arch/arm/dts/k3-am625-sk-u-boot.dtsi | 124 +
arch/arm/dts/k3-am625-sk.dts | 469 ++++
arch/arm/dts/k3-am625.dtsi | 103 +
arch/arm/dts/k3-am62x-sk-ddr4-1600MTs.dtsi | 2189 +++++++++++++++++
arch/arm/mach-k3/Kconfig | 10 +-
arch/arm/mach-k3/Makefile | 1 +
arch/arm/mach-k3/am625_init.c | 254 ++
arch/arm/mach-k3/am62x/Makefile | 6 +
arch/arm/mach-k3/am62x/clk-data.c | 366 +++
arch/arm/mach-k3/am62x/dev-data.c | 78 +
arch/arm/mach-k3/arm64-mmu.c | 4 +-
arch/arm/mach-k3/include/mach/am62_hardware.h | 66 +
arch/arm/mach-k3/include/mach/am62_spl.h | 44 +
arch/arm/mach-k3/include/mach/hardware.h | 4 +
arch/arm/mach-k3/include/mach/spl.h | 5 +
board/ti/am62x/Kconfig | 63 +
board/ti/am62x/MAINTAINERS | 8 +
board/ti/am62x/Makefile | 8 +
board/ti/am62x/evm.c | 149 ++
configs/am62x_evm_a53_defconfig | 110 +
configs/am62x_evm_r5_defconfig | 114 +
doc/board/ti/am62x_sk.rst | 231 ++
doc/board/ti/index.rst | 1 +
drivers/clk/ti/clk-k3.c | 6 +
drivers/dma/ti/Makefile | 1 +
drivers/dma/ti/k3-psil-am62.c | 50 +
drivers/dma/ti/k3-psil-priv.h | 1 +
drivers/dma/ti/k3-psil.c | 2 +
drivers/firmware/ti_sci_static_data.h | 7 +
drivers/mmc/am654_sdhci.c | 4 +
drivers/power/domain/ti-power-domain.c | 6 +
drivers/ram/Kconfig | 1 +
drivers/soc/soc_ti_k3.c | 4 +
include/configs/am62x_evm.h | 106 +
include/dt-bindings/pinctrl/k3.h | 3 +
include/k3-clk.h | 1 +
include/k3-dev.h | 1 +
44 files changed, 5476 insertions(+), 3 deletions(-)
create mode 100644 arch/arm/dts/k3-am62-ddr.dtsi
create mode 100644 arch/arm/dts/k3-am62-main.dtsi
create mode 100644 arch/arm/dts/k3-am62-mcu.dtsi
create mode 100644 arch/arm/dts/k3-am62-wakeup.dtsi
create mode 100644 arch/arm/dts/k3-am62.dtsi
create mode 100644 arch/arm/dts/k3-am625-r5-sk.dts
create mode 100644 arch/arm/dts/k3-am625-sk-u-boot.dtsi
create mode 100644 arch/arm/dts/k3-am625-sk.dts
create mode 100644 arch/arm/dts/k3-am625.dtsi
create mode 100644 arch/arm/dts/k3-am62x-sk-ddr4-1600MTs.dtsi
create mode 100644 arch/arm/mach-k3/am625_init.c
create mode 100644 arch/arm/mach-k3/am62x/Makefile
create mode 100644 arch/arm/mach-k3/am62x/clk-data.c
create mode 100644 arch/arm/mach-k3/am62x/dev-data.c
create mode 100644 arch/arm/mach-k3/include/mach/am62_hardware.h
create mode 100644 arch/arm/mach-k3/include/mach/am62_spl.h
create mode 100644 board/ti/am62x/Kconfig
create mode 100644 board/ti/am62x/MAINTAINERS
create mode 100644 board/ti/am62x/Makefile
create mode 100644 board/ti/am62x/evm.c
create mode 100644 configs/am62x_evm_a53_defconfig
create mode 100644 configs/am62x_evm_r5_defconfig
create mode 100644 doc/board/ti/am62x_sk.rst
create mode 100644 drivers/dma/ti/k3-psil-am62.c
create mode 100644 include/configs/am62x_evm.h
--
2.35.3
next reply other threads:[~2022-04-15 14:09 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-15 14:09 Vignesh Raghavendra [this message]
2022-04-15 14:09 ` [PATCH 01/11] drivers: mmc: am654_sdhci: Add new compatible for AM62 SoC Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 02/11] dt-bindings: pinctrl: k3: Introduce pinmux definitions for AM62 Vignesh Raghavendra
2022-04-15 16:27 ` Tom Rini
2022-04-15 16:36 ` Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 03/11] soc: ti: k3-socinfo: Add entry for AM62X SoC family Vignesh Raghavendra
2022-04-15 21:00 ` Bryan Brattlof
2022-04-15 14:09 ` [PATCH 04/11] arm: mach-k3: Introduce the basic files to support AM62 Vignesh Raghavendra
2022-04-15 16:27 ` Tom Rini
2022-04-15 16:38 ` Vignesh Raghavendra
2022-04-15 17:41 ` Tom Rini
2022-04-16 6:47 ` Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 05/11] arm: mach-k3: am62: Introduce autogenerated SoC data Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 06/11] dma: ti: Add PSIL data for AM62x DMASS Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 07/11] arm: dts: Introduce base AM62 SoC dtsi files Vignesh Raghavendra
2022-04-15 16:28 ` Tom Rini
2022-04-15 16:40 ` Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 08/11] board: ti: Introduce the basic files to support AM62 SK board Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 09/11] arm: dts: Add support for AM62-SK Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 10/11] configs: Add configs for AM62x SK Vignesh Raghavendra
2022-04-15 14:09 ` [PATCH 11/11] doc: ti: Add readme " Vignesh Raghavendra
2022-04-15 20:15 ` Bryan Brattlof
2022-04-18 14:56 ` Andrew Davis
2022-04-18 18:49 ` Vignesh Raghavendra
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=20220415140931.490047-1-vigneshr@ti.com \
--to=vigneshr@ti.com \
--cc=a-govindraju@ti.com \
--cc=bb@ti.com \
--cc=d-gerlach@ti.com \
--cc=g-vlaev@ti.com \
--cc=jh80.chung@samsung.com \
--cc=lukma@denx.de \
--cc=nm@ti.com \
--cc=peng.fan@nxp.com \
--cc=s-anna@ti.com \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=trini@konsulko.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