diff options
author | Ralph Siemsen | 2023-05-12 21:36:56 -0400 |
---|---|---|
committer | Marek Vasut | 2023-05-13 04:01:30 +0200 |
commit | e87c869db3620c9b03b4364e144c19387d7bfd7a (patch) | |
tree | 2120eb02e55e5ddc1c84ba24c45eecbc10e4c4ec /include/configs/rzn1-snarc.h | |
parent | 2156327846d64ab200e904387623cd9d7bbfc84f (diff) |
board: schneider: add RZN1 board support
Add support for Schneider Electric RZ/N1D and RZ/N1S boards, which
are based on the Reneasas RZ/N1 SoC devices.
The intention is to support both boards using a single defconfig, and to
handle the differences at runtime.
Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org>
Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'include/configs/rzn1-snarc.h')
-rw-r--r-- | include/configs/rzn1-snarc.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/configs/rzn1-snarc.h b/include/configs/rzn1-snarc.h new file mode 100644 index 00000000000..9fee2ece54a --- /dev/null +++ b/include/configs/rzn1-snarc.h @@ -0,0 +1,13 @@ +/* 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 */ |