Kconfig 539 B

123456789101112131415161718192021222324
  1. if TOSHIBA_RBTX4938
  2. comment "Multiplex Pin Select"
  3. choice
  4. prompt "PIO[58:61]"
  5. default TOSHIBA_RBTX4938_MPLEX_PIO58_61
  6. config TOSHIBA_RBTX4938_MPLEX_PIO58_61
  7. bool "PIO"
  8. config TOSHIBA_RBTX4938_MPLEX_NAND
  9. bool "NAND"
  10. config TOSHIBA_RBTX4938_MPLEX_ATA
  11. bool "ATA"
  12. endchoice
  13. config TX4938_NAND_BOOT
  14. depends on EXPERIMENTAL && TOSHIBA_RBTX4938_MPLEX_NAND
  15. bool "NAND Boot Support (EXPERIMENTAL)"
  16. help
  17. This is only for Toshiba RBTX4938 reference board, which has NAND IPL.
  18. Select this option if you need to use NAND boot.
  19. endif