diff options
| author | Tom Rini <[email protected]> | 2026-02-02 13:39:52 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-02 13:39:52 -0600 |
| commit | 4b287e0a3ae4ab3159584cb5ae12c9b470716be8 (patch) | |
| tree | 5c72960ce81d252539e299169fd1320b440e873f /include | |
| parent | 22129bf4733d78da046337440e85a9e49ca1a421 (diff) | |
| parent | 2a6935eee25e09584dbbe4565b00e33de9ef325d (diff) | |
Merge patch series "arm: mach-k3: j721s2: Provide a way to obtain boot device for non SPLs"
This series from Dominik Haller <[email protected]> provides a way for
TI K3 platforms to determine their boot device outside of SPL and then
adds support for the PHYTEC phyCORE-AM68x/TDA4x SoM.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/phycore_am68x.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/configs/phycore_am68x.h b/include/configs/phycore_am68x.h new file mode 100644 index 00000000000..341c3ff4a31 --- /dev/null +++ b/include/configs/phycore_am68x.h @@ -0,0 +1,25 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later OR MIT */ +/* + * Configuration header file for PHYTEC phyCORE-AM68x + * + */ + +#ifndef __PHYCORE_AM68X_H +#define __PHYCORE_AM68X_H + +/* DDR Configuration */ +#define CFG_SYS_SDRAM_BASE 0x80000000 + +/* SPL Loader Configuration */ +#if defined(CONFIG_TARGET_PHYCORE_AM68X_A72) +#define CFG_SYS_UBOOT_BASE 0x50280000 +/* Image load address in RAM for DFU boot*/ +#else +#define CFG_SYS_UBOOT_BASE 0x50080000 +#endif + +#define PHYCORE_AM6XX_FW_NAME_TIBOOT3 u"PHYCORE_AM68X_TIBOOT3" +#define PHYCORE_AM6XX_FW_NAME_SPL u"PHYCORE_AM68X_SPL" +#define PHYCORE_AM6XX_FW_NAME_UBOOT u"PHYCORE_AM68X_UBOOT" + +#endif /* __PHYCORE_AM62AX_H */ |
