Kconfig 1.0 KB

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