diff options
| author | Oliver Gaskell <[email protected]> | 2024-09-12 16:50:59 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-03 09:29:23 -0600 |
| commit | 03ef0adcebcb548e5e4dc9a798227efaa1c16370 (patch) | |
| tree | 318c1ff017cb26e189d9939fe482ce6b05a74bf0 /include | |
| parent | 07735eee98aac467a8539eaa02c3c64c73dfe864 (diff) | |
arm: SC589-EZKIT initial support
Adds support for Analog Devices' SC589-EZKIT board. Includes:
- Board specific configs in mach-sc5xx/Kconfig
- Board-specific Kconfig and environment in board/adi/
- Memory configuration
Signed-off-by: Oliver Gaskell <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/sc589.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/configs/sc589.h b/include/configs/sc589.h new file mode 100644 index 00000000000..137c80be8e5 --- /dev/null +++ b/include/configs/sc589.h @@ -0,0 +1,19 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * (C) Copyright 2024 - Analog Devices, Inc. + */ + +#ifndef __CONFIG_SC589_H +#define __CONFIG_SC589_H + +/* + * Memory Settings + */ +#define MEM_MT41K128M16JT +#define MEM_DMC0 +#define MEM_DMC1 + +#define CFG_SYS_SDRAM_BASE 0xC2000000 +#define CFG_SYS_SDRAM_SIZE 0xe000000 + +#endif |
