1# RMT for NGW100 customization
2
3choice
4	prompt "RMT Version"
5	help
6	  Select the RMTx board version.
7
8config BOARD_MRMT_REV1
9	bool "RMT1"
10config BOARD_MRMT_REV2
11	bool "RMT2"
12
13endchoice
14
15config BOARD_MRMT_AC97
16	bool "Enable AC97 CODEC"
17	help
18	  Enable the UCB1400 AC97 CODEC driver.
19
20choice
21	prompt "Touchscreen Driver"
22	default BOARD_MRMT_ADS7846_TS
23
24config BOARD_MRMT_UCB1400_TS
25	bool "Use UCB1400 Touchscreen"
26
27config BOARD_MRMT_ADS7846_TS
28	bool "Use ADS7846 Touchscreen"
29
30endchoice
31
32choice
33	prompt "RMTx LCD Selection"
34	default BOARD_MRMT_LCD_DISABLE
35
36config BOARD_MRMT_LCD_DISABLE
37	bool "LCD Disabled"
38
39config BOARD_MRMT_LCD_LQ043T3DX0X
40	bool "Sharp LQ043T3DX0x or compatible"
41	help
42	  If using RMT2, be sure to load the resistor pack selectors accordingly
43
44if BOARD_MRMT_REV2
45config BOARD_MRMT_LCD_KWH043GM08
46	bool "Formike KWH043GM08 or compatible"
47	help
48	  Be sure to load the RMT2 resistor pack selectors accordingly
49endif
50
51endchoice
52
53if !BOARD_MRMT_LCD_DISABLE
54config BOARD_MRMT_BL_PWM
55	bool "Use PWM control for LCD Backlight"
56	help
57		Use PWM driver for controlling LCD Backlight.
58		Otherwise, LCD Backlight is always on.
59endif
60
61config BOARD_MRMT_RTC_I2C
62	bool "Use External RTC on I2C Bus"
63	help
64		RMT1 has an optional RTC device on the I2C bus.
65		It is a SII S35390A.  Be sure to select the
66		matching RTC driver.
67
68choice
69	prompt "Wireless Module on ttyS2"
70	default BOARD_MRMT_WIRELESS_ZB
71
72config BOARD_MRMT_WIRELESS_ZB
73	bool "Use ZigBee/802.15.4 Module"
74
75config BOARD_MRMT_WIRELESS_BT
76	bool "Use Bluetooth (HCI) Module"
77
78config BOARD_MRMT_WIRELESS_NONE
79	bool "Not Installed"
80endchoice
81