zephyr/drivers/sensor/apds9960/Kconfig
Kumar Gala df81fef944 drivers: sensor: Convert Kconfig bus 'depends on' to 'select'
This change in pattern is meant to address a misconfiguration issue
that can occur for sensors that support being on multiple busses
like I2C & SPI.

For example, you can have a configuration in which such a sensor is
on the I2C bus in the devicetree and the sensor is enabled.  However
the application configuration enables CONFIG_SPI=y and CONFIG_I2C=n
and this will cause the sensor driver to be built by default, however
since we don't have the I2C bus enabled the driver will not compile
correctly.

Previously we had been adding to board Kconfig.defconfig something
like:

	config I2C
		default y if SENSOR

This pattern doesn't scale well and may differ from what an application
specific need/use is.

So instead move to a pattern in which we leave the default enablement
up to the devicetree "status" property for the sensor.  We then have
the Kconfig move from 'depends on <BUS>' to 'select <BUS>' and in
the case of drivers that support multiple busses we have the Kconfig
be: 'select <BUS> if $(dt_compat_on_bus,$(<DT_COMPAT>),<BUS>) for
each bus type the sensor supports.

This removes the need to add Kconfig logic to each board and enables
the bus subsystem and bus controller driver if the sensor requires
it by default in the build system.

Fixes: #48518

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-08-08 06:58:18 +01:00

118 lines
1.8 KiB
Plaintext

# Copyright (c) 2017 Intel Corporation
# Copyright (c) 2018 Phytec Messtechnik GmbH
# SPDX-License-Identifier: Apache-2.0
menuconfig APDS9960
bool "APDS9960 Sensor"
default y
depends on DT_HAS_AVAGO_APDS9960_ENABLED
select I2C
help
Enable driver for APDS9960 sensors.
if APDS9960
choice
prompt "Trigger mode"
default APDS9960_TRIGGER_NONE
help
Specify the type of triggering used by the driver.
config APDS9960_TRIGGER_NONE
bool "No trigger"
config APDS9960_TRIGGER_GLOBAL_THREAD
bool "Use global thread"
depends on GPIO
select APDS9960_TRIGGER
endchoice
config APDS9960_TRIGGER
bool
config APDS9960_ENABLE_ALS
bool "Ambient Light Sense"
default y
help
Enable Ambient Light Sense (ALS).
choice
prompt "Proximity Gain"
default APDS9960_PGAIN_4X
config APDS9960_PGAIN_1X
bool "1x"
config APDS9960_PGAIN_2X
bool "2x"
config APDS9960_PGAIN_4X
bool "4x"
config APDS9960_PGAIN_8X
bool "8x"
endchoice
choice
prompt "ALS and Color Gain"
default APDS9960_AGAIN_4X
config APDS9960_AGAIN_1X
bool "1x"
config APDS9960_AGAIN_4X
bool "4x"
config APDS9960_AGAIN_16X
bool "16x"
config APDS9960_AGAIN_64X
bool "64x"
endchoice
choice
prompt "Proximity Pulse Length"
default APDS9960_PPULSE_LENGTH_8US
config APDS9960_PPULSE_LENGTH_4US
bool "4us"
config APDS9960_PPULSE_LENGTH_8US
bool "8us"
config APDS9960_PPULSE_LENGTH_16US
bool "16us"
config APDS9960_PPULSE_LENGTH_32US
bool "32us"
endchoice
choice
prompt "Proximity LED boost current"
default APDS9960_PLED_BOOST_100PCT
config APDS9960_PLED_BOOST_300PCT
bool "300%"
config APDS9960_PLED_BOOST_200PCT
bool "200%"
config APDS9960_PLED_BOOST_150PCT
bool "150%"
config APDS9960_PLED_BOOST_100PCT
bool "100%"
endchoice
config APDS9960_PPULSE_COUNT
int "Proximity Pulse Count"
range 1 64
default 8
endif # APDS9960