lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see extra/config/Kconfig-language.txt |
| 4 | # |
| 5 | |
| 6 | config TARGET_ARCH |
| 7 | default "c6x" |
| 8 | |
| 9 | config FORCE_OPTIONS_FOR_ARCH |
| 10 | bool |
| 11 | default y |
| 12 | select ARCH_ANY_ENDIAN |
| 13 | select ARCH_HAS_NO_MMU |
| 14 | |
| 15 | choice |
| 16 | prompt "Target Processor Type" |
| 17 | default CONFIG_GENERIC_C6X |
| 18 | |
| 19 | config CONFIG_GENERIC_C6X |
| 20 | bool "Generic C6X DSP" |
| 21 | |
| 22 | config CONFIG_TMS320C64X |
| 23 | bool "TMS320C64X" |
| 24 | |
| 25 | config CONFIG_TMS320C64XPLUS |
| 26 | bool "TMS320C64X+" |
| 27 | |
| 28 | endchoice |
| 29 | |