xref: /linux/include/sound/sof/dai-intel.h (revision 18aaab64fbb121e5879f74a46903bcfd30bf660b)
1dc3bf49eSMasahiro Yamada /* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
253e0c72dSLiam Girdwood /*
353e0c72dSLiam Girdwood  * This file is provided under a dual BSD/GPLv2 license.  When using or
453e0c72dSLiam Girdwood  * redistributing this file, you may do so under either license.
553e0c72dSLiam Girdwood  *
653e0c72dSLiam Girdwood  * Copyright(c) 2018 Intel Corporation. All rights reserved.
753e0c72dSLiam Girdwood  */
853e0c72dSLiam Girdwood 
953e0c72dSLiam Girdwood #ifndef __INCLUDE_SOUND_SOF_DAI_INTEL_H__
1053e0c72dSLiam Girdwood #define __INCLUDE_SOUND_SOF_DAI_INTEL_H__
1153e0c72dSLiam Girdwood 
1253e0c72dSLiam Girdwood #include <sound/sof/header.h>
1353e0c72dSLiam Girdwood 
1453e0c72dSLiam Girdwood  /* ssc1: TINTE */
1553e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_QUIRK_TINTE		(1 << 0)
1653e0c72dSLiam Girdwood  /* ssc1: PINTE */
1753e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_QUIRK_PINTE		(1 << 1)
1853e0c72dSLiam Girdwood  /* ssc2: SMTATF */
1953e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_QUIRK_SMTATF		(1 << 2)
2053e0c72dSLiam Girdwood  /* ssc2: MMRATF */
2153e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_QUIRK_MMRATF		(1 << 3)
2253e0c72dSLiam Girdwood  /* ssc2: PSPSTWFDFD */
2353e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_QUIRK_PSPSTWFDFD	(1 << 4)
2453e0c72dSLiam Girdwood  /* ssc2: PSPSRWFDFD */
2553e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_QUIRK_PSPSRWFDFD	(1 << 5)
2653e0c72dSLiam Girdwood /* ssc1: LBM */
2753e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_QUIRK_LBM		(1 << 6)
2853e0c72dSLiam Girdwood 
2953e0c72dSLiam Girdwood  /* here is the possibility to define others aux macros */
3053e0c72dSLiam Girdwood 
3153e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_FRAME_PULSE_WIDTH_MAX		38
3253e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_SLOT_PADDING_MAX		31
3353e0c72dSLiam Girdwood 
3453e0c72dSLiam Girdwood /* SSP clocks control settings
3553e0c72dSLiam Girdwood  *
3653e0c72dSLiam Girdwood  * Macros for clks_control field in sof_ipc_dai_ssp_params struct.
3753e0c72dSLiam Girdwood  */
3853e0c72dSLiam Girdwood 
3953e0c72dSLiam Girdwood /* mclk 0 disable */
4053e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_MCLK_0_DISABLE		BIT(0)
4153e0c72dSLiam Girdwood /* mclk 1 disable */
4253e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_MCLK_1_DISABLE		BIT(1)
4353e0c72dSLiam Girdwood /* mclk keep active */
4453e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_CLKCTRL_MCLK_KA		BIT(2)
4553e0c72dSLiam Girdwood /* bclk keep active */
4653e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_CLKCTRL_BCLK_KA		BIT(3)
4753e0c72dSLiam Girdwood /* fs keep active */
4853e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_CLKCTRL_FS_KA			BIT(4)
4953e0c72dSLiam Girdwood /* bclk idle */
5053e0c72dSLiam Girdwood #define SOF_DAI_INTEL_SSP_CLKCTRL_BCLK_IDLE_HIGH	BIT(5)
5153e0c72dSLiam Girdwood 
5231be5337SSeppo Ingalsuo /* DMIC max. four controllers for eight microphone channels */
5331be5337SSeppo Ingalsuo #define SOF_DAI_INTEL_DMIC_NUM_CTRL			4
5431be5337SSeppo Ingalsuo 
5553e0c72dSLiam Girdwood /* SSP Configuration Request - SOF_IPC_DAI_SSP_CONFIG */
5653e0c72dSLiam Girdwood struct sof_ipc_dai_ssp_params {
5753e0c72dSLiam Girdwood 	struct sof_ipc_hdr hdr;
5853e0c72dSLiam Girdwood 	uint16_t reserved1;
5953e0c72dSLiam Girdwood 	uint16_t mclk_id;
6053e0c72dSLiam Girdwood 
6153e0c72dSLiam Girdwood 	uint32_t mclk_rate;	/* mclk frequency in Hz */
6253e0c72dSLiam Girdwood 	uint32_t fsync_rate;	/* fsync frequency in Hz */
6353e0c72dSLiam Girdwood 	uint32_t bclk_rate;	/* bclk frequency in Hz */
6453e0c72dSLiam Girdwood 
6553e0c72dSLiam Girdwood 	/* TDM */
6653e0c72dSLiam Girdwood 	uint32_t tdm_slots;
6753e0c72dSLiam Girdwood 	uint32_t rx_slots;
6853e0c72dSLiam Girdwood 	uint32_t tx_slots;
6953e0c72dSLiam Girdwood 
7053e0c72dSLiam Girdwood 	/* data */
7153e0c72dSLiam Girdwood 	uint32_t sample_valid_bits;
7253e0c72dSLiam Girdwood 	uint16_t tdm_slot_width;
7353e0c72dSLiam Girdwood 	uint16_t reserved2;	/* alignment */
7453e0c72dSLiam Girdwood 
7553e0c72dSLiam Girdwood 	/* MCLK */
7653e0c72dSLiam Girdwood 	uint32_t mclk_direction;
7753e0c72dSLiam Girdwood 
7853e0c72dSLiam Girdwood 	uint16_t frame_pulse_width;
7953e0c72dSLiam Girdwood 	uint16_t tdm_per_slot_padding_flag;
8053e0c72dSLiam Girdwood 	uint32_t clks_control;
8153e0c72dSLiam Girdwood 	uint32_t quirks;
826298b787SJanusz Jankowski 	uint32_t bclk_delay;	/* guaranteed time (ms) for which BCLK
836298b787SJanusz Jankowski 				 * will be driven, before sending data
846298b787SJanusz Jankowski 				 */
8553e0c72dSLiam Girdwood } __packed;
8653e0c72dSLiam Girdwood 
8753e0c72dSLiam Girdwood /* HDA Configuration Request - SOF_IPC_DAI_HDA_CONFIG */
8853e0c72dSLiam Girdwood struct sof_ipc_dai_hda_params {
8953e0c72dSLiam Girdwood 	struct sof_ipc_hdr hdr;
9053e0c72dSLiam Girdwood 	uint32_t link_dma_ch;
91*18aaab64SBard Liao 	uint32_t rate;
92*18aaab64SBard Liao 	uint32_t channels;
9353e0c72dSLiam Girdwood } __packed;
9453e0c72dSLiam Girdwood 
95f8e25018SPierre-Louis Bossart /* ALH Configuration Request - SOF_IPC_DAI_ALH_CONFIG */
96f8e25018SPierre-Louis Bossart struct sof_ipc_dai_alh_params {
97f8e25018SPierre-Louis Bossart 	struct sof_ipc_hdr hdr;
98f8e25018SPierre-Louis Bossart 	uint32_t stream_id;
991f846505SBard Liao 	uint32_t rate;
1001f846505SBard Liao 	uint32_t channels;
101f8e25018SPierre-Louis Bossart 
102f8e25018SPierre-Louis Bossart 	/* reserved for future use */
1031f846505SBard Liao 	uint32_t reserved[13];
104f8e25018SPierre-Louis Bossart } __packed;
105f8e25018SPierre-Louis Bossart 
10653e0c72dSLiam Girdwood /* DMIC Configuration Request - SOF_IPC_DAI_DMIC_CONFIG */
10753e0c72dSLiam Girdwood 
10853e0c72dSLiam Girdwood /* This struct is defined per 2ch PDM controller available in the platform.
10953e0c72dSLiam Girdwood  * Normally it is sufficient to set the used microphone specific enables to 1
11053e0c72dSLiam Girdwood  * and keep other parameters as zero. The customizations are:
11153e0c72dSLiam Girdwood  *
11253e0c72dSLiam Girdwood  * 1. If a device mixes different microphones types with different polarity
11353e0c72dSLiam Girdwood  * and/or the absolute polarity matters the PCM signal from a microphone
11453e0c72dSLiam Girdwood  * can be inverted with the controls.
11553e0c72dSLiam Girdwood  *
11653e0c72dSLiam Girdwood  * 2. If the microphones in a stereo pair do not appear in captured stream
11753e0c72dSLiam Girdwood  * in desired order due to board schematics choises they can be swapped with
11853e0c72dSLiam Girdwood  * the clk_edge parameter.
11953e0c72dSLiam Girdwood  *
12053e0c72dSLiam Girdwood  * 3. If PDM bit errors are seen in capture (poor quality) the skew parameter
12153e0c72dSLiam Girdwood  * that delays the sampling time of data by half cycles of DMIC source clock
12253e0c72dSLiam Girdwood  * can be tried for improvement. However there is no guarantee for this to fix
12353e0c72dSLiam Girdwood  * data integrity problems.
12453e0c72dSLiam Girdwood  */
12553e0c72dSLiam Girdwood struct sof_ipc_dai_dmic_pdm_ctrl {
12653e0c72dSLiam Girdwood 	struct sof_ipc_hdr hdr;
12753e0c72dSLiam Girdwood 	uint16_t id;		/**< PDM controller ID */
12853e0c72dSLiam Girdwood 
12953e0c72dSLiam Girdwood 	uint16_t enable_mic_a;	/**< Use A (left) channel mic (0 or 1)*/
13053e0c72dSLiam Girdwood 	uint16_t enable_mic_b;	/**< Use B (right) channel mic (0 or 1)*/
13153e0c72dSLiam Girdwood 
13253e0c72dSLiam Girdwood 	uint16_t polarity_mic_a; /**< Optionally invert mic A signal (0 or 1) */
13353e0c72dSLiam Girdwood 	uint16_t polarity_mic_b; /**< Optionally invert mic B signal (0 or 1) */
13453e0c72dSLiam Girdwood 
13553e0c72dSLiam Girdwood 	uint16_t clk_edge;	/**< Optionally swap data clock edge (0 or 1) */
13653e0c72dSLiam Girdwood 	uint16_t skew;		/**< Adjust PDM data sampling vs. clock (0..15) */
13753e0c72dSLiam Girdwood 
13853e0c72dSLiam Girdwood 	uint16_t reserved[3];	/**< Make sure the total size is 4 bytes aligned */
13953e0c72dSLiam Girdwood } __packed;
14053e0c72dSLiam Girdwood 
14153e0c72dSLiam Girdwood /* This struct contains the global settings for all 2ch PDM controllers. The
14253e0c72dSLiam Girdwood  * version number used in configuration data is checked vs. version used by
14353e0c72dSLiam Girdwood  * device driver src/drivers/dmic.c need to match. It is incremented from
14453e0c72dSLiam Girdwood  * initial value 1 if updates done for the to driver would alter the operation
14579a4ff94SSeppo Ingalsuo  * of the microphone.
14653e0c72dSLiam Girdwood  *
14753e0c72dSLiam Girdwood  * Note: The microphone clock (pdmclk_min, pdmclk_max, duty_min, duty_max)
14853e0c72dSLiam Girdwood  * parameters need to be set as defined in microphone data sheet. E.g. clock
14953e0c72dSLiam Girdwood  * range 1.0 - 3.2 MHz is usually supported microphones. Some microphones are
15053e0c72dSLiam Girdwood  * multi-mode capable and there may be denied mic clock frequencies between
15153e0c72dSLiam Girdwood  * the modes. In such case set the clock range limits of the desired mode to
15253e0c72dSLiam Girdwood  * avoid the driver to set clock to an illegal rate.
15353e0c72dSLiam Girdwood  *
15453e0c72dSLiam Girdwood  * The duty cycle could be set to 48-52% if not known. Generally these
15553e0c72dSLiam Girdwood  * parameters can be altered within data sheet specified limits to match
15653e0c72dSLiam Girdwood  * required audio application performance power.
15753e0c72dSLiam Girdwood  *
15853e0c72dSLiam Girdwood  * The microphone clock needs to be usually about 50-80 times the used audio
15953e0c72dSLiam Girdwood  * sample rate. With highest sample rates above 48 kHz this can relaxed
16053e0c72dSLiam Girdwood  * somewhat.
16153e0c72dSLiam Girdwood  *
16253e0c72dSLiam Girdwood  * The parameter wake_up_time describes how long time the microphone needs
16353e0c72dSLiam Girdwood  * for the data line to produce valid output from mic clock start. The driver
16453e0c72dSLiam Girdwood  * will mute the captured audio for the given time. The min_clock_on_time
16553e0c72dSLiam Girdwood  * parameter is used to prevent too short clock bursts to happen. The driver
16653e0c72dSLiam Girdwood  * will keep the clock active after capture stop if this time is not yet
16753e0c72dSLiam Girdwood  * met. The unit for both is microseconds (us). Exceed of 100 ms will be
16853e0c72dSLiam Girdwood  * treated as an error.
16953e0c72dSLiam Girdwood  */
17053e0c72dSLiam Girdwood struct sof_ipc_dai_dmic_params {
17153e0c72dSLiam Girdwood 	struct sof_ipc_hdr hdr;
17253e0c72dSLiam Girdwood 	uint32_t driver_ipc_version;	/**< Version (1..N) */
17353e0c72dSLiam Girdwood 
17453e0c72dSLiam Girdwood 	uint32_t pdmclk_min;	/**< Minimum microphone clock in Hz (100000..N) */
17553e0c72dSLiam Girdwood 	uint32_t pdmclk_max;	/**< Maximum microphone clock in Hz (min...N) */
17653e0c72dSLiam Girdwood 
17753e0c72dSLiam Girdwood 	uint32_t fifo_fs;	/**< FIFO sample rate in Hz (8000..96000) */
17853e0c72dSLiam Girdwood 	uint32_t reserved_1;	/**< Reserved */
17953e0c72dSLiam Girdwood 	uint16_t fifo_bits;	/**< FIFO word length (16 or 32) */
1801993ba26SSeppo Ingalsuo 	uint16_t fifo_bits_b;	/**< Deprecated since firmware ABI 3.0.1 */
18153e0c72dSLiam Girdwood 
18253e0c72dSLiam Girdwood 	uint16_t duty_min;	/**< Min. mic clock duty cycle in % (20..80) */
18353e0c72dSLiam Girdwood 	uint16_t duty_max;	/**< Max. mic clock duty cycle in % (min..80) */
18453e0c72dSLiam Girdwood 
18531be5337SSeppo Ingalsuo 	uint32_t num_pdm_active; /**< Number of active pdm controllers. */
18631be5337SSeppo Ingalsuo 				 /**< Range is 1..SOF_DAI_INTEL_DMIC_NUM_CTRL */
18753e0c72dSLiam Girdwood 
18853e0c72dSLiam Girdwood 	uint32_t wake_up_time;      /**< Time from clock start to data (us) */
18953e0c72dSLiam Girdwood 	uint32_t min_clock_on_time; /**< Min. time that clk is kept on (us) */
1907df43911SSeppo Ingalsuo 	uint32_t unmute_ramp_time;  /**< Length of logarithmic gain ramp (ms) */
19153e0c72dSLiam Girdwood 
19253e0c72dSLiam Girdwood 	/* reserved for future use */
1937df43911SSeppo Ingalsuo 	uint32_t reserved[5];
19453e0c72dSLiam Girdwood 
19531be5337SSeppo Ingalsuo 	/**< PDM controllers configuration */
19631be5337SSeppo Ingalsuo 	struct sof_ipc_dai_dmic_pdm_ctrl pdm[SOF_DAI_INTEL_DMIC_NUM_CTRL];
19753e0c72dSLiam Girdwood } __packed;
19853e0c72dSLiam Girdwood 
19953e0c72dSLiam Girdwood #endif
200