2012-04-06 23:49:35 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 23:49:35 +08:00
|
|
|
#
|
2012-04-18 05:23:10 +08:00
|
|
|
|
2016-08-07 04:03:38 +08:00
|
|
|
if ARCH_RENESAS
|
2014-03-06 23:17:11 +08:00
|
|
|
|
2012-04-18 05:23:10 +08:00
|
|
|
choice
|
2016-08-07 04:03:38 +08:00
|
|
|
prompt "Renesas chip selection"
|
2012-04-18 05:23:10 +08:00
|
|
|
default ARCH_CHIP_SH7032
|
|
|
|
|
|
|
|
config ARCH_CHIP_SH7032
|
|
|
|
bool "SH7032"
|
2014-03-06 23:17:11 +08:00
|
|
|
select ARCH_SH1
|
2012-04-18 05:23:10 +08:00
|
|
|
---help---
|
|
|
|
Hitachi/Renesas SH7032 (SH1)
|
|
|
|
|
|
|
|
config ARCH_CHIP_M30262F8
|
|
|
|
bool "M30262F8"
|
2014-03-06 23:17:11 +08:00
|
|
|
select ARCH_M16C
|
2015-11-24 02:16:35 +08:00
|
|
|
select MM_SMALL
|
2012-04-18 05:23:10 +08:00
|
|
|
---help---
|
|
|
|
Renesas M30262F8 (M16C)
|
|
|
|
|
2019-10-11 23:36:57 +08:00
|
|
|
config ARCH_CHIP_R5F565NEDDFC
|
|
|
|
bool "R5F565NEDDFC"
|
|
|
|
select ARCH_RX65N_RSK1MB
|
|
|
|
select ARCH_RX65N
|
|
|
|
---help---
|
|
|
|
Renesas RX65N on RSKRX65N-1MB
|
|
|
|
|
|
|
|
config ARCH_CHIP_R5F565NEHDFC
|
|
|
|
bool "R5F565NEHDFC"
|
|
|
|
select ARCH_RX65N_RSK2MB
|
2020-08-21 21:50:06 +08:00
|
|
|
select ARCH_HAVE_I2CRESET
|
|
|
|
select ARCH_HAVE_SPI_BITORDER
|
2019-10-11 23:36:57 +08:00
|
|
|
---help---
|
|
|
|
Renesas RX65N on RSKRX65N-2MB
|
|
|
|
|
|
|
|
config ARCH_CHIP_R5F565NEHDFP
|
|
|
|
bool "R5F565NEHDFP"
|
|
|
|
select ARCH_RX65N_GRROSE
|
2020-08-21 21:50:06 +08:00
|
|
|
select ARCH_HAVE_I2CRESET
|
|
|
|
select ARCH_HAVE_SPI_BITORDER
|
2019-10-11 23:36:57 +08:00
|
|
|
---help---
|
|
|
|
Renesas RX65N on GR-ROSE
|
|
|
|
|
2020-10-15 11:29:59 +08:00
|
|
|
config ARCH_CHIP_RENESAS_CUSTOM
|
|
|
|
bool "Custom Renesas chip"
|
|
|
|
select ARCH_CHIP_CUSTOM
|
|
|
|
---help---
|
|
|
|
Select this option if there is no directory for the chip under arch/renesas/src/.
|
|
|
|
|
2012-04-18 05:23:10 +08:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config ARCH_SH1
|
|
|
|
bool
|
2014-03-06 23:17:11 +08:00
|
|
|
default n
|
2012-04-18 05:23:10 +08:00
|
|
|
|
2021-06-29 05:59:30 +08:00
|
|
|
config ARCH_RENESAS_RX
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
select ARCH_HAVE_SETJMP
|
|
|
|
select CYGWIN_WINTOOL if WINDOWS_CYGWIN
|
|
|
|
|
2019-10-11 23:36:57 +08:00
|
|
|
config ARCH_RX65N
|
|
|
|
bool
|
|
|
|
default n
|
2021-06-29 05:59:30 +08:00
|
|
|
select ARCH_RENESAS_RX
|
2019-10-11 23:36:57 +08:00
|
|
|
|
|
|
|
config ARCH_RX65N_RSK1MB
|
|
|
|
bool
|
|
|
|
default n
|
2021-06-29 05:59:30 +08:00
|
|
|
select ARCH_RENESAS_RX
|
2019-10-11 23:36:57 +08:00
|
|
|
|
|
|
|
config ARCH_RX65N_RSK2MB
|
|
|
|
bool
|
|
|
|
default n
|
2021-06-29 05:59:30 +08:00
|
|
|
select ARCH_RENESAS_RX
|
|
|
|
|
2019-10-11 23:36:57 +08:00
|
|
|
|
|
|
|
config ARCH_RX65N_GRROSE
|
|
|
|
bool
|
|
|
|
default n
|
2021-06-29 05:59:30 +08:00
|
|
|
select ARCH_RENESAS_RX
|
2019-10-11 23:36:57 +08:00
|
|
|
|
2012-04-18 05:23:10 +08:00
|
|
|
config ARCH_M16C
|
|
|
|
bool
|
2014-03-06 23:17:11 +08:00
|
|
|
default n
|
2012-04-18 05:23:10 +08:00
|
|
|
|
|
|
|
config ARCH_CHIP
|
|
|
|
string
|
|
|
|
default "sh1" if ARCH_SH1
|
|
|
|
default "m16c" if ARCH_M16C
|
2021-06-29 05:59:30 +08:00
|
|
|
default "rx65n" if ARCH_RENESAS_RX
|
2012-04-18 05:23:10 +08:00
|
|
|
|
2021-07-20 19:10:10 +08:00
|
|
|
source "arch/renesas/src/common/Kconfig"
|
|
|
|
source "arch/renesas/src/m16c/Kconfig"
|
|
|
|
source "arch/renesas/src/sh1/Kconfig"
|
|
|
|
source "arch/renesas/src/rx65n/Kconfig"
|
2012-04-18 06:54:31 +08:00
|
|
|
|
2016-08-07 04:03:38 +08:00
|
|
|
endif # ARCH_RENESAS
|