1# DAC configuration options
2
3# Copyright (c) 2023 SILA Embedded Solutions GmbH
4#
5# SPDX-License-Identifier: Apache-2.0
6
7config DAC_AD56XX
8	bool "Analog Devices AD56xx DAC driver"
9	default y
10	select SPI
11	depends on DT_HAS_ADI_AD5628_ENABLED \
12		|| DT_HAS_ADI_AD5648_ENABLED \
13		|| DT_HAS_ADI_AD5668_ENABLED \
14		|| DT_HAS_ADI_AD5672_ENABLED \
15		|| DT_HAS_ADI_AD5674_ENABLED \
16		|| DT_HAS_ADI_AD5676_ENABLED \
17		|| DT_HAS_ADI_AD5679_ENABLED \
18		|| DT_HAS_ADI_AD5684_ENABLED \
19		|| DT_HAS_ADI_AD5686_ENABLED \
20		|| DT_HAS_ADI_AD5687_ENABLED \
21		|| DT_HAS_ADI_AD5689_ENABLED
22	help
23	  Enable the driver for the Analog Devices AD56xx DAC
24
25if DAC_AD56XX
26
27config DAC_AD56XX_INIT_PRIORITY
28	int "Init priority"
29	default 80
30	help
31	  Analog Devices AD56xx DAC device driver initialization priority.
32
33endif # DAC_AD56XX
34