summaryrefslogtreecommitdiff
path: root/zephyr/Kconfig.sensor_devices
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2021-11-04 12:11:58 -0600
committerCommit Bot <commit-bot@chromium.org>2021-11-05 04:22:34 +0000
commit252457d4b21f46889eebad61d4c0a65331919cec (patch)
tree01856c4d31d710b20e85a74c8d7b5836e35c3b98 /zephyr/Kconfig.sensor_devices
parent08f5a1e6fc2c9467230444ac9b582dcf4d9f0068 (diff)
downloadchrome-ec-stabilize-14411.B-ish.tar.gz
In the interest of making long-term branch maintenance incur as little technical debt on us as possible, we should not maintain any files on the branch we are not actually using. This has the added effect of making it extremely clear when merging CLs from the main branch when changes have the possibility to affect us. The follow-on CL adds a convenience script to actually pull updates from the main branch and generate a CL for the update. BUG=b:204206272 BRANCH=ish TEST=make BOARD=arcada_ish && make BOARD=drallion_ish Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Change-Id: I17e4694c38219b5a0823e0a3e55a28d1348f4b18 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3262038 Reviewed-by: Jett Rink <jettrink@chromium.org> Reviewed-by: Tom Hughes <tomhughes@chromium.org>
Diffstat (limited to 'zephyr/Kconfig.sensor_devices')
-rw-r--r--zephyr/Kconfig.sensor_devices113
1 files changed, 0 insertions, 113 deletions
diff --git a/zephyr/Kconfig.sensor_devices b/zephyr/Kconfig.sensor_devices
deleted file mode 100644
index 623919d775..0000000000
--- a/zephyr/Kconfig.sensor_devices
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 2021 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-menu "Sensor Devices"
-
-config PLATFORM_EC_ACCELGYRO_BMI
- bool "Config used to include common accelgyro BMI features"
- help
- Do not set this directly in a .conf file. This value should be set
- using an `select` statement in other BMI family of drivers such as
- BMI260.
-
-config PLATFORM_EC_ACCELGYRO_ICM
- bool "Config used to include common accelgyro ICM features"
- help
- Do not set this directly in a .conf file. This value should be set
- using an `select` statement in other ICM family of drivers such as
- ICM426XX.
-
-config PLATFORM_EC_ACCEL_BMA255
- bool "BMA2X2 Accelerometer Family Driver"
- help
- The driver supports Bosch's a triaxial, low-g acceleration sensor.
- It allows measurements of acceleration in three perpendicular axes.
- Currently the driver supports BMA253, BMA255, BMA355, BMA280, BMA282,
- BMA223, BMA254, BMA284, BMA250E, BMA222E, BMC150 BMC056, BMC156.
-
-config PLATFORM_EC_ACCEL_BMA4XX
- bool "BMA4XX Accelerometer Family Driver"
- help
- The driver supports Bosch's a triaxial, low-g acceleration sensor.
- It allows measurements of acceleration in three perpendicular axes.
- Currently the driver supports BMA4XX.
-
-config PLATFORM_EC_ACCEL_KX022
- bool "KX022 Accelerometer Driver"
- help
- The driver supports Kionix's KX022 triaxial low-g acceleration sensor.
- It allows measurements of acceleration in three perpendicular axes.
-
-config PLATFORM_EC_ACCEL_LIS2DW12
- bool "LIS2DW12 Accelerometer Driver"
- select PLATFORM_EC_STM_MEMS_COMMON
- help
- The driver supports ST's LIS2DW12 3D digital accelerometer sensor.
- It allows measurements of acceleration in three perpendicular axes.
-
-config PLATFORM_EC_ACCEL_LIS2DW12_AS_BASE
- bool "LIS2DW12 Interrupt force mode"
- depends on PLATFORM_EC_ACCEL_LIS2DW12
- help
- The LIS2DW driver supports fifo and interrupt, but letting lid accel
- sensor work at polling mode is a common selection in current usage
- model. This option will select interrupt (foced mode).
-
-config PLATFORM_EC_ACCELGYRO_BMI160
- bool "BMI160 Accelgyrometer Driver"
- select PLATFORM_EC_ACCELGYRO_BMI
- help
- The driver supports Bosch's BMI160 which is an Inertial Measurement
- Unit (IMU) consisting of a 16-bit tri-axial gyroscope and a 16-bit
- tri-axial accelerometer.
-
-config PLATFORM_EC_ACCELGYRO_BMI260
- bool "BMI260 Accelgyrometer Driver"
- select PLATFORM_EC_ACCELGYRO_BMI
- help
- The driver supports Bosch's BMI260 which is an Inertial Measurement
- Unit (IMU) consisting of a 16-bit tri-axial gyroscope and a 16-bit
- tri-axial accelerometer.
-
-config PLATFORM_EC_ACCELGYRO_BMI3XX
- bool "BMI3XX Accelgyrometer Driver"
- select PLATFORM_EC_ACCELGYRO_BMI
- help
- The driver supports Bosch's BMI3XX which is an Inertial Measurement
- Unit (IMU) consisting of a 16-bit tri-axial gyroscope and a 16-bit
- tri-axial accelerometer.
-
-config PLATFORM_EC_ALS_TCS3400
- bool "TCS3400 Ambient Light Senseor Driver"
- help
- The driver supports TCS3400 which provides color and
- IR (red, green, blue, clear and IR) ambient light sensing.
-
-config PLATFORM_EC_ACCELGYRO_ICM426XX
- bool "ICM426XX Accelgyro Driver"
- select PLATFORM_EC_ACCELGYRO_ICM
- help
- The driver supports ICM425XX which provides both accelerometer and
- gyroscope readings.
-
-config PLATFORM_EC_ACCELGYRO_ICM42607
- bool "ICM42607 Accelgyro Driver"
- select PLATFORM_EC_ACCELGYRO_ICM
- help
- The driver supports ICM42607 which provides both accelerometer and
- gyroscope readings.
-
-config PLATFORM_EC_STM_MEMS_COMMON
- bool
- help
- The driver supports functionality that is common to
- STMicroelectronics(STM) micro-electromechanical system(MEMS)
- sensor devices. This should be enabled by drivers that use
- this common framework. It cannot be set otherwise, even in
- prj.conf.
-
-rsource "Kconfig.accelgyro_bmi"
-rsource "Kconfig.accelgyro_icm"
-
-endmenu # Sensor devices