diff options
author | Wadim Egorov <w.egorov@phytec.de> | 2023-12-20 10:18:10 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-01-16 12:00:05 -0500 |
commit | 085cd6459daec282611c598e13e2bb9cedd09829 (patch) | |
tree | 2c96cdfb79ae30c59d224c9615b9d9fe97a73f7c /include | |
parent | 53157bfa990e16ba8e44198ef484c26fa50619da (diff) | |
download | u-boot-085cd6459daec282611c598e13e2bb9cedd09829.zip u-boot-085cd6459daec282611c598e13e2bb9cedd09829.tar.gz u-boot-085cd6459daec282611c598e13e2bb9cedd09829.tar.bz2 |
board: phytec: am62x: Add PHYTEC phyCORE-AM62x SoM
Add basic support for PHYTEC phyCORE-AM62x SoM.
Supported features:
- 2GB DDR4 RAM
- eMMC Flash
- OSPI NOR Flash
- external uSD
- Ethernet
- debug UART
Product page SoM: https://www.phytec.com/product/phycore-am62x
Device trees were taken from Linux v6.7-rc3.
Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/phycore_am62x.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/configs/phycore_am62x.h b/include/configs/phycore_am62x.h new file mode 100644 index 0000000..10b78b6 --- /dev/null +++ b/include/configs/phycore_am62x.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Configuration header file for PHYTEC phyCORE-AM62x + * + * Copyright (C) 2023 PHYTEC Messtechnik GmbH + * Author: Wadim Egorov <w.egorov@phytec.de> + */ + +#ifndef __PHYCORE_AM62X_H +#define __PHYCORE_AM62X_H + +/* DDR Configuration */ +#define CFG_SYS_SDRAM_BASE 0x80000000 + +#endif /* __PHYCORE_AM62X_H */ |