Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # NGW100 customization
  2. if BOARD_ATNGW100
  3. choice
  4. prompt "Select an NGW100 add-on board to support"
  5. default BOARD_ATNGW100_ADDON_NONE
  6. config BOARD_ATNGW100_ADDON_NONE
  7. bool "None"
  8. config BOARD_ATNGW100_EVKLCD10X
  9. bool "EVKLCD10X addon board"
  10. help
  11. This enables support for the EVKLCD100 (QVGA) or EVKLCD101 (VGA)
  12. addon board for the NGW100. By enabling this the LCD controller and
  13. AC97 controller is added as platform devices.
  14. This choice disables the detect pin and the write-protect pin for the
  15. MCI platform device, since it conflicts with the LCD platform device.
  16. The MCI pins can be reenabled by editing the "add device function" but
  17. this may break the setup for other displays that use these pins.
  18. endchoice
  19. choice
  20. prompt "LCD panel resolution on EVKLCD10X"
  21. depends on BOARD_ATNGW100_EVKLCD10X
  22. default BOARD_ATNGW100_EVKLCD10X_VGA
  23. config BOARD_ATNGW100_EVKLCD10X_QVGA
  24. bool "QVGA (320x240)"
  25. config BOARD_ATNGW100_EVKLCD10X_VGA
  26. bool "VGA (640x480)"
  27. config BOARD_ATNGW100_EVKLCD10X_POW_QVGA
  28. bool "Powertip QVGA (320x240)"
  29. endchoice
  30. endif # BOARD_ATNGW100