source: asp3_wo_tecs/trunk/arch/arm_m_gcc/stm32f4xx_stm32cube/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c@ 303

Last change on this file since 303 was 303, checked in by ertl-honda, 7 years ago

nucleo_f401re依存部の追加

File size: 26.3 KB
Line 
1/**
2 ******************************************************************************
3 * @file stm32f4xx_hal_sdram.c
4 * @author MCD Application Team
5 * @version V1.4.1
6 * @date 09-October-2015
7 * @brief SDRAM HAL module driver.
8 * This file provides a generic firmware to drive SDRAM memories mounted
9 * as external device.
10 *
11 @verbatim
12 ==============================================================================
13 ##### How to use this driver #####
14 ==============================================================================
15 [..]
16 This driver is a generic layered driver which contains a set of APIs used to
17 control SDRAM memories. It uses the FMC layer functions to interface
18 with SDRAM devices.
19 The following sequence should be followed to configure the FMC to interface
20 with SDRAM memories:
21
22 (#) Declare a SDRAM_HandleTypeDef handle structure, for example:
23 SDRAM_HandleTypeDef hdsram
24
25 (++) Fill the SDRAM_HandleTypeDef handle "Init" field with the allowed
26 values of the structure member.
27
28 (++) Fill the SDRAM_HandleTypeDef handle "Instance" field with a predefined
29 base register instance for NOR or SDRAM device
30
31 (#) Declare a FMC_SDRAM_TimingTypeDef structure; for example:
32 FMC_SDRAM_TimingTypeDef Timing;
33 and fill its fields with the allowed values of the structure member.
34
35 (#) Initialize the SDRAM Controller by calling the function HAL_SDRAM_Init(). This function
36 performs the following sequence:
37
38 (##) MSP hardware layer configuration using the function HAL_SDRAM_MspInit()
39 (##) Control register configuration using the FMC SDRAM interface function
40 FMC_SDRAM_Init()
41 (##) Timing register configuration using the FMC SDRAM interface function
42 FMC_SDRAM_Timing_Init()
43 (##) Program the SDRAM external device by applying its initialization sequence
44 according to the device plugged in your hardware. This step is mandatory
45 for accessing the SDRAM device.
46
47 (#) At this stage you can perform read/write accesses from/to the memory connected
48 to the SDRAM Bank. You can perform either polling or DMA transfer using the
49 following APIs:
50 (++) HAL_SDRAM_Read()/HAL_SDRAM_Write() for polling read/write access
51 (++) HAL_SDRAM_Read_DMA()/HAL_SDRAM_Write_DMA() for DMA read/write transfer
52
53 (#) You can also control the SDRAM device by calling the control APIs HAL_SDRAM_WriteOperation_Enable()/
54 HAL_SDRAM_WriteOperation_Disable() to respectively enable/disable the SDRAM write operation or
55 the function HAL_SDRAM_SendCommand() to send a specified command to the SDRAM
56 device. The command to be sent must be configured with the FMC_SDRAM_CommandTypeDef
57 structure.
58
59 (#) You can continuously monitor the SDRAM device HAL state by calling the function
60 HAL_SDRAM_GetState()
61
62 @endverbatim
63 ******************************************************************************
64 * @attention
65 *
66 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
67 *
68 * Redistribution and use in source and binary forms, with or without modification,
69 * are permitted provided that the following conditions are met:
70 * 1. Redistributions of source code must retain the above copyright notice,
71 * this list of conditions and the following disclaimer.
72 * 2. Redistributions in binary form must reproduce the above copyright notice,
73 * this list of conditions and the following disclaimer in the documentation
74 * and/or other materials provided with the distribution.
75 * 3. Neither the name of STMicroelectronics nor the names of its contributors
76 * may be used to endorse or promote products derived from this software
77 * without specific prior written permission.
78 *
79 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
80 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
81 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
82 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
83 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
84 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
85 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
86 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
87 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
88 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
89 *
90 ******************************************************************************
91 */
92
93/* Includes ------------------------------------------------------------------*/
94#include "stm32f4xx_hal.h"
95
96/** @addtogroup STM32F4xx_HAL_Driver
97 * @{
98 */
99
100/** @defgroup SDRAM SDRAM
101 * @brief SDRAM driver modules
102 * @{
103 */
104#ifdef HAL_SDRAM_MODULE_ENABLED
105#if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
106 defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
107
108/* Private typedef -----------------------------------------------------------*/
109/* Private define ------------------------------------------------------------*/
110/* Private macro -------------------------------------------------------------*/
111/* Private variables ---------------------------------------------------------*/
112/* Private functions ---------------------------------------------------------*/
113/* Exported functions --------------------------------------------------------*/
114/** @defgroup SDRAM_Exported_Functions SDRAM Exported Functions
115 * @{
116 */
117
118/** @defgroup SDRAM_Exported_Functions_Group1 Initialization and de-initialization functions
119 * @brief Initialization and Configuration functions
120 *
121 @verbatim
122 ==============================================================================
123 ##### SDRAM Initialization and de_initialization functions #####
124 ==============================================================================
125 [..]
126 This section provides functions allowing to initialize/de-initialize
127 the SDRAM memory
128
129@endverbatim
130 * @{
131 */
132
133/**
134 * @brief Performs the SDRAM device initialization sequence.
135 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
136 * the configuration information for SDRAM module.
137 * @param Timing: Pointer to SDRAM control timing structure
138 * @retval HAL status
139 */
140HAL_StatusTypeDef HAL_SDRAM_Init(SDRAM_HandleTypeDef *hsdram, FMC_SDRAM_TimingTypeDef *Timing)
141{
142 /* Check the SDRAM handle parameter */
143 if(hsdram == NULL)
144 {
145 return HAL_ERROR;
146 }
147
148 if(hsdram->State == HAL_SDRAM_STATE_RESET)
149 {
150 /* Allocate lock resource and initialize it */
151 hsdram->Lock = HAL_UNLOCKED;
152 /* Initialize the low level hardware (MSP) */
153 HAL_SDRAM_MspInit(hsdram);
154 }
155
156 /* Initialize the SDRAM controller state */
157 hsdram->State = HAL_SDRAM_STATE_BUSY;
158
159 /* Initialize SDRAM control Interface */
160 FMC_SDRAM_Init(hsdram->Instance, &(hsdram->Init));
161
162 /* Initialize SDRAM timing Interface */
163 FMC_SDRAM_Timing_Init(hsdram->Instance, Timing, hsdram->Init.SDBank);
164
165 /* Update the SDRAM controller state */
166 hsdram->State = HAL_SDRAM_STATE_READY;
167
168 return HAL_OK;
169}
170
171/**
172 * @brief Perform the SDRAM device initialization sequence.
173 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
174 * the configuration information for SDRAM module.
175 * @retval HAL status
176 */
177HAL_StatusTypeDef HAL_SDRAM_DeInit(SDRAM_HandleTypeDef *hsdram)
178{
179 /* Initialize the low level hardware (MSP) */
180 HAL_SDRAM_MspDeInit(hsdram);
181
182 /* Configure the SDRAM registers with their reset values */
183 FMC_SDRAM_DeInit(hsdram->Instance, hsdram->Init.SDBank);
184
185 /* Reset the SDRAM controller state */
186 hsdram->State = HAL_SDRAM_STATE_RESET;
187
188 /* Release Lock */
189 __HAL_UNLOCK(hsdram);
190
191 return HAL_OK;
192}
193
194/**
195 * @brief SDRAM MSP Init.
196 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
197 * the configuration information for SDRAM module.
198 * @retval None
199 */
200__weak void HAL_SDRAM_MspInit(SDRAM_HandleTypeDef *hsdram)
201{
202 /* NOTE: This function Should not be modified, when the callback is needed,
203 the HAL_SDRAM_MspInit could be implemented in the user file
204 */
205}
206
207/**
208 * @brief SDRAM MSP DeInit.
209 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
210 * the configuration information for SDRAM module.
211 * @retval None
212 */
213__weak void HAL_SDRAM_MspDeInit(SDRAM_HandleTypeDef *hsdram)
214{
215 /* NOTE: This function Should not be modified, when the callback is needed,
216 the HAL_SDRAM_MspDeInit could be implemented in the user file
217 */
218}
219
220/**
221 * @brief This function handles SDRAM refresh error interrupt request.
222 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
223 * the configuration information for SDRAM module.
224 * @retval HAL status
225*/
226void HAL_SDRAM_IRQHandler(SDRAM_HandleTypeDef *hsdram)
227{
228 /* Check SDRAM interrupt Rising edge flag */
229 if(__FMC_SDRAM_GET_FLAG(hsdram->Instance, FMC_SDRAM_FLAG_REFRESH_IT))
230 {
231 /* SDRAM refresh error interrupt callback */
232 HAL_SDRAM_RefreshErrorCallback(hsdram);
233
234 /* Clear SDRAM refresh error interrupt pending bit */
235 __FMC_SDRAM_CLEAR_FLAG(hsdram->Instance, FMC_SDRAM_FLAG_REFRESH_ERROR);
236 }
237}
238
239/**
240 * @brief SDRAM Refresh error callback.
241 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
242 * the configuration information for SDRAM module.
243 * @retval None
244 */
245__weak void HAL_SDRAM_RefreshErrorCallback(SDRAM_HandleTypeDef *hsdram)
246{
247 /* NOTE: This function Should not be modified, when the callback is needed,
248 the HAL_SDRAM_RefreshErrorCallback could be implemented in the user file
249 */
250}
251
252/**
253 * @brief DMA transfer complete callback.
254 * @param hdma: pointer to a DMA_HandleTypeDef structure that contains
255 * the configuration information for the specified DMA module.
256 * @retval None
257 */
258__weak void HAL_SDRAM_DMA_XferCpltCallback(DMA_HandleTypeDef *hdma)
259{
260 /* NOTE: This function Should not be modified, when the callback is needed,
261 the HAL_SDRAM_DMA_XferCpltCallback could be implemented in the user file
262 */
263}
264
265/**
266 * @brief DMA transfer complete error callback.
267 * @param hdma: DMA handle
268 * @retval None
269 */
270__weak void HAL_SDRAM_DMA_XferErrorCallback(DMA_HandleTypeDef *hdma)
271{
272 /* NOTE: This function Should not be modified, when the callback is needed,
273 the HAL_SDRAM_DMA_XferErrorCallback could be implemented in the user file
274 */
275}
276/**
277 * @}
278 */
279
280/** @defgroup SDRAM_Exported_Functions_Group2 Input and Output functions
281 * @brief Input Output and memory control functions
282 *
283 @verbatim
284 ==============================================================================
285 ##### SDRAM Input and Output functions #####
286 ==============================================================================
287 [..]
288 This section provides functions allowing to use and control the SDRAM memory
289
290@endverbatim
291 * @{
292 */
293
294/**
295 * @brief Reads 8-bit data buffer from the SDRAM memory.
296 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
297 * the configuration information for SDRAM module.
298 * @param pAddress: Pointer to read start address
299 * @param pDstBuffer: Pointer to destination buffer
300 * @param BufferSize: Size of the buffer to read from memory
301 * @retval HAL status
302 */
303HAL_StatusTypeDef HAL_SDRAM_Read_8b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint8_t *pDstBuffer, uint32_t BufferSize)
304{
305 __IO uint8_t *pSdramAddress = (uint8_t *)pAddress;
306
307 /* Process Locked */
308 __HAL_LOCK(hsdram);
309
310 /* Check the SDRAM controller state */
311 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
312 {
313 return HAL_BUSY;
314 }
315 else if(hsdram->State == HAL_SDRAM_STATE_PRECHARGED)
316 {
317 return HAL_ERROR;
318 }
319
320 /* Read data from source */
321 for(; BufferSize != 0; BufferSize--)
322 {
323 *pDstBuffer = *(__IO uint8_t *)pSdramAddress;
324 pDstBuffer++;
325 pSdramAddress++;
326 }
327
328 /* Process Unlocked */
329 __HAL_UNLOCK(hsdram);
330
331 return HAL_OK;
332}
333
334/**
335 * @brief Writes 8-bit data buffer to SDRAM memory.
336 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
337 * the configuration information for SDRAM module.
338 * @param pAddress: Pointer to write start address
339 * @param pSrcBuffer: Pointer to source buffer to write
340 * @param BufferSize: Size of the buffer to write to memory
341 * @retval HAL status
342 */
343HAL_StatusTypeDef HAL_SDRAM_Write_8b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint8_t *pSrcBuffer, uint32_t BufferSize)
344{
345 __IO uint8_t *pSdramAddress = (uint8_t *)pAddress;
346 uint32_t tmp = 0;
347
348 /* Process Locked */
349 __HAL_LOCK(hsdram);
350
351 /* Check the SDRAM controller state */
352 tmp = hsdram->State;
353
354 if(tmp == HAL_SDRAM_STATE_BUSY)
355 {
356 return HAL_BUSY;
357 }
358 else if((tmp == HAL_SDRAM_STATE_PRECHARGED) || (tmp == HAL_SDRAM_STATE_WRITE_PROTECTED))
359 {
360 return HAL_ERROR;
361 }
362
363 /* Write data to memory */
364 for(; BufferSize != 0; BufferSize--)
365 {
366 *(__IO uint8_t *)pSdramAddress = *pSrcBuffer;
367 pSrcBuffer++;
368 pSdramAddress++;
369 }
370
371 /* Process Unlocked */
372 __HAL_UNLOCK(hsdram);
373
374 return HAL_OK;
375}
376
377/**
378 * @brief Reads 16-bit data buffer from the SDRAM memory.
379 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
380 * the configuration information for SDRAM module.
381 * @param pAddress: Pointer to read start address
382 * @param pDstBuffer: Pointer to destination buffer
383 * @param BufferSize: Size of the buffer to read from memory
384 * @retval HAL status
385 */
386HAL_StatusTypeDef HAL_SDRAM_Read_16b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint16_t *pDstBuffer, uint32_t BufferSize)
387{
388 __IO uint16_t *pSdramAddress = (uint16_t *)pAddress;
389
390 /* Process Locked */
391 __HAL_LOCK(hsdram);
392
393 /* Check the SDRAM controller state */
394 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
395 {
396 return HAL_BUSY;
397 }
398 else if(hsdram->State == HAL_SDRAM_STATE_PRECHARGED)
399 {
400 return HAL_ERROR;
401 }
402
403 /* Read data from source */
404 for(; BufferSize != 0; BufferSize--)
405 {
406 *pDstBuffer = *(__IO uint16_t *)pSdramAddress;
407 pDstBuffer++;
408 pSdramAddress++;
409 }
410
411 /* Process Unlocked */
412 __HAL_UNLOCK(hsdram);
413
414 return HAL_OK;
415}
416
417/**
418 * @brief Writes 16-bit data buffer to SDRAM memory.
419 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
420 * the configuration information for SDRAM module.
421 * @param pAddress: Pointer to write start address
422 * @param pSrcBuffer: Pointer to source buffer to write
423 * @param BufferSize: Size of the buffer to write to memory
424 * @retval HAL status
425 */
426HAL_StatusTypeDef HAL_SDRAM_Write_16b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint16_t *pSrcBuffer, uint32_t BufferSize)
427{
428 __IO uint16_t *pSdramAddress = (uint16_t *)pAddress;
429 uint32_t tmp = 0;
430
431 /* Process Locked */
432 __HAL_LOCK(hsdram);
433
434 /* Check the SDRAM controller state */
435 tmp = hsdram->State;
436
437 if(tmp == HAL_SDRAM_STATE_BUSY)
438 {
439 return HAL_BUSY;
440 }
441 else if((tmp == HAL_SDRAM_STATE_PRECHARGED) || (tmp == HAL_SDRAM_STATE_WRITE_PROTECTED))
442 {
443 return HAL_ERROR;
444 }
445
446 /* Write data to memory */
447 for(; BufferSize != 0; BufferSize--)
448 {
449 *(__IO uint16_t *)pSdramAddress = *pSrcBuffer;
450 pSrcBuffer++;
451 pSdramAddress++;
452 }
453
454 /* Process Unlocked */
455 __HAL_UNLOCK(hsdram);
456
457 return HAL_OK;
458}
459
460/**
461 * @brief Reads 32-bit data buffer from the SDRAM memory.
462 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
463 * the configuration information for SDRAM module.
464 * @param pAddress: Pointer to read start address
465 * @param pDstBuffer: Pointer to destination buffer
466 * @param BufferSize: Size of the buffer to read from memory
467 * @retval HAL status
468 */
469HAL_StatusTypeDef HAL_SDRAM_Read_32b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint32_t *pDstBuffer, uint32_t BufferSize)
470{
471 __IO uint32_t *pSdramAddress = (uint32_t *)pAddress;
472
473 /* Process Locked */
474 __HAL_LOCK(hsdram);
475
476 /* Check the SDRAM controller state */
477 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
478 {
479 return HAL_BUSY;
480 }
481 else if(hsdram->State == HAL_SDRAM_STATE_PRECHARGED)
482 {
483 return HAL_ERROR;
484 }
485
486 /* Read data from source */
487 for(; BufferSize != 0; BufferSize--)
488 {
489 *pDstBuffer = *(__IO uint32_t *)pSdramAddress;
490 pDstBuffer++;
491 pSdramAddress++;
492 }
493
494 /* Process Unlocked */
495 __HAL_UNLOCK(hsdram);
496
497 return HAL_OK;
498}
499
500/**
501 * @brief Writes 32-bit data buffer to SDRAM memory.
502 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
503 * the configuration information for SDRAM module.
504 * @param pAddress: Pointer to write start address
505 * @param pSrcBuffer: Pointer to source buffer to write
506 * @param BufferSize: Size of the buffer to write to memory
507 * @retval HAL status
508 */
509HAL_StatusTypeDef HAL_SDRAM_Write_32b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint32_t *pSrcBuffer, uint32_t BufferSize)
510{
511 __IO uint32_t *pSdramAddress = (uint32_t *)pAddress;
512 uint32_t tmp = 0;
513
514 /* Process Locked */
515 __HAL_LOCK(hsdram);
516
517 /* Check the SDRAM controller state */
518 tmp = hsdram->State;
519
520 if(tmp == HAL_SDRAM_STATE_BUSY)
521 {
522 return HAL_BUSY;
523 }
524 else if((tmp == HAL_SDRAM_STATE_PRECHARGED) || (tmp == HAL_SDRAM_STATE_WRITE_PROTECTED))
525 {
526 return HAL_ERROR;
527 }
528
529 /* Write data to memory */
530 for(; BufferSize != 0; BufferSize--)
531 {
532 *(__IO uint32_t *)pSdramAddress = *pSrcBuffer;
533 pSrcBuffer++;
534 pSdramAddress++;
535 }
536
537 /* Process Unlocked */
538 __HAL_UNLOCK(hsdram);
539
540 return HAL_OK;
541}
542
543/**
544 * @brief Reads a Words data from the SDRAM memory using DMA transfer.
545 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
546 * the configuration information for SDRAM module.
547 * @param pAddress: Pointer to read start address
548 * @param pDstBuffer: Pointer to destination buffer
549 * @param BufferSize: Size of the buffer to read from memory
550 * @retval HAL status
551 */
552HAL_StatusTypeDef HAL_SDRAM_Read_DMA(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint32_t *pDstBuffer, uint32_t BufferSize)
553{
554 uint32_t tmp = 0;
555
556 /* Process Locked */
557 __HAL_LOCK(hsdram);
558
559 /* Check the SDRAM controller state */
560 tmp = hsdram->State;
561
562 if(tmp == HAL_SDRAM_STATE_BUSY)
563 {
564 return HAL_BUSY;
565 }
566 else if(tmp == HAL_SDRAM_STATE_PRECHARGED)
567 {
568 return HAL_ERROR;
569 }
570
571 /* Configure DMA user callbacks */
572 hsdram->hdma->XferCpltCallback = HAL_SDRAM_DMA_XferCpltCallback;
573 hsdram->hdma->XferErrorCallback = HAL_SDRAM_DMA_XferErrorCallback;
574
575 /* Enable the DMA Stream */
576 HAL_DMA_Start_IT(hsdram->hdma, (uint32_t)pAddress, (uint32_t)pDstBuffer, (uint32_t)BufferSize);
577
578 /* Process Unlocked */
579 __HAL_UNLOCK(hsdram);
580
581 return HAL_OK;
582}
583
584/**
585 * @brief Writes a Words data buffer to SDRAM memory using DMA transfer.
586 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
587 * the configuration information for SDRAM module.
588 * @param pAddress: Pointer to write start address
589 * @param pSrcBuffer: Pointer to source buffer to write
590 * @param BufferSize: Size of the buffer to write to memory
591 * @retval HAL status
592 */
593HAL_StatusTypeDef HAL_SDRAM_Write_DMA(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint32_t *pSrcBuffer, uint32_t BufferSize)
594{
595 uint32_t tmp = 0;
596
597 /* Process Locked */
598 __HAL_LOCK(hsdram);
599
600 /* Check the SDRAM controller state */
601 tmp = hsdram->State;
602
603 if(tmp == HAL_SDRAM_STATE_BUSY)
604 {
605 return HAL_BUSY;
606 }
607 else if((tmp == HAL_SDRAM_STATE_PRECHARGED) || (tmp == HAL_SDRAM_STATE_WRITE_PROTECTED))
608 {
609 return HAL_ERROR;
610 }
611
612 /* Configure DMA user callbacks */
613 hsdram->hdma->XferCpltCallback = HAL_SDRAM_DMA_XferCpltCallback;
614 hsdram->hdma->XferErrorCallback = HAL_SDRAM_DMA_XferErrorCallback;
615
616 /* Enable the DMA Stream */
617 HAL_DMA_Start_IT(hsdram->hdma, (uint32_t)pSrcBuffer, (uint32_t)pAddress, (uint32_t)BufferSize);
618
619 /* Process Unlocked */
620 __HAL_UNLOCK(hsdram);
621
622 return HAL_OK;
623}
624/**
625 * @}
626 */
627
628/** @defgroup SDRAM_Exported_Functions_Group3 Control functions
629 * @brief management functions
630 *
631@verbatim
632 ==============================================================================
633 ##### SDRAM Control functions #####
634 ==============================================================================
635 [..]
636 This subsection provides a set of functions allowing to control dynamically
637 the SDRAM interface.
638
639@endverbatim
640 * @{
641 */
642
643/**
644 * @brief Enables dynamically SDRAM write protection.
645 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
646 * the configuration information for SDRAM module.
647 * @retval HAL status
648 */
649HAL_StatusTypeDef HAL_SDRAM_WriteProtection_Enable(SDRAM_HandleTypeDef *hsdram)
650{
651 /* Check the SDRAM controller state */
652 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
653 {
654 return HAL_BUSY;
655 }
656
657 /* Update the SDRAM state */
658 hsdram->State = HAL_SDRAM_STATE_BUSY;
659
660 /* Enable write protection */
661 FMC_SDRAM_WriteProtection_Enable(hsdram->Instance, hsdram->Init.SDBank);
662
663 /* Update the SDRAM state */
664 hsdram->State = HAL_SDRAM_STATE_WRITE_PROTECTED;
665
666 return HAL_OK;
667}
668
669/**
670 * @brief Disables dynamically SDRAM write protection.
671 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
672 * the configuration information for SDRAM module.
673 * @retval HAL status
674 */
675HAL_StatusTypeDef HAL_SDRAM_WriteProtection_Disable(SDRAM_HandleTypeDef *hsdram)
676{
677 /* Check the SDRAM controller state */
678 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
679 {
680 return HAL_BUSY;
681 }
682
683 /* Update the SDRAM state */
684 hsdram->State = HAL_SDRAM_STATE_BUSY;
685
686 /* Disable write protection */
687 FMC_SDRAM_WriteProtection_Disable(hsdram->Instance, hsdram->Init.SDBank);
688
689 /* Update the SDRAM state */
690 hsdram->State = HAL_SDRAM_STATE_READY;
691
692 return HAL_OK;
693}
694
695/**
696 * @brief Sends Command to the SDRAM bank.
697 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
698 * the configuration information for SDRAM module.
699 * @param Command: SDRAM command structure
700 * @param Timeout: Timeout duration
701 * @retval HAL status
702 */
703HAL_StatusTypeDef HAL_SDRAM_SendCommand(SDRAM_HandleTypeDef *hsdram, FMC_SDRAM_CommandTypeDef *Command, uint32_t Timeout)
704{
705 /* Check the SDRAM controller state */
706 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
707 {
708 return HAL_BUSY;
709 }
710
711 /* Update the SDRAM state */
712 hsdram->State = HAL_SDRAM_STATE_BUSY;
713
714 /* Send SDRAM command */
715 FMC_SDRAM_SendCommand(hsdram->Instance, Command, Timeout);
716
717 /* Update the SDRAM controller state */
718 if(Command->CommandMode == FMC_SDRAM_CMD_PALL)
719 {
720 hsdram->State = HAL_SDRAM_STATE_PRECHARGED;
721 }
722 else
723 {
724 hsdram->State = HAL_SDRAM_STATE_READY;
725 }
726
727 return HAL_OK;
728}
729
730/**
731 * @brief Programs the SDRAM Memory Refresh rate.
732 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
733 * the configuration information for SDRAM module.
734 * @param RefreshRate: The SDRAM refresh rate value
735 * @retval HAL status
736 */
737HAL_StatusTypeDef HAL_SDRAM_ProgramRefreshRate(SDRAM_HandleTypeDef *hsdram, uint32_t RefreshRate)
738{
739 /* Check the SDRAM controller state */
740 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
741 {
742 return HAL_BUSY;
743 }
744
745 /* Update the SDRAM state */
746 hsdram->State = HAL_SDRAM_STATE_BUSY;
747
748 /* Program the refresh rate */
749 FMC_SDRAM_ProgramRefreshRate(hsdram->Instance ,RefreshRate);
750
751 /* Update the SDRAM state */
752 hsdram->State = HAL_SDRAM_STATE_READY;
753
754 return HAL_OK;
755}
756
757/**
758 * @brief Sets the Number of consecutive SDRAM Memory auto Refresh commands.
759 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
760 * the configuration information for SDRAM module.
761 * @param AutoRefreshNumber: The SDRAM auto Refresh number
762 * @retval HAL status
763 */
764HAL_StatusTypeDef HAL_SDRAM_SetAutoRefreshNumber(SDRAM_HandleTypeDef *hsdram, uint32_t AutoRefreshNumber)
765{
766 /* Check the SDRAM controller state */
767 if(hsdram->State == HAL_SDRAM_STATE_BUSY)
768 {
769 return HAL_BUSY;
770 }
771
772 /* Update the SDRAM state */
773 hsdram->State = HAL_SDRAM_STATE_BUSY;
774
775 /* Set the Auto-Refresh number */
776 FMC_SDRAM_SetAutoRefreshNumber(hsdram->Instance ,AutoRefreshNumber);
777
778 /* Update the SDRAM state */
779 hsdram->State = HAL_SDRAM_STATE_READY;
780
781 return HAL_OK;
782}
783
784/**
785 * @brief Returns the SDRAM memory current mode.
786 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
787 * the configuration information for SDRAM module.
788 * @retval The SDRAM memory mode.
789 */
790uint32_t HAL_SDRAM_GetModeStatus(SDRAM_HandleTypeDef *hsdram)
791{
792 /* Return the SDRAM memory current mode */
793 return(FMC_SDRAM_GetModeStatus(hsdram->Instance, hsdram->Init.SDBank));
794}
795
796/**
797 * @}
798 */
799
800/** @defgroup SDRAM_Exported_Functions_Group4 State functions
801 * @brief Peripheral State functions
802 *
803@verbatim
804 ==============================================================================
805 ##### SDRAM State functions #####
806 ==============================================================================
807 [..]
808 This subsection permits to get in run-time the status of the SDRAM controller
809 and the data flow.
810
811@endverbatim
812 * @{
813 */
814
815/**
816 * @brief Returns the SDRAM state.
817 * @param hsdram: pointer to a SDRAM_HandleTypeDef structure that contains
818 * the configuration information for SDRAM module.
819 * @retval HAL state
820 */
821HAL_SDRAM_StateTypeDef HAL_SDRAM_GetState(SDRAM_HandleTypeDef *hsdram)
822{
823 return hsdram->State;
824}
825
826/**
827 * @}
828 */
829
830/**
831 * @}
832 */
833#endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F446xx || STM32F469xx || STM32F479xx */
834#endif /* HAL_SDRAM_MODULE_ENABLED */
835/**
836 * @}
837 */
838
839/**
840 * @}
841 */
842
843/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.