mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 10:30:32 +00:00
7d1a10659f
This adds initial support for the Toradex Verdin AM62 Quad 1GB WB IT V1.0A module and subsequent V1.1 launch configuration SKUs. They are strapped to boot from their on-module eMMC. U-Boot supports booting from the on-module eMMC only, DFU support is disabled for now due to missing AM62x USB support. The device trees were taken straight from Linux v6.5-rc1. Boot sequence is: SYSFW ---> R5 SPL (both in tiboot3.bin) ---> ATF (TF-A) ---> OP-TEE ---> A53 SPL (part of tispl.bin) ---> U-boot proper (u-boot.img) Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Reviewed-by: Nishanth Menon <nm@ti.com>
22 lines
580 B
Text
22 lines
580 B
Text
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright 2023 Toradex
|
|
*
|
|
* https://www.toradex.com/computer-on-modules/verdin-arm-family/ti-am62
|
|
* https://www.toradex.com/products/carrier-board/verdin-development-board-kit
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "k3-am625.dtsi"
|
|
#include "k3-am62-verdin.dtsi"
|
|
#include "k3-am62-verdin-wifi.dtsi"
|
|
#include "k3-am62-verdin-dev.dtsi"
|
|
|
|
/ {
|
|
model = "Toradex Verdin AM62 WB on Verdin Development Board";
|
|
compatible = "toradex,verdin-am62-wifi-dev",
|
|
"toradex,verdin-am62-wifi",
|
|
"toradex,verdin-am62",
|
|
"ti,am625";
|
|
};
|