1 /**
2 ******************************************************************************
3 * @file stm32l5xx_hal_smbus_ex.c
4 * @author MCD Application Team
5 * @brief SMBUS Extended HAL module driver.
6 * This file provides firmware functions to manage the following
7 * functionalities of SMBUS Extended peripheral:
8 * + Extended features functions
9 *
10 ******************************************************************************
11 * @attention
12 *
13 * Copyright (c) 2019 STMicroelectronics.
14 * All rights reserved.
15 *
16 * This software is licensed under terms that can be found in the LICENSE file
17 * in the root directory of this software component.
18 * If no LICENSE file comes with this software, it is provided AS-IS.
19 *
20 ******************************************************************************
21 @verbatim
22 ==============================================================================
23 ##### SMBUS peripheral Extended features #####
24 ==============================================================================
25
26 [..] Comparing to other previous devices, the SMBUS interface for STM32L5xx
27 devices contains the following additional features
28
29 (+) Disable or enable wakeup from Stop mode(s)
30 (+) Disable or enable Fast Mode Plus
31
32 ##### How to use this driver #####
33 ==============================================================================
34 (#) Configure the enable or disable of SMBUS Wake Up Mode using the functions :
35 (++) HAL_SMBUSEx_EnableWakeUp()
36 (++) HAL_SMBUSEx_DisableWakeUp()
37 (#) Configure the enable or disable of fast mode plus driving capability using the functions :
38 (++) HAL_SMBUSEx_EnableFastModePlus()
39 (++) HAL_SMBUSEx_DisableFastModePlus()
40 @endverbatim
41 */
42
43 /* Includes ------------------------------------------------------------------*/
44 #include "stm32l5xx_hal.h"
45
46 /** @addtogroup STM32L5xx_HAL_Driver
47 * @{
48 */
49
50 /** @defgroup SMBUSEx SMBUSEx
51 * @brief SMBUS Extended HAL module driver
52 * @{
53 */
54
55 #ifdef HAL_SMBUS_MODULE_ENABLED
56
57 /* Private typedef -----------------------------------------------------------*/
58 /* Private define ------------------------------------------------------------*/
59 /* Private macro -------------------------------------------------------------*/
60 /* Private variables ---------------------------------------------------------*/
61 /* Private function prototypes -----------------------------------------------*/
62 /* Private functions ---------------------------------------------------------*/
63
64 /** @defgroup SMBUSEx_Exported_Functions SMBUS Extended Exported Functions
65 * @{
66 */
67
68 /** @defgroup SMBUSEx_Exported_Functions_Group2 WakeUp Mode Functions
69 * @brief WakeUp Mode Functions
70 *
71 @verbatim
72 ===============================================================================
73 ##### WakeUp Mode Functions #####
74 ===============================================================================
75 [..] This section provides functions allowing to:
76 (+) Configure Wake Up Feature
77
78 @endverbatim
79 * @{
80 */
81
82 /**
83 * @brief Enable SMBUS wakeup from Stop mode(s).
84 * @param hsmbus Pointer to a SMBUS_HandleTypeDef structure that contains
85 * the configuration information for the specified SMBUSx peripheral.
86 * @retval HAL status
87 */
HAL_SMBUSEx_EnableWakeUp(SMBUS_HandleTypeDef * hsmbus)88 HAL_StatusTypeDef HAL_SMBUSEx_EnableWakeUp(SMBUS_HandleTypeDef *hsmbus)
89 {
90 /* Check the parameters */
91 assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hsmbus->Instance));
92
93 if (hsmbus->State == HAL_SMBUS_STATE_READY)
94 {
95 /* Process Locked */
96 __HAL_LOCK(hsmbus);
97
98 hsmbus->State = HAL_SMBUS_STATE_BUSY;
99
100 /* Disable the selected SMBUS peripheral */
101 __HAL_SMBUS_DISABLE(hsmbus);
102
103 /* Enable wakeup from stop mode */
104 hsmbus->Instance->CR1 |= I2C_CR1_WUPEN;
105
106 __HAL_SMBUS_ENABLE(hsmbus);
107
108 hsmbus->State = HAL_SMBUS_STATE_READY;
109
110 /* Process Unlocked */
111 __HAL_UNLOCK(hsmbus);
112
113 return HAL_OK;
114 }
115 else
116 {
117 return HAL_BUSY;
118 }
119 }
120
121 /**
122 * @brief Disable SMBUS wakeup from Stop mode(s).
123 * @param hsmbus Pointer to a SMBUS_HandleTypeDef structure that contains
124 * the configuration information for the specified SMBUSx peripheral.
125 * @retval HAL status
126 */
HAL_SMBUSEx_DisableWakeUp(SMBUS_HandleTypeDef * hsmbus)127 HAL_StatusTypeDef HAL_SMBUSEx_DisableWakeUp(SMBUS_HandleTypeDef *hsmbus)
128 {
129 /* Check the parameters */
130 assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hsmbus->Instance));
131
132 if (hsmbus->State == HAL_SMBUS_STATE_READY)
133 {
134 /* Process Locked */
135 __HAL_LOCK(hsmbus);
136
137 hsmbus->State = HAL_SMBUS_STATE_BUSY;
138
139 /* Disable the selected SMBUS peripheral */
140 __HAL_SMBUS_DISABLE(hsmbus);
141
142 /* Disable wakeup from stop mode */
143 hsmbus->Instance->CR1 &= ~(I2C_CR1_WUPEN);
144
145 __HAL_SMBUS_ENABLE(hsmbus);
146
147 hsmbus->State = HAL_SMBUS_STATE_READY;
148
149 /* Process Unlocked */
150 __HAL_UNLOCK(hsmbus);
151
152 return HAL_OK;
153 }
154 else
155 {
156 return HAL_BUSY;
157 }
158 }
159 /**
160 * @}
161 */
162
163 /** @defgroup SMBUSEx_Exported_Functions_Group3 Fast Mode Plus Functions
164 * @brief Fast Mode Plus Functions
165 *
166 @verbatim
167 ===============================================================================
168 ##### Fast Mode Plus Functions #####
169 ===============================================================================
170 [..] This section provides functions allowing to:
171 (+) Configure Fast Mode Plus
172
173 @endverbatim
174 * @{
175 */
176
177 /**
178 * @brief Enable the SMBUS fast mode plus driving capability.
179 * @param ConfigFastModePlus Selects the pin.
180 * This parameter can be one of the @ref SMBUSEx_FastModePlus values
181 * @note For I2C1, fast mode plus driving capability can be enabled on all selected
182 * I2C1 pins using SMBUS_FASTMODEPLUS_I2C1 parameter or independently
183 * on each one of the following pins PB6, PB7, PB8 and PB9.
184 * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability
185 * can be enabled only by using SMBUS_FASTMODEPLUS_I2C1 parameter.
186 * @note For all I2C2 pins fast mode plus driving capability can be enabled
187 * only by using SMBUS_FASTMODEPLUS_I2C2 parameter.
188 * @note For all I2C3 pins fast mode plus driving capability can be enabled
189 * only by using SMBUS_FASTMODEPLUS_I2C3 parameter.
190 * @note For all I2C4 pins fast mode plus driving capability can be enabled
191 * only by using SMBUS_FASTMODEPLUS_I2C4 parameter.
192 * @retval None
193 */
HAL_SMBUSEx_EnableFastModePlus(uint32_t ConfigFastModePlus)194 void HAL_SMBUSEx_EnableFastModePlus(uint32_t ConfigFastModePlus)
195 {
196 /* Check the parameter */
197 assert_param(IS_SMBUS_FASTMODEPLUS(ConfigFastModePlus));
198
199 /* Enable SYSCFG clock */
200 __HAL_RCC_SYSCFG_CLK_ENABLE();
201
202 /* Enable fast mode plus driving capability for selected pin */
203 SET_BIT(SYSCFG->CFGR1, (uint32_t)ConfigFastModePlus);
204 }
205
206 /**
207 * @brief Disable the SMBUS fast mode plus driving capability.
208 * @param ConfigFastModePlus Selects the pin.
209 * This parameter can be one of the @ref SMBUSEx_FastModePlus values
210 * @note For I2C1, fast mode plus driving capability can be disabled on all selected
211 * I2C1 pins using SMBUS_FASTMODEPLUS_I2C1 parameter or independently
212 * on each one of the following pins PB6, PB7, PB8 and PB9.
213 * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability
214 * can be disabled only by using SMBUS_FASTMODEPLUS_I2C1 parameter.
215 * @note For all I2C2 pins fast mode plus driving capability can be disabled
216 * only by using SMBUS_FASTMODEPLUS_I2C2 parameter.
217 * @note For all I2C3 pins fast mode plus driving capability can be disabled
218 * only by using SMBUS_FASTMODEPLUS_I2C3 parameter.
219 * @note For all I2C4 pins fast mode plus driving capability can be disabled
220 * only by using SMBUS_FASTMODEPLUS_I2C4 parameter.
221 * @retval None
222 */
HAL_SMBUSEx_DisableFastModePlus(uint32_t ConfigFastModePlus)223 void HAL_SMBUSEx_DisableFastModePlus(uint32_t ConfigFastModePlus)
224 {
225 /* Check the parameter */
226 assert_param(IS_SMBUS_FASTMODEPLUS(ConfigFastModePlus));
227
228 /* Enable SYSCFG clock */
229 __HAL_RCC_SYSCFG_CLK_ENABLE();
230
231 /* Disable fast mode plus driving capability for selected pin */
232 CLEAR_BIT(SYSCFG->CFGR1, (uint32_t)ConfigFastModePlus);
233 }
234
235 /**
236 * @}
237 */
238
239 /**
240 * @}
241 */
242
243 /**
244 * @}
245 */
246
247 #endif /* HAL_SMBUS_MODULE_ENABLED */
248 /**
249 * @}
250 */
251
252 /**
253 * @}
254 */
255