1# SOF SSP configuration options 2 3# Copyright (c) 2022 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6config DAI_INTEL_SSP 7 bool "Intel I2S (SSP) Bus Driver for Dai interface" 8 default y 9 depends on DT_HAS_INTEL_SSP_DAI_ENABLED 10 select DMA 11 depends on PM_DEVICE_RUNTIME 12 help 13 Enable Inter Sound (I2S) bus driver based on 14 Synchronous Serial Port (SSP) module. 15 16config DAI_SSP_HAS_POWER_CONTROL 17 bool "DAI ssp pm_runtime en/dis ssp power" 18 default y if SOC_SERIES_INTEL_ACE 19 depends on DAI_INTEL_SSP 20 21if DAI_INTEL_SSP 22 23config DAI_SSP_CLK_FORCE_DYNAMIC_CLOCK_GATING 24 bool 25 26config DAI_INTEL_SSP_NUM_BASE 27 int 28 default 6 29 30config DAI_INTEL_SSP_NUM_EXT 31 int 32 default 0 33 34endif 35