Kconfig 760 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. if ARCH_H720X
  2. menu "h720x Implementations"
  3. config ARCH_H7201
  4. bool "gms30c7201"
  5. depends on ARCH_H720X
  6. select CPU_H7201
  7. select ZONE_DMA
  8. help
  9. Say Y here if you are using the Hynix GMS30C7201 Reference Board
  10. config ARCH_H7202
  11. bool "hms30c7202"
  12. select CPU_H7202
  13. select ZONE_DMA
  14. depends on ARCH_H720X
  15. help
  16. Say Y here if you are using the Hynix HMS30C7202 Reference Board
  17. endmenu
  18. config CPU_H7201
  19. bool
  20. help
  21. Select code specific to h7201 variants
  22. config CPU_H7202
  23. bool
  24. help
  25. Select code specific to h7202 variants
  26. config H7202_SERIAL23
  27. depends on CPU_H7202
  28. bool "Use serial ports 2+3"
  29. help
  30. Say Y here if you wish to use serial ports 2+3. They share their
  31. pins with the keyboard matrix controller, so you have to decide.
  32. endif