Hans-Christian Egtvedt | a3bee42 | 2008-07-01 08:29:27 +0000 | [diff] [blame] | 1 | # NGW100 customization |
| 2 | |
| 3 | if BOARD_ATNGW100 |
| 4 | |
Peter Ma | a89ab11 | 2009-06-08 12:54:02 +0200 | [diff] [blame] | 5 | choice |
| 6 | prompt "Select an NGW100 add-on board to support" |
| 7 | default BOARD_ATNGW100_ADDON_NONE |
| 8 | |
| 9 | config BOARD_ATNGW100_ADDON_NONE |
| 10 | bool "None" |
| 11 | |
Hans-Christian Egtvedt | a3bee42 | 2008-07-01 08:29:27 +0000 | [diff] [blame] | 12 | config BOARD_ATNGW100_EVKLCD10X |
Peter Ma | a89ab11 | 2009-06-08 12:54:02 +0200 | [diff] [blame] | 13 | bool "EVKLCD10X addon board" |
Hans-Christian Egtvedt | a3bee42 | 2008-07-01 08:29:27 +0000 | [diff] [blame] | 14 | help |
| 15 | This enables support for the EVKLCD100 (QVGA) or EVKLCD101 (VGA) |
| 16 | addon board for the NGW100. By enabling this the LCD controller and |
| 17 | AC97 controller is added as platform devices. |
| 18 | |
| 19 | This choice disables the detect pin and the write-protect pin for the |
| 20 | MCI platform device, since it conflicts with the LCD platform device. |
| 21 | The MCI pins can be reenabled by editing the "add device function" but |
| 22 | this may break the setup for other displays that use these pins. |
| 23 | |
Peter Ma | 4024533 | 2009-06-08 12:55:35 +0200 | [diff] [blame] | 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 | |
| 31 | This choice disables the detect pin and the write-protect pin for the |
| 32 | MCI platform device, since it conflicts with the LCD platform device. |
| 33 | The MCI pins can be reenabled by editing the "add device function" but |
| 34 | this may break the setup for other displays that use these pins. |
| 35 | |
Peter Ma | a89ab11 | 2009-06-08 12:54:02 +0200 | [diff] [blame] | 36 | endchoice |
Hans-Christian Egtvedt | a3bee42 | 2008-07-01 08:29:27 +0000 | [diff] [blame] | 37 | |
| 38 | choice |
| 39 | prompt "LCD panel resolution on EVKLCD10X" |
| 40 | depends on BOARD_ATNGW100_EVKLCD10X |
| 41 | default BOARD_ATNGW100_EVKLCD10X_VGA |
| 42 | |
| 43 | config BOARD_ATNGW100_EVKLCD10X_QVGA |
| 44 | bool "QVGA (320x240)" |
| 45 | |
| 46 | config BOARD_ATNGW100_EVKLCD10X_VGA |
| 47 | bool "VGA (640x480)" |
| 48 | |
| 49 | config BOARD_ATNGW100_EVKLCD10X_POW_QVGA |
| 50 | bool "Powertip QVGA (320x240)" |
| 51 | |
| 52 | endchoice |
| 53 | |
Peter Ma | 4024533 | 2009-06-08 12:55:35 +0200 | [diff] [blame] | 54 | if BOARD_ATNGW100_MRMT |
| 55 | source "arch/avr32/boards/atngw100/Kconfig_mrmt" |
| 56 | endif |
| 57 | |
Hans-Christian Egtvedt | a3bee42 | 2008-07-01 08:29:27 +0000 | [diff] [blame] | 58 | endif # BOARD_ATNGW100 |