mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
2156327846
The RZ/N1 is a family of SoC devices from Renesas, featuring: * ARM Cortex-A7 CPU (single/dual core) and/or Cortex-M3 * Integrated SRAM up to 6MB * Integrated gigabit ethernet switch * Optional DDR2/3 controller * I2C, SPI, UART, NAND, QSPI, SDIO, USB, CAN, RTC, LCD Add basic support for this family, modeled on the existing RZA1. Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org> Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
20 lines
338 B
Text
20 lines
338 B
Text
if RZN1
|
|
|
|
choice
|
|
prompt "Renesas RZ/N1 Board select"
|
|
default TARGET_SCHNEIDER_RZN1
|
|
|
|
config TARGET_SCHNEIDER_RZN1
|
|
bool "Schneider RZN1 board"
|
|
help
|
|
Support the Schneider RZN1D and RZN1S boards, which are based
|
|
on the Renesas RZ/N1 SoC.
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "rzn1"
|
|
|
|
source "board/schneider/rzn1-snarc/Kconfig"
|
|
|
|
endif
|