1*dc3bf49eSMasahiro 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 5253e0c72dSLiam Girdwood /* SSP Configuration Request - SOF_IPC_DAI_SSP_CONFIG */ 5353e0c72dSLiam Girdwood struct sof_ipc_dai_ssp_params { 5453e0c72dSLiam Girdwood struct sof_ipc_hdr hdr; 5553e0c72dSLiam Girdwood uint16_t reserved1; 5653e0c72dSLiam Girdwood uint16_t mclk_id; 5753e0c72dSLiam Girdwood 5853e0c72dSLiam Girdwood uint32_t mclk_rate; /* mclk frequency in Hz */ 5953e0c72dSLiam Girdwood uint32_t fsync_rate; /* fsync frequency in Hz */ 6053e0c72dSLiam Girdwood uint32_t bclk_rate; /* bclk frequency in Hz */ 6153e0c72dSLiam Girdwood 6253e0c72dSLiam Girdwood /* TDM */ 6353e0c72dSLiam Girdwood uint32_t tdm_slots; 6453e0c72dSLiam Girdwood uint32_t rx_slots; 6553e0c72dSLiam Girdwood uint32_t tx_slots; 6653e0c72dSLiam Girdwood 6753e0c72dSLiam Girdwood /* data */ 6853e0c72dSLiam Girdwood uint32_t sample_valid_bits; 6953e0c72dSLiam Girdwood uint16_t tdm_slot_width; 7053e0c72dSLiam Girdwood uint16_t reserved2; /* alignment */ 7153e0c72dSLiam Girdwood 7253e0c72dSLiam Girdwood /* MCLK */ 7353e0c72dSLiam Girdwood uint32_t mclk_direction; 7453e0c72dSLiam Girdwood 7553e0c72dSLiam Girdwood uint16_t frame_pulse_width; 7653e0c72dSLiam Girdwood uint16_t tdm_per_slot_padding_flag; 7753e0c72dSLiam Girdwood uint32_t clks_control; 7853e0c72dSLiam Girdwood uint32_t quirks; 7953e0c72dSLiam Girdwood } __packed; 8053e0c72dSLiam Girdwood 8153e0c72dSLiam Girdwood /* HDA Configuration Request - SOF_IPC_DAI_HDA_CONFIG */ 8253e0c72dSLiam Girdwood struct sof_ipc_dai_hda_params { 8353e0c72dSLiam Girdwood struct sof_ipc_hdr hdr; 8453e0c72dSLiam Girdwood uint32_t link_dma_ch; 8553e0c72dSLiam Girdwood } __packed; 8653e0c72dSLiam Girdwood 8753e0c72dSLiam Girdwood /* DMIC Configuration Request - SOF_IPC_DAI_DMIC_CONFIG */ 8853e0c72dSLiam Girdwood 8953e0c72dSLiam Girdwood /* This struct is defined per 2ch PDM controller available in the platform. 9053e0c72dSLiam Girdwood * Normally it is sufficient to set the used microphone specific enables to 1 9153e0c72dSLiam Girdwood * and keep other parameters as zero. The customizations are: 9253e0c72dSLiam Girdwood * 9353e0c72dSLiam Girdwood * 1. If a device mixes different microphones types with different polarity 9453e0c72dSLiam Girdwood * and/or the absolute polarity matters the PCM signal from a microphone 9553e0c72dSLiam Girdwood * can be inverted with the controls. 9653e0c72dSLiam Girdwood * 9753e0c72dSLiam Girdwood * 2. If the microphones in a stereo pair do not appear in captured stream 9853e0c72dSLiam Girdwood * in desired order due to board schematics choises they can be swapped with 9953e0c72dSLiam Girdwood * the clk_edge parameter. 10053e0c72dSLiam Girdwood * 10153e0c72dSLiam Girdwood * 3. If PDM bit errors are seen in capture (poor quality) the skew parameter 10253e0c72dSLiam Girdwood * that delays the sampling time of data by half cycles of DMIC source clock 10353e0c72dSLiam Girdwood * can be tried for improvement. However there is no guarantee for this to fix 10453e0c72dSLiam Girdwood * data integrity problems. 10553e0c72dSLiam Girdwood */ 10653e0c72dSLiam Girdwood struct sof_ipc_dai_dmic_pdm_ctrl { 10753e0c72dSLiam Girdwood struct sof_ipc_hdr hdr; 10853e0c72dSLiam Girdwood uint16_t id; /**< PDM controller ID */ 10953e0c72dSLiam Girdwood 11053e0c72dSLiam Girdwood uint16_t enable_mic_a; /**< Use A (left) channel mic (0 or 1)*/ 11153e0c72dSLiam Girdwood uint16_t enable_mic_b; /**< Use B (right) channel mic (0 or 1)*/ 11253e0c72dSLiam Girdwood 11353e0c72dSLiam Girdwood uint16_t polarity_mic_a; /**< Optionally invert mic A signal (0 or 1) */ 11453e0c72dSLiam Girdwood uint16_t polarity_mic_b; /**< Optionally invert mic B signal (0 or 1) */ 11553e0c72dSLiam Girdwood 11653e0c72dSLiam Girdwood uint16_t clk_edge; /**< Optionally swap data clock edge (0 or 1) */ 11753e0c72dSLiam Girdwood uint16_t skew; /**< Adjust PDM data sampling vs. clock (0..15) */ 11853e0c72dSLiam Girdwood 11953e0c72dSLiam Girdwood uint16_t reserved[3]; /**< Make sure the total size is 4 bytes aligned */ 12053e0c72dSLiam Girdwood } __packed; 12153e0c72dSLiam Girdwood 12253e0c72dSLiam Girdwood /* This struct contains the global settings for all 2ch PDM controllers. The 12353e0c72dSLiam Girdwood * version number used in configuration data is checked vs. version used by 12453e0c72dSLiam Girdwood * device driver src/drivers/dmic.c need to match. It is incremented from 12553e0c72dSLiam Girdwood * initial value 1 if updates done for the to driver would alter the operation 12653e0c72dSLiam Girdwood * of the microhone. 12753e0c72dSLiam Girdwood * 12853e0c72dSLiam Girdwood * Note: The microphone clock (pdmclk_min, pdmclk_max, duty_min, duty_max) 12953e0c72dSLiam Girdwood * parameters need to be set as defined in microphone data sheet. E.g. clock 13053e0c72dSLiam Girdwood * range 1.0 - 3.2 MHz is usually supported microphones. Some microphones are 13153e0c72dSLiam Girdwood * multi-mode capable and there may be denied mic clock frequencies between 13253e0c72dSLiam Girdwood * the modes. In such case set the clock range limits of the desired mode to 13353e0c72dSLiam Girdwood * avoid the driver to set clock to an illegal rate. 13453e0c72dSLiam Girdwood * 13553e0c72dSLiam Girdwood * The duty cycle could be set to 48-52% if not known. Generally these 13653e0c72dSLiam Girdwood * parameters can be altered within data sheet specified limits to match 13753e0c72dSLiam Girdwood * required audio application performance power. 13853e0c72dSLiam Girdwood * 13953e0c72dSLiam Girdwood * The microphone clock needs to be usually about 50-80 times the used audio 14053e0c72dSLiam Girdwood * sample rate. With highest sample rates above 48 kHz this can relaxed 14153e0c72dSLiam Girdwood * somewhat. 14253e0c72dSLiam Girdwood * 14353e0c72dSLiam Girdwood * The parameter wake_up_time describes how long time the microphone needs 14453e0c72dSLiam Girdwood * for the data line to produce valid output from mic clock start. The driver 14553e0c72dSLiam Girdwood * will mute the captured audio for the given time. The min_clock_on_time 14653e0c72dSLiam Girdwood * parameter is used to prevent too short clock bursts to happen. The driver 14753e0c72dSLiam Girdwood * will keep the clock active after capture stop if this time is not yet 14853e0c72dSLiam Girdwood * met. The unit for both is microseconds (us). Exceed of 100 ms will be 14953e0c72dSLiam Girdwood * treated as an error. 15053e0c72dSLiam Girdwood */ 15153e0c72dSLiam Girdwood struct sof_ipc_dai_dmic_params { 15253e0c72dSLiam Girdwood struct sof_ipc_hdr hdr; 15353e0c72dSLiam Girdwood uint32_t driver_ipc_version; /**< Version (1..N) */ 15453e0c72dSLiam Girdwood 15553e0c72dSLiam Girdwood uint32_t pdmclk_min; /**< Minimum microphone clock in Hz (100000..N) */ 15653e0c72dSLiam Girdwood uint32_t pdmclk_max; /**< Maximum microphone clock in Hz (min...N) */ 15753e0c72dSLiam Girdwood 15853e0c72dSLiam Girdwood uint32_t fifo_fs; /**< FIFO sample rate in Hz (8000..96000) */ 15953e0c72dSLiam Girdwood uint32_t reserved_1; /**< Reserved */ 16053e0c72dSLiam Girdwood uint16_t fifo_bits; /**< FIFO word length (16 or 32) */ 16153e0c72dSLiam Girdwood uint16_t reserved_2; /**< Reserved */ 16253e0c72dSLiam Girdwood 16353e0c72dSLiam Girdwood uint16_t duty_min; /**< Min. mic clock duty cycle in % (20..80) */ 16453e0c72dSLiam Girdwood uint16_t duty_max; /**< Max. mic clock duty cycle in % (min..80) */ 16553e0c72dSLiam Girdwood 16653e0c72dSLiam Girdwood uint32_t num_pdm_active; /**< Number of active pdm controllers */ 16753e0c72dSLiam Girdwood 16853e0c72dSLiam Girdwood uint32_t wake_up_time; /**< Time from clock start to data (us) */ 16953e0c72dSLiam Girdwood uint32_t min_clock_on_time; /**< Min. time that clk is kept on (us) */ 1707df43911SSeppo Ingalsuo uint32_t unmute_ramp_time; /**< Length of logarithmic gain ramp (ms) */ 17153e0c72dSLiam Girdwood 17253e0c72dSLiam Girdwood /* reserved for future use */ 1737df43911SSeppo Ingalsuo uint32_t reserved[5]; 17453e0c72dSLiam Girdwood 17553e0c72dSLiam Girdwood /**< variable number of pdm controller config */ 17653e0c72dSLiam Girdwood struct sof_ipc_dai_dmic_pdm_ctrl pdm[0]; 17753e0c72dSLiam Girdwood } __packed; 17853e0c72dSLiam Girdwood 17953e0c72dSLiam Girdwood #endif 180