Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # NGW100 customization
  2. if BOARD_ATNGW100_COMMON
  3. config BOARD_ATNGW100_MKII_LCD
  4. bool "Enable ATNGW100 mkII LCD interface"
  5. depends on BOARD_ATNGW100_MKII
  6. help
  7. This enables the LCD controller (LCDC) in the AT32AP7000. Since the
  8. LCDC is multiplexed with MACB1 (LAN) Ethernet port, only one can be
  9. enabled at a time.
  10. This choice enables the LCDC and disables the MACB1 interface marked
  11. LAN on the PCB.
  12. choice
  13. prompt "Select an NGW100 add-on board to support"
  14. default BOARD_ATNGW100_ADDON_NONE
  15. config BOARD_ATNGW100_ADDON_NONE
  16. bool "None"
  17. config BOARD_ATNGW100_EVKLCD10X
  18. bool "EVKLCD10X addon board"
  19. depends on BOARD_ATNGW100_MKI || BOARD_ATNGW100_MKII_LCD
  20. help
  21. This enables support for the EVKLCD100 (QVGA) or EVKLCD101 (VGA)
  22. addon board for the NGW100 and NGW100 mkII. By enabling this the LCD
  23. controller and AC97 controller is added as platform devices.
  24. config BOARD_ATNGW100_MRMT
  25. bool "Mediama RMT1/2 add-on board"
  26. help
  27. This enables support for the Mediama RMT1 or RMT2 board.
  28. RMT provides LCD support, AC97 codec and other
  29. optional peripherals to the Atmel NGW100.
  30. This choice disables the detect pin and the write-protect pin for the
  31. MCI platform device, since it conflicts with the LCD platform device.
  32. The MCI pins can be reenabled by editing the "add device function" but
  33. this may break the setup for other displays that use these pins.
  34. endchoice
  35. choice
  36. prompt "LCD panel resolution on EVKLCD10X"
  37. depends on BOARD_ATNGW100_EVKLCD10X
  38. default BOARD_ATNGW100_EVKLCD10X_VGA
  39. config BOARD_ATNGW100_EVKLCD10X_QVGA
  40. bool "QVGA (320x240)"
  41. config BOARD_ATNGW100_EVKLCD10X_VGA
  42. bool "VGA (640x480)"
  43. config BOARD_ATNGW100_EVKLCD10X_POW_QVGA
  44. bool "Powertip QVGA (320x240)"
  45. endchoice
  46. if BOARD_ATNGW100_MRMT
  47. source "arch/avr32/boards/atngw100/Kconfig_mrmt"
  48. endif
  49. endif # BOARD_ATNGW100_COMMON