mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
14 lines
288 B
C
14 lines
288 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Configuration settings for the Schneider RZ/N1 board
|
||
|
*/
|
||
|
|
||
|
#ifndef __RZN1_SNARC_H
|
||
|
#define __RZN1_SNARC_H
|
||
|
|
||
|
/* Internal RAM */
|
||
|
#define CFG_SYS_INIT_RAM_ADDR 0x20000000
|
||
|
#define CFG_SYS_INIT_RAM_SIZE (1 * 1024 * 1024)
|
||
|
|
||
|
#endif /* __RZN1_SNARC_H */
|