diff options
| author | Tom Rini <[email protected]> | 2025-04-01 08:45:46 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-04-01 08:45:46 -0600 |
| commit | 80c61c5ce868a74792609c5ae82eed149154e24c (patch) | |
| tree | 9f30f7287110c26c2e9f02d75fe10428ce09dcb1 /include | |
| parent | b0899e4451d839dd8e6240d999b33fe9779b895f (diff) | |
| parent | e00a318d64724a8fa1ed1ad56cf54edc1c295f3d (diff) | |
Merge patch series "airoha: Add initial support AN7581"
Christian Marangi <[email protected]> says:
This little series adds initial support for Airoha AN7581 SoC.
With the help of some backport patch, this use OF_UPSTREAM
directly.
Posting this to have the targer and the very basic driver.
Ethernet, SNAND and eMMC support is already ready downstream
and will be posted shortly after this gets approved.
Having the first driver ready permits to separately push
dedicate series for SNAND, eMMC and Ethrnet as they all depends
on basic support of clock and reset and nothing else.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/an7581.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/configs/an7581.h b/include/configs/an7581.h new file mode 100644 index 00000000000..64f04c9d9a5 --- /dev/null +++ b/include/configs/an7581.h @@ -0,0 +1,19 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Configuration for Airoha AN7581 + */ + +#ifndef __AN7581_H +#define __AN7581_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 |
