mbox series

[v4,0/2] introduce basic support for TI's am625-lp-sk

Message ID 20240607-am62q-wip-v4-0-3900cdf25721@ti.com
Headers show
Series introduce basic support for TI's am625-lp-sk | expand

Message

Bryan Brattlof June 7, 2024, 10:06 p.m. UTC
Hello Again Everyone!

The am625-lp-sk is a variant of the am625-sk showcasing the low-power
features of the am625 SoC Family. Because it's essentially a board and
package spin of the am625-sk I've inherited the am625 configuration and
overridden what was needed.

This is a new spin of Nitin's original work which has been updated
significantly since October 2023

  https://lore.kernel.org/u-boot/20231030110138.1347603-1-n-yadav@ti.com/

For those of us interested here is proof of life using buildroot:

   https://paste.sr.ht/~bryanb/40f7787f7760bee383aa8fbc342a29e8544dbdab

This also works around a buildman issue not following #include 
directives. To get around this I've redefined the variables it's looking 
for inside the lp-sk defconfig to keep it happy for now. I made a pull 
request on github and everything seems like it's happy

   https://dev.azure.com/u-boot/u-boot/_build/results?buildId=8634&view=results

Thank you for reviewing
~Bryan

Cc: u-boot@lists.denx.de
To: Tom Rini <trini@konsulko.com>
Signed-off-by: Bryan Brattlof <bb@ti.com>

Changes in v4:
- change the defconfig name to match previous older versions
- include needed CONFIG arguments for buildman
- added a MAINTAINERS entry for the board
- Link to v3: https://lore.kernel.org/r/20240429-am62q-wip-v3-0-17dcfdb1075a@ti.com

Changes in v3:
- actually update the copyright year
- Link to v2: https://lore.kernel.org/r/20240429-am62q-wip-v2-0-e78f09174e65@ti.com

Changes in v2:
- updated copyright year
- Link to v1: https://lore.kernel.org/r/20240429-am62q-wip-v1-0-927fd2e0a53b@ti.com

---
Bryan Brattlof (1):
      configs: add defconfigs for the am625-lp-sk

Nitin Yadav (1):
      arm: dts: add U-Boot dtbs for the am625-lp-sk

 arch/arm/dts/k3-am62-lp-sk-binman.dtsi   |   21 +
 arch/arm/dts/k3-am62-lp-sk-u-boot.dtsi   |   17 +
 arch/arm/dts/k3-am62-lp4-50-800-800.dtsi | 2190 ++++++++++++++++++++++++++++++
 arch/arm/dts/k3-am62-r5-lp-sk.dts        |   82 ++
 board/ti/am62x/MAINTAINERS               |    4 +-
 configs/am62x_lpsk_a53_defconfig         |    8 +
 configs/am62x_lpsk_r5_defconfig          |    7 +
 7 files changed, 2328 insertions(+), 1 deletion(-)
---
base-commit: 227be29df37545f74243a98c12a4a33c4160e3cd
change-id: 20240429-am62q-wip-f3453de038fb

Best regards,

Comments

Tom Rini June 18, 2024, 2:53 p.m. UTC | #1
On Fri, 07 Jun 2024 17:06:11 -0500, Bryan Brattlof wrote:

> The am625-lp-sk is a variant of the am625-sk showcasing the low-power
> features of the am625 SoC Family. Because it's essentially a board and
> package spin of the am625-sk I've inherited the am625 configuration and
> overridden what was needed.
> 
> This is a new spin of Nitin's original work which has been updated
> significantly since October 2023
> 
> [...]

Applied to u-boot/next, thanks!