Kconfig 434 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0
  2. if SH_RSK
  3. choice
  4. prompt "RSK+ options"
  5. default SH_RSK7203
  6. config SH_RSK7201
  7. bool "RSK7201"
  8. depends on CPU_SUBTYPE_SH7201
  9. config SH_RSK7203
  10. bool "RSK7203"
  11. select GPIOLIB
  12. depends on CPU_SUBTYPE_SH7203
  13. config SH_RSK7264
  14. bool "RSK2+SH7264"
  15. select GPIOLIB
  16. depends on CPU_SUBTYPE_SH7264
  17. config SH_RSK7269
  18. bool "RSK2+SH7269"
  19. select GPIOLIB
  20. depends on CPU_SUBTYPE_SH7269
  21. endchoice
  22. endif