Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2 | Rev 3 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | /** |
1 | /** |
| 2 | ****************************************************************************** |
2 | ****************************************************************************** |
| 3 | * @file stm32f1xx_hal_pccard.c |
3 | * @file stm32f1xx_hal_pccard.c |
| 4 | * @author MCD Application Team |
4 | * @author MCD Application Team |
| 5 | * @brief PCCARD HAL module driver. |
5 | * @brief PCCARD HAL module driver. |
| 6 | * This file provides a generic firmware to drive PCCARD memories mounted |
6 | * This file provides a generic firmware to drive PCCARD memories mounted |
| 7 | * as external device. |
7 | * as external device. |
| 8 | * |
8 | * |
| 9 | @verbatim |
9 | ****************************************************************************** |
| 10 | =============================================================================== |
10 | * @attention |
| 11 | ##### How to use this driver ##### |
11 | * |
| 12 | =============================================================================== |
12 | * Copyright (c) 2016 STMicroelectronics. |
| 13 | [..] |
13 | * All rights reserved. |
| 14 | This driver is a generic layered driver which contains a set of APIs used to |
14 | * |
| 15 | control PCCARD/compact flash memories. It uses the FSMC layer functions |
15 | * This software is licensed under terms that can be found in the LICENSE file |
| 16 | to interface with PCCARD devices. This driver is used for: |
16 | * in the root directory of this software component. |
| 17 | 17 | * If no LICENSE file comes with this software, it is provided AS-IS. |
|
| 18 | (+) PCCARD/Compact Flash memory configuration sequence using the function |
18 | * |
| 19 | HAL_PCCARD_Init()/HAL_CF_Init() with control and timing parameters for |
19 | ****************************************************************************** |
| 20 | both common and attribute spaces. |
20 | @verbatim |
| 21 | 21 | =============================================================================== |
|
| 22 | (+) Read PCCARD/Compact Flash memory maker and device IDs using the function |
22 | ##### How to use this driver ##### |
| 23 | HAL_PCCARD_Read_ID()/HAL_CF_Read_ID(). The read information is stored in |
23 | =============================================================================== |
| 24 | the CompactFlash_ID structure declared by the function caller. |
24 | [..] |
| 25 | 25 | This driver is a generic layered driver which contains a set of APIs used to |
|
| 26 | (+) Access PCCARD/Compact Flash memory by read/write operations using the functions |
26 | control PCCARD/compact flash memories. It uses the FSMC layer functions |
| 27 | HAL_PCCARD_Read_Sector()/ HAL_PCCARD_Write_Sector() - |
27 | to interface with PCCARD devices. This driver is used for: |
| 28 | HAL_CF_Read_Sector()/HAL_CF_Write_Sector(), to read/write sector. |
28 | |
| 29 | 29 | (+) PCCARD/Compact Flash memory configuration sequence using the function |
|
| 30 | (+) Perform PCCARD/Compact Flash Reset chip operation using the function |
30 | HAL_PCCARD_Init()/HAL_CF_Init() with control and timing parameters for |
| 31 | HAL_PCCARD_Reset()/HAL_CF_Reset. |
31 | both common and attribute spaces. |
| 32 | 32 | ||
| 33 | (+) Perform PCCARD/Compact Flash erase sector operation using the function |
33 | (+) Read PCCARD/Compact Flash memory maker and device IDs using the function |
| 34 | HAL_PCCARD_Erase_Sector()/HAL_CF_Erase_Sector. |
34 | HAL_PCCARD_Read_ID()/HAL_CF_Read_ID(). The read information is stored in |
| 35 | 35 | the CompactFlash_ID structure declared by the function caller. |
|
| 36 | (+) Read the PCCARD/Compact Flash status operation using the function |
36 | |
| 37 | HAL_PCCARD_ReadStatus()/HAL_CF_ReadStatus(). |
37 | (+) Access PCCARD/Compact Flash memory by read/write operations using the functions |
| 38 | 38 | HAL_PCCARD_Read_Sector()/ HAL_PCCARD_Write_Sector() - |
|
| 39 | (+) You can monitor the PCCARD/Compact Flash device HAL state by calling |
39 | HAL_CF_Read_Sector()/HAL_CF_Write_Sector(), to read/write sector. |
| 40 | the function HAL_PCCARD_GetState()/HAL_CF_GetState() |
40 | |
| 41 | 41 | (+) Perform PCCARD/Compact Flash Reset chip operation using the function |
|
| 42 | [..] |
42 | HAL_PCCARD_Reset()/HAL_CF_Reset. |
| 43 | (@) This driver is a set of generic APIs which handle standard PCCARD/compact flash |
43 | |
| 44 | operations. If a PCCARD/Compact Flash device contains different operations |
44 | (+) Perform PCCARD/Compact Flash erase sector operation using the function |
| 45 | and/or implementations, it should be implemented separately. |
45 | HAL_PCCARD_Erase_Sector()/HAL_CF_Erase_Sector. |
| 46 | 46 | ||
| 47 | *** Callback registration *** |
47 | (+) Read the PCCARD/Compact Flash status operation using the function |
| 48 | ============================================= |
48 | HAL_PCCARD_ReadStatus()/HAL_CF_ReadStatus(). |
| 49 | [..] |
49 | |
| 50 | The compilation define USE_HAL_PCCARD_REGISTER_CALLBACKS when set to 1 |
50 | (+) You can monitor the PCCARD/Compact Flash device HAL state by calling |
| 51 | allows the user to configure dynamically the driver callbacks. |
51 | the function HAL_PCCARD_GetState()/HAL_CF_GetState() |
| 52 | 52 | ||
| 53 | Use Functions @ref HAL_PCCARD_RegisterCallback() to register a user callback, |
53 | [..] |
| 54 | it allows to register following callbacks: |
54 | (@) This driver is a set of generic APIs which handle standard PCCARD/compact flash |
| 55 | (+) MspInitCallback : PCCARD MspInit. |
55 | operations. If a PCCARD/Compact Flash device contains different operations |
| 56 | (+) MspDeInitCallback : PCCARD MspDeInit. |
56 | and/or implementations, it should be implemented separately. |
| 57 | This function takes as parameters the HAL peripheral handle, the Callback ID |
57 | |
| 58 | and a pointer to the user callback function. |
58 | *** Callback registration *** |
| 59 | 59 | ============================================= |
|
| 60 | Use function @ref HAL_PCCARD_UnRegisterCallback() to reset a callback to the default |
60 | [..] |
| 61 | weak (surcharged) function. It allows to reset following callbacks: |
61 | The compilation define USE_HAL_PCCARD_REGISTER_CALLBACKS when set to 1 |
| 62 | (+) MspInitCallback : PCCARD MspInit. |
62 | allows the user to configure dynamically the driver callbacks. |
| 63 | (+) MspDeInitCallback : PCCARD MspDeInit. |
63 | |
| 64 | This function) takes as parameters the HAL peripheral handle and the Callback ID. |
64 | Use Functions HAL_PCCARD_RegisterCallback() to register a user callback, |
| 65 | 65 | it allows to register following callbacks: |
|
| 66 | By default, after the @ref HAL_PCCARD_Init and if the state is HAL_PCCARD_STATE_RESET |
66 | (+) MspInitCallback : PCCARD MspInit. |
| 67 | all callbacks are reset to the corresponding legacy weak (surcharged) functions. |
67 | (+) MspDeInitCallback : PCCARD MspDeInit. |
| 68 | Exception done for MspInit and MspDeInit callbacks that are respectively |
68 | This function takes as parameters the HAL peripheral handle, the Callback ID |
| 69 | reset to the legacy weak (surcharged) functions in the @ref HAL_PCCARD_Init |
69 | and a pointer to the user callback function. |
| 70 | and @ref HAL_PCCARD_DeInit only when these callbacks are null (not registered beforehand). |
70 | |
| 71 | If not, MspInit or MspDeInit are not null, the @ref HAL_PCCARD_Init and @ref HAL_PCCARD_DeInit |
71 | Use function HAL_PCCARD_UnRegisterCallback() to reset a callback to the default |
| 72 | keep and use the user MspInit/MspDeInit callbacks (registered beforehand) |
72 | weak (surcharged) function. It allows to reset following callbacks: |
| 73 | 73 | (+) MspInitCallback : PCCARD MspInit. |
|
| 74 | Callbacks can be registered/unregistered in READY state only. |
74 | (+) MspDeInitCallback : PCCARD MspDeInit. |
| 75 | Exception done for MspInit/MspDeInit callbacks that can be registered/unregistered |
75 | This function) takes as parameters the HAL peripheral handle and the Callback ID. |
| 76 | in READY or RESET state, thus registered (user) MspInit/DeInit callbacks can be used |
76 | |
| 77 | during the Init/DeInit. |
77 | By default, after the HAL_PCCARD_Init and if the state is HAL_PCCARD_STATE_RESET |
| 78 | In that case first register the MspInit/MspDeInit user callbacks |
78 | all callbacks are reset to the corresponding legacy weak (surcharged) functions. |
| 79 | using @ref HAL_PCCARD_RegisterCallback before calling @ref HAL_PCCARD_DeInit |
79 | Exception done for MspInit and MspDeInit callbacks that are respectively |
| 80 | or @ref HAL_PCCARD_Init function. |
80 | reset to the legacy weak (surcharged) functions in the HAL_PCCARD_Init |
| 81 | 81 | and HAL_PCCARD_DeInit only when these callbacks are null (not registered beforehand). |
|
| 82 | When The compilation define USE_HAL_PCCARD_REGISTER_CALLBACKS is set to 0 or |
82 | If not, MspInit or MspDeInit are not null, the HAL_PCCARD_Init and HAL_PCCARD_DeInit |
| 83 | not defined, the callback registering feature is not available |
83 | keep and use the user MspInit/MspDeInit callbacks (registered beforehand) |
| 84 | and weak (surcharged) callbacks are used. |
84 | |
| 85 | 85 | Callbacks can be registered/unregistered in READY state only. |
|
| 86 | @endverbatim |
86 | Exception done for MspInit/MspDeInit callbacks that can be registered/unregistered |
| 87 | ****************************************************************************** |
87 | in READY or RESET state, thus registered (user) MspInit/DeInit callbacks can be used |
| 88 | * @attention |
88 | during the Init/DeInit. |
| 89 | * |
89 | In that case first register the MspInit/MspDeInit user callbacks |
| 90 | * <h2><center>© Copyright (c) 2016 STMicroelectronics. |
90 | using HAL_PCCARD_RegisterCallback before calling HAL_PCCARD_DeInit |
| 91 | * All rights reserved.</center></h2> |
91 | or HAL_PCCARD_Init function. |
| 92 | * |
92 | |
| 93 | * This software component is licensed by ST under BSD 3-Clause license, |
93 | When The compilation define USE_HAL_PCCARD_REGISTER_CALLBACKS is set to 0 or |
| 94 | * the "License"; You may not use this file except in compliance with the |
94 | not defined, the callback registering feature is not available |
| 95 | * License. You may obtain a copy of the License at: |
95 | and weak (surcharged) callbacks are used. |
| 96 | * opensource.org/licenses/BSD-3-Clause |
96 | |
| 97 | * |
97 | @endverbatim |
| 98 | ****************************************************************************** |
98 | ****************************************************************************** |
| 99 | */ |
99 | */ |
| 100 | 100 | ||
| 101 | /* Includes ------------------------------------------------------------------*/ |
101 | /* Includes ------------------------------------------------------------------*/ |
| 102 | #include "stm32f1xx_hal.h" |
102 | #include "stm32f1xx_hal.h" |
| 103 | 103 | ||
| 104 | #if defined(FSMC_BANK4) |
104 | #if defined(FSMC_BANK4) |
| 105 | 105 | ||
| 106 | /** @addtogroup STM32F1xx_HAL_Driver |
106 | /** @addtogroup STM32F1xx_HAL_Driver |
| 107 | * @{ |
107 | * @{ |
| 108 | */ |
108 | */ |
| 109 | 109 | ||
| 110 | #ifdef HAL_PCCARD_MODULE_ENABLED |
110 | #ifdef HAL_PCCARD_MODULE_ENABLED |
| 111 | 111 | ||
| 112 | /** @defgroup PCCARD PCCARD |
112 | /** @defgroup PCCARD PCCARD |
| 113 | * @brief PCCARD HAL module driver |
113 | * @brief PCCARD HAL module driver |
| 114 | * @{ |
114 | * @{ |
| 115 | */ |
115 | */ |
| 116 | /* Private typedef -----------------------------------------------------------*/ |
116 | /* Private typedef -----------------------------------------------------------*/ |
| 117 | /* Private define ------------------------------------------------------------*/ |
117 | /* Private define ------------------------------------------------------------*/ |
| 118 | 118 | ||
| 119 | /** @defgroup PCCARD_Private_Defines PCCARD Private Defines |
119 | /** @defgroup PCCARD_Private_Defines PCCARD Private Defines |
| 120 | * @{ |
120 | * @{ |
| 121 | */ |
121 | */ |
| 122 | #define PCCARD_TIMEOUT_READ_ID 0x0000FFFFU |
122 | #define PCCARD_TIMEOUT_READ_ID 0x0000FFFFU |
| 123 | #define PCCARD_TIMEOUT_READ_WRITE_SECTOR 0x0000FFFFU |
123 | #define PCCARD_TIMEOUT_READ_WRITE_SECTOR 0x0000FFFFU |
| 124 | #define PCCARD_TIMEOUT_ERASE_SECTOR 0x00000400U |
124 | #define PCCARD_TIMEOUT_ERASE_SECTOR 0x00000400U |
| 125 | #define PCCARD_TIMEOUT_STATUS 0x01000000U |
125 | #define PCCARD_TIMEOUT_STATUS 0x01000000U |
| 126 | 126 | ||
| 127 | #define PCCARD_STATUS_OK (uint8_t)0x58 |
127 | #define PCCARD_STATUS_OK (uint8_t)0x58 |
| 128 | #define PCCARD_STATUS_WRITE_OK (uint8_t)0x50 |
128 | #define PCCARD_STATUS_WRITE_OK (uint8_t)0x50 |
| 129 | /** |
129 | /** |
| 130 | * @} |
130 | * @} |
| 131 | */ |
131 | */ |
| 132 | 132 | ||
| 133 | /* Private macro -------------------------------------------------------------*/ |
133 | /* Private macro -------------------------------------------------------------*/ |
| 134 | /* Private variables ---------------------------------------------------------*/ |
134 | /* Private variables ---------------------------------------------------------*/ |
| 135 | /* Private function ----------------------------------------------------------*/ |
135 | /* Private function ----------------------------------------------------------*/ |
| 136 | /* Exported functions --------------------------------------------------------*/ |
136 | /* Exported functions --------------------------------------------------------*/ |
| 137 | /** @defgroup PCCARD_Exported_Functions PCCARD Exported Functions |
137 | /** @defgroup PCCARD_Exported_Functions PCCARD Exported Functions |
| 138 | * @{ |
138 | * @{ |
| 139 | */ |
139 | */ |
| 140 | 140 | ||
| 141 | /** @defgroup PCCARD_Exported_Functions_Group1 Initialization and de-initialization functions |
141 | /** @defgroup PCCARD_Exported_Functions_Group1 Initialization and de-initialization functions |
| 142 | * @brief Initialization and Configuration functions |
142 | * @brief Initialization and Configuration functions |
| 143 | * |
143 | * |
| 144 | @verbatim |
144 | @verbatim |
| 145 | ============================================================================== |
145 | ============================================================================== |
| 146 | ##### PCCARD Initialization and de-initialization functions ##### |
146 | ##### PCCARD Initialization and de-initialization functions ##### |
| 147 | ============================================================================== |
147 | ============================================================================== |
| 148 | [..] |
148 | [..] |
| 149 | This section provides functions allowing to initialize/de-initialize |
149 | This section provides functions allowing to initialize/de-initialize |
| 150 | the PCCARD memory |
150 | the PCCARD memory |
| 151 | 151 | ||
| 152 | @endverbatim |
152 | @endverbatim |
| 153 | * @{ |
153 | * @{ |
| 154 | */ |
154 | */ |
| 155 | 155 | ||
| 156 | /** |
156 | /** |
| 157 | * @brief Perform the PCCARD memory Initialization sequence |
157 | * @brief Perform the PCCARD memory Initialization sequence |
| 158 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
158 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 159 | * the configuration information for PCCARD module. |
159 | * the configuration information for PCCARD module. |
| 160 | * @param ComSpaceTiming Common space timing structure |
160 | * @param ComSpaceTiming Common space timing structure |
| 161 | * @param AttSpaceTiming Attribute space timing structure |
161 | * @param AttSpaceTiming Attribute space timing structure |
| 162 | * @param IOSpaceTiming IO space timing structure |
162 | * @param IOSpaceTiming IO space timing structure |
| 163 | * @retval HAL status |
163 | * @retval HAL status |
| 164 | */ |
164 | */ |
| 165 | HAL_StatusTypeDef HAL_PCCARD_Init(PCCARD_HandleTypeDef *hpccard, FSMC_NAND_PCC_TimingTypeDef *ComSpaceTiming, |
165 | HAL_StatusTypeDef HAL_PCCARD_Init(PCCARD_HandleTypeDef *hpccard, FSMC_NAND_PCC_TimingTypeDef *ComSpaceTiming, |
| 166 | FSMC_NAND_PCC_TimingTypeDef *AttSpaceTiming, FSMC_NAND_PCC_TimingTypeDef *IOSpaceTiming) |
166 | FSMC_NAND_PCC_TimingTypeDef *AttSpaceTiming, FSMC_NAND_PCC_TimingTypeDef *IOSpaceTiming) |
| 167 | { |
167 | { |
| 168 | /* Check the PCCARD controller state */ |
168 | /* Check the PCCARD controller state */ |
| 169 | if (hpccard == NULL) |
169 | if (hpccard == NULL) |
| 170 | { |
170 | { |
| 171 | return HAL_ERROR; |
171 | return HAL_ERROR; |
| 172 | } |
172 | } |
| 173 | 173 | ||
| 174 | if (hpccard->State == HAL_PCCARD_STATE_RESET) |
174 | if (hpccard->State == HAL_PCCARD_STATE_RESET) |
| 175 | { |
175 | { |
| 176 | /* Allocate lock resource and initialize it */ |
176 | /* Allocate lock resource and initialize it */ |
| 177 | hpccard->Lock = HAL_UNLOCKED; |
177 | hpccard->Lock = HAL_UNLOCKED; |
| 178 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
178 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
| 179 | if (hpccard->MspInitCallback == NULL) |
179 | if (hpccard->MspInitCallback == NULL) |
| 180 | { |
180 | { |
| 181 | hpccard->MspInitCallback = HAL_PCCARD_MspInit; |
181 | hpccard->MspInitCallback = HAL_PCCARD_MspInit; |
| 182 | } |
182 | } |
| 183 | hpccard->ItCallback = HAL_PCCARD_ITCallback; |
183 | hpccard->ItCallback = HAL_PCCARD_ITCallback; |
| 184 | 184 | ||
| 185 | /* Init the low level hardware */ |
185 | /* Init the low level hardware */ |
| 186 | hpccard->MspInitCallback(hpccard); |
186 | hpccard->MspInitCallback(hpccard); |
| 187 | #else |
187 | #else |
| 188 | /* Initialize the low level hardware (MSP) */ |
188 | /* Initialize the low level hardware (MSP) */ |
| 189 | HAL_PCCARD_MspInit(hpccard); |
189 | HAL_PCCARD_MspInit(hpccard); |
| 190 | #endif |
190 | #endif |
| 191 | } |
191 | } |
| 192 | 192 | ||
| 193 | /* Initialize the PCCARD state */ |
193 | /* Initialize the PCCARD state */ |
| 194 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
194 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
| 195 | 195 | ||
| 196 | /* Initialize PCCARD control Interface */ |
196 | /* Initialize PCCARD control Interface */ |
| 197 | FSMC_PCCARD_Init(hpccard->Instance, &(hpccard->Init)); |
197 | FSMC_PCCARD_Init(hpccard->Instance, &(hpccard->Init)); |
| 198 | 198 | ||
| 199 | /* Init PCCARD common space timing Interface */ |
199 | /* Init PCCARD common space timing Interface */ |
| 200 | FSMC_PCCARD_CommonSpace_Timing_Init(hpccard->Instance, ComSpaceTiming); |
200 | FSMC_PCCARD_CommonSpace_Timing_Init(hpccard->Instance, ComSpaceTiming); |
| 201 | 201 | ||
| 202 | /* Init PCCARD attribute space timing Interface */ |
202 | /* Init PCCARD attribute space timing Interface */ |
| 203 | FSMC_PCCARD_AttributeSpace_Timing_Init(hpccard->Instance, AttSpaceTiming); |
203 | FSMC_PCCARD_AttributeSpace_Timing_Init(hpccard->Instance, AttSpaceTiming); |
| 204 | 204 | ||
| 205 | /* Init PCCARD IO space timing Interface */ |
205 | /* Init PCCARD IO space timing Interface */ |
| 206 | FSMC_PCCARD_IOSpace_Timing_Init(hpccard->Instance, IOSpaceTiming); |
206 | FSMC_PCCARD_IOSpace_Timing_Init(hpccard->Instance, IOSpaceTiming); |
| 207 | 207 | ||
| 208 | /* Enable the PCCARD device */ |
208 | /* Enable the PCCARD device */ |
| 209 | __FSMC_PCCARD_ENABLE(hpccard->Instance); |
209 | __FSMC_PCCARD_ENABLE(hpccard->Instance); |
| 210 | 210 | ||
| 211 | /* Update the PCCARD state */ |
211 | /* Update the PCCARD state */ |
| 212 | hpccard->State = HAL_PCCARD_STATE_READY; |
212 | hpccard->State = HAL_PCCARD_STATE_READY; |
| 213 | 213 | ||
| 214 | return HAL_OK; |
214 | return HAL_OK; |
| 215 | 215 | ||
| 216 | } |
216 | } |
| 217 | 217 | ||
| 218 | /** |
218 | /** |
| 219 | * @brief Perform the PCCARD memory De-initialization sequence |
219 | * @brief Perform the PCCARD memory De-initialization sequence |
| 220 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
220 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 221 | * the configuration information for PCCARD module. |
221 | * the configuration information for PCCARD module. |
| 222 | * @retval HAL status |
222 | * @retval HAL status |
| 223 | */ |
223 | */ |
| 224 | HAL_StatusTypeDef HAL_PCCARD_DeInit(PCCARD_HandleTypeDef *hpccard) |
224 | HAL_StatusTypeDef HAL_PCCARD_DeInit(PCCARD_HandleTypeDef *hpccard) |
| 225 | { |
225 | { |
| 226 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
226 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
| 227 | if (hpccard->MspDeInitCallback == NULL) |
227 | if (hpccard->MspDeInitCallback == NULL) |
| 228 | { |
228 | { |
| 229 | hpccard->MspDeInitCallback = HAL_PCCARD_MspDeInit; |
229 | hpccard->MspDeInitCallback = HAL_PCCARD_MspDeInit; |
| 230 | } |
230 | } |
| 231 | 231 | ||
| 232 | /* DeInit the low level hardware */ |
232 | /* DeInit the low level hardware */ |
| 233 | hpccard->MspDeInitCallback(hpccard); |
233 | hpccard->MspDeInitCallback(hpccard); |
| 234 | #else |
234 | #else |
| 235 | /* De-Initialize the low level hardware (MSP) */ |
235 | /* De-Initialize the low level hardware (MSP) */ |
| 236 | HAL_PCCARD_MspDeInit(hpccard); |
236 | HAL_PCCARD_MspDeInit(hpccard); |
| 237 | #endif |
237 | #endif |
| 238 | 238 | ||
| 239 | /* Configure the PCCARD registers with their reset values */ |
239 | /* Configure the PCCARD registers with their reset values */ |
| 240 | FSMC_PCCARD_DeInit(hpccard->Instance); |
240 | FSMC_PCCARD_DeInit(hpccard->Instance); |
| 241 | 241 | ||
| 242 | /* Update the PCCARD controller state */ |
242 | /* Update the PCCARD controller state */ |
| 243 | hpccard->State = HAL_PCCARD_STATE_RESET; |
243 | hpccard->State = HAL_PCCARD_STATE_RESET; |
| 244 | 244 | ||
| 245 | /* Release Lock */ |
245 | /* Release Lock */ |
| 246 | __HAL_UNLOCK(hpccard); |
246 | __HAL_UNLOCK(hpccard); |
| 247 | 247 | ||
| 248 | return HAL_OK; |
248 | return HAL_OK; |
| 249 | } |
249 | } |
| 250 | 250 | ||
| 251 | /** |
251 | /** |
| 252 | * @brief PCCARD MSP Init |
252 | * @brief PCCARD MSP Init |
| 253 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
253 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 254 | * the configuration information for PCCARD module. |
254 | * the configuration information for PCCARD module. |
| 255 | * @retval None |
255 | * @retval None |
| 256 | */ |
256 | */ |
| 257 | __weak void HAL_PCCARD_MspInit(PCCARD_HandleTypeDef *hpccard) |
257 | __weak void HAL_PCCARD_MspInit(PCCARD_HandleTypeDef *hpccard) |
| 258 | { |
258 | { |
| 259 | /* Prevent unused argument(s) compilation warning */ |
259 | /* Prevent unused argument(s) compilation warning */ |
| 260 | UNUSED(hpccard); |
260 | UNUSED(hpccard); |
| 261 | /* NOTE : This function Should not be modified, when the callback is needed, |
261 | /* NOTE : This function Should not be modified, when the callback is needed, |
| 262 | the HAL_PCCARD_MspInit could be implemented in the user file |
262 | the HAL_PCCARD_MspInit could be implemented in the user file |
| 263 | */ |
263 | */ |
| 264 | } |
264 | } |
| 265 | 265 | ||
| 266 | /** |
266 | /** |
| 267 | * @brief PCCARD MSP DeInit |
267 | * @brief PCCARD MSP DeInit |
| 268 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
268 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 269 | * the configuration information for PCCARD module. |
269 | * the configuration information for PCCARD module. |
| 270 | * @retval None |
270 | * @retval None |
| 271 | */ |
271 | */ |
| 272 | __weak void HAL_PCCARD_MspDeInit(PCCARD_HandleTypeDef *hpccard) |
272 | __weak void HAL_PCCARD_MspDeInit(PCCARD_HandleTypeDef *hpccard) |
| 273 | { |
273 | { |
| 274 | /* Prevent unused argument(s) compilation warning */ |
274 | /* Prevent unused argument(s) compilation warning */ |
| 275 | UNUSED(hpccard); |
275 | UNUSED(hpccard); |
| 276 | /* NOTE : This function Should not be modified, when the callback is needed, |
276 | /* NOTE : This function Should not be modified, when the callback is needed, |
| 277 | the HAL_PCCARD_MspDeInit could be implemented in the user file |
277 | the HAL_PCCARD_MspDeInit could be implemented in the user file |
| 278 | */ |
278 | */ |
| 279 | } |
279 | } |
| 280 | 280 | ||
| 281 | /** |
281 | /** |
| 282 | * @} |
282 | * @} |
| 283 | */ |
283 | */ |
| 284 | 284 | ||
| 285 | /** @defgroup PCCARD_Exported_Functions_Group2 Input and Output functions |
285 | /** @defgroup PCCARD_Exported_Functions_Group2 Input and Output functions |
| 286 | * @brief Input Output and memory control functions |
286 | * @brief Input Output and memory control functions |
| 287 | * |
287 | * |
| 288 | @verbatim |
288 | @verbatim |
| 289 | ============================================================================== |
289 | ============================================================================== |
| 290 | ##### PCCARD Input and Output functions ##### |
290 | ##### PCCARD Input and Output functions ##### |
| 291 | ============================================================================== |
291 | ============================================================================== |
| 292 | [..] |
292 | [..] |
| 293 | This section provides functions allowing to use and control the PCCARD memory |
293 | This section provides functions allowing to use and control the PCCARD memory |
| 294 | 294 | ||
| 295 | @endverbatim |
295 | @endverbatim |
| 296 | * @{ |
296 | * @{ |
| 297 | */ |
297 | */ |
| 298 | 298 | ||
| 299 | /** |
299 | /** |
| 300 | * @brief Read Compact Flash's ID. |
300 | * @brief Read Compact Flash's ID. |
| 301 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
301 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 302 | * the configuration information for PCCARD module. |
302 | * the configuration information for PCCARD module. |
| 303 | * @param CompactFlash_ID Compact flash ID structure. |
303 | * @param CompactFlash_ID Compact flash ID structure. |
| 304 | * @param pStatus pointer to compact flash status |
304 | * @param pStatus pointer to compact flash status |
| 305 | * @retval HAL status |
305 | * @retval HAL status |
| 306 | * |
306 | * |
| 307 | */ |
307 | */ |
| 308 | HAL_StatusTypeDef HAL_PCCARD_Read_ID(PCCARD_HandleTypeDef *hpccard, uint8_t CompactFlash_ID[], uint8_t *pStatus) |
308 | HAL_StatusTypeDef HAL_PCCARD_Read_ID(PCCARD_HandleTypeDef *hpccard, uint8_t CompactFlash_ID[], uint8_t *pStatus) |
| 309 | { |
309 | { |
| 310 | uint32_t timeout = PCCARD_TIMEOUT_READ_ID, index = 0U; |
310 | uint32_t timeout = PCCARD_TIMEOUT_READ_ID, index = 0U; |
| 311 | uint8_t status = 0; |
311 | uint8_t status = 0; |
| 312 | 312 | ||
| 313 | /* Process Locked */ |
313 | /* Process Locked */ |
| 314 | __HAL_LOCK(hpccard); |
314 | __HAL_LOCK(hpccard); |
| 315 | 315 | ||
| 316 | /* Check the PCCARD controller state */ |
316 | /* Check the PCCARD controller state */ |
| 317 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
317 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
| 318 | { |
318 | { |
| 319 | return HAL_BUSY; |
319 | return HAL_BUSY; |
| 320 | } |
320 | } |
| 321 | 321 | ||
| 322 | /* Update the PCCARD controller state */ |
322 | /* Update the PCCARD controller state */ |
| 323 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
323 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
| 324 | 324 | ||
| 325 | /* Initialize the PCCARD status */ |
325 | /* Initialize the PCCARD status */ |
| 326 | *pStatus = PCCARD_READY; |
326 | *pStatus = PCCARD_READY; |
| 327 | 327 | ||
| 328 | /* Send the Identify Command */ |
328 | /* Send the Identify Command */ |
| 329 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = (uint16_t)0xECEC; |
329 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = (uint16_t)0xECEC; |
| 330 | 330 | ||
| 331 | /* Read PCCARD IDs and timeout treatment */ |
331 | /* Read PCCARD IDs and timeout treatment */ |
| 332 | do |
332 | do |
| 333 | { |
333 | { |
| 334 | /* Read the PCCARD status */ |
334 | /* Read the PCCARD status */ |
| 335 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
335 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 336 | 336 | ||
| 337 | timeout--; |
337 | timeout--; |
| 338 | } while ((status != PCCARD_STATUS_OK) && timeout); |
338 | } while ((status != PCCARD_STATUS_OK) && timeout); |
| 339 | 339 | ||
| 340 | if (timeout == 0U) |
340 | if (timeout == 0U) |
| 341 | { |
341 | { |
| 342 | *pStatus = PCCARD_TIMEOUT_ERROR; |
342 | *pStatus = PCCARD_TIMEOUT_ERROR; |
| 343 | } |
343 | } |
| 344 | else |
344 | else |
| 345 | { |
345 | { |
| 346 | /* Read PCCARD ID bytes */ |
346 | /* Read PCCARD ID bytes */ |
| 347 | for (index = 0U; index < 16U; index++) |
347 | for (index = 0U; index < 16U; index++) |
| 348 | { |
348 | { |
| 349 | CompactFlash_ID[index] = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_DATA); |
349 | CompactFlash_ID[index] = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_DATA); |
| 350 | } |
350 | } |
| 351 | } |
351 | } |
| 352 | 352 | ||
| 353 | /* Update the PCCARD controller state */ |
353 | /* Update the PCCARD controller state */ |
| 354 | hpccard->State = HAL_PCCARD_STATE_READY; |
354 | hpccard->State = HAL_PCCARD_STATE_READY; |
| 355 | 355 | ||
| 356 | /* Process unlocked */ |
356 | /* Process unlocked */ |
| 357 | __HAL_UNLOCK(hpccard); |
357 | __HAL_UNLOCK(hpccard); |
| 358 | 358 | ||
| 359 | return HAL_OK; |
359 | return HAL_OK; |
| 360 | } |
360 | } |
| 361 | 361 | ||
| 362 | /** |
362 | /** |
| 363 | * @brief Read sector from PCCARD memory |
363 | * @brief Read sector from PCCARD memory |
| 364 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
364 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 365 | * the configuration information for PCCARD module. |
365 | * the configuration information for PCCARD module. |
| 366 | * @param pBuffer pointer to destination read buffer |
366 | * @param pBuffer pointer to destination read buffer |
| 367 | * @param SectorAddress Sector address to read |
367 | * @param SectorAddress Sector address to read |
| 368 | * @param pStatus pointer to PCCARD status |
368 | * @param pStatus pointer to PCCARD status |
| 369 | * @retval HAL status |
369 | * @retval HAL status |
| 370 | */ |
370 | */ |
| 371 | HAL_StatusTypeDef HAL_PCCARD_Read_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, |
371 | HAL_StatusTypeDef HAL_PCCARD_Read_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, |
| 372 | uint8_t *pStatus) |
372 | uint8_t *pStatus) |
| 373 | { |
373 | { |
| 374 | uint32_t timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR, index = 0U; |
374 | uint32_t timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR, index = 0U; |
| 375 | uint8_t status = 0; |
375 | uint8_t status = 0; |
| 376 | 376 | ||
| 377 | /* Process Locked */ |
377 | /* Process Locked */ |
| 378 | __HAL_LOCK(hpccard); |
378 | __HAL_LOCK(hpccard); |
| 379 | 379 | ||
| 380 | /* Check the PCCARD controller state */ |
380 | /* Check the PCCARD controller state */ |
| 381 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
381 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
| 382 | { |
382 | { |
| 383 | return HAL_BUSY; |
383 | return HAL_BUSY; |
| 384 | } |
384 | } |
| 385 | 385 | ||
| 386 | /* Update the PCCARD controller state */ |
386 | /* Update the PCCARD controller state */ |
| 387 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
387 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
| 388 | 388 | ||
| 389 | /* Initialize PCCARD status */ |
389 | /* Initialize PCCARD status */ |
| 390 | *pStatus = PCCARD_READY; |
390 | *pStatus = PCCARD_READY; |
| 391 | 391 | ||
| 392 | /* Set the parameters to write a sector */ |
392 | /* Set the parameters to write a sector */ |
| 393 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_HIGH) = (uint16_t)0x0000; |
393 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_HIGH) = (uint16_t)0x0000; |
| 394 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_COUNT) = ((uint16_t)0x0100) | ((uint16_t)SectorAddress); |
394 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_COUNT) = ((uint16_t)0x0100) | ((uint16_t)SectorAddress); |
| 395 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = (uint16_t)0xE4A0; |
395 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = (uint16_t)0xE4A0; |
| 396 | 396 | ||
| 397 | do |
397 | do |
| 398 | { |
398 | { |
| 399 | /* wait till the Status = 0x80 */ |
399 | /* wait till the Status = 0x80 */ |
| 400 | status = *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
400 | status = *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 401 | timeout--; |
401 | timeout--; |
| 402 | } while ((status == 0x80U) && timeout); |
402 | } while ((status == 0x80U) && timeout); |
| 403 | 403 | ||
| 404 | if (timeout == 0U) |
404 | if (timeout == 0U) |
| 405 | { |
405 | { |
| 406 | *pStatus = PCCARD_TIMEOUT_ERROR; |
406 | *pStatus = PCCARD_TIMEOUT_ERROR; |
| 407 | } |
407 | } |
| 408 | 408 | ||
| 409 | timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR; |
409 | timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR; |
| 410 | 410 | ||
| 411 | do |
411 | do |
| 412 | { |
412 | { |
| 413 | /* wait till the Status = PCCARD_STATUS_OK */ |
413 | /* wait till the Status = PCCARD_STATUS_OK */ |
| 414 | status = *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
414 | status = *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 415 | timeout--; |
415 | timeout--; |
| 416 | } while ((status != PCCARD_STATUS_OK) && timeout); |
416 | } while ((status != PCCARD_STATUS_OK) && timeout); |
| 417 | 417 | ||
| 418 | if (timeout == 0U) |
418 | if (timeout == 0U) |
| 419 | { |
419 | { |
| 420 | *pStatus = PCCARD_TIMEOUT_ERROR; |
420 | *pStatus = PCCARD_TIMEOUT_ERROR; |
| 421 | } |
421 | } |
| 422 | 422 | ||
| 423 | /* Read bytes */ |
423 | /* Read bytes */ |
| 424 | for (; index < PCCARD_SECTOR_SIZE; index++) |
424 | for (; index < PCCARD_SECTOR_SIZE; index++) |
| 425 | { |
425 | { |
| 426 | *(uint16_t *)pBuffer++ = *(uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR); |
426 | *(uint16_t *)pBuffer++ = *(uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR); |
| 427 | } |
427 | } |
| 428 | 428 | ||
| 429 | /* Update the PCCARD controller state */ |
429 | /* Update the PCCARD controller state */ |
| 430 | hpccard->State = HAL_PCCARD_STATE_READY; |
430 | hpccard->State = HAL_PCCARD_STATE_READY; |
| 431 | 431 | ||
| 432 | /* Process unlocked */ |
432 | /* Process unlocked */ |
| 433 | __HAL_UNLOCK(hpccard); |
433 | __HAL_UNLOCK(hpccard); |
| 434 | 434 | ||
| 435 | return HAL_OK; |
435 | return HAL_OK; |
| 436 | } |
436 | } |
| 437 | 437 | ||
| 438 | 438 | ||
| 439 | /** |
439 | /** |
| 440 | * @brief Write sector to PCCARD memory |
440 | * @brief Write sector to PCCARD memory |
| 441 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
441 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 442 | * the configuration information for PCCARD module. |
442 | * the configuration information for PCCARD module. |
| 443 | * @param pBuffer pointer to source write buffer |
443 | * @param pBuffer pointer to source write buffer |
| 444 | * @param SectorAddress Sector address to write |
444 | * @param SectorAddress Sector address to write |
| 445 | * @param pStatus pointer to PCCARD status |
445 | * @param pStatus pointer to PCCARD status |
| 446 | * @retval HAL status |
446 | * @retval HAL status |
| 447 | */ |
447 | */ |
| 448 | HAL_StatusTypeDef HAL_PCCARD_Write_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, |
448 | HAL_StatusTypeDef HAL_PCCARD_Write_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, |
| 449 | uint8_t *pStatus) |
449 | uint8_t *pStatus) |
| 450 | { |
450 | { |
| 451 | uint32_t timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR, index = 0U; |
451 | uint32_t timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR, index = 0U; |
| 452 | uint8_t status = 0; |
452 | uint8_t status = 0; |
| 453 | 453 | ||
| 454 | /* Process Locked */ |
454 | /* Process Locked */ |
| 455 | __HAL_LOCK(hpccard); |
455 | __HAL_LOCK(hpccard); |
| 456 | 456 | ||
| 457 | /* Check the PCCARD controller state */ |
457 | /* Check the PCCARD controller state */ |
| 458 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
458 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
| 459 | { |
459 | { |
| 460 | return HAL_BUSY; |
460 | return HAL_BUSY; |
| 461 | } |
461 | } |
| 462 | 462 | ||
| 463 | /* Update the PCCARD controller state */ |
463 | /* Update the PCCARD controller state */ |
| 464 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
464 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
| 465 | 465 | ||
| 466 | /* Initialize PCCARD status */ |
466 | /* Initialize PCCARD status */ |
| 467 | *pStatus = PCCARD_READY; |
467 | *pStatus = PCCARD_READY; |
| 468 | 468 | ||
| 469 | /* Set the parameters to write a sector */ |
469 | /* Set the parameters to write a sector */ |
| 470 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_HIGH) = (uint16_t)0x0000; |
470 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_HIGH) = (uint16_t)0x0000; |
| 471 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_COUNT) = ((uint16_t)0x0100) | ((uint16_t)SectorAddress); |
471 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_COUNT) = ((uint16_t)0x0100) | ((uint16_t)SectorAddress); |
| 472 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = (uint16_t)0x30A0; |
472 | *(__IO uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = (uint16_t)0x30A0; |
| 473 | 473 | ||
| 474 | do |
474 | do |
| 475 | { |
475 | { |
| 476 | /* Wait till the Status = PCCARD_STATUS_OK */ |
476 | /* Wait till the Status = PCCARD_STATUS_OK */ |
| 477 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
477 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 478 | timeout--; |
478 | timeout--; |
| 479 | } while ((status != PCCARD_STATUS_OK) && timeout); |
479 | } while ((status != PCCARD_STATUS_OK) && timeout); |
| 480 | 480 | ||
| 481 | if (timeout == 0U) |
481 | if (timeout == 0U) |
| 482 | { |
482 | { |
| 483 | *pStatus = PCCARD_TIMEOUT_ERROR; |
483 | *pStatus = PCCARD_TIMEOUT_ERROR; |
| 484 | } |
484 | } |
| 485 | 485 | ||
| 486 | /* Write bytes */ |
486 | /* Write bytes */ |
| 487 | for (; index < PCCARD_SECTOR_SIZE; index++) |
487 | for (; index < PCCARD_SECTOR_SIZE; index++) |
| 488 | { |
488 | { |
| 489 | *(uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR) = *(uint16_t *)pBuffer++; |
489 | *(uint16_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR) = *(uint16_t *)pBuffer++; |
| 490 | } |
490 | } |
| 491 | 491 | ||
| 492 | do |
492 | do |
| 493 | { |
493 | { |
| 494 | /* Wait till the Status = PCCARD_STATUS_WRITE_OK */ |
494 | /* Wait till the Status = PCCARD_STATUS_WRITE_OK */ |
| 495 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
495 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 496 | timeout--; |
496 | timeout--; |
| 497 | } while ((status != PCCARD_STATUS_WRITE_OK) && timeout); |
497 | } while ((status != PCCARD_STATUS_WRITE_OK) && timeout); |
| 498 | 498 | ||
| 499 | if (timeout == 0U) |
499 | if (timeout == 0U) |
| 500 | { |
500 | { |
| 501 | *pStatus = PCCARD_TIMEOUT_ERROR; |
501 | *pStatus = PCCARD_TIMEOUT_ERROR; |
| 502 | } |
502 | } |
| 503 | 503 | ||
| 504 | /* Update the PCCARD controller state */ |
504 | /* Update the PCCARD controller state */ |
| 505 | hpccard->State = HAL_PCCARD_STATE_READY; |
505 | hpccard->State = HAL_PCCARD_STATE_READY; |
| 506 | 506 | ||
| 507 | /* Process unlocked */ |
507 | /* Process unlocked */ |
| 508 | __HAL_UNLOCK(hpccard); |
508 | __HAL_UNLOCK(hpccard); |
| 509 | 509 | ||
| 510 | return HAL_OK; |
510 | return HAL_OK; |
| 511 | } |
511 | } |
| 512 | 512 | ||
| 513 | 513 | ||
| 514 | /** |
514 | /** |
| 515 | * @brief Erase sector from PCCARD memory |
515 | * @brief Erase sector from PCCARD memory |
| 516 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
516 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 517 | * the configuration information for PCCARD module. |
517 | * the configuration information for PCCARD module. |
| 518 | * @param SectorAddress Sector address to erase |
518 | * @param SectorAddress Sector address to erase |
| 519 | * @param pStatus pointer to PCCARD status |
519 | * @param pStatus pointer to PCCARD status |
| 520 | * @retval HAL status |
520 | * @retval HAL status |
| 521 | */ |
521 | */ |
| 522 | HAL_StatusTypeDef HAL_PCCARD_Erase_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t SectorAddress, uint8_t *pStatus) |
522 | HAL_StatusTypeDef HAL_PCCARD_Erase_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t SectorAddress, uint8_t *pStatus) |
| 523 | { |
523 | { |
| 524 | uint32_t timeout = PCCARD_TIMEOUT_ERASE_SECTOR; |
524 | uint32_t timeout = PCCARD_TIMEOUT_ERASE_SECTOR; |
| 525 | uint8_t status = 0; |
525 | uint8_t status = 0; |
| 526 | 526 | ||
| 527 | /* Process Locked */ |
527 | /* Process Locked */ |
| 528 | __HAL_LOCK(hpccard); |
528 | __HAL_LOCK(hpccard); |
| 529 | 529 | ||
| 530 | /* Check the PCCARD controller state */ |
530 | /* Check the PCCARD controller state */ |
| 531 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
531 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
| 532 | { |
532 | { |
| 533 | return HAL_BUSY; |
533 | return HAL_BUSY; |
| 534 | } |
534 | } |
| 535 | 535 | ||
| 536 | /* Update the PCCARD controller state */ |
536 | /* Update the PCCARD controller state */ |
| 537 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
537 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
| 538 | 538 | ||
| 539 | /* Initialize PCCARD status */ |
539 | /* Initialize PCCARD status */ |
| 540 | *pStatus = PCCARD_READY; |
540 | *pStatus = PCCARD_READY; |
| 541 | 541 | ||
| 542 | /* Set the parameters to write a sector */ |
542 | /* Set the parameters to write a sector */ |
| 543 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_LOW) = 0x00; |
543 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_LOW) = 0x00; |
| 544 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_HIGH) = 0x00; |
544 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CYLINDER_HIGH) = 0x00; |
| 545 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_NUMBER) = SectorAddress; |
545 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_NUMBER) = SectorAddress; |
| 546 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_COUNT) = 0x01; |
546 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_SECTOR_COUNT) = 0x01; |
| 547 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CARD_HEAD) = 0xA0; |
547 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_CARD_HEAD) = 0xA0; |
| 548 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = ATA_ERASE_SECTOR_CMD; |
548 | *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD) = ATA_ERASE_SECTOR_CMD; |
| 549 | 549 | ||
| 550 | /* wait till the PCCARD is ready */ |
550 | /* wait till the PCCARD is ready */ |
| 551 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
551 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 552 | 552 | ||
| 553 | while ((status != PCCARD_STATUS_WRITE_OK) && timeout) |
553 | while ((status != PCCARD_STATUS_WRITE_OK) && timeout) |
| 554 | { |
554 | { |
| 555 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
555 | status = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 556 | timeout--; |
556 | timeout--; |
| 557 | } |
557 | } |
| 558 | 558 | ||
| 559 | if (timeout == 0U) |
559 | if (timeout == 0U) |
| 560 | { |
560 | { |
| 561 | *pStatus = PCCARD_TIMEOUT_ERROR; |
561 | *pStatus = PCCARD_TIMEOUT_ERROR; |
| 562 | } |
562 | } |
| 563 | 563 | ||
| 564 | /* Check the PCCARD controller state */ |
564 | /* Check the PCCARD controller state */ |
| 565 | hpccard->State = HAL_PCCARD_STATE_READY; |
565 | hpccard->State = HAL_PCCARD_STATE_READY; |
| 566 | 566 | ||
| 567 | /* Process unlocked */ |
567 | /* Process unlocked */ |
| 568 | __HAL_UNLOCK(hpccard); |
568 | __HAL_UNLOCK(hpccard); |
| 569 | 569 | ||
| 570 | return HAL_OK; |
570 | return HAL_OK; |
| 571 | } |
571 | } |
| 572 | 572 | ||
| 573 | /** |
573 | /** |
| 574 | * @brief Reset the PCCARD memory |
574 | * @brief Reset the PCCARD memory |
| 575 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
575 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 576 | * the configuration information for PCCARD module. |
576 | * the configuration information for PCCARD module. |
| 577 | * @retval HAL status |
577 | * @retval HAL status |
| 578 | */ |
578 | */ |
| 579 | HAL_StatusTypeDef HAL_PCCARD_Reset(PCCARD_HandleTypeDef *hpccard) |
579 | HAL_StatusTypeDef HAL_PCCARD_Reset(PCCARD_HandleTypeDef *hpccard) |
| 580 | { |
580 | { |
| 581 | /* Process Locked */ |
581 | /* Process Locked */ |
| 582 | __HAL_LOCK(hpccard); |
582 | __HAL_LOCK(hpccard); |
| 583 | 583 | ||
| 584 | /* Check the PCCARD controller state */ |
584 | /* Check the PCCARD controller state */ |
| 585 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
585 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
| 586 | { |
586 | { |
| 587 | return HAL_BUSY; |
587 | return HAL_BUSY; |
| 588 | } |
588 | } |
| 589 | 589 | ||
| 590 | /* Provide a SW reset and Read and verify the: |
590 | /* Provide a SW reset and Read and verify the: |
| 591 | - PCCard Configuration Option Register at address 0x98000200 --> 0x80 |
591 | - PCCard Configuration Option Register at address 0x98000200 --> 0x80 |
| 592 | - Card Configuration and Status Register at address 0x98000202 --> 0x00 |
592 | - Card Configuration and Status Register at address 0x98000202 --> 0x00 |
| 593 | - Pin Replacement Register at address 0x98000204 --> 0x0C |
593 | - Pin Replacement Register at address 0x98000204 --> 0x0C |
| 594 | - Socket and Copy Register at address 0x98000206 --> 0x00 |
594 | - Socket and Copy Register at address 0x98000206 --> 0x00 |
| 595 | */ |
595 | */ |
| 596 | 596 | ||
| 597 | /* Check the PCCARD controller state */ |
597 | /* Check the PCCARD controller state */ |
| 598 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
598 | hpccard->State = HAL_PCCARD_STATE_BUSY; |
| 599 | 599 | ||
| 600 | *(__IO uint8_t *)(PCCARD_ATTRIBUTE_SPACE_ADDRESS | ATA_CARD_CONFIGURATION) = 0x01; |
600 | *(__IO uint8_t *)(PCCARD_ATTRIBUTE_SPACE_ADDRESS | ATA_CARD_CONFIGURATION) = 0x01; |
| 601 | 601 | ||
| 602 | /* Check the PCCARD controller state */ |
602 | /* Check the PCCARD controller state */ |
| 603 | hpccard->State = HAL_PCCARD_STATE_READY; |
603 | hpccard->State = HAL_PCCARD_STATE_READY; |
| 604 | 604 | ||
| 605 | /* Process unlocked */ |
605 | /* Process unlocked */ |
| 606 | __HAL_UNLOCK(hpccard); |
606 | __HAL_UNLOCK(hpccard); |
| 607 | 607 | ||
| 608 | return HAL_OK; |
608 | return HAL_OK; |
| 609 | } |
609 | } |
| 610 | 610 | ||
| 611 | /** |
611 | /** |
| 612 | * @brief This function handles PCCARD device interrupt request. |
612 | * @brief This function handles PCCARD device interrupt request. |
| 613 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
613 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 614 | * the configuration information for PCCARD module. |
614 | * the configuration information for PCCARD module. |
| 615 | * @retval HAL status |
615 | * @retval HAL status |
| 616 | */ |
616 | */ |
| 617 | void HAL_PCCARD_IRQHandler(PCCARD_HandleTypeDef *hpccard) |
617 | void HAL_PCCARD_IRQHandler(PCCARD_HandleTypeDef *hpccard) |
| 618 | { |
618 | { |
| 619 | /* Check PCCARD interrupt Rising edge flag */ |
619 | /* Check PCCARD interrupt Rising edge flag */ |
| 620 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_RISING_EDGE)) |
620 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_RISING_EDGE)) |
| 621 | { |
621 | { |
| 622 | /* PCCARD interrupt callback*/ |
622 | /* PCCARD interrupt callback*/ |
| 623 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
623 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
| 624 | hpccard->ItCallback(hpccard); |
624 | hpccard->ItCallback(hpccard); |
| 625 | #else |
625 | #else |
| 626 | HAL_PCCARD_ITCallback(hpccard); |
626 | HAL_PCCARD_ITCallback(hpccard); |
| 627 | #endif |
627 | #endif |
| 628 | 628 | ||
| 629 | /* Clear PCCARD interrupt Rising edge pending bit */ |
629 | /* Clear PCCARD interrupt Rising edge pending bit */ |
| 630 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_RISING_EDGE); |
630 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_RISING_EDGE); |
| 631 | } |
631 | } |
| 632 | 632 | ||
| 633 | /* Check PCCARD interrupt Level flag */ |
633 | /* Check PCCARD interrupt Level flag */ |
| 634 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_LEVEL)) |
634 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_LEVEL)) |
| 635 | { |
635 | { |
| 636 | /* PCCARD interrupt callback*/ |
636 | /* PCCARD interrupt callback*/ |
| 637 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
637 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
| 638 | hpccard->ItCallback(hpccard); |
638 | hpccard->ItCallback(hpccard); |
| 639 | #else |
639 | #else |
| 640 | HAL_PCCARD_ITCallback(hpccard); |
640 | HAL_PCCARD_ITCallback(hpccard); |
| 641 | #endif |
641 | #endif |
| 642 | 642 | ||
| 643 | /* Clear PCCARD interrupt Level pending bit */ |
643 | /* Clear PCCARD interrupt Level pending bit */ |
| 644 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_LEVEL); |
644 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_LEVEL); |
| 645 | } |
645 | } |
| 646 | 646 | ||
| 647 | /* Check PCCARD interrupt Falling edge flag */ |
647 | /* Check PCCARD interrupt Falling edge flag */ |
| 648 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_FALLING_EDGE)) |
648 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_FALLING_EDGE)) |
| 649 | { |
649 | { |
| 650 | /* PCCARD interrupt callback*/ |
650 | /* PCCARD interrupt callback*/ |
| 651 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
651 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
| 652 | hpccard->ItCallback(hpccard); |
652 | hpccard->ItCallback(hpccard); |
| 653 | #else |
653 | #else |
| 654 | HAL_PCCARD_ITCallback(hpccard); |
654 | HAL_PCCARD_ITCallback(hpccard); |
| 655 | #endif |
655 | #endif |
| 656 | 656 | ||
| 657 | /* Clear PCCARD interrupt Falling edge pending bit */ |
657 | /* Clear PCCARD interrupt Falling edge pending bit */ |
| 658 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_FALLING_EDGE); |
658 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_FALLING_EDGE); |
| 659 | } |
659 | } |
| 660 | 660 | ||
| 661 | /* Check PCCARD interrupt FIFO empty flag */ |
661 | /* Check PCCARD interrupt FIFO empty flag */ |
| 662 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_FEMPT)) |
662 | if (__FSMC_PCCARD_GET_FLAG(hpccard->Instance, FSMC_FLAG_FEMPT)) |
| 663 | { |
663 | { |
| 664 | /* PCCARD interrupt callback*/ |
664 | /* PCCARD interrupt callback*/ |
| 665 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
665 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
| 666 | hpccard->ItCallback(hpccard); |
666 | hpccard->ItCallback(hpccard); |
| 667 | #else |
667 | #else |
| 668 | HAL_PCCARD_ITCallback(hpccard); |
668 | HAL_PCCARD_ITCallback(hpccard); |
| 669 | #endif |
669 | #endif |
| 670 | 670 | ||
| 671 | /* Clear PCCARD interrupt FIFO empty pending bit */ |
671 | /* Clear PCCARD interrupt FIFO empty pending bit */ |
| 672 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_FEMPT); |
672 | __FSMC_PCCARD_CLEAR_FLAG(hpccard->Instance, FSMC_FLAG_FEMPT); |
| 673 | } |
673 | } |
| 674 | } |
674 | } |
| 675 | 675 | ||
| 676 | /** |
676 | /** |
| 677 | * @brief PCCARD interrupt feature callback |
677 | * @brief PCCARD interrupt feature callback |
| 678 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
678 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 679 | * the configuration information for PCCARD module. |
679 | * the configuration information for PCCARD module. |
| 680 | * @retval None |
680 | * @retval None |
| 681 | */ |
681 | */ |
| 682 | __weak void HAL_PCCARD_ITCallback(PCCARD_HandleTypeDef *hpccard) |
682 | __weak void HAL_PCCARD_ITCallback(PCCARD_HandleTypeDef *hpccard) |
| 683 | { |
683 | { |
| 684 | /* Prevent unused argument(s) compilation warning */ |
684 | /* Prevent unused argument(s) compilation warning */ |
| 685 | UNUSED(hpccard); |
685 | UNUSED(hpccard); |
| 686 | /* NOTE : This function Should not be modified, when the callback is needed, |
686 | /* NOTE : This function Should not be modified, when the callback is needed, |
| 687 | the HAL_PCCARD_ITCallback could be implemented in the user file |
687 | the HAL_PCCARD_ITCallback could be implemented in the user file |
| 688 | */ |
688 | */ |
| 689 | } |
689 | } |
| 690 | 690 | ||
| 691 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
691 | #if (USE_HAL_PCCARD_REGISTER_CALLBACKS == 1) |
| 692 | /** |
692 | /** |
| 693 | * @brief Register a User PCCARD Callback |
693 | * @brief Register a User PCCARD Callback |
| 694 | * To be used instead of the weak (surcharged) predefined callback |
694 | * To be used instead of the weak (surcharged) predefined callback |
| 695 | * @param hpccard : PCCARD handle |
695 | * @param hpccard : PCCARD handle |
| 696 | * @param CallbackId : ID of the callback to be registered |
696 | * @param CallbackId : ID of the callback to be registered |
| 697 | * This parameter can be one of the following values: |
697 | * This parameter can be one of the following values: |
| 698 | * @arg @ref HAL_PCCARD_MSP_INIT_CB_ID PCCARD MspInit callback ID |
698 | * @arg @ref HAL_PCCARD_MSP_INIT_CB_ID PCCARD MspInit callback ID |
| 699 | * @arg @ref HAL_PCCARD_MSP_DEINIT_CB_ID PCCARD MspDeInit callback ID |
699 | * @arg @ref HAL_PCCARD_MSP_DEINIT_CB_ID PCCARD MspDeInit callback ID |
| 700 | * @arg @ref HAL_PCCARD_IT_CB_ID PCCARD IT callback ID |
700 | * @arg @ref HAL_PCCARD_IT_CB_ID PCCARD IT callback ID |
| 701 | * @param pCallback : pointer to the Callback function |
701 | * @param pCallback : pointer to the Callback function |
| 702 | * @retval status |
702 | * @retval status |
| 703 | */ |
703 | */ |
| 704 | HAL_StatusTypeDef HAL_PCCARD_RegisterCallback(PCCARD_HandleTypeDef *hpccard, HAL_PCCARD_CallbackIDTypeDef CallbackId, |
704 | HAL_StatusTypeDef HAL_PCCARD_RegisterCallback(PCCARD_HandleTypeDef *hpccard, HAL_PCCARD_CallbackIDTypeDef CallbackId, |
| 705 | pPCCARD_CallbackTypeDef pCallback) |
705 | pPCCARD_CallbackTypeDef pCallback) |
| 706 | { |
706 | { |
| 707 | HAL_StatusTypeDef status = HAL_OK; |
707 | HAL_StatusTypeDef status = HAL_OK; |
| 708 | 708 | ||
| 709 | if (pCallback == NULL) |
709 | if (pCallback == NULL) |
| 710 | { |
710 | { |
| 711 | return HAL_ERROR; |
711 | return HAL_ERROR; |
| 712 | } |
712 | } |
| 713 | 713 | ||
| 714 | /* Process locked */ |
714 | /* Process locked */ |
| 715 | __HAL_LOCK(hpccard); |
715 | __HAL_LOCK(hpccard); |
| 716 | 716 | ||
| 717 | if (hpccard->State == HAL_PCCARD_STATE_READY) |
717 | if (hpccard->State == HAL_PCCARD_STATE_READY) |
| 718 | { |
718 | { |
| 719 | switch (CallbackId) |
719 | switch (CallbackId) |
| 720 | { |
720 | { |
| 721 | case HAL_PCCARD_MSP_INIT_CB_ID : |
721 | case HAL_PCCARD_MSP_INIT_CB_ID : |
| 722 | hpccard->MspInitCallback = pCallback; |
722 | hpccard->MspInitCallback = pCallback; |
| 723 | break; |
723 | break; |
| 724 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
724 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
| 725 | hpccard->MspDeInitCallback = pCallback; |
725 | hpccard->MspDeInitCallback = pCallback; |
| 726 | break; |
726 | break; |
| 727 | case HAL_PCCARD_IT_CB_ID : |
727 | case HAL_PCCARD_IT_CB_ID : |
| 728 | hpccard->ItCallback = pCallback; |
728 | hpccard->ItCallback = pCallback; |
| 729 | break; |
729 | break; |
| 730 | default : |
730 | default : |
| 731 | /* update return status */ |
731 | /* update return status */ |
| 732 | status = HAL_ERROR; |
732 | status = HAL_ERROR; |
| 733 | break; |
733 | break; |
| 734 | } |
734 | } |
| 735 | } |
735 | } |
| 736 | else if (hpccard->State == HAL_PCCARD_STATE_RESET) |
736 | else if (hpccard->State == HAL_PCCARD_STATE_RESET) |
| 737 | { |
737 | { |
| 738 | switch (CallbackId) |
738 | switch (CallbackId) |
| 739 | { |
739 | { |
| 740 | case HAL_PCCARD_MSP_INIT_CB_ID : |
740 | case HAL_PCCARD_MSP_INIT_CB_ID : |
| 741 | hpccard->MspInitCallback = pCallback; |
741 | hpccard->MspInitCallback = pCallback; |
| 742 | break; |
742 | break; |
| 743 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
743 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
| 744 | hpccard->MspDeInitCallback = pCallback; |
744 | hpccard->MspDeInitCallback = pCallback; |
| 745 | break; |
745 | break; |
| 746 | default : |
746 | default : |
| 747 | /* update return status */ |
747 | /* update return status */ |
| 748 | status = HAL_ERROR; |
748 | status = HAL_ERROR; |
| 749 | break; |
749 | break; |
| 750 | } |
750 | } |
| 751 | } |
751 | } |
| 752 | else |
752 | else |
| 753 | { |
753 | { |
| 754 | /* update return status */ |
754 | /* update return status */ |
| 755 | status = HAL_ERROR; |
755 | status = HAL_ERROR; |
| 756 | } |
756 | } |
| 757 | 757 | ||
| 758 | /* Release Lock */ |
758 | /* Release Lock */ |
| 759 | __HAL_UNLOCK(hpccard); |
759 | __HAL_UNLOCK(hpccard); |
| 760 | return status; |
760 | return status; |
| 761 | } |
761 | } |
| 762 | 762 | ||
| 763 | /** |
763 | /** |
| 764 | * @brief Unregister a User PCCARD Callback |
764 | * @brief Unregister a User PCCARD Callback |
| 765 | * PCCARD Callback is redirected to the weak (surcharged) predefined callback |
765 | * PCCARD Callback is redirected to the weak (surcharged) predefined callback |
| 766 | * @param hpccard : PCCARD handle |
766 | * @param hpccard : PCCARD handle |
| 767 | * @param CallbackId : ID of the callback to be unregistered |
767 | * @param CallbackId : ID of the callback to be unregistered |
| 768 | * This parameter can be one of the following values: |
768 | * This parameter can be one of the following values: |
| 769 | * @arg @ref HAL_PCCARD_MSP_INIT_CB_ID PCCARD MspInit callback ID |
769 | * @arg @ref HAL_PCCARD_MSP_INIT_CB_ID PCCARD MspInit callback ID |
| 770 | * @arg @ref HAL_PCCARD_MSP_DEINIT_CB_ID PCCARD MspDeInit callback ID |
770 | * @arg @ref HAL_PCCARD_MSP_DEINIT_CB_ID PCCARD MspDeInit callback ID |
| 771 | * @arg @ref HAL_PCCARD_IT_CB_ID PCCARD IT callback ID |
771 | * @arg @ref HAL_PCCARD_IT_CB_ID PCCARD IT callback ID |
| 772 | * @retval status |
772 | * @retval status |
| 773 | */ |
773 | */ |
| 774 | HAL_StatusTypeDef HAL_PCCARD_UnRegisterCallback(PCCARD_HandleTypeDef *hpccard, HAL_PCCARD_CallbackIDTypeDef CallbackId) |
774 | HAL_StatusTypeDef HAL_PCCARD_UnRegisterCallback(PCCARD_HandleTypeDef *hpccard, HAL_PCCARD_CallbackIDTypeDef CallbackId) |
| 775 | { |
775 | { |
| 776 | HAL_StatusTypeDef status = HAL_OK; |
776 | HAL_StatusTypeDef status = HAL_OK; |
| 777 | 777 | ||
| 778 | /* Process locked */ |
778 | /* Process locked */ |
| 779 | __HAL_LOCK(hpccard); |
779 | __HAL_LOCK(hpccard); |
| 780 | 780 | ||
| 781 | if (hpccard->State == HAL_PCCARD_STATE_READY) |
781 | if (hpccard->State == HAL_PCCARD_STATE_READY) |
| 782 | { |
782 | { |
| 783 | switch (CallbackId) |
783 | switch (CallbackId) |
| 784 | { |
784 | { |
| 785 | case HAL_PCCARD_MSP_INIT_CB_ID : |
785 | case HAL_PCCARD_MSP_INIT_CB_ID : |
| 786 | hpccard->MspInitCallback = HAL_PCCARD_MspInit; |
786 | hpccard->MspInitCallback = HAL_PCCARD_MspInit; |
| 787 | break; |
787 | break; |
| 788 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
788 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
| 789 | hpccard->MspDeInitCallback = HAL_PCCARD_MspDeInit; |
789 | hpccard->MspDeInitCallback = HAL_PCCARD_MspDeInit; |
| 790 | break; |
790 | break; |
| 791 | case HAL_PCCARD_IT_CB_ID : |
791 | case HAL_PCCARD_IT_CB_ID : |
| 792 | hpccard->ItCallback = HAL_PCCARD_ITCallback; |
792 | hpccard->ItCallback = HAL_PCCARD_ITCallback; |
| 793 | break; |
793 | break; |
| 794 | default : |
794 | default : |
| 795 | /* update return status */ |
795 | /* update return status */ |
| 796 | status = HAL_ERROR; |
796 | status = HAL_ERROR; |
| 797 | break; |
797 | break; |
| 798 | } |
798 | } |
| 799 | } |
799 | } |
| 800 | else if (hpccard->State == HAL_PCCARD_STATE_RESET) |
800 | else if (hpccard->State == HAL_PCCARD_STATE_RESET) |
| 801 | { |
801 | { |
| 802 | switch (CallbackId) |
802 | switch (CallbackId) |
| 803 | { |
803 | { |
| 804 | case HAL_PCCARD_MSP_INIT_CB_ID : |
804 | case HAL_PCCARD_MSP_INIT_CB_ID : |
| 805 | hpccard->MspInitCallback = HAL_PCCARD_MspInit; |
805 | hpccard->MspInitCallback = HAL_PCCARD_MspInit; |
| 806 | break; |
806 | break; |
| 807 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
807 | case HAL_PCCARD_MSP_DEINIT_CB_ID : |
| 808 | hpccard->MspDeInitCallback = HAL_PCCARD_MspDeInit; |
808 | hpccard->MspDeInitCallback = HAL_PCCARD_MspDeInit; |
| 809 | break; |
809 | break; |
| 810 | default : |
810 | default : |
| 811 | /* update return status */ |
811 | /* update return status */ |
| 812 | status = HAL_ERROR; |
812 | status = HAL_ERROR; |
| 813 | break; |
813 | break; |
| 814 | } |
814 | } |
| 815 | } |
815 | } |
| 816 | else |
816 | else |
| 817 | { |
817 | { |
| 818 | /* update return status */ |
818 | /* update return status */ |
| 819 | status = HAL_ERROR; |
819 | status = HAL_ERROR; |
| 820 | } |
820 | } |
| 821 | 821 | ||
| 822 | /* Release Lock */ |
822 | /* Release Lock */ |
| 823 | __HAL_UNLOCK(hpccard); |
823 | __HAL_UNLOCK(hpccard); |
| 824 | return status; |
824 | return status; |
| 825 | } |
825 | } |
| 826 | #endif |
826 | #endif |
| 827 | 827 | ||
| 828 | /** |
828 | /** |
| 829 | * @} |
829 | * @} |
| 830 | */ |
830 | */ |
| 831 | 831 | ||
| 832 | /** @defgroup PCCARD_Exported_Functions_Group3 State functions |
832 | /** @defgroup PCCARD_Exported_Functions_Group3 State functions |
| 833 | * @brief Peripheral State functions |
833 | * @brief Peripheral State functions |
| 834 | * |
834 | * |
| 835 | @verbatim |
835 | @verbatim |
| 836 | ============================================================================== |
836 | ============================================================================== |
| 837 | ##### PCCARD State functions ##### |
837 | ##### PCCARD State functions ##### |
| 838 | ============================================================================== |
838 | ============================================================================== |
| 839 | [..] |
839 | [..] |
| 840 | This subsection permits to get in run-time the status of the PCCARD controller |
840 | This subsection permits to get in run-time the status of the PCCARD controller |
| 841 | and the data flow. |
841 | and the data flow. |
| 842 | 842 | ||
| 843 | @endverbatim |
843 | @endverbatim |
| 844 | * @{ |
844 | * @{ |
| 845 | */ |
845 | */ |
| 846 | 846 | ||
| 847 | /** |
847 | /** |
| 848 | * @brief return the PCCARD controller state |
848 | * @brief return the PCCARD controller state |
| 849 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
849 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 850 | * the configuration information for PCCARD module. |
850 | * the configuration information for PCCARD module. |
| 851 | * @retval HAL state |
851 | * @retval HAL state |
| 852 | */ |
852 | */ |
| 853 | HAL_PCCARD_StateTypeDef HAL_PCCARD_GetState(PCCARD_HandleTypeDef *hpccard) |
853 | HAL_PCCARD_StateTypeDef HAL_PCCARD_GetState(PCCARD_HandleTypeDef *hpccard) |
| 854 | { |
854 | { |
| 855 | return hpccard->State; |
855 | return hpccard->State; |
| 856 | } |
856 | } |
| 857 | 857 | ||
| 858 | /** |
858 | /** |
| 859 | * @brief Get the compact flash memory status |
859 | * @brief Get the compact flash memory status |
| 860 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
860 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 861 | * the configuration information for PCCARD module. |
861 | * the configuration information for PCCARD module. |
| 862 | * @retval New status of the PCCARD operation. This parameter can be: |
862 | * @retval New status of the PCCARD operation. This parameter can be: |
| 863 | * - CompactFlash_TIMEOUT_ERROR: when the previous operation generate |
863 | * - CompactFlash_TIMEOUT_ERROR: when the previous operation generate |
| 864 | * a Timeout error |
864 | * a Timeout error |
| 865 | * - CompactFlash_READY: when memory is ready for the next operation |
865 | * - CompactFlash_READY: when memory is ready for the next operation |
| 866 | */ |
866 | */ |
| 867 | HAL_PCCARD_StatusTypeDef HAL_PCCARD_GetStatus(PCCARD_HandleTypeDef *hpccard) |
867 | HAL_PCCARD_StatusTypeDef HAL_PCCARD_GetStatus(PCCARD_HandleTypeDef *hpccard) |
| 868 | { |
868 | { |
| 869 | uint32_t timeout = PCCARD_TIMEOUT_STATUS, status_pccard = 0U; |
869 | uint32_t timeout = PCCARD_TIMEOUT_STATUS, status_pccard = 0U; |
| 870 | 870 | ||
| 871 | /* Check the PCCARD controller state */ |
871 | /* Check the PCCARD controller state */ |
| 872 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
872 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
| 873 | { |
873 | { |
| 874 | return HAL_PCCARD_STATUS_ONGOING; |
874 | return HAL_PCCARD_STATUS_ONGOING; |
| 875 | } |
875 | } |
| 876 | 876 | ||
| 877 | status_pccard = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
877 | status_pccard = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 878 | 878 | ||
| 879 | while ((status_pccard == PCCARD_BUSY) && timeout) |
879 | while ((status_pccard == PCCARD_BUSY) && timeout) |
| 880 | { |
880 | { |
| 881 | status_pccard = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
881 | status_pccard = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 882 | timeout--; |
882 | timeout--; |
| 883 | } |
883 | } |
| 884 | 884 | ||
| 885 | if (timeout == 0U) |
885 | if (timeout == 0U) |
| 886 | { |
886 | { |
| 887 | status_pccard = PCCARD_TIMEOUT_ERROR; |
887 | status_pccard = PCCARD_TIMEOUT_ERROR; |
| 888 | } |
888 | } |
| 889 | 889 | ||
| 890 | /* Return the operation status */ |
890 | /* Return the operation status */ |
| 891 | return (HAL_PCCARD_StatusTypeDef) status_pccard; |
891 | return (HAL_PCCARD_StatusTypeDef) status_pccard; |
| 892 | } |
892 | } |
| 893 | 893 | ||
| 894 | /** |
894 | /** |
| 895 | * @brief Reads the Compact Flash memory status using the Read status command |
895 | * @brief Reads the Compact Flash memory status using the Read status command |
| 896 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
896 | * @param hpccard pointer to a PCCARD_HandleTypeDef structure that contains |
| 897 | * the configuration information for PCCARD module. |
897 | * the configuration information for PCCARD module. |
| 898 | * @retval The status of the Compact Flash memory. This parameter can be: |
898 | * @retval The status of the Compact Flash memory. This parameter can be: |
| 899 | * - CompactFlash_BUSY: when memory is busy |
899 | * - CompactFlash_BUSY: when memory is busy |
| 900 | * - CompactFlash_READY: when memory is ready for the next operation |
900 | * - CompactFlash_READY: when memory is ready for the next operation |
| 901 | * - CompactFlash_ERROR: when the previous operation generates error |
901 | * - CompactFlash_ERROR: when the previous operation generates error |
| 902 | */ |
902 | */ |
| 903 | HAL_PCCARD_StatusTypeDef HAL_PCCARD_ReadStatus(PCCARD_HandleTypeDef *hpccard) |
903 | HAL_PCCARD_StatusTypeDef HAL_PCCARD_ReadStatus(PCCARD_HandleTypeDef *hpccard) |
| 904 | { |
904 | { |
| 905 | uint8_t data = 0U, status_pccard = PCCARD_BUSY; |
905 | uint8_t data = 0U, status_pccard = PCCARD_BUSY; |
| 906 | 906 | ||
| 907 | /* Check the PCCARD controller state */ |
907 | /* Check the PCCARD controller state */ |
| 908 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
908 | if (hpccard->State == HAL_PCCARD_STATE_BUSY) |
| 909 | { |
909 | { |
| 910 | return HAL_PCCARD_STATUS_ONGOING; |
910 | return HAL_PCCARD_STATUS_ONGOING; |
| 911 | } |
911 | } |
| 912 | 912 | ||
| 913 | /* Read status operation */ |
913 | /* Read status operation */ |
| 914 | data = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
914 | data = *(__IO uint8_t *)(PCCARD_IO_SPACE_PRIMARY_ADDR | ATA_STATUS_CMD_ALTERNATE); |
| 915 | 915 | ||
| 916 | if ((data & PCCARD_TIMEOUT_ERROR) == PCCARD_TIMEOUT_ERROR) |
916 | if ((data & PCCARD_TIMEOUT_ERROR) == PCCARD_TIMEOUT_ERROR) |
| 917 | { |
917 | { |
| 918 | status_pccard = PCCARD_TIMEOUT_ERROR; |
918 | status_pccard = PCCARD_TIMEOUT_ERROR; |
| 919 | } |
919 | } |
| 920 | else if ((data & PCCARD_READY) == PCCARD_READY) |
920 | else if ((data & PCCARD_READY) == PCCARD_READY) |
| 921 | { |
921 | { |
| 922 | status_pccard = PCCARD_READY; |
922 | status_pccard = PCCARD_READY; |
| 923 | } |
923 | } |
| 924 | 924 | ||
| 925 | return (HAL_PCCARD_StatusTypeDef) status_pccard; |
925 | return (HAL_PCCARD_StatusTypeDef) status_pccard; |
| 926 | } |
926 | } |
| 927 | 927 | ||
| 928 | /** |
928 | /** |
| 929 | * @} |
929 | * @} |
| 930 | */ |
930 | */ |
| 931 | 931 | ||
| 932 | /** |
932 | /** |
| 933 | * @} |
933 | * @} |
| 934 | */ |
934 | */ |
| 935 | 935 | ||
| 936 | /** |
936 | /** |
| 937 | * @} |
937 | * @} |
| 938 | */ |
938 | */ |
| 939 | 939 | ||
| 940 | #endif /* HAL_PCCARD_MODULE_ENABLED */ |
940 | #endif /* HAL_PCCARD_MODULE_ENABLED */ |
| 941 | 941 | ||
| 942 | /** |
942 | /** |
| 943 | * @} |
943 | * @} |
| 944 | */ |
944 | */ |
| 945 | 945 | ||
| 946 | #endif /* FSMC_BANK4 */ |
946 | #endif /* FSMC_BANK4 */ |
| 947 | - | ||
| 948 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
- | |