mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-11 20:46:00 +01:00
Adds support for Analog Devices' SC584-EZKIT board. Includes: - SoC specific configs in mach-sc5xx/Kconfig - Memory Map for SPL - SPL config options in common/spl/Kconfig - 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: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Trevor Woerner <twoerner@gmail.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>
19 lines
317 B
C
19 lines
317 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* (C) Copyright 2024 - Analog Devices, Inc.
|
|
*/
|
|
|
|
#ifndef __CONFIG_SC584_EZKIT_H
|
|
#define __CONFIG_SC584_EZKIT_H
|
|
|
|
/*
|
|
* Memory Settings
|
|
*/
|
|
#define MEM_MT47H128M16RT
|
|
#define MEM_DMC0
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x89000000
|
|
#define CFG_SYS_SDRAM_SIZE 0x7000000
|
|
|
|
#endif
|