1# SPDX-License-Identifier: GPL-2.0-only 2# 3# EC-like Drivers for aarch64 based devices. 4# 5 6menuconfig ARM64_PLATFORM_DEVICES 7 bool "ARM64 Platform-Specific Device Drivers" 8 depends on ARM64 || COMPILE_TEST 9 default y 10 help 11 Say Y here to get to see options for platform-specific device drivers 12 for arm64 based devices, primarily EC-like device drivers. 13 This option alone does not add any kernel code. 14 15 If you say N, all options in this submenu will be skipped and disabled. 16 17if ARM64_PLATFORM_DEVICES 18 19config EC_ACER_ASPIRE1 20 tristate "Acer Aspire 1 Embedded Controller driver" 21 depends on ARCH_QCOM || COMPILE_TEST 22 depends on I2C 23 depends on DRM 24 depends on POWER_SUPPLY 25 depends on INPUT 26 help 27 Say Y here to enable the EC driver for the (Snapdragon-based) 28 Acer Aspire 1 laptop. The EC handles battery and charging 29 monitoring as well as some misc functions like the lid sensor 30 and USB Type-C DP HPD events. 31 32 This driver provides battery and AC status support for the mentioned 33 laptop where this information is not properly exposed via the 34 standard ACPI devices. 35 36config EC_LENOVO_YOGA_C630 37 tristate "Lenovo Yoga C630 Embedded Controller driver" 38 depends on ARCH_QCOM || COMPILE_TEST 39 depends on I2C 40 select AUXILIARY_BUS 41 help 42 Driver for the Embedded Controller in the Qualcomm Snapdragon-based 43 Lenovo Yoga C630, which provides battery and power adapter 44 information. 45 46 This driver provides battery and AC status support for the mentioned 47 laptop where this information is not properly exposed via the 48 standard ACPI devices. 49 50 Say M or Y here to include this support. 51 52endif # ARM64_PLATFORM_DEVICES 53