mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 19:04:38 +00:00

Adds support for Analog Devices' SC573-EZKIT board. Includes: - SoC specific configs in mach-sc5xx/Kconfig - Memory Map for SPL - Necessary board-specific init functions - Board-specific Kconfig and environment in board/adi/ - Memory configuration Co-developed-by: Greg Malysa <greg.malysa@timesys.com> Signed-off-by: Greg Malysa <greg.malysa@timesys.com> Co-developed-by: Nathan Barrett-Morrison <nathan.morrison@timesys.com> Signed-off-by: Nathan Barrett-Morrison <nathan.morrison@timesys.com> Signed-off-by: Oliver Gaskell <Oliver.Gaskell@analog.com>
18 lines
317 B
C
18 lines
317 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* (C) Copyright 2024 - Analog Devices, Inc.
|
|
*/
|
|
|
|
#ifndef __CONFIG_SC573_EZKIT_H
|
|
#define __CONFIG_SC573_EZKIT_H
|
|
|
|
/*
|
|
* Memory Settings
|
|
*/
|
|
#define MEM_MT41K128M16JT
|
|
#define MEM_DMC0
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x82000000
|
|
#define CFG_SYS_SDRAM_SIZE 0xe000000
|
|
|
|
#endif
|