diff options
| author | Wadim Egorov <[email protected]> | 2023-12-20 10:18:10 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-01-16 12:00:05 -0500 |
| commit | 085cd6459daec282611c598e13e2bb9cedd09829 (patch) | |
| tree | 2c96cdfb79ae30c59d224c9615b9d9fe97a73f7c /include | |
| parent | 53157bfa990e16ba8e44198ef484c26fa50619da (diff) | |
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 <[email protected]>
Reviewed-by: Dhruva Gole <[email protected]>
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 00000000000..10b78b6f537 --- /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 <[email protected]> + */ + +#ifndef __PHYCORE_AM62X_H +#define __PHYCORE_AM62X_H + +/* DDR Configuration */ +#define CFG_SYS_SDRAM_BASE 0x80000000 + +#endif /* __PHYCORE_AM62X_H */ |
