1*f763b8ceSMatthias Ringwald /** 2*f763b8ceSMatthias Ringwald ****************************************************************************** 3*f763b8ceSMatthias Ringwald * @file cs43l22.h 4*f763b8ceSMatthias Ringwald * @author MCD Application Team 5*f763b8ceSMatthias Ringwald * @version V2.0.2 6*f763b8ceSMatthias Ringwald * @date 06-October-2015 7*f763b8ceSMatthias Ringwald * @brief This file contains all the functions prototypes for the cs43l22.c driver. 8*f763b8ceSMatthias Ringwald ****************************************************************************** 9*f763b8ceSMatthias Ringwald * @attention 10*f763b8ceSMatthias Ringwald * 11*f763b8ceSMatthias Ringwald * <h2><center>© COPYRIGHT(c) 2015 STMicroelectronics</center></h2> 12*f763b8ceSMatthias Ringwald * 13*f763b8ceSMatthias Ringwald * Redistribution and use in source and binary forms, with or without modification, 14*f763b8ceSMatthias Ringwald * are permitted provided that the following conditions are met: 15*f763b8ceSMatthias Ringwald * 1. Redistributions of source code must retain the above copyright notice, 16*f763b8ceSMatthias Ringwald * this list of conditions and the following disclaimer. 17*f763b8ceSMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright notice, 18*f763b8ceSMatthias Ringwald * this list of conditions and the following disclaimer in the documentation 19*f763b8ceSMatthias Ringwald * and/or other materials provided with the distribution. 20*f763b8ceSMatthias Ringwald * 3. Neither the name of STMicroelectronics nor the names of its contributors 21*f763b8ceSMatthias Ringwald * may be used to endorse or promote products derived from this software 22*f763b8ceSMatthias Ringwald * without specific prior written permission. 23*f763b8ceSMatthias Ringwald * 24*f763b8ceSMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25*f763b8ceSMatthias Ringwald * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26*f763b8ceSMatthias Ringwald * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 27*f763b8ceSMatthias Ringwald * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 28*f763b8ceSMatthias Ringwald * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29*f763b8ceSMatthias Ringwald * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 30*f763b8ceSMatthias Ringwald * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 31*f763b8ceSMatthias Ringwald * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 32*f763b8ceSMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 33*f763b8ceSMatthias Ringwald * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34*f763b8ceSMatthias Ringwald * 35*f763b8ceSMatthias Ringwald ****************************************************************************** 36*f763b8ceSMatthias Ringwald */ 37*f763b8ceSMatthias Ringwald 38*f763b8ceSMatthias Ringwald /* Define to prevent recursive inclusion -------------------------------------*/ 39*f763b8ceSMatthias Ringwald #ifndef __CS43L22_H 40*f763b8ceSMatthias Ringwald #define __CS43L22_H 41*f763b8ceSMatthias Ringwald 42*f763b8ceSMatthias Ringwald /* Includes ------------------------------------------------------------------*/ 43*f763b8ceSMatthias Ringwald #include "audio.h" 44*f763b8ceSMatthias Ringwald 45*f763b8ceSMatthias Ringwald /** @addtogroup BSP 46*f763b8ceSMatthias Ringwald * @{ 47*f763b8ceSMatthias Ringwald */ 48*f763b8ceSMatthias Ringwald 49*f763b8ceSMatthias Ringwald /** @addtogroup Component 50*f763b8ceSMatthias Ringwald * @{ 51*f763b8ceSMatthias Ringwald */ 52*f763b8ceSMatthias Ringwald 53*f763b8ceSMatthias Ringwald /** @addtogroup CS43L22 54*f763b8ceSMatthias Ringwald * @{ 55*f763b8ceSMatthias Ringwald */ 56*f763b8ceSMatthias Ringwald 57*f763b8ceSMatthias Ringwald /** @defgroup CS43L22_Exported_Types 58*f763b8ceSMatthias Ringwald * @{ 59*f763b8ceSMatthias Ringwald */ 60*f763b8ceSMatthias Ringwald 61*f763b8ceSMatthias Ringwald /** 62*f763b8ceSMatthias Ringwald * @} 63*f763b8ceSMatthias Ringwald */ 64*f763b8ceSMatthias Ringwald 65*f763b8ceSMatthias Ringwald /** @defgroup CS43L22_Exported_Constants 66*f763b8ceSMatthias Ringwald * @{ 67*f763b8ceSMatthias Ringwald */ 68*f763b8ceSMatthias Ringwald 69*f763b8ceSMatthias Ringwald /******************************************************************************/ 70*f763b8ceSMatthias Ringwald /*************************** Codec User defines ******************************/ 71*f763b8ceSMatthias Ringwald /******************************************************************************/ 72*f763b8ceSMatthias Ringwald /* Codec output DEVICE */ 73*f763b8ceSMatthias Ringwald #define OUTPUT_DEVICE_SPEAKER 1 74*f763b8ceSMatthias Ringwald #define OUTPUT_DEVICE_HEADPHONE 2 75*f763b8ceSMatthias Ringwald #define OUTPUT_DEVICE_BOTH 3 76*f763b8ceSMatthias Ringwald #define OUTPUT_DEVICE_AUTO 4 77*f763b8ceSMatthias Ringwald 78*f763b8ceSMatthias Ringwald /* Volume Levels values */ 79*f763b8ceSMatthias Ringwald #define DEFAULT_VOLMIN 0x00 80*f763b8ceSMatthias Ringwald #define DEFAULT_VOLMAX 0xFF 81*f763b8ceSMatthias Ringwald #define DEFAULT_VOLSTEP 0x04 82*f763b8ceSMatthias Ringwald 83*f763b8ceSMatthias Ringwald #define AUDIO_PAUSE 0 84*f763b8ceSMatthias Ringwald #define AUDIO_RESUME 1 85*f763b8ceSMatthias Ringwald 86*f763b8ceSMatthias Ringwald /* Codec POWER DOWN modes */ 87*f763b8ceSMatthias Ringwald #define CODEC_PDWN_HW 1 88*f763b8ceSMatthias Ringwald #define CODEC_PDWN_SW 2 89*f763b8ceSMatthias Ringwald 90*f763b8ceSMatthias Ringwald /* MUTE commands */ 91*f763b8ceSMatthias Ringwald #define AUDIO_MUTE_ON 1 92*f763b8ceSMatthias Ringwald #define AUDIO_MUTE_OFF 0 93*f763b8ceSMatthias Ringwald 94*f763b8ceSMatthias Ringwald /* AUDIO FREQUENCY */ 95*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_192K ((uint32_t)192000) 96*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_96K ((uint32_t)96000) 97*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_48K ((uint32_t)48000) 98*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_44K ((uint32_t)44100) 99*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_32K ((uint32_t)32000) 100*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_22K ((uint32_t)22050) 101*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_16K ((uint32_t)16000) 102*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_11K ((uint32_t)11025) 103*f763b8ceSMatthias Ringwald #define AUDIO_FREQUENCY_8K ((uint32_t)8000) 104*f763b8ceSMatthias Ringwald 105*f763b8ceSMatthias Ringwald /** CS43l22 Registers ***/ 106*f763b8ceSMatthias Ringwald #define CS43L22_REG_ID 0x01 107*f763b8ceSMatthias Ringwald #define CS43L22_REG_POWER_CTL1 0x02 108*f763b8ceSMatthias Ringwald #define CS43L22_REG_POWER_CTL2 0x04 109*f763b8ceSMatthias Ringwald #define CS43L22_REG_CLOCKING_CTL 0x05 110*f763b8ceSMatthias Ringwald #define CS43L22_REG_INTERFACE_CTL1 0x06 111*f763b8ceSMatthias Ringwald #define CS43L22_REG_INTERFACE_CTL2 0x07 112*f763b8ceSMatthias Ringwald #define CS43L22_REG_PASSTHR_A_SELECT 0x08 113*f763b8ceSMatthias Ringwald #define CS43L22_REG_PASSTHR_B_SELECT 0x09 114*f763b8ceSMatthias Ringwald #define CS43L22_REG_ANALOG_ZC_SR_SETT 0x0A 115*f763b8ceSMatthias Ringwald #define CS43L22_REG_PASSTHR_GANG_CTL 0x0C 116*f763b8ceSMatthias Ringwald #define CS43L22_REG_PLAYBACK_CTL1 0x0D 117*f763b8ceSMatthias Ringwald #define CS43L22_REG_MISC_CTL 0x0E 118*f763b8ceSMatthias Ringwald #define CS43L22_REG_PLAYBACK_CTL2 0x0F 119*f763b8ceSMatthias Ringwald #define CS43L22_REG_PASSTHR_A_VOL 0x14 120*f763b8ceSMatthias Ringwald #define CS43L22_REG_PASSTHR_B_VOL 0x15 121*f763b8ceSMatthias Ringwald #define CS43L22_REG_PCMA_VOL 0x1A 122*f763b8ceSMatthias Ringwald #define CS43L22_REG_PCMB_VOL 0x1B 123*f763b8ceSMatthias Ringwald #define CS43L22_REG_BEEP_FREQ_ON_TIME 0x1C 124*f763b8ceSMatthias Ringwald #define CS43L22_REG_BEEP_VOL_OFF_TIME 0x1D 125*f763b8ceSMatthias Ringwald #define CS43L22_REG_BEEP_TONE_CFG 0x1E 126*f763b8ceSMatthias Ringwald #define CS43L22_REG_TONE_CTL 0x1F 127*f763b8ceSMatthias Ringwald #define CS43L22_REG_MASTER_A_VOL 0x20 128*f763b8ceSMatthias Ringwald #define CS43L22_REG_MASTER_B_VOL 0x21 129*f763b8ceSMatthias Ringwald #define CS43L22_REG_HEADPHONE_A_VOL 0x22 130*f763b8ceSMatthias Ringwald #define CS43L22_REG_HEADPHONE_B_VOL 0x23 131*f763b8ceSMatthias Ringwald #define CS43L22_REG_SPEAKER_A_VOL 0x24 132*f763b8ceSMatthias Ringwald #define CS43L22_REG_SPEAKER_B_VOL 0x25 133*f763b8ceSMatthias Ringwald #define CS43L22_REG_CH_MIXER_SWAP 0x26 134*f763b8ceSMatthias Ringwald #define CS43L22_REG_LIMIT_CTL1 0x27 135*f763b8ceSMatthias Ringwald #define CS43L22_REG_LIMIT_CTL2 0x28 136*f763b8ceSMatthias Ringwald #define CS43L22_REG_LIMIT_ATTACK_RATE 0x29 137*f763b8ceSMatthias Ringwald #define CS43L22_REG_OVF_CLK_STATUS 0x2E 138*f763b8ceSMatthias Ringwald #define CS43L22_REG_BATT_COMPENSATION 0x2F 139*f763b8ceSMatthias Ringwald #define CS43L22_REG_VP_BATTERY_LEVEL 0x30 140*f763b8ceSMatthias Ringwald #define CS43L22_REG_SPEAKER_STATUS 0x31 141*f763b8ceSMatthias Ringwald #define CS43L22_REG_TEMPMONITOR_CTL 0x32 142*f763b8ceSMatthias Ringwald #define CS43L22_REG_THERMAL_FOLDBACK 0x33 143*f763b8ceSMatthias Ringwald #define CS43L22_REG_CHARGE_PUMP_FREQ 0x34 144*f763b8ceSMatthias Ringwald 145*f763b8ceSMatthias Ringwald /******************************************************************************/ 146*f763b8ceSMatthias Ringwald /****************************** REGISTER MAPPING ******************************/ 147*f763b8ceSMatthias Ringwald /******************************************************************************/ 148*f763b8ceSMatthias Ringwald /** 149*f763b8ceSMatthias Ringwald * @brief CS43L22 ID 150*f763b8ceSMatthias Ringwald */ 151*f763b8ceSMatthias Ringwald #define CS43L22_ID 0xE0 152*f763b8ceSMatthias Ringwald #define CS43L22_ID_MASK 0xF8 153*f763b8ceSMatthias Ringwald /** 154*f763b8ceSMatthias Ringwald * @brief Chip ID Register: Chip I.D. and Revision Register 155*f763b8ceSMatthias Ringwald * Read only register 156*f763b8ceSMatthias Ringwald * Default value: 0x01 157*f763b8ceSMatthias Ringwald * [7:3] CHIPID[4:0]: I.D. code for the CS43L22. 158*f763b8ceSMatthias Ringwald * Default value: 11100b 159*f763b8ceSMatthias Ringwald * [2:0] REVID[2:0]: CS43L22 revision level. 160*f763b8ceSMatthias Ringwald * Default value: 161*f763b8ceSMatthias Ringwald * 000 - Rev A0 162*f763b8ceSMatthias Ringwald * 001 - Rev A1 163*f763b8ceSMatthias Ringwald * 010 - Rev B0 164*f763b8ceSMatthias Ringwald * 011 - Rev B1 165*f763b8ceSMatthias Ringwald */ 166*f763b8ceSMatthias Ringwald #define CS43L22_CHIPID_ADDR 0x01 167*f763b8ceSMatthias Ringwald 168*f763b8ceSMatthias Ringwald /** 169*f763b8ceSMatthias Ringwald * @} 170*f763b8ceSMatthias Ringwald */ 171*f763b8ceSMatthias Ringwald 172*f763b8ceSMatthias Ringwald /** @defgroup CS43L22_Exported_Macros 173*f763b8ceSMatthias Ringwald * @{ 174*f763b8ceSMatthias Ringwald */ 175*f763b8ceSMatthias Ringwald 176*f763b8ceSMatthias Ringwald /** 177*f763b8ceSMatthias Ringwald * @} 178*f763b8ceSMatthias Ringwald */ 179*f763b8ceSMatthias Ringwald 180*f763b8ceSMatthias Ringwald /** @defgroup CS43L22_Exported_Functions 181*f763b8ceSMatthias Ringwald * @{ 182*f763b8ceSMatthias Ringwald */ 183*f763b8ceSMatthias Ringwald 184*f763b8ceSMatthias Ringwald /*------------------------------------------------------------------------------ 185*f763b8ceSMatthias Ringwald Audio Codec functions 186*f763b8ceSMatthias Ringwald ------------------------------------------------------------------------------*/ 187*f763b8ceSMatthias Ringwald /* High Layer codec functions */ 188*f763b8ceSMatthias Ringwald uint32_t cs43l22_Init(uint16_t DeviceAddr, uint16_t OutputDevice, uint8_t Volume, uint32_t AudioFreq); 189*f763b8ceSMatthias Ringwald void cs43l22_DeInit(void); 190*f763b8ceSMatthias Ringwald uint32_t cs43l22_ReadID(uint16_t DeviceAddr); 191*f763b8ceSMatthias Ringwald uint32_t cs43l22_Play(uint16_t DeviceAddr, uint16_t* pBuffer, uint16_t Size); 192*f763b8ceSMatthias Ringwald uint32_t cs43l22_Pause(uint16_t DeviceAddr); 193*f763b8ceSMatthias Ringwald uint32_t cs43l22_Resume(uint16_t DeviceAddr); 194*f763b8ceSMatthias Ringwald uint32_t cs43l22_Stop(uint16_t DeviceAddr, uint32_t Cmd); 195*f763b8ceSMatthias Ringwald uint32_t cs43l22_SetVolume(uint16_t DeviceAddr, uint8_t Volume); 196*f763b8ceSMatthias Ringwald uint32_t cs43l22_SetFrequency(uint16_t DeviceAddr, uint32_t AudioFreq); 197*f763b8ceSMatthias Ringwald uint32_t cs43l22_SetMute(uint16_t DeviceAddr, uint32_t Cmd); 198*f763b8ceSMatthias Ringwald uint32_t cs43l22_SetOutputMode(uint16_t DeviceAddr, uint8_t Output); 199*f763b8ceSMatthias Ringwald uint32_t cs43l22_Reset(uint16_t DeviceAddr); 200*f763b8ceSMatthias Ringwald 201*f763b8ceSMatthias Ringwald /* AUDIO IO functions */ 202*f763b8ceSMatthias Ringwald void AUDIO_IO_Init(void); 203*f763b8ceSMatthias Ringwald void AUDIO_IO_DeInit(void); 204*f763b8ceSMatthias Ringwald void AUDIO_IO_Write(uint8_t Addr, uint8_t Reg, uint8_t Value); 205*f763b8ceSMatthias Ringwald uint8_t AUDIO_IO_Read(uint8_t Addr, uint8_t Reg); 206*f763b8ceSMatthias Ringwald 207*f763b8ceSMatthias Ringwald /* Audio driver structure */ 208*f763b8ceSMatthias Ringwald extern AUDIO_DrvTypeDef cs43l22_drv; 209*f763b8ceSMatthias Ringwald 210*f763b8ceSMatthias Ringwald #endif /* __CS43L22_H */ 211*f763b8ceSMatthias Ringwald 212*f763b8ceSMatthias Ringwald /** 213*f763b8ceSMatthias Ringwald * @} 214*f763b8ceSMatthias Ringwald */ 215*f763b8ceSMatthias Ringwald 216*f763b8ceSMatthias Ringwald /** 217*f763b8ceSMatthias Ringwald * @} 218*f763b8ceSMatthias Ringwald */ 219*f763b8ceSMatthias Ringwald 220*f763b8ceSMatthias Ringwald /** 221*f763b8ceSMatthias Ringwald * @} 222*f763b8ceSMatthias Ringwald */ 223*f763b8ceSMatthias Ringwald 224*f763b8ceSMatthias Ringwald /** 225*f763b8ceSMatthias Ringwald * @} 226*f763b8ceSMatthias Ringwald */ 227*f763b8ceSMatthias Ringwald 228*f763b8ceSMatthias Ringwald /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 229