mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
Rename the SC573 EZKIT board to EZLITE across the device tree, defconfig, board file, and related Kconfig/Makefile entries to match with release naming. EZKIT was used internally before the official product release. Signed-off-by: Caleb Ethridge <caleb.ethridge@analog.com> Reviewed-by: Simon Glass <sjg@chromium.org>
19 lines
319 B
C
19 lines
319 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* (C) Copyright 2024 - Analog Devices, Inc.
|
|
*/
|
|
|
|
#ifndef __CONFIG_SC573_EZLITE_H
|
|
#define __CONFIG_SC573_EZLITE_H
|
|
|
|
/*
|
|
* Memory Settings
|
|
*/
|
|
#define MEM_MT41K128M16JT
|
|
#define MEM_DMC0
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x82000000
|
|
#define CFG_SYS_SDRAM_SIZE 0xe000000
|
|
|
|
#endif
|