mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
107:4f6c30876dfa
Release 122 of the mbed library

Changes:
- new targets - Nucleo L432KC, Beetle, Nucleo F446ZE, Nucleo L011K4
- Thread safety addition - mbed API should contain a statement about thread safety
- critical section API addition
- CAS API (core_util_atomic_incr/decr)
- DEVICE_ are generated from targets.json file, device.h deprecated
- Callback replaces FunctionPointer to provide std like interface
- mbed HAL API docs improvements
- toolchain - prexif attributes with MBED_
- add new attributes - packed, weak, forcedinline, align
- target.json - contains targets definitions
- ST - L1XX - Cube update to 1.5
- SPI clock selection fix (clock from APB domain)
- F7 - Cube update v1.4.0
- L0 - baudrate init fix
- L1 - Cube update v1.5
- F3 - baudrate init fix, 3 targets CAN support
- F4 - Cube update v1.12.0, 3 targets CAN support
- L4XX - Cube update v1.5.1
- F0 - update Cube to v1.5.0
- L4 - 2 targets (L476RG/VG) CAN support
- NXP - pwm clock fix for KSDK2 MCU
- LPC2368 - remove ARM toolchain support - due to regression
- KSDK2 - fix SPI , I2C address and repeat start
- Silabs - some fixes backported from mbed 3
- Renesas - RZ_A1H - SystemCoreClockUpdate addition

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 107:4f6c30876dfa 1 /**
Kojto 107:4f6c30876dfa 2 ******************************************************************************
Kojto 107:4f6c30876dfa 3 * @file stm32l4xx_hal_sai.h
Kojto 107:4f6c30876dfa 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.5.1
Kojto 122:f9eeca106725 6 * @date 31-May-2016
Kojto 107:4f6c30876dfa 7 * @brief Header file of SAI HAL module.
Kojto 107:4f6c30876dfa 8 ******************************************************************************
Kojto 107:4f6c30876dfa 9 * @attention
Kojto 107:4f6c30876dfa 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
Kojto 107:4f6c30876dfa 12 *
Kojto 107:4f6c30876dfa 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 107:4f6c30876dfa 14 * are permitted provided that the following conditions are met:
Kojto 107:4f6c30876dfa 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 107:4f6c30876dfa 16 * this list of conditions and the following disclaimer.
Kojto 107:4f6c30876dfa 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 107:4f6c30876dfa 18 * this list of conditions and the following disclaimer in the documentation
Kojto 107:4f6c30876dfa 19 * and/or other materials provided with the distribution.
Kojto 107:4f6c30876dfa 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 107:4f6c30876dfa 21 * may be used to endorse or promote products derived from this software
Kojto 107:4f6c30876dfa 22 * without specific prior written permission.
Kojto 107:4f6c30876dfa 23 *
Kojto 107:4f6c30876dfa 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 107:4f6c30876dfa 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 107:4f6c30876dfa 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 107:4f6c30876dfa 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 107:4f6c30876dfa 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 107:4f6c30876dfa 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 107:4f6c30876dfa 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 107:4f6c30876dfa 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 107:4f6c30876dfa 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 107:4f6c30876dfa 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 107:4f6c30876dfa 34 *
Kojto 107:4f6c30876dfa 35 ******************************************************************************
Kojto 122:f9eeca106725 36 */
Kojto 107:4f6c30876dfa 37
Kojto 107:4f6c30876dfa 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 107:4f6c30876dfa 39 #ifndef __STM32L4xx_HAL_SAI_H
Kojto 107:4f6c30876dfa 40 #define __STM32L4xx_HAL_SAI_H
Kojto 107:4f6c30876dfa 41
Kojto 107:4f6c30876dfa 42 #ifdef __cplusplus
Kojto 107:4f6c30876dfa 43 extern "C" {
Kojto 107:4f6c30876dfa 44 #endif
Kojto 107:4f6c30876dfa 45
Kojto 107:4f6c30876dfa 46 /* Includes ------------------------------------------------------------------*/
Kojto 122:f9eeca106725 47 #include "stm32l4xx_hal_def.h"
Kojto 107:4f6c30876dfa 48
Kojto 107:4f6c30876dfa 49 /** @addtogroup STM32L4xx_HAL_Driver
Kojto 107:4f6c30876dfa 50 * @{
Kojto 107:4f6c30876dfa 51 */
Kojto 107:4f6c30876dfa 52
Kojto 107:4f6c30876dfa 53 /** @addtogroup SAI
Kojto 107:4f6c30876dfa 54 * @{
Kojto 122:f9eeca106725 55 */
Kojto 122:f9eeca106725 56
Kojto 122:f9eeca106725 57 /* Exported types ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 58 /** @defgroup SAI_Exported_Types SAI Exported Types
Kojto 107:4f6c30876dfa 59 * @{
Kojto 107:4f6c30876dfa 60 */
Kojto 107:4f6c30876dfa 61
Kojto 107:4f6c30876dfa 62 /**
Kojto 122:f9eeca106725 63 * @brief HAL State structures definition
Kojto 107:4f6c30876dfa 64 */
Kojto 122:f9eeca106725 65 typedef enum
Kojto 122:f9eeca106725 66 {
Kojto 122:f9eeca106725 67 HAL_SAI_STATE_RESET = 0x00U, /*!< SAI not yet initialized or disabled */
Kojto 122:f9eeca106725 68 HAL_SAI_STATE_READY = 0x01U, /*!< SAI initialized and ready for use */
Kojto 122:f9eeca106725 69 HAL_SAI_STATE_BUSY = 0x02U, /*!< SAI internal process is ongoing */
Kojto 122:f9eeca106725 70 HAL_SAI_STATE_BUSY_TX = 0x12U, /*!< Data transmission process is ongoing */
Kojto 122:f9eeca106725 71 HAL_SAI_STATE_BUSY_RX = 0x22U, /*!< Data reception process is ongoing */
Kojto 122:f9eeca106725 72 }HAL_SAI_StateTypeDef;
Kojto 107:4f6c30876dfa 73
Kojto 107:4f6c30876dfa 74 /**
Kojto 122:f9eeca106725 75 * @brief SAI Callback prototype
Kojto 107:4f6c30876dfa 76 */
Kojto 122:f9eeca106725 77 typedef void (*SAIcallback)(void);
Kojto 107:4f6c30876dfa 78
Kojto 107:4f6c30876dfa 79 /** @defgroup SAI_Init_Structure_definition SAI Init Structure definition
Kojto 107:4f6c30876dfa 80 * @brief SAI Init Structure definition
Kojto 107:4f6c30876dfa 81 * @{
Kojto 107:4f6c30876dfa 82 */
Kojto 107:4f6c30876dfa 83 typedef struct
Kojto 107:4f6c30876dfa 84 {
Kojto 122:f9eeca106725 85 uint32_t AudioMode; /*!< Specifies the SAI Block audio Mode.
Kojto 122:f9eeca106725 86 This parameter can be a value of @ref SAI_Block_Mode */
Kojto 107:4f6c30876dfa 87
Kojto 107:4f6c30876dfa 88 uint32_t Synchro; /*!< Specifies SAI Block synchronization
Kojto 122:f9eeca106725 89 This parameter can be a value of @ref SAI_Block_Synchronization */
Kojto 122:f9eeca106725 90
Kojto 122:f9eeca106725 91 uint32_t SynchroExt; /*!< Specifies SAI external output synchronization, this setup is common
Kojto 122:f9eeca106725 92 for BlockA and BlockB
Kojto 122:f9eeca106725 93 This parameter can be a value of @ref SAI_Block_SyncExt
Kojto 122:f9eeca106725 94 @note: If both audio blocks of same SAI are used, this parameter has
Kojto 122:f9eeca106725 95 to be set to the same value for each audio block */
Kojto 107:4f6c30876dfa 96
Kojto 107:4f6c30876dfa 97 uint32_t OutputDrive; /*!< Specifies when SAI Block outputs are driven.
Kojto 107:4f6c30876dfa 98 This parameter can be a value of @ref SAI_Block_Output_Drive
Kojto 122:f9eeca106725 99 @note this value has to be set before enabling the audio block
Kojto 122:f9eeca106725 100 but after the audio block configuration. */
Kojto 107:4f6c30876dfa 101
Kojto 107:4f6c30876dfa 102 uint32_t NoDivider; /*!< Specifies whether master clock will be divided or not.
Kojto 107:4f6c30876dfa 103 This parameter can be a value of @ref SAI_Block_NoDivider
Kojto 122:f9eeca106725 104 @note: If bit NODIV in the SAI_xCR1 register is cleared, the frame length
Kojto 107:4f6c30876dfa 105 should be aligned to a number equal to a power of 2, from 8 to 256.
Kojto 122:f9eeca106725 106 If bit NODIV in the SAI_xCR1 register is set, the frame length can
Kojto 122:f9eeca106725 107 take any of the values without constraint since the input clock of
Kojto 107:4f6c30876dfa 108 the audio block should be equal to the bit clock.
Kojto 122:f9eeca106725 109 There is no MCLK_x clock which can be output. */
Kojto 122:f9eeca106725 110
Kojto 107:4f6c30876dfa 111 uint32_t FIFOThreshold; /*!< Specifies SAI Block FIFO threshold.
Kojto 122:f9eeca106725 112 This parameter can be a value of @ref SAI_Block_Fifo_Threshold */
Kojto 107:4f6c30876dfa 113
Kojto 122:f9eeca106725 114 uint32_t AudioFrequency; /*!< Specifies the audio frequency sampling.
Kojto 122:f9eeca106725 115 This parameter can be a value of @ref SAI_Audio_Frequency */
Kojto 107:4f6c30876dfa 116
Kojto 122:f9eeca106725 117 uint32_t Mckdiv; /*!< Specifies the master clock divider, the parameter will be used if for
Kojto 122:f9eeca106725 118 AudioFrequency the user choice
Kojto 122:f9eeca106725 119 This parameter must be a number between Min_Data = 0 and Max_Data = 15 */
Kojto 122:f9eeca106725 120
Kojto 122:f9eeca106725 121 uint32_t MonoStereoMode; /*!< Specifies if the mono or stereo mode is selected.
Kojto 122:f9eeca106725 122 This parameter can be a value of @ref SAI_Mono_Stereo_Mode */
Kojto 107:4f6c30876dfa 123
Kojto 122:f9eeca106725 124 uint32_t CompandingMode; /*!< Specifies the companding mode type.
Kojto 122:f9eeca106725 125 This parameter can be a value of @ref SAI_Block_Companding_Mode */
Kojto 122:f9eeca106725 126
Kojto 122:f9eeca106725 127 uint32_t TriState; /*!< Specifies the companding mode type.
Kojto 122:f9eeca106725 128 This parameter can be a value of @ref SAI_TRIState_Management */
Kojto 122:f9eeca106725 129
Kojto 122:f9eeca106725 130 /* This part of the structure is automatically filled if your are using the high level initialisation
Kojto 122:f9eeca106725 131 function HAL_SAI_InitProtocol */
Kojto 107:4f6c30876dfa 132
Kojto 107:4f6c30876dfa 133 uint32_t Protocol; /*!< Specifies the SAI Block protocol.
Kojto 122:f9eeca106725 134 This parameter can be a value of @ref SAI_Block_Protocol */
Kojto 107:4f6c30876dfa 135
Kojto 107:4f6c30876dfa 136 uint32_t DataSize; /*!< Specifies the SAI Block data size.
Kojto 122:f9eeca106725 137 This parameter can be a value of @ref SAI_Block_Data_Size */
Kojto 107:4f6c30876dfa 138
Kojto 107:4f6c30876dfa 139 uint32_t FirstBit; /*!< Specifies whether data transfers start from MSB or LSB bit.
Kojto 107:4f6c30876dfa 140 This parameter can be a value of @ref SAI_Block_MSB_LSB_transmission */
Kojto 107:4f6c30876dfa 141
Kojto 107:4f6c30876dfa 142 uint32_t ClockStrobing; /*!< Specifies the SAI Block clock strobing edge sensitivity.
Kojto 122:f9eeca106725 143 This parameter can be a value of @ref SAI_Block_Clock_Strobing */
Kojto 107:4f6c30876dfa 144 }SAI_InitTypeDef;
Kojto 122:f9eeca106725 145 /**
Kojto 107:4f6c30876dfa 146 * @}
Kojto 107:4f6c30876dfa 147 */
Kojto 107:4f6c30876dfa 148
Kojto 107:4f6c30876dfa 149 /** @defgroup SAI_Frame_Structure_definition SAI Frame Structure definition
Kojto 107:4f6c30876dfa 150 * @brief SAI Frame Init structure definition
Kojto 107:4f6c30876dfa 151 * @{
Kojto 107:4f6c30876dfa 152 */
Kojto 107:4f6c30876dfa 153 typedef struct
Kojto 107:4f6c30876dfa 154 {
Kojto 107:4f6c30876dfa 155
Kojto 122:f9eeca106725 156 uint32_t FrameLength; /*!< Specifies the Frame length, the number of SCK clocks for each audio frame.
Kojto 122:f9eeca106725 157 This parameter must be a number between Min_Data = 8 and Max_Data = 256.
Kojto 122:f9eeca106725 158 @note: If master clock MCLK_x pin is declared as an output, the frame length
Kojto 122:f9eeca106725 159 should be aligned to a number equal to power of 2 in order to keep
Kojto 122:f9eeca106725 160 in an audio frame, an integer number of MCLK pulses by bit Clock. */
Kojto 122:f9eeca106725 161
Kojto 107:4f6c30876dfa 162 uint32_t ActiveFrameLength; /*!< Specifies the Frame synchronization active level length.
Kojto 122:f9eeca106725 163 This Parameter specifies the length in number of bit clock (SCK + 1)
Kojto 107:4f6c30876dfa 164 of the active level of FS signal in audio frame.
Kojto 122:f9eeca106725 165 This parameter must be a number between Min_Data = 1 and Max_Data = 128 */
Kojto 122:f9eeca106725 166
Kojto 107:4f6c30876dfa 167 uint32_t FSDefinition; /*!< Specifies the Frame synchronization definition.
Kojto 122:f9eeca106725 168 This parameter can be a value of @ref SAI_Block_FS_Definition */
Kojto 122:f9eeca106725 169
Kojto 107:4f6c30876dfa 170 uint32_t FSPolarity; /*!< Specifies the Frame synchronization Polarity.
Kojto 122:f9eeca106725 171 This parameter can be a value of @ref SAI_Block_FS_Polarity */
Kojto 107:4f6c30876dfa 172
Kojto 107:4f6c30876dfa 173 uint32_t FSOffset; /*!< Specifies the Frame synchronization Offset.
Kojto 122:f9eeca106725 174 This parameter can be a value of @ref SAI_Block_FS_Offset */
Kojto 107:4f6c30876dfa 175
Kojto 107:4f6c30876dfa 176 }SAI_FrameInitTypeDef;
Kojto 122:f9eeca106725 177 /**
Kojto 107:4f6c30876dfa 178 * @}
Kojto 107:4f6c30876dfa 179 */
Kojto 107:4f6c30876dfa 180
Kojto 107:4f6c30876dfa 181 /** @defgroup SAI_Slot_Structure_definition SAI Slot Structure definition
Kojto 107:4f6c30876dfa 182 * @brief SAI Block Slot Init Structure definition
Kojto 107:4f6c30876dfa 183 * @{
Kojto 122:f9eeca106725 184 */
Kojto 107:4f6c30876dfa 185 typedef struct
Kojto 107:4f6c30876dfa 186 {
Kojto 107:4f6c30876dfa 187 uint32_t FirstBitOffset; /*!< Specifies the position of first data transfer bit in the slot.
Kojto 107:4f6c30876dfa 188 This parameter must be a number between Min_Data = 0 and Max_Data = 24 */
Kojto 107:4f6c30876dfa 189
Kojto 107:4f6c30876dfa 190 uint32_t SlotSize; /*!< Specifies the Slot Size.
Kojto 122:f9eeca106725 191 This parameter can be a value of @ref SAI_Block_Slot_Size */
Kojto 107:4f6c30876dfa 192
Kojto 107:4f6c30876dfa 193 uint32_t SlotNumber; /*!< Specifies the number of slot in the audio frame.
Kojto 107:4f6c30876dfa 194 This parameter must be a number between Min_Data = 1 and Max_Data = 16 */
Kojto 107:4f6c30876dfa 195
Kojto 107:4f6c30876dfa 196 uint32_t SlotActive; /*!< Specifies the slots in audio frame that will be activated.
Kojto 122:f9eeca106725 197 This parameter can be a value of @ref SAI_Block_Slot_Active */
Kojto 107:4f6c30876dfa 198 }SAI_SlotInitTypeDef;
Kojto 122:f9eeca106725 199 /**
Kojto 107:4f6c30876dfa 200 * @}
Kojto 107:4f6c30876dfa 201 */
Kojto 107:4f6c30876dfa 202
Kojto 107:4f6c30876dfa 203 /** @defgroup SAI_Handle_Structure_definition SAI Handle Structure definition
Kojto 122:f9eeca106725 204 * @brief SAI handle Structure definition
Kojto 107:4f6c30876dfa 205 * @{
Kojto 107:4f6c30876dfa 206 */
Kojto 107:4f6c30876dfa 207 typedef struct __SAI_HandleTypeDef
Kojto 107:4f6c30876dfa 208 {
Kojto 122:f9eeca106725 209 SAI_Block_TypeDef *Instance; /*!< SAI Blockx registers base address */
Kojto 107:4f6c30876dfa 210
Kojto 122:f9eeca106725 211 SAI_InitTypeDef Init; /*!< SAI communication parameters */
Kojto 107:4f6c30876dfa 212
Kojto 122:f9eeca106725 213 SAI_FrameInitTypeDef FrameInit; /*!< SAI Frame configuration parameters */
Kojto 107:4f6c30876dfa 214
Kojto 122:f9eeca106725 215 SAI_SlotInitTypeDef SlotInit; /*!< SAI Slot configuration parameters */
Kojto 122:f9eeca106725 216
Kojto 122:f9eeca106725 217 uint8_t *pBuffPtr; /*!< Pointer to SAI transfer Buffer */
Kojto 107:4f6c30876dfa 218
Kojto 122:f9eeca106725 219 uint16_t XferSize; /*!< SAI transfer size */
Kojto 107:4f6c30876dfa 220
Kojto 122:f9eeca106725 221 uint16_t XferCount; /*!< SAI transfer counter */
Kojto 107:4f6c30876dfa 222
Kojto 122:f9eeca106725 223 DMA_HandleTypeDef *hdmatx; /*!< SAI Tx DMA handle parameters */
Kojto 122:f9eeca106725 224
Kojto 122:f9eeca106725 225 DMA_HandleTypeDef *hdmarx; /*!< SAI Rx DMA handle parameters */
Kojto 107:4f6c30876dfa 226
Kojto 122:f9eeca106725 227 SAIcallback mutecallback; /*!< SAI mute callback */
Kojto 122:f9eeca106725 228
Kojto 122:f9eeca106725 229 void (*InterruptServiceRoutine)(struct __SAI_HandleTypeDef *hsai); /* function pointer for IRQ handler */
Kojto 107:4f6c30876dfa 230
Kojto 122:f9eeca106725 231 HAL_LockTypeDef Lock; /*!< SAI locking object */
Kojto 107:4f6c30876dfa 232
Kojto 122:f9eeca106725 233 __IO HAL_SAI_StateTypeDef State; /*!< SAI communication state */
Kojto 107:4f6c30876dfa 234
Kojto 122:f9eeca106725 235 __IO uint32_t ErrorCode; /*!< SAI Error code */
Kojto 107:4f6c30876dfa 236 }SAI_HandleTypeDef;
Kojto 122:f9eeca106725 237 /**
Kojto 107:4f6c30876dfa 238 * @}
Kojto 107:4f6c30876dfa 239 */
Kojto 107:4f6c30876dfa 240
Kojto 107:4f6c30876dfa 241 /**
Kojto 107:4f6c30876dfa 242 * @}
Kojto 107:4f6c30876dfa 243 */
Kojto 107:4f6c30876dfa 244
Kojto 107:4f6c30876dfa 245 /* Exported constants --------------------------------------------------------*/
Kojto 107:4f6c30876dfa 246
Kojto 107:4f6c30876dfa 247 /** @defgroup SAI_Exported_Constants SAI Exported Constants
Kojto 107:4f6c30876dfa 248 * @{
Kojto 107:4f6c30876dfa 249 */
Kojto 107:4f6c30876dfa 250
Kojto 122:f9eeca106725 251 /** @defgroup SAI_Error_Code SAI Error Code
Kojto 122:f9eeca106725 252 * @{
Kojto 122:f9eeca106725 253 */
Kojto 122:f9eeca106725 254 #define HAL_SAI_ERROR_NONE ((uint32_t)0x00000000U) /*!< No error */
Kojto 122:f9eeca106725 255 #define HAL_SAI_ERROR_OVR ((uint32_t)0x00000001U) /*!< Overrun Error */
Kojto 122:f9eeca106725 256 #define HAL_SAI_ERROR_UDR ((uint32_t)0x00000002U) /*!< Underrun error */
Kojto 122:f9eeca106725 257 #define HAL_SAI_ERROR_AFSDET ((uint32_t)0x00000004U) /*!< Anticipated Frame synchronisation detection */
Kojto 122:f9eeca106725 258 #define HAL_SAI_ERROR_LFSDET ((uint32_t)0x00000008U) /*!< Late Frame synchronisation detection */
Kojto 122:f9eeca106725 259 #define HAL_SAI_ERROR_CNREADY ((uint32_t)0x00000010U) /*!< codec not ready */
Kojto 122:f9eeca106725 260 #define HAL_SAI_ERROR_WCKCFG ((uint32_t)0x00000020U) /*!< Wrong clock configuration */
Kojto 122:f9eeca106725 261 #define HAL_SAI_ERROR_TIMEOUT ((uint32_t)0x00000040U) /*!< Timeout error */
Kojto 122:f9eeca106725 262 #define HAL_SAI_ERROR_DMA ((uint32_t)0x00000080U) /*!< DMA error */
Kojto 122:f9eeca106725 263 /**
Kojto 122:f9eeca106725 264 * @}
Kojto 122:f9eeca106725 265 */
Kojto 122:f9eeca106725 266
Kojto 122:f9eeca106725 267 /** @defgroup SAI_Block_SyncExt SAI External synchronisation
Kojto 107:4f6c30876dfa 268 * @{
Kojto 122:f9eeca106725 269 */
Kojto 122:f9eeca106725 270 #define SAI_SYNCEXT_DISABLE 0
Kojto 122:f9eeca106725 271 #define SAI_SYNCEXT_OUTBLOCKA_ENABLE 1
Kojto 122:f9eeca106725 272 #define SAI_SYNCEXT_OUTBLOCKB_ENABLE 2
Kojto 122:f9eeca106725 273 /**
Kojto 122:f9eeca106725 274 * @}
Kojto 122:f9eeca106725 275 */
Kojto 122:f9eeca106725 276
Kojto 122:f9eeca106725 277 /** @defgroup SAI_Protocol SAI Supported protocol
Kojto 122:f9eeca106725 278 * @{
Kojto 122:f9eeca106725 279 */
Kojto 122:f9eeca106725 280 #define SAI_I2S_STANDARD 0
Kojto 122:f9eeca106725 281 #define SAI_I2S_MSBJUSTIFIED 1
Kojto 122:f9eeca106725 282 #define SAI_I2S_LSBJUSTIFIED 2
Kojto 122:f9eeca106725 283 #define SAI_PCM_LONG 3
Kojto 122:f9eeca106725 284 #define SAI_PCM_SHORT 4
Kojto 122:f9eeca106725 285 /**
Kojto 122:f9eeca106725 286 * @}
Kojto 122:f9eeca106725 287 */
Kojto 122:f9eeca106725 288
Kojto 122:f9eeca106725 289 /** @defgroup SAI_Protocol_DataSize SAI protocol data size
Kojto 122:f9eeca106725 290 * @{
Kojto 122:f9eeca106725 291 */
Kojto 122:f9eeca106725 292 #define SAI_PROTOCOL_DATASIZE_16BIT 0
Kojto 122:f9eeca106725 293 #define SAI_PROTOCOL_DATASIZE_16BITEXTENDED 1
Kojto 122:f9eeca106725 294 #define SAI_PROTOCOL_DATASIZE_24BIT 2
Kojto 122:f9eeca106725 295 #define SAI_PROTOCOL_DATASIZE_32BIT 3
Kojto 107:4f6c30876dfa 296 /**
Kojto 107:4f6c30876dfa 297 * @}
Kojto 107:4f6c30876dfa 298 */
Kojto 107:4f6c30876dfa 299
Kojto 107:4f6c30876dfa 300 /** @defgroup SAI_Audio_Frequency SAI Audio Frequency
Kojto 107:4f6c30876dfa 301 * @{
Kojto 107:4f6c30876dfa 302 */
Kojto 122:f9eeca106725 303 #define SAI_AUDIO_FREQUENCY_192K ((uint32_t)192000U)
Kojto 122:f9eeca106725 304 #define SAI_AUDIO_FREQUENCY_96K ((uint32_t)96000U)
Kojto 122:f9eeca106725 305 #define SAI_AUDIO_FREQUENCY_48K ((uint32_t)48000U)
Kojto 122:f9eeca106725 306 #define SAI_AUDIO_FREQUENCY_44K ((uint32_t)44100U)
Kojto 122:f9eeca106725 307 #define SAI_AUDIO_FREQUENCY_32K ((uint32_t)32000U)
Kojto 122:f9eeca106725 308 #define SAI_AUDIO_FREQUENCY_22K ((uint32_t)22050U)
Kojto 122:f9eeca106725 309 #define SAI_AUDIO_FREQUENCY_16K ((uint32_t)16000U)
Kojto 122:f9eeca106725 310 #define SAI_AUDIO_FREQUENCY_11K ((uint32_t)11025U)
Kojto 122:f9eeca106725 311 #define SAI_AUDIO_FREQUENCY_8K ((uint32_t)8000U)
Kojto 122:f9eeca106725 312 #define SAI_AUDIO_FREQUENCY_MCKDIV ((uint32_t)0U)
Kojto 107:4f6c30876dfa 313 /**
Kojto 107:4f6c30876dfa 314 * @}
Kojto 107:4f6c30876dfa 315 */
Kojto 107:4f6c30876dfa 316
Kojto 107:4f6c30876dfa 317 /** @defgroup SAI_Block_Mode SAI Block Mode
Kojto 107:4f6c30876dfa 318 * @{
Kojto 107:4f6c30876dfa 319 */
Kojto 122:f9eeca106725 320 #define SAI_MODEMASTER_TX ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 321 #define SAI_MODEMASTER_RX ((uint32_t)SAI_xCR1_MODE_0)
Kojto 122:f9eeca106725 322 #define SAI_MODESLAVE_TX ((uint32_t)SAI_xCR1_MODE_1)
Kojto 122:f9eeca106725 323 #define SAI_MODESLAVE_RX ((uint32_t)(SAI_xCR1_MODE_1 | SAI_xCR1_MODE_0))
Kojto 107:4f6c30876dfa 324
Kojto 107:4f6c30876dfa 325 /**
Kojto 107:4f6c30876dfa 326 * @}
Kojto 107:4f6c30876dfa 327 */
Kojto 107:4f6c30876dfa 328
Kojto 107:4f6c30876dfa 329 /** @defgroup SAI_Block_Protocol SAI Block Protocol
Kojto 107:4f6c30876dfa 330 * @{
Kojto 107:4f6c30876dfa 331 */
Kojto 122:f9eeca106725 332 #define SAI_FREE_PROTOCOL ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 333 #define SAI_SPDIF_PROTOCOL ((uint32_t)SAI_xCR1_PRTCFG_0)
Kojto 122:f9eeca106725 334 #define SAI_AC97_PROTOCOL ((uint32_t)SAI_xCR1_PRTCFG_1)
Kojto 107:4f6c30876dfa 335 /**
Kojto 107:4f6c30876dfa 336 * @}
Kojto 107:4f6c30876dfa 337 */
Kojto 107:4f6c30876dfa 338
Kojto 107:4f6c30876dfa 339 /** @defgroup SAI_Block_Data_Size SAI Block Data Size
Kojto 107:4f6c30876dfa 340 * @{
Kojto 107:4f6c30876dfa 341 */
Kojto 122:f9eeca106725 342 #define SAI_DATASIZE_8 ((uint32_t)SAI_xCR1_DS_1)
Kojto 122:f9eeca106725 343 #define SAI_DATASIZE_10 ((uint32_t)(SAI_xCR1_DS_1 | SAI_xCR1_DS_0))
Kojto 122:f9eeca106725 344 #define SAI_DATASIZE_16 ((uint32_t)SAI_xCR1_DS_2)
Kojto 122:f9eeca106725 345 #define SAI_DATASIZE_20 ((uint32_t)(SAI_xCR1_DS_2 | SAI_xCR1_DS_0))
Kojto 122:f9eeca106725 346 #define SAI_DATASIZE_24 ((uint32_t)(SAI_xCR1_DS_2 | SAI_xCR1_DS_1))
Kojto 122:f9eeca106725 347 #define SAI_DATASIZE_32 ((uint32_t)(SAI_xCR1_DS_2 | SAI_xCR1_DS_1 | SAI_xCR1_DS_0))
Kojto 107:4f6c30876dfa 348 /**
Kojto 107:4f6c30876dfa 349 * @}
Kojto 122:f9eeca106725 350 */
Kojto 107:4f6c30876dfa 351
Kojto 122:f9eeca106725 352 /** @defgroup SAI_Block_MSB_LSB_transmission SAI Block MSB LSB transmission
Kojto 107:4f6c30876dfa 353 * @{
Kojto 107:4f6c30876dfa 354 */
Kojto 122:f9eeca106725 355 #define SAI_FIRSTBIT_MSB ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 356 #define SAI_FIRSTBIT_LSB ((uint32_t)SAI_xCR1_LSBFIRST)
Kojto 107:4f6c30876dfa 357 /**
Kojto 107:4f6c30876dfa 358 * @}
Kojto 107:4f6c30876dfa 359 */
Kojto 107:4f6c30876dfa 360
Kojto 107:4f6c30876dfa 361 /** @defgroup SAI_Block_Clock_Strobing SAI Block Clock Strobing
Kojto 107:4f6c30876dfa 362 * @{
Kojto 107:4f6c30876dfa 363 */
Kojto 122:f9eeca106725 364 #define SAI_CLOCKSTROBING_FALLINGEDGE 0
Kojto 122:f9eeca106725 365 #define SAI_CLOCKSTROBING_RISINGEDGE 1
Kojto 107:4f6c30876dfa 366 /**
Kojto 107:4f6c30876dfa 367 * @}
Kojto 107:4f6c30876dfa 368 */
Kojto 107:4f6c30876dfa 369
Kojto 107:4f6c30876dfa 370 /** @defgroup SAI_Block_Synchronization SAI Block Synchronization
Kojto 107:4f6c30876dfa 371 * @{
Kojto 107:4f6c30876dfa 372 */
Kojto 122:f9eeca106725 373 #define SAI_ASYNCHRONOUS 0 /*!< Asynchronous */
Kojto 122:f9eeca106725 374 #define SAI_SYNCHRONOUS 1 /*!< Synchronous with other block of same SAI */
Kojto 122:f9eeca106725 375 #define SAI_SYNCHRONOUS_EXT_SAI1 2 /*!< Synchronous with other SAI, SAI1 */
Kojto 122:f9eeca106725 376 #define SAI_SYNCHRONOUS_EXT_SAI2 3 /*!< Synchronous with other SAI, SAI2 */
Kojto 107:4f6c30876dfa 377 /**
Kojto 107:4f6c30876dfa 378 * @}
Kojto 107:4f6c30876dfa 379 */
Kojto 107:4f6c30876dfa 380
Kojto 122:f9eeca106725 381 /** @defgroup SAI_Block_Output_Drive SAI Block Output Drive
Kojto 107:4f6c30876dfa 382 * @{
Kojto 107:4f6c30876dfa 383 */
Kojto 122:f9eeca106725 384 #define SAI_OUTPUTDRIVE_DISABLE ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 385 #define SAI_OUTPUTDRIVE_ENABLE ((uint32_t)SAI_xCR1_OUTDRIV)
Kojto 107:4f6c30876dfa 386 /**
Kojto 107:4f6c30876dfa 387 * @}
Kojto 122:f9eeca106725 388 */
Kojto 107:4f6c30876dfa 389
Kojto 107:4f6c30876dfa 390 /** @defgroup SAI_Block_NoDivider SAI Block NoDivider
Kojto 107:4f6c30876dfa 391 * @{
Kojto 107:4f6c30876dfa 392 */
Kojto 122:f9eeca106725 393 #define SAI_MASTERDIVIDER_ENABLE ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 394 #define SAI_MASTERDIVIDER_DISABLE ((uint32_t)SAI_xCR1_NODIV)
Kojto 107:4f6c30876dfa 395 /**
Kojto 107:4f6c30876dfa 396 * @}
Kojto 107:4f6c30876dfa 397 */
Kojto 122:f9eeca106725 398
Kojto 107:4f6c30876dfa 399
Kojto 107:4f6c30876dfa 400 /** @defgroup SAI_Block_FS_Definition SAI Block FS Definition
Kojto 107:4f6c30876dfa 401 * @{
Kojto 107:4f6c30876dfa 402 */
Kojto 122:f9eeca106725 403 #define SAI_FS_STARTFRAME ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 404 #define SAI_FS_CHANNEL_IDENTIFICATION ((uint32_t)SAI_xFRCR_FSDEF)
Kojto 122:f9eeca106725 405 /**
Kojto 122:f9eeca106725 406 * @}
Kojto 122:f9eeca106725 407 */
Kojto 107:4f6c30876dfa 408
Kojto 122:f9eeca106725 409 /** @defgroup SAI_Block_FS_Polarity SAI Block FS Polarity
Kojto 122:f9eeca106725 410 * @{
Kojto 122:f9eeca106725 411 */
Kojto 122:f9eeca106725 412 #define SAI_FS_ACTIVE_LOW ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 413 #define SAI_FS_ACTIVE_HIGH ((uint32_t)SAI_xFRCR_FSPOL)
Kojto 107:4f6c30876dfa 414 /**
Kojto 107:4f6c30876dfa 415 * @}
Kojto 107:4f6c30876dfa 416 */
Kojto 107:4f6c30876dfa 417
Kojto 122:f9eeca106725 418 /** @defgroup SAI_Block_FS_Offset SAI Block FS Offset
Kojto 107:4f6c30876dfa 419 * @{
Kojto 107:4f6c30876dfa 420 */
Kojto 122:f9eeca106725 421 #define SAI_FS_FIRSTBIT ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 422 #define SAI_FS_BEFOREFIRSTBIT ((uint32_t)SAI_xFRCR_FSOFF)
Kojto 107:4f6c30876dfa 423 /**
Kojto 107:4f6c30876dfa 424 * @}
Kojto 107:4f6c30876dfa 425 */
Kojto 107:4f6c30876dfa 426
Kojto 107:4f6c30876dfa 427
Kojto 107:4f6c30876dfa 428 /** @defgroup SAI_Block_Slot_Size SAI Block Slot Size
Kojto 107:4f6c30876dfa 429 * @{
Kojto 107:4f6c30876dfa 430 */
Kojto 122:f9eeca106725 431 #define SAI_SLOTSIZE_DATASIZE ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 432 #define SAI_SLOTSIZE_16B ((uint32_t)SAI_xSLOTR_SLOTSZ_0)
Kojto 107:4f6c30876dfa 433 #define SAI_SLOTSIZE_32B ((uint32_t)SAI_xSLOTR_SLOTSZ_1)
Kojto 107:4f6c30876dfa 434 /**
Kojto 107:4f6c30876dfa 435 * @}
Kojto 107:4f6c30876dfa 436 */
Kojto 122:f9eeca106725 437
Kojto 107:4f6c30876dfa 438 /** @defgroup SAI_Block_Slot_Active SAI Block Slot Active
Kojto 107:4f6c30876dfa 439 * @{
Kojto 107:4f6c30876dfa 440 */
Kojto 122:f9eeca106725 441 #define SAI_SLOT_NOTACTIVE ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 442 #define SAI_SLOTACTIVE_0 ((uint32_t)0x00000001U)
Kojto 122:f9eeca106725 443 #define SAI_SLOTACTIVE_1 ((uint32_t)0x00000002U)
Kojto 122:f9eeca106725 444 #define SAI_SLOTACTIVE_2 ((uint32_t)0x00000004U)
Kojto 122:f9eeca106725 445 #define SAI_SLOTACTIVE_3 ((uint32_t)0x00000008U)
Kojto 122:f9eeca106725 446 #define SAI_SLOTACTIVE_4 ((uint32_t)0x00000010U)
Kojto 122:f9eeca106725 447 #define SAI_SLOTACTIVE_5 ((uint32_t)0x00000020U)
Kojto 122:f9eeca106725 448 #define SAI_SLOTACTIVE_6 ((uint32_t)0x00000040U)
Kojto 122:f9eeca106725 449 #define SAI_SLOTACTIVE_7 ((uint32_t)0x00000080U)
Kojto 122:f9eeca106725 450 #define SAI_SLOTACTIVE_8 ((uint32_t)0x00000100U)
Kojto 122:f9eeca106725 451 #define SAI_SLOTACTIVE_9 ((uint32_t)0x00000200U)
Kojto 122:f9eeca106725 452 #define SAI_SLOTACTIVE_10 ((uint32_t)0x00000400U)
Kojto 122:f9eeca106725 453 #define SAI_SLOTACTIVE_11 ((uint32_t)0x00000800U)
Kojto 122:f9eeca106725 454 #define SAI_SLOTACTIVE_12 ((uint32_t)0x00001000U)
Kojto 122:f9eeca106725 455 #define SAI_SLOTACTIVE_13 ((uint32_t)0x00002000U)
Kojto 122:f9eeca106725 456 #define SAI_SLOTACTIVE_14 ((uint32_t)0x00004000U)
Kojto 122:f9eeca106725 457 #define SAI_SLOTACTIVE_15 ((uint32_t)0x00008000U)
Kojto 122:f9eeca106725 458 #define SAI_SLOTACTIVE_ALL ((uint32_t)0x0000FFFFU)
Kojto 107:4f6c30876dfa 459 /**
Kojto 107:4f6c30876dfa 460 * @}
Kojto 107:4f6c30876dfa 461 */
Kojto 107:4f6c30876dfa 462
Kojto 107:4f6c30876dfa 463 /** @defgroup SAI_Mono_Stereo_Mode SAI Mono Stereo Mode
Kojto 107:4f6c30876dfa 464 * @{
Kojto 107:4f6c30876dfa 465 */
Kojto 122:f9eeca106725 466 #define SAI_STEREOMODE ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 467 #define SAI_MONOMODE ((uint32_t)SAI_xCR1_MONO)
Kojto 107:4f6c30876dfa 468 /**
Kojto 107:4f6c30876dfa 469 * @}
Kojto 107:4f6c30876dfa 470 */
Kojto 107:4f6c30876dfa 471
Kojto 107:4f6c30876dfa 472 /** @defgroup SAI_TRIState_Management SAI TRIState Management
Kojto 107:4f6c30876dfa 473 * @{
Kojto 107:4f6c30876dfa 474 */
Kojto 122:f9eeca106725 475 #define SAI_OUTPUT_NOTRELEASED ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 476 #define SAI_OUTPUT_RELEASED ((uint32_t)SAI_xCR2_TRIS)
Kojto 107:4f6c30876dfa 477 /**
Kojto 107:4f6c30876dfa 478 * @}
Kojto 107:4f6c30876dfa 479 */
Kojto 107:4f6c30876dfa 480
Kojto 122:f9eeca106725 481 /** @defgroup SAI_Block_Fifo_Threshold SAI Block Fifo Threshold
Kojto 107:4f6c30876dfa 482 * @{
Kojto 107:4f6c30876dfa 483 */
Kojto 122:f9eeca106725 484 #define SAI_FIFOTHRESHOLD_EMPTY ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 485 #define SAI_FIFOTHRESHOLD_1QF ((uint32_t)(SAI_xCR2_FTH_0))
Kojto 122:f9eeca106725 486 #define SAI_FIFOTHRESHOLD_HF ((uint32_t)(SAI_xCR2_FTH_1))
Kojto 122:f9eeca106725 487 #define SAI_FIFOTHRESHOLD_3QF ((uint32_t)(SAI_xCR2_FTH_1 | SAI_xCR2_FTH_0))
Kojto 122:f9eeca106725 488 #define SAI_FIFOTHRESHOLD_FULL ((uint32_t)(SAI_xCR2_FTH_2))
Kojto 107:4f6c30876dfa 489 /**
Kojto 107:4f6c30876dfa 490 * @}
Kojto 107:4f6c30876dfa 491 */
Kojto 122:f9eeca106725 492
Kojto 107:4f6c30876dfa 493 /** @defgroup SAI_Block_Companding_Mode SAI Block Companding Mode
Kojto 107:4f6c30876dfa 494 * @{
Kojto 107:4f6c30876dfa 495 */
Kojto 122:f9eeca106725 496 #define SAI_NOCOMPANDING ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 497 #define SAI_ULAW_1CPL_COMPANDING ((uint32_t)(SAI_xCR2_COMP_1))
Kojto 122:f9eeca106725 498 #define SAI_ALAW_1CPL_COMPANDING ((uint32_t)(SAI_xCR2_COMP_1 | SAI_xCR2_COMP_0))
Kojto 122:f9eeca106725 499 #define SAI_ULAW_2CPL_COMPANDING ((uint32_t)(SAI_xCR2_COMP_1 | SAI_xCR2_CPL))
Kojto 122:f9eeca106725 500 #define SAI_ALAW_2CPL_COMPANDING ((uint32_t)(SAI_xCR2_COMP_1 | SAI_xCR2_COMP_0 | SAI_xCR2_CPL))
Kojto 107:4f6c30876dfa 501 /**
Kojto 107:4f6c30876dfa 502 * @}
Kojto 107:4f6c30876dfa 503 */
Kojto 107:4f6c30876dfa 504
Kojto 107:4f6c30876dfa 505 /** @defgroup SAI_Block_Mute_Value SAI Block Mute Value
Kojto 107:4f6c30876dfa 506 * @{
Kojto 107:4f6c30876dfa 507 */
Kojto 122:f9eeca106725 508 #define SAI_ZERO_VALUE ((uint32_t)0x00000000U)
Kojto 107:4f6c30876dfa 509 #define SAI_LAST_SENT_VALUE ((uint32_t)SAI_xCR2_MUTEVAL)
Kojto 107:4f6c30876dfa 510 /**
Kojto 107:4f6c30876dfa 511 * @}
Kojto 107:4f6c30876dfa 512 */
Kojto 107:4f6c30876dfa 513
Kojto 107:4f6c30876dfa 514 /** @defgroup SAI_Block_Interrupts_Definition SAI Block Interrupts Definition
Kojto 107:4f6c30876dfa 515 * @{
Kojto 107:4f6c30876dfa 516 */
Kojto 107:4f6c30876dfa 517 #define SAI_IT_OVRUDR ((uint32_t)SAI_xIMR_OVRUDRIE)
Kojto 107:4f6c30876dfa 518 #define SAI_IT_MUTEDET ((uint32_t)SAI_xIMR_MUTEDETIE)
Kojto 107:4f6c30876dfa 519 #define SAI_IT_WCKCFG ((uint32_t)SAI_xIMR_WCKCFGIE)
Kojto 107:4f6c30876dfa 520 #define SAI_IT_FREQ ((uint32_t)SAI_xIMR_FREQIE)
Kojto 107:4f6c30876dfa 521 #define SAI_IT_CNRDY ((uint32_t)SAI_xIMR_CNRDYIE)
Kojto 107:4f6c30876dfa 522 #define SAI_IT_AFSDET ((uint32_t)SAI_xIMR_AFSDETIE)
Kojto 107:4f6c30876dfa 523 #define SAI_IT_LFSDET ((uint32_t)SAI_xIMR_LFSDETIE)
Kojto 107:4f6c30876dfa 524 /**
Kojto 107:4f6c30876dfa 525 * @}
Kojto 107:4f6c30876dfa 526 */
Kojto 107:4f6c30876dfa 527
Kojto 107:4f6c30876dfa 528 /** @defgroup SAI_Block_Flags_Definition SAI Block Flags Definition
Kojto 107:4f6c30876dfa 529 * @{
Kojto 107:4f6c30876dfa 530 */
Kojto 107:4f6c30876dfa 531 #define SAI_FLAG_OVRUDR ((uint32_t)SAI_xSR_OVRUDR)
Kojto 107:4f6c30876dfa 532 #define SAI_FLAG_MUTEDET ((uint32_t)SAI_xSR_MUTEDET)
Kojto 107:4f6c30876dfa 533 #define SAI_FLAG_WCKCFG ((uint32_t)SAI_xSR_WCKCFG)
Kojto 107:4f6c30876dfa 534 #define SAI_FLAG_FREQ ((uint32_t)SAI_xSR_FREQ)
Kojto 107:4f6c30876dfa 535 #define SAI_FLAG_CNRDY ((uint32_t)SAI_xSR_CNRDY)
Kojto 107:4f6c30876dfa 536 #define SAI_FLAG_AFSDET ((uint32_t)SAI_xSR_AFSDET)
Kojto 107:4f6c30876dfa 537 #define SAI_FLAG_LFSDET ((uint32_t)SAI_xSR_LFSDET)
Kojto 122:f9eeca106725 538 /**
Kojto 122:f9eeca106725 539 * @}
Kojto 122:f9eeca106725 540 */
Kojto 122:f9eeca106725 541
Kojto 122:f9eeca106725 542 /** @defgroup SAI_Block_Fifo_Status_Level SAI Block Fifo Status Level
Kojto 122:f9eeca106725 543 * @{
Kojto 122:f9eeca106725 544 */
Kojto 122:f9eeca106725 545 #define SAI_FIFOSTATUS_EMPTY ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 546 #define SAI_FIFOSTATUS_LESS1QUARTERFULL ((uint32_t)0x00010000U)
Kojto 122:f9eeca106725 547 #define SAI_FIFOSTATUS_1QUARTERFULL ((uint32_t)0x00020000U)
Kojto 122:f9eeca106725 548 #define SAI_FIFOSTATUS_HALFFULL ((uint32_t)0x00030000U)
Kojto 122:f9eeca106725 549 #define SAI_FIFOSTATUS_3QUARTERFULL ((uint32_t)0x00040000U)
Kojto 122:f9eeca106725 550 #define SAI_FIFOSTATUS_FULL ((uint32_t)0x00050000U)
Kojto 122:f9eeca106725 551 /**
Kojto 122:f9eeca106725 552 * @}
Kojto 122:f9eeca106725 553 */
Kojto 107:4f6c30876dfa 554
Kojto 107:4f6c30876dfa 555 /**
Kojto 107:4f6c30876dfa 556 * @}
Kojto 107:4f6c30876dfa 557 */
Kojto 122:f9eeca106725 558
Kojto 107:4f6c30876dfa 559 /* Exported macro ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 560
Kojto 107:4f6c30876dfa 561 /** @defgroup SAI_Exported_Macros SAI Exported Macros
Kojto 107:4f6c30876dfa 562 * @brief macros to handle interrupts and specific configurations
Kojto 107:4f6c30876dfa 563 * @{
Kojto 107:4f6c30876dfa 564 */
Kojto 122:f9eeca106725 565
Kojto 107:4f6c30876dfa 566 /** @brief Reset SAI handle state.
Kojto 107:4f6c30876dfa 567 * @param __HANDLE__: specifies the SAI Handle.
Kojto 107:4f6c30876dfa 568 * @retval None
Kojto 107:4f6c30876dfa 569 */
Kojto 107:4f6c30876dfa 570 #define __HAL_SAI_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_SAI_STATE_RESET)
Kojto 107:4f6c30876dfa 571
Kojto 107:4f6c30876dfa 572 /** @brief Enable or disable the specified SAI interrupts.
Kojto 107:4f6c30876dfa 573 * @param __HANDLE__: specifies the SAI Handle.
Kojto 107:4f6c30876dfa 574 * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
Kojto 107:4f6c30876dfa 575 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 576 * @arg SAI_IT_OVRUDR: Overrun underrun interrupt enable
Kojto 122:f9eeca106725 577 * @arg SAI_IT_MUTEDET: Mute detection interrupt enable
Kojto 122:f9eeca106725 578 * @arg SAI_IT_WCKCFG: Wrong Clock Configuration interrupt enable
Kojto 122:f9eeca106725 579 * @arg SAI_IT_FREQ: FIFO request interrupt enable
Kojto 122:f9eeca106725 580 * @arg SAI_IT_CNRDY: Codec not ready interrupt enable
Kojto 122:f9eeca106725 581 * @arg SAI_IT_AFSDET: Anticipated frame synchronization detection interrupt enable
Kojto 107:4f6c30876dfa 582 * @arg SAI_IT_LFSDET: Late frame synchronization detection interrupt enable
Kojto 107:4f6c30876dfa 583 * @retval None
Kojto 107:4f6c30876dfa 584 */
Kojto 107:4f6c30876dfa 585 #define __HAL_SAI_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IMR |= (__INTERRUPT__))
Kojto 107:4f6c30876dfa 586 #define __HAL_SAI_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IMR &= (~(__INTERRUPT__)))
Kojto 122:f9eeca106725 587
Kojto 107:4f6c30876dfa 588 /** @brief Check whether the specified SAI interrupt source is enabled or not.
Kojto 107:4f6c30876dfa 589 * @param __HANDLE__: specifies the SAI Handle.
Kojto 107:4f6c30876dfa 590 * @param __INTERRUPT__: specifies the SAI interrupt source to check.
Kojto 107:4f6c30876dfa 591 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 592 * @arg SAI_IT_OVRUDR: Overrun underrun interrupt enable
Kojto 122:f9eeca106725 593 * @arg SAI_IT_MUTEDET: Mute detection interrupt enable
Kojto 122:f9eeca106725 594 * @arg SAI_IT_WCKCFG: Wrong Clock Configuration interrupt enable
Kojto 122:f9eeca106725 595 * @arg SAI_IT_FREQ: FIFO request interrupt enable
Kojto 122:f9eeca106725 596 * @arg SAI_IT_CNRDY: Codec not ready interrupt enable
Kojto 122:f9eeca106725 597 * @arg SAI_IT_AFSDET: Anticipated frame synchronization detection interrupt enable
Kojto 107:4f6c30876dfa 598 * @arg SAI_IT_LFSDET: Late frame synchronization detection interrupt enable
Kojto 107:4f6c30876dfa 599 * @retval The new state of __INTERRUPT__ (TRUE or FALSE).
Kojto 107:4f6c30876dfa 600 */
Kojto 107:4f6c30876dfa 601 #define __HAL_SAI_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->IMR & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
Kojto 107:4f6c30876dfa 602
Kojto 107:4f6c30876dfa 603 /** @brief Check whether the specified SAI flag is set or not.
Kojto 107:4f6c30876dfa 604 * @param __HANDLE__: specifies the SAI Handle.
Kojto 107:4f6c30876dfa 605 * @param __FLAG__: specifies the flag to check.
Kojto 107:4f6c30876dfa 606 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 607 * @arg SAI_FLAG_OVRUDR: Overrun underrun flag.
Kojto 107:4f6c30876dfa 608 * @arg SAI_FLAG_MUTEDET: Mute detection flag.
Kojto 107:4f6c30876dfa 609 * @arg SAI_FLAG_WCKCFG: Wrong Clock Configuration flag.
Kojto 107:4f6c30876dfa 610 * @arg SAI_FLAG_FREQ: FIFO request flag.
Kojto 107:4f6c30876dfa 611 * @arg SAI_FLAG_CNRDY: Codec not ready flag.
Kojto 107:4f6c30876dfa 612 * @arg SAI_FLAG_AFSDET: Anticipated frame synchronization detection flag.
Kojto 122:f9eeca106725 613 * @arg SAI_FLAG_LFSDET: Late frame synchronization detection flag.
Kojto 107:4f6c30876dfa 614 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 107:4f6c30876dfa 615 */
Kojto 107:4f6c30876dfa 616 #define __HAL_SAI_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
Kojto 107:4f6c30876dfa 617
Kojto 107:4f6c30876dfa 618 /** @brief Clear the specified SAI pending flag.
Kojto 107:4f6c30876dfa 619 * @param __HANDLE__: specifies the SAI Handle.
Kojto 107:4f6c30876dfa 620 * @param __FLAG__: specifies the flag to check.
Kojto 107:4f6c30876dfa 621 * This parameter can be any combination of the following values:
Kojto 122:f9eeca106725 622 * @arg SAI_FLAG_OVRUDR: Clear Overrun underrun
Kojto 122:f9eeca106725 623 * @arg SAI_FLAG_MUTEDET: Clear Mute detection
Kojto 122:f9eeca106725 624 * @arg SAI_FLAG_WCKCFG: Clear Wrong Clock Configuration
Kojto 122:f9eeca106725 625 * @arg SAI_FLAG_FREQ: Clear FIFO request
Kojto 107:4f6c30876dfa 626 * @arg SAI_FLAG_CNRDY: Clear Codec not ready
Kojto 107:4f6c30876dfa 627 * @arg SAI_FLAG_AFSDET: Clear Anticipated frame synchronization detection
Kojto 107:4f6c30876dfa 628 * @arg SAI_FLAG_LFSDET: Clear Late frame synchronization detection
Kojto 122:f9eeca106725 629 *
Kojto 107:4f6c30876dfa 630 * @retval None
Kojto 107:4f6c30876dfa 631 */
Kojto 122:f9eeca106725 632 #define __HAL_SAI_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->CLRFR = (__FLAG__))
Kojto 107:4f6c30876dfa 633
Kojto 107:4f6c30876dfa 634 #define __HAL_SAI_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= SAI_xCR1_SAIEN)
Kojto 107:4f6c30876dfa 635 #define __HAL_SAI_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~SAI_xCR1_SAIEN)
Kojto 122:f9eeca106725 636
Kojto 107:4f6c30876dfa 637 /**
Kojto 107:4f6c30876dfa 638 * @}
Kojto 107:4f6c30876dfa 639 */
Kojto 122:f9eeca106725 640
Kojto 107:4f6c30876dfa 641 /* Exported functions --------------------------------------------------------*/
Kojto 107:4f6c30876dfa 642
Kojto 107:4f6c30876dfa 643 /** @addtogroup SAI_Exported_Functions
Kojto 107:4f6c30876dfa 644 * @{
Kojto 107:4f6c30876dfa 645 */
Kojto 107:4f6c30876dfa 646
Kojto 122:f9eeca106725 647 /* Initialization/de-initialization functions ********************************/
Kojto 122:f9eeca106725 648
Kojto 107:4f6c30876dfa 649 /** @addtogroup SAI_Exported_Functions_Group1
Kojto 107:4f6c30876dfa 650 * @{
Kojto 107:4f6c30876dfa 651 */
Kojto 122:f9eeca106725 652 HAL_StatusTypeDef HAL_SAI_InitProtocol(SAI_HandleTypeDef *hsai, uint32_t protocol, uint32_t datasize, uint32_t nbslot);
Kojto 107:4f6c30876dfa 653 HAL_StatusTypeDef HAL_SAI_Init(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 654 HAL_StatusTypeDef HAL_SAI_DeInit (SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 655 void HAL_SAI_MspInit(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 656 void HAL_SAI_MspDeInit(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 657
Kojto 107:4f6c30876dfa 658 /**
Kojto 107:4f6c30876dfa 659 * @}
Kojto 107:4f6c30876dfa 660 */
Kojto 107:4f6c30876dfa 661
Kojto 122:f9eeca106725 662 /* I/O operation functions ***************************************************/
Kojto 122:f9eeca106725 663
Kojto 107:4f6c30876dfa 664 /** @addtogroup SAI_Exported_Functions_Group2
Kojto 107:4f6c30876dfa 665 * @{
Kojto 107:4f6c30876dfa 666 */
Kojto 107:4f6c30876dfa 667 /* Blocking mode: Polling */
Kojto 107:4f6c30876dfa 668 HAL_StatusTypeDef HAL_SAI_Transmit(SAI_HandleTypeDef *hsai, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 107:4f6c30876dfa 669 HAL_StatusTypeDef HAL_SAI_Receive(SAI_HandleTypeDef *hsai, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 107:4f6c30876dfa 670
Kojto 107:4f6c30876dfa 671 /* Non-Blocking mode: Interrupt */
Kojto 107:4f6c30876dfa 672 HAL_StatusTypeDef HAL_SAI_Transmit_IT(SAI_HandleTypeDef *hsai, uint8_t *pData, uint16_t Size);
Kojto 107:4f6c30876dfa 673 HAL_StatusTypeDef HAL_SAI_Receive_IT(SAI_HandleTypeDef *hsai, uint8_t *pData, uint16_t Size);
Kojto 107:4f6c30876dfa 674
Kojto 107:4f6c30876dfa 675 /* Non-Blocking mode: DMA */
Kojto 107:4f6c30876dfa 676 HAL_StatusTypeDef HAL_SAI_Transmit_DMA(SAI_HandleTypeDef *hsai, uint8_t *pData, uint16_t Size);
Kojto 107:4f6c30876dfa 677 HAL_StatusTypeDef HAL_SAI_Receive_DMA(SAI_HandleTypeDef *hsai, uint8_t *pData, uint16_t Size);
Kojto 107:4f6c30876dfa 678 HAL_StatusTypeDef HAL_SAI_DMAPause(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 679 HAL_StatusTypeDef HAL_SAI_DMAResume(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 680 HAL_StatusTypeDef HAL_SAI_DMAStop(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 681
Kojto 107:4f6c30876dfa 682 /* Abort function */
Kojto 107:4f6c30876dfa 683 HAL_StatusTypeDef HAL_SAI_Abort(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 684
Kojto 107:4f6c30876dfa 685 /* Mute management */
Kojto 107:4f6c30876dfa 686 HAL_StatusTypeDef HAL_SAI_EnableTxMuteMode(SAI_HandleTypeDef *hsai, uint16_t val);
Kojto 107:4f6c30876dfa 687 HAL_StatusTypeDef HAL_SAI_DisableTxMuteMode(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 688 HAL_StatusTypeDef HAL_SAI_EnableRxMuteMode(SAI_HandleTypeDef *hsai, SAIcallback callback, uint16_t counter);
Kojto 107:4f6c30876dfa 689 HAL_StatusTypeDef HAL_SAI_DisableRxMuteMode(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 690
Kojto 107:4f6c30876dfa 691 /* SAI IRQHandler and Callbacks used in non blocking modes (Interrupt and DMA) */
Kojto 107:4f6c30876dfa 692 void HAL_SAI_IRQHandler(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 693 void HAL_SAI_TxHalfCpltCallback(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 694 void HAL_SAI_TxCpltCallback(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 695 void HAL_SAI_RxHalfCpltCallback(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 696 void HAL_SAI_RxCpltCallback(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 697 void HAL_SAI_ErrorCallback(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 698 /**
Kojto 107:4f6c30876dfa 699 * @}
Kojto 107:4f6c30876dfa 700 */
Kojto 107:4f6c30876dfa 701
Kojto 107:4f6c30876dfa 702 /** @addtogroup SAI_Exported_Functions_Group3
Kojto 107:4f6c30876dfa 703 * @{
Kojto 107:4f6c30876dfa 704 */
Kojto 122:f9eeca106725 705 /* Peripheral State functions ************************************************/
Kojto 107:4f6c30876dfa 706 HAL_SAI_StateTypeDef HAL_SAI_GetState(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 707 uint32_t HAL_SAI_GetError(SAI_HandleTypeDef *hsai);
Kojto 107:4f6c30876dfa 708 /**
Kojto 107:4f6c30876dfa 709 * @}
Kojto 107:4f6c30876dfa 710 */
Kojto 122:f9eeca106725 711
Kojto 107:4f6c30876dfa 712 /**
Kojto 107:4f6c30876dfa 713 * @}
Kojto 107:4f6c30876dfa 714 */
Kojto 107:4f6c30876dfa 715
Kojto 107:4f6c30876dfa 716 /* Private macros ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 717 /** @addtogroup SAI_Private_Macros
Kojto 107:4f6c30876dfa 718 * @{
Kojto 107:4f6c30876dfa 719 */
Kojto 122:f9eeca106725 720 #define IS_SAI_BLOCK_SYNCEXT(STATE) (((STATE) == SAI_SYNCEXT_DISABLE) ||\
Kojto 122:f9eeca106725 721 ((STATE) == SAI_SYNCEXT_OUTBLOCKA_ENABLE) ||\
Kojto 122:f9eeca106725 722 ((STATE) == SAI_SYNCEXT_OUTBLOCKB_ENABLE))
Kojto 122:f9eeca106725 723
Kojto 122:f9eeca106725 724 #define IS_SAI_SUPPORTED_PROTOCOL(PROTOCOL) (((PROTOCOL) == SAI_I2S_STANDARD) ||\
Kojto 122:f9eeca106725 725 ((PROTOCOL) == SAI_I2S_MSBJUSTIFIED) ||\
Kojto 122:f9eeca106725 726 ((PROTOCOL) == SAI_I2S_LSBJUSTIFIED) ||\
Kojto 122:f9eeca106725 727 ((PROTOCOL) == SAI_PCM_LONG) ||\
Kojto 122:f9eeca106725 728 ((PROTOCOL) == SAI_PCM_SHORT))
Kojto 122:f9eeca106725 729
Kojto 122:f9eeca106725 730 #define IS_SAI_PROTOCOL_DATASIZE(DATASIZE) (((DATASIZE) == SAI_PROTOCOL_DATASIZE_16BIT) ||\
Kojto 122:f9eeca106725 731 ((DATASIZE) == SAI_PROTOCOL_DATASIZE_16BITEXTENDED) ||\
Kojto 122:f9eeca106725 732 ((DATASIZE) == SAI_PROTOCOL_DATASIZE_24BIT) ||\
Kojto 122:f9eeca106725 733 ((DATASIZE) == SAI_PROTOCOL_DATASIZE_32BIT))
Kojto 122:f9eeca106725 734
Kojto 107:4f6c30876dfa 735 #define IS_SAI_AUDIO_FREQUENCY(AUDIO) (((AUDIO) == SAI_AUDIO_FREQUENCY_192K) || ((AUDIO) == SAI_AUDIO_FREQUENCY_96K) || \
Kojto 107:4f6c30876dfa 736 ((AUDIO) == SAI_AUDIO_FREQUENCY_48K) || ((AUDIO) == SAI_AUDIO_FREQUENCY_44K) || \
Kojto 107:4f6c30876dfa 737 ((AUDIO) == SAI_AUDIO_FREQUENCY_32K) || ((AUDIO) == SAI_AUDIO_FREQUENCY_22K) || \
Kojto 107:4f6c30876dfa 738 ((AUDIO) == SAI_AUDIO_FREQUENCY_16K) || ((AUDIO) == SAI_AUDIO_FREQUENCY_11K) || \
Kojto 107:4f6c30876dfa 739 ((AUDIO) == SAI_AUDIO_FREQUENCY_8K) || ((AUDIO) == SAI_AUDIO_FREQUENCY_MCKDIV))
Kojto 107:4f6c30876dfa 740
Kojto 107:4f6c30876dfa 741 #define IS_SAI_BLOCK_MODE(MODE) (((MODE) == SAI_MODEMASTER_TX) || \
Kojto 107:4f6c30876dfa 742 ((MODE) == SAI_MODEMASTER_RX) || \
Kojto 107:4f6c30876dfa 743 ((MODE) == SAI_MODESLAVE_TX) || \
Kojto 107:4f6c30876dfa 744 ((MODE) == SAI_MODESLAVE_RX))
Kojto 107:4f6c30876dfa 745
Kojto 107:4f6c30876dfa 746 #define IS_SAI_BLOCK_PROTOCOL(PROTOCOL) (((PROTOCOL) == SAI_FREE_PROTOCOL) || \
Kojto 107:4f6c30876dfa 747 ((PROTOCOL) == SAI_AC97_PROTOCOL) || \
Kojto 107:4f6c30876dfa 748 ((PROTOCOL) == SAI_SPDIF_PROTOCOL))
Kojto 107:4f6c30876dfa 749
Kojto 107:4f6c30876dfa 750 #define IS_SAI_BLOCK_DATASIZE(DATASIZE) (((DATASIZE) == SAI_DATASIZE_8) || \
Kojto 107:4f6c30876dfa 751 ((DATASIZE) == SAI_DATASIZE_10) || \
Kojto 107:4f6c30876dfa 752 ((DATASIZE) == SAI_DATASIZE_16) || \
Kojto 107:4f6c30876dfa 753 ((DATASIZE) == SAI_DATASIZE_20) || \
Kojto 107:4f6c30876dfa 754 ((DATASIZE) == SAI_DATASIZE_24) || \
Kojto 107:4f6c30876dfa 755 ((DATASIZE) == SAI_DATASIZE_32))
Kojto 107:4f6c30876dfa 756
Kojto 107:4f6c30876dfa 757 #define IS_SAI_BLOCK_FIRST_BIT(BIT) (((BIT) == SAI_FIRSTBIT_MSB) || \
Kojto 107:4f6c30876dfa 758 ((BIT) == SAI_FIRSTBIT_LSB))
Kojto 107:4f6c30876dfa 759
Kojto 107:4f6c30876dfa 760 #define IS_SAI_BLOCK_CLOCK_STROBING(CLOCK) (((CLOCK) == SAI_CLOCKSTROBING_FALLINGEDGE) || \
Kojto 107:4f6c30876dfa 761 ((CLOCK) == SAI_CLOCKSTROBING_RISINGEDGE))
Kojto 107:4f6c30876dfa 762
Kojto 122:f9eeca106725 763 #define IS_SAI_BLOCK_SYNCHRO(SYNCHRO) (((SYNCHRO) == SAI_ASYNCHRONOUS) || \
Kojto 122:f9eeca106725 764 ((SYNCHRO) == SAI_SYNCHRONOUS) || \
Kojto 122:f9eeca106725 765 ((SYNCHRO) == SAI_SYNCHRONOUS_EXT_SAI1) || \
Kojto 122:f9eeca106725 766 ((SYNCHRO) == SAI_SYNCHRONOUS_EXT_SAI2))
Kojto 107:4f6c30876dfa 767
Kojto 107:4f6c30876dfa 768 #define IS_SAI_BLOCK_OUTPUT_DRIVE(DRIVE) (((DRIVE) == SAI_OUTPUTDRIVE_DISABLE) || \
Kojto 107:4f6c30876dfa 769 ((DRIVE) == SAI_OUTPUTDRIVE_ENABLE))
Kojto 107:4f6c30876dfa 770
Kojto 107:4f6c30876dfa 771 #define IS_SAI_BLOCK_NODIVIDER(NODIVIDER) (((NODIVIDER) == SAI_MASTERDIVIDER_ENABLE) || \
Kojto 107:4f6c30876dfa 772 ((NODIVIDER) == SAI_MASTERDIVIDER_DISABLE))
Kojto 107:4f6c30876dfa 773
Kojto 107:4f6c30876dfa 774 #define IS_SAI_BLOCK_MUTE_COUNTER(COUNTER) ((COUNTER) <= 63)
Kojto 107:4f6c30876dfa 775
Kojto 107:4f6c30876dfa 776 #define IS_SAI_BLOCK_MUTE_VALUE(VALUE) (((VALUE) == SAI_ZERO_VALUE) || \
Kojto 107:4f6c30876dfa 777 ((VALUE) == SAI_LAST_SENT_VALUE))
Kojto 107:4f6c30876dfa 778
Kojto 107:4f6c30876dfa 779 #define IS_SAI_BLOCK_COMPANDING_MODE(MODE) (((MODE) == SAI_NOCOMPANDING) || \
Kojto 107:4f6c30876dfa 780 ((MODE) == SAI_ULAW_1CPL_COMPANDING) || \
Kojto 107:4f6c30876dfa 781 ((MODE) == SAI_ALAW_1CPL_COMPANDING) || \
Kojto 107:4f6c30876dfa 782 ((MODE) == SAI_ULAW_2CPL_COMPANDING) || \
Kojto 122:f9eeca106725 783 ((MODE) == SAI_ALAW_2CPL_COMPANDING))
Kojto 107:4f6c30876dfa 784
Kojto 107:4f6c30876dfa 785 #define IS_SAI_BLOCK_FIFO_THRESHOLD(THRESHOLD) (((THRESHOLD) == SAI_FIFOTHRESHOLD_EMPTY) || \
Kojto 107:4f6c30876dfa 786 ((THRESHOLD) == SAI_FIFOTHRESHOLD_1QF) || \
Kojto 107:4f6c30876dfa 787 ((THRESHOLD) == SAI_FIFOTHRESHOLD_HF) || \
Kojto 107:4f6c30876dfa 788 ((THRESHOLD) == SAI_FIFOTHRESHOLD_3QF) || \
Kojto 107:4f6c30876dfa 789 ((THRESHOLD) == SAI_FIFOTHRESHOLD_FULL))
Kojto 107:4f6c30876dfa 790
Kojto 107:4f6c30876dfa 791 #define IS_SAI_BLOCK_TRISTATE_MANAGEMENT(STATE) (((STATE) == SAI_OUTPUT_NOTRELEASED) ||\
Kojto 122:f9eeca106725 792 ((STATE) == SAI_OUTPUT_RELEASED))
Kojto 107:4f6c30876dfa 793
Kojto 122:f9eeca106725 794 #define IS_SAI_MONO_STEREO_MODE(MODE) (((MODE) == SAI_MONOMODE) ||\
Kojto 122:f9eeca106725 795 ((MODE) == SAI_STEREOMODE))
Kojto 107:4f6c30876dfa 796
Kojto 122:f9eeca106725 797 #define IS_SAI_SLOT_ACTIVE(ACTIVE) ((ACTIVE) <= SAI_SLOTACTIVE_ALL)
Kojto 107:4f6c30876dfa 798
Kojto 122:f9eeca106725 799 #define IS_SAI_BLOCK_SLOT_NUMBER(NUMBER) ((1 <= (NUMBER)) && ((NUMBER) <= 16))
Kojto 107:4f6c30876dfa 800
Kojto 107:4f6c30876dfa 801 #define IS_SAI_BLOCK_SLOT_SIZE(SIZE) (((SIZE) == SAI_SLOTSIZE_DATASIZE) || \
Kojto 107:4f6c30876dfa 802 ((SIZE) == SAI_SLOTSIZE_16B) || \
Kojto 107:4f6c30876dfa 803 ((SIZE) == SAI_SLOTSIZE_32B))
Kojto 107:4f6c30876dfa 804
Kojto 122:f9eeca106725 805 #define IS_SAI_BLOCK_FIRSTBIT_OFFSET(OFFSET) ((OFFSET) <= 24)
Kojto 107:4f6c30876dfa 806
Kojto 107:4f6c30876dfa 807 #define IS_SAI_BLOCK_FS_OFFSET(OFFSET) (((OFFSET) == SAI_FS_FIRSTBIT) || \
Kojto 107:4f6c30876dfa 808 ((OFFSET) == SAI_FS_BEFOREFIRSTBIT))
Kojto 107:4f6c30876dfa 809
Kojto 107:4f6c30876dfa 810 #define IS_SAI_BLOCK_FS_POLARITY(POLARITY) (((POLARITY) == SAI_FS_ACTIVE_LOW) || \
Kojto 122:f9eeca106725 811 ((POLARITY) == SAI_FS_ACTIVE_HIGH))
Kojto 107:4f6c30876dfa 812
Kojto 107:4f6c30876dfa 813 #define IS_SAI_BLOCK_FS_DEFINITION(DEFINITION) (((DEFINITION) == SAI_FS_STARTFRAME) || \
Kojto 122:f9eeca106725 814 ((DEFINITION) == SAI_FS_CHANNEL_IDENTIFICATION))
Kojto 122:f9eeca106725 815
Kojto 122:f9eeca106725 816 #define IS_SAI_BLOCK_MASTER_DIVIDER(DIVIDER) ((DIVIDER) <= 15)
Kojto 107:4f6c30876dfa 817
Kojto 122:f9eeca106725 818 #define IS_SAI_BLOCK_FRAME_LENGTH(LENGTH) ((8 <= (LENGTH)) && ((LENGTH) <= 256))
Kojto 107:4f6c30876dfa 819
Kojto 122:f9eeca106725 820 #define IS_SAI_BLOCK_ACTIVE_FRAME(LENGTH) ((1 <= (LENGTH)) && ((LENGTH) <= 128))
Kojto 122:f9eeca106725 821
Kojto 107:4f6c30876dfa 822 /**
Kojto 107:4f6c30876dfa 823 * @}
Kojto 107:4f6c30876dfa 824 */
Kojto 107:4f6c30876dfa 825
Kojto 107:4f6c30876dfa 826 /* Private functions ---------------------------------------------------------*/
Kojto 107:4f6c30876dfa 827 /** @defgroup SAI_Private_Functions SAI Private Functions
Kojto 107:4f6c30876dfa 828 * @{
Kojto 107:4f6c30876dfa 829 */
Kojto 107:4f6c30876dfa 830
Kojto 107:4f6c30876dfa 831 /**
Kojto 107:4f6c30876dfa 832 * @}
Kojto 107:4f6c30876dfa 833 */
Kojto 107:4f6c30876dfa 834
Kojto 107:4f6c30876dfa 835 /**
Kojto 107:4f6c30876dfa 836 * @}
Kojto 122:f9eeca106725 837 */
Kojto 107:4f6c30876dfa 838
Kojto 107:4f6c30876dfa 839 /**
Kojto 107:4f6c30876dfa 840 * @}
Kojto 107:4f6c30876dfa 841 */
Kojto 122:f9eeca106725 842
Kojto 107:4f6c30876dfa 843 #ifdef __cplusplus
Kojto 107:4f6c30876dfa 844 }
Kojto 107:4f6c30876dfa 845 #endif
Kojto 107:4f6c30876dfa 846
Kojto 107:4f6c30876dfa 847 #endif /* __STM32L4xx_HAL_SAI_H */
Kojto 107:4f6c30876dfa 848
Kojto 107:4f6c30876dfa 849 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/