zephyr/drivers/adc/Kconfig.b91
Kumar Gala d734f273ba drivers: adc: Update drivers to use devicetree Kconfig symbol
Update adc drivers to use DT_HAS_<compat>_ENABLED Kconfig symbol
to expose the driver and enable it by default based on devicetree.

We remove 'depend on' Kconfig for symbols that would be implied by
the devicetree node existing.

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-07-22 07:51:24 -05:00

28 lines
678 B
Plaintext

# Copyright (c) 2022 Telink Semiconductor
# SPDX-License-Identifier: Apache-2.0
config ADC_TELINK_B91
bool "Telink Semiconductor B91 ADC driver"
default y
depends on DT_HAS_TELINK_B91_ADC_ENABLED
select ADC_CONFIGURABLE_INPUTS
help
Enables Telink B91 ADC driver.
if ADC_TELINK_B91
config ADC_B91_ACQUISITION_THREAD_STACK_SIZE
int "Stack size for the ADC data acquisition thread"
default 512
help
Size of the stack used for the internal data acquisition
thread.
config ADC_B91_ACQUISITION_THREAD_PRIO
int "Priority for the ADC data acquisition thread"
default 0
help
Priority level for the internal ADC data acquisition thread.
endif # ADC_TELINK_B91