mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-11 20:46:00 +01:00
Adds support for Analog Devices' SC598-SOM-EZKIT board. Includes: - CONFIG options common to all SC5xx SoCs - SoC specific configs in mach-sc5xx/Kconfig - SPL config options in common/spl/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> Co-developed-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Oliver Gaskell <Oliver.Gaskell@analog.com>
24 lines
416 B
C
24 lines
416 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* (C) Copyright 2024 - Analog Devices, Inc.
|
|
*/
|
|
|
|
#ifndef __CONFIG_SC598_SOM_H
|
|
#define __CONFIG_SC598_SOM_H
|
|
|
|
/*
|
|
* Memory Settings
|
|
*/
|
|
#define MEM_IS43TR16512BL
|
|
#define MEM_ISSI_4Gb_DDR3_800MHZ
|
|
#define MEM_DMC0
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x90000000
|
|
#define CFG_SYS_SDRAM_SIZE 0x0e000000
|
|
|
|
/* GIC */
|
|
#define GICD_BASE 0x31200000
|
|
#define GICR_BASE 0x31240000
|
|
|
|
#endif
|