xref: /linux/drivers/platform/chrome/Kconfig (revision 6b81cbaf36f4a4735c1bf2bb609c8e53e2d5706a)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Platform support for Chrome OS hardware (Chromebooks and Chromeboxes)
4#
5
6menuconfig CHROME_PLATFORMS
7	bool "Platform support for Chrome hardware"
8	depends on X86 || ARM || ARM64 || COMPILE_TEST
9	help
10	  Say Y here to get to see options for platform support for
11	  various Chromebooks and Chromeboxes. This option alone does
12	  not add any kernel code.
13
14	  If you say N, all options in this submenu will be skipped and disabled.
15
16if CHROME_PLATFORMS
17
18config CHROMEOS_ACPI
19	tristate "ChromeOS specific ACPI extensions"
20	depends on ACPI
21	help
22	  This driver provides the firmware interface for the services
23	  exported through the ChromeOS interfaces when using ChromeOS
24	  ACPI firmware.
25
26	  If you have an ACPI-compatible Chromebook, say Y or M here.
27	  The module will be called chromeos_acpi.
28
29config CHROMEOS_LAPTOP
30	tristate "Chrome OS Laptop"
31	depends on I2C && DMI && X86
32	help
33	  This driver instantiates i2c and smbus devices such as
34	  light sensors and touchpads.
35
36	  If you have a supported Chromebook, choose Y or M here.
37	  The module will be called chromeos_laptop.
38
39config CHROMEOS_PSTORE
40	tristate "Chrome OS pstore support"
41	depends on X86
42	help
43	  This module instantiates the persistent storage on x86 ChromeOS
44	  devices. It can be used to store away console logs and crash
45	  information across reboots.
46
47	  The range of memory used is 0xf00000-0x1000000, traditionally
48	  the memory used to back VGA controller memory.
49
50	  If you have a supported Chromebook, choose Y or M here.
51	  The module will be called chromeos_pstore.
52
53config CHROMEOS_TBMC
54	tristate "ChromeOS Tablet Switch Controller"
55	depends on ACPI
56	depends on INPUT
57	help
58	  This option adds a driver for the tablet switch on
59	  select Chrome OS systems.
60
61	  To compile this driver as a module, choose M here: the
62	  module will be called chromeos_tbmc.
63
64config CHROMEOS_OF_HW_PROBER
65	tristate "ChromeOS Device Tree Hardware Prober"
66	depends on OF
67	depends on I2C
68	select OF_DYNAMIC
69	default OF
70	help
71	  This option enables the device tree hardware prober for ChromeOS
72	  devices. The driver will probe the correct component variant in
73	  devices that have multiple drop-in options for one component.
74
75config CROS_EC
76	tristate "ChromeOS Embedded Controller"
77	select CROS_EC_PROTO
78	help
79	  If you say Y here you get support for the ChromeOS Embedded
80	  Controller (EC) providing keyboard, battery and power services.
81	  You also need to enable the driver for the bus you are using. The
82	  protocol for talking to the EC is defined by the bus driver.
83
84	  To compile this driver as a module, choose M here: the
85	  module will be called cros_ec.
86
87config CROS_EC_I2C
88	tristate "ChromeOS Embedded Controller (I2C)"
89	depends on CROS_EC && I2C
90
91	help
92	  If you say Y here, you get support for talking to the ChromeOS
93	  EC through an I2C bus. This uses a simple byte-level protocol with
94	  a checksum. Failing accesses will be retried three times to
95	  improve reliability.
96
97config CROS_EC_RPMSG
98	tristate "ChromeOS Embedded Controller (rpmsg)"
99	depends on CROS_EC && RPMSG && OF
100	help
101	  If you say Y here, you get support for talking to the ChromeOS EC
102	  through rpmsg. This uses a simple byte-level protocol with a
103	  checksum. Also since there's no addition EC-to-host interrupt, this
104	  use a byte in message to distinguish host event from host command.
105
106	  To compile this driver as a module, choose M here: the
107	  module will be called cros_ec_rpmsg.
108
109config CROS_EC_ISHTP
110	tristate "ChromeOS Embedded Controller (ISHTP)"
111	depends on CROS_EC
112	depends on INTEL_ISH_HID
113	help
114	  If you say Y here, you get support for talking to the ChromeOS EC
115	  firmware running on Intel Integrated Sensor Hub (ISH), using the
116	  ISH Transport protocol (ISH-TP). This uses a simple byte-level
117	  protocol with a checksum.
118
119	  To compile this driver as a module, choose M here: the
120	  module will be called cros_ec_ishtp.
121
122config CROS_EC_SPI
123	tristate "ChromeOS Embedded Controller (SPI)"
124	depends on CROS_EC && SPI
125
126	help
127	  If you say Y here, you get support for talking to the ChromeOS EC
128	  through a SPI bus, using a byte-level protocol. Since the EC's
129	  response time cannot be guaranteed, we support ignoring
130	  'pre-amble' bytes before the response actually starts.
131
132config CROS_EC_UART
133	tristate "ChromeOS Embedded Controller (UART)"
134	depends on CROS_EC && ACPI && SERIAL_DEV_BUS
135	help
136	  If you say Y here, you get support for talking to the ChromeOS EC
137	  through a UART, using a byte-level protocol.
138
139	  To compile this driver as a module, choose M here: the
140	  module will be called cros_ec_uart.
141
142config CROS_EC_LPC
143	tristate "ChromeOS Embedded Controller (LPC)"
144	depends on CROS_EC && ACPI && (X86 || COMPILE_TEST)
145	depends on HAS_IOPORT
146	help
147	  If you say Y here, you get support for talking to the ChromeOS EC
148	  over an LPC bus, including the LPC Microchip EC (MEC) variant.
149	  This uses a simple byte-level protocol with a checksum. This is
150	  used for userspace access only. The kernel typically has its own
151	  communication methods.
152
153	  To compile this driver as a module, choose M here: the
154	  module will be called cros_ec_lpcs.
155
156config CROS_EC_PROTO
157	tristate
158	help
159	  ChromeOS EC communication protocol helpers.
160
161config CROS_KBD_LED_BACKLIGHT
162	tristate "Backlight LED support for Chrome OS keyboards"
163	depends on LEDS_CLASS
164	depends on MFD_CROS_EC_DEV || (MFD_CROS_EC_DEV=n && ACPI)
165	help
166	  This option enables support for the keyboard backlight LEDs on
167	  select Chrome OS systems.
168
169	  To compile this driver as a module, choose M here: the
170	  module will be called cros_kbd_led_backlight.
171
172config CROS_EC_CHARDEV
173	tristate "ChromeOS EC miscdevice"
174	depends on MFD_CROS_EC_DEV
175	default MFD_CROS_EC_DEV
176	help
177	  This driver adds file operations support to talk with the
178	  ChromeOS EC from userspace via a character device.
179
180	  To compile this driver as a module, choose M here: the
181	  module will be called cros_ec_chardev.
182
183config CROS_EC_LIGHTBAR
184	tristate "Chromebook Pixel's lightbar support"
185	depends on MFD_CROS_EC_DEV
186	default MFD_CROS_EC_DEV
187	help
188	  This option exposes the Chromebook Pixel's lightbar to
189	  userspace.
190
191	  To compile this driver as a module, choose M here: the
192	  module will be called cros_ec_lightbar.
193
194config CROS_EC_VBC
195	tristate "ChromeOS EC vboot context support"
196	depends on MFD_CROS_EC_DEV && OF
197	default MFD_CROS_EC_DEV
198	help
199	  This option exposes the ChromeOS EC vboot context nvram to
200	  userspace.
201
202	  To compile this driver as a module, choose M here: the
203	  module will be called cros_ec_vbc.
204
205config CROS_EC_DEBUGFS
206	tristate "Export ChromeOS EC internals in DebugFS"
207	depends on MFD_CROS_EC_DEV && DEBUG_FS
208	default MFD_CROS_EC_DEV
209	help
210	  This option exposes the ChromeOS EC device internals to
211	  userspace.
212
213	  To compile this driver as a module, choose M here: the
214	  module will be called cros_ec_debugfs.
215
216config CROS_EC_SENSORHUB
217	tristate "ChromeOS EC MEMS Sensor Hub"
218	depends on MFD_CROS_EC_DEV
219	default MFD_CROS_EC_DEV
220	help
221	  Allow loading IIO sensors. This driver is loaded by MFD and will in
222	  turn query the EC and register the sensors.
223	  It also spreads the sensor data coming from the EC to the IIO sensor
224	  object.
225
226	  To compile this driver as a module, choose M here: the
227	  module will be called cros_ec_sensorhub.
228
229config CROS_EC_SYSFS
230	tristate "ChromeOS EC control and information through sysfs"
231	depends on MFD_CROS_EC_DEV && SYSFS
232	default MFD_CROS_EC_DEV
233	help
234	  This option exposes some sysfs attributes to control and get
235	  information from ChromeOS EC.
236
237	  To compile this driver as a module, choose M here: the
238	  module will be called cros_ec_sysfs.
239
240config CROS_EC_TYPEC_ALTMODES
241	bool
242	help
243	  Selectable symbol to enable altmodes.
244
245config CROS_EC_TYPEC
246	tristate "ChromeOS EC Type-C Connector Control"
247	depends on MFD_CROS_EC_DEV && TYPEC
248	depends on CROS_USBPD_NOTIFY
249	depends on USB_ROLE_SWITCH
250	default MFD_CROS_EC_DEV
251	select CROS_EC_TYPEC_ALTMODES if TYPEC_DP_ALTMODE
252	select CROS_EC_TYPEC_ALTMODES if TYPEC_TBT_ALTMODE
253	help
254	  If you say Y here, you get support for accessing Type C connector
255	  information from the Chrome OS EC.
256
257	  To compile this driver as a module, choose M here: the module will be
258	  called cros-ec-typec.
259
260config CROS_HPS_I2C
261	tristate "ChromeOS HPS device"
262	depends on HID && I2C && PM
263	help
264	  Say Y here if you want to enable support for the ChromeOS
265	  human presence sensor (HPS), attached via I2C. The driver supports a
266	  sensor connected to the I2C bus and exposes it as a character device.
267	  To save power, the sensor is automatically powered down when no
268	  clients are accessing it.
269
270config CROS_USBPD_LOGGER
271	tristate "Logging driver for USB PD charger"
272	depends on CHARGER_CROS_USBPD
273	default y
274	select RTC_LIB
275	help
276	  This option enables support for logging event data for the USB PD charger
277	  available in the Embedded Controller on ChromeOS systems.
278
279	  To compile this driver as a module, choose M here: the
280	  module will be called cros_usbpd_logger.
281
282config CROS_USBPD_NOTIFY
283	tristate "ChromeOS Type-C power delivery event notifier"
284	depends on MFD_CROS_EC_DEV
285	default MFD_CROS_EC_DEV
286	help
287	  If you say Y here, you get support for Type-C PD event notifications
288	  from the ChromeOS EC. On ACPI platforms this driver will bind to the
289	  GOOG0003 ACPI device, and on platforms which don't have this device it
290	  will get initialized on ECs which support the feature
291	  EC_FEATURE_USB_PD.
292
293	  To compile this driver as a module, choose M here: the
294	  module will be called cros_usbpd_notify.
295
296config CHROMEOS_PRIVACY_SCREEN
297	tristate "ChromeOS Privacy Screen support"
298	depends on ACPI
299	depends on DRM
300	select DRM_PRIVACY_SCREEN
301	help
302	  This driver provides the support needed for the in-built electronic
303	  privacy screen that is present on some ChromeOS devices. When enabled,
304	  this should probably always be built into the kernel to avoid or
305	  minimize drm probe deferral.
306
307config CROS_TYPEC_SWITCH
308	tristate "ChromeOS EC Type-C Switch Control"
309	depends on MFD_CROS_EC_DEV && TYPEC && ACPI
310	default MFD_CROS_EC_DEV
311	help
312	  If you say Y here, you get support for configuring the ChromeOS EC Type-C
313	  muxes and retimers.
314
315	  To compile this driver as a module, choose M here: the module will be
316	  called cros_typec_switch.
317
318source "drivers/platform/chrome/wilco_ec/Kconfig"
319
320# Kunit test cases
321config CROS_KUNIT_EC_PROTO_TEST
322	tristate "Kunit tests for ChromeOS EC protocol" if !KUNIT_ALL_TESTS
323	depends on KUNIT && CROS_EC
324	default KUNIT_ALL_TESTS
325	select CROS_EC_PROTO
326	help
327	  Kunit tests for ChromeOS EC protocol.
328
329endif # CHROMEOS_PLATFORMS
330