Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. config BOARD_ATNGW100_MRMT
  19. bool "Mediama RMT1/2 add-on board"
  20. help
  21. This enables support for the Mediama RMT1 or RMT2 board.
  22. RMT provides LCD support, AC97 codec and other
  23. optional peripherals to the Atmel NGW100.
  24. This choice disables the detect pin and the write-protect pin for the
  25. MCI platform device, since it conflicts with the LCD platform device.
  26. The MCI pins can be reenabled by editing the "add device function" but
  27. this may break the setup for other displays that use these pins.
  28. endchoice
  29. choice
  30. prompt "LCD panel resolution on EVKLCD10X"
  31. depends on BOARD_ATNGW100_EVKLCD10X
  32. default BOARD_ATNGW100_EVKLCD10X_VGA
  33. config BOARD_ATNGW100_EVKLCD10X_QVGA
  34. bool "QVGA (320x240)"
  35. config BOARD_ATNGW100_EVKLCD10X_VGA
  36. bool "VGA (640x480)"
  37. config BOARD_ATNGW100_EVKLCD10X_POW_QVGA
  38. bool "Powertip QVGA (320x240)"
  39. endchoice
  40. if BOARD_ATNGW100_MRMT
  41. source "arch/avr32/boards/atngw100/Kconfig_mrmt"
  42. endif
  43. endif # BOARD_ATNGW100