diff options
| author | Mikhail Kshevetskiy <[email protected]> | 2025-11-01 03:44:46 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-07 16:00:58 -0600 |
| commit | 97aa00e0211d1d0b387e69e4a568ec2ceec7815f (patch) | |
| tree | 6f481268a647e8d213192c4d1130751c16d28d0c /include | |
| parent | ec0cd37f67bffa3e9729605ecedbb5aa093a5e30 (diff) | |
arm/airoha: add support for airoha en7523 SoC family
Basic support for en7523/en7529/en7562 SoCs. Within a patch
only serial console will be supported.
Signed-off-by: Mikhail Kshevetskiy <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/en7523.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/configs/en7523.h b/include/configs/en7523.h new file mode 100644 index 00000000000..2d27b3626ae --- /dev/null +++ b/include/configs/en7523.h @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Configuration for Airoha EN7523 + * + * Author: Mikhail Kshevetskiy <[email protected]> + */ + +#ifndef __EN7523_H +#define __EN7523_H + +#include <linux/sizes.h> + +#define CFG_SYS_UBOOT_BASE CONFIG_TEXT_BASE + +#define CFG_SYS_INIT_RAM_ADDR CONFIG_TEXT_BASE +#define CFG_SYS_INIT_RAM_SIZE SZ_2M + +/* DRAM */ +#define CFG_SYS_SDRAM_BASE 0x80000000 + +#endif |
