Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
110:165afa46840b
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 89:552587b429a1 1 /**
bogdanm 89:552587b429a1 2 ******************************************************************************
bogdanm 89:552587b429a1 3 * @file stm32f4xx_ll_fmc.h
bogdanm 89:552587b429a1 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
bogdanm 89:552587b429a1 7 * @brief Header file of FMC HAL module.
bogdanm 89:552587b429a1 8 ******************************************************************************
bogdanm 89:552587b429a1 9 * @attention
bogdanm 89:552587b429a1 10 *
Kojto 99:dbbf35b96557 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
bogdanm 89:552587b429a1 12 *
bogdanm 89:552587b429a1 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 89:552587b429a1 14 * are permitted provided that the following conditions are met:
bogdanm 89:552587b429a1 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 89:552587b429a1 16 * this list of conditions and the following disclaimer.
bogdanm 89:552587b429a1 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 89:552587b429a1 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 89:552587b429a1 19 * and/or other materials provided with the distribution.
bogdanm 89:552587b429a1 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 89:552587b429a1 21 * may be used to endorse or promote products derived from this software
bogdanm 89:552587b429a1 22 * without specific prior written permission.
bogdanm 89:552587b429a1 23 *
bogdanm 89:552587b429a1 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 89:552587b429a1 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 89:552587b429a1 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 89:552587b429a1 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 89:552587b429a1 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 89:552587b429a1 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 89:552587b429a1 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 89:552587b429a1 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 89:552587b429a1 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 89:552587b429a1 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 89:552587b429a1 34 *
bogdanm 89:552587b429a1 35 ******************************************************************************
bogdanm 89:552587b429a1 36 */
bogdanm 89:552587b429a1 37
bogdanm 89:552587b429a1 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 89:552587b429a1 39 #ifndef __STM32F4xx_LL_FMC_H
bogdanm 89:552587b429a1 40 #define __STM32F4xx_LL_FMC_H
bogdanm 89:552587b429a1 41
bogdanm 89:552587b429a1 42 #ifdef __cplusplus
bogdanm 89:552587b429a1 43 extern "C" {
bogdanm 89:552587b429a1 44 #endif
bogdanm 89:552587b429a1 45
bogdanm 89:552587b429a1 46 /* Includes ------------------------------------------------------------------*/
bogdanm 89:552587b429a1 47 #include "stm32f4xx_hal_def.h"
bogdanm 89:552587b429a1 48
bogdanm 89:552587b429a1 49 /** @addtogroup STM32F4xx_HAL_Driver
bogdanm 89:552587b429a1 50 * @{
bogdanm 89:552587b429a1 51 */
Kojto 99:dbbf35b96557 52
Kojto 99:dbbf35b96557 53 /** @addtogroup FMC_LL
bogdanm 89:552587b429a1 54 * @{
bogdanm 89:552587b429a1 55 */
Kojto 110:165afa46840b 56 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
Kojto 110:165afa46840b 57 defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
Kojto 99:dbbf35b96557 58 /* Private types -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 59 /** @defgroup FMC_LL_Private_Types FMC Private Types
Kojto 99:dbbf35b96557 60 * @{
Kojto 99:dbbf35b96557 61 */
bogdanm 89:552587b429a1 62
bogdanm 89:552587b429a1 63 /**
Kojto 99:dbbf35b96557 64 * @brief FMC NORSRAM Configuration Structure definition
bogdanm 89:552587b429a1 65 */
bogdanm 89:552587b429a1 66 typedef struct
bogdanm 89:552587b429a1 67 {
bogdanm 89:552587b429a1 68 uint32_t NSBank; /*!< Specifies the NORSRAM memory device that will be used.
bogdanm 89:552587b429a1 69 This parameter can be a value of @ref FMC_NORSRAM_Bank */
bogdanm 89:552587b429a1 70
bogdanm 89:552587b429a1 71 uint32_t DataAddressMux; /*!< Specifies whether the address and data values are
bogdanm 89:552587b429a1 72 multiplexed on the data bus or not.
bogdanm 89:552587b429a1 73 This parameter can be a value of @ref FMC_Data_Address_Bus_Multiplexing */
bogdanm 89:552587b429a1 74
bogdanm 89:552587b429a1 75 uint32_t MemoryType; /*!< Specifies the type of external memory attached to
bogdanm 89:552587b429a1 76 the corresponding memory device.
bogdanm 89:552587b429a1 77 This parameter can be a value of @ref FMC_Memory_Type */
bogdanm 89:552587b429a1 78
bogdanm 89:552587b429a1 79 uint32_t MemoryDataWidth; /*!< Specifies the external memory device width.
bogdanm 89:552587b429a1 80 This parameter can be a value of @ref FMC_NORSRAM_Data_Width */
bogdanm 89:552587b429a1 81
bogdanm 89:552587b429a1 82 uint32_t BurstAccessMode; /*!< Enables or disables the burst access mode for Flash memory,
bogdanm 89:552587b429a1 83 valid only with synchronous burst Flash memories.
bogdanm 89:552587b429a1 84 This parameter can be a value of @ref FMC_Burst_Access_Mode */
bogdanm 89:552587b429a1 85
bogdanm 89:552587b429a1 86 uint32_t WaitSignalPolarity; /*!< Specifies the wait signal polarity, valid only when accessing
bogdanm 89:552587b429a1 87 the Flash memory in burst mode.
bogdanm 89:552587b429a1 88 This parameter can be a value of @ref FMC_Wait_Signal_Polarity */
bogdanm 89:552587b429a1 89
bogdanm 89:552587b429a1 90 uint32_t WrapMode; /*!< Enables or disables the Wrapped burst access mode for Flash
bogdanm 89:552587b429a1 91 memory, valid only when accessing Flash memories in burst mode.
Kojto 99:dbbf35b96557 92 This parameter can be a value of @ref FMC_Wrap_Mode
Kojto 110:165afa46840b 93 This mode is not available for the STM32F446/467/479xx devices */
bogdanm 89:552587b429a1 94
bogdanm 89:552587b429a1 95 uint32_t WaitSignalActive; /*!< Specifies if the wait signal is asserted by the memory one
bogdanm 89:552587b429a1 96 clock cycle before the wait state or during the wait state,
bogdanm 89:552587b429a1 97 valid only when accessing memories in burst mode.
bogdanm 89:552587b429a1 98 This parameter can be a value of @ref FMC_Wait_Timing */
bogdanm 89:552587b429a1 99
bogdanm 89:552587b429a1 100 uint32_t WriteOperation; /*!< Enables or disables the write operation in the selected device by the FMC.
bogdanm 89:552587b429a1 101 This parameter can be a value of @ref FMC_Write_Operation */
bogdanm 89:552587b429a1 102
bogdanm 89:552587b429a1 103 uint32_t WaitSignal; /*!< Enables or disables the wait state insertion via wait
bogdanm 89:552587b429a1 104 signal, valid for Flash memory access in burst mode.
bogdanm 89:552587b429a1 105 This parameter can be a value of @ref FMC_Wait_Signal */
bogdanm 89:552587b429a1 106
bogdanm 89:552587b429a1 107 uint32_t ExtendedMode; /*!< Enables or disables the extended mode.
bogdanm 89:552587b429a1 108 This parameter can be a value of @ref FMC_Extended_Mode */
bogdanm 89:552587b429a1 109
bogdanm 89:552587b429a1 110 uint32_t AsynchronousWait; /*!< Enables or disables wait signal during asynchronous transfers,
bogdanm 89:552587b429a1 111 valid only with asynchronous Flash memories.
bogdanm 89:552587b429a1 112 This parameter can be a value of @ref FMC_AsynchronousWait */
bogdanm 89:552587b429a1 113
bogdanm 89:552587b429a1 114 uint32_t WriteBurst; /*!< Enables or disables the write burst operation.
bogdanm 89:552587b429a1 115 This parameter can be a value of @ref FMC_Write_Burst */
bogdanm 89:552587b429a1 116
bogdanm 89:552587b429a1 117 uint32_t ContinuousClock; /*!< Enables or disables the FMC clock output to external memory devices.
bogdanm 89:552587b429a1 118 This parameter is only enabled through the FMC_BCR1 register, and don't care
bogdanm 89:552587b429a1 119 through FMC_BCR2..4 registers.
bogdanm 89:552587b429a1 120 This parameter can be a value of @ref FMC_Continous_Clock */
bogdanm 89:552587b429a1 121
Kojto 99:dbbf35b96557 122 uint32_t WriteFifo; /*!< Enables or disables the write FIFO used by the FMC controller.
Kojto 99:dbbf35b96557 123 This parameter is only enabled through the FMC_BCR1 register, and don't care
Kojto 99:dbbf35b96557 124 through FMC_BCR2..4 registers.
Kojto 99:dbbf35b96557 125 This parameter can be a value of @ref FMC_Write_FIFO
Kojto 110:165afa46840b 126 This mode is available only for the STM32F446/469/479xx devices */
Kojto 99:dbbf35b96557 127
Kojto 99:dbbf35b96557 128 uint32_t PageSize; /*!< Specifies the memory page size.
Kojto 99:dbbf35b96557 129 This parameter can be a value of @ref FMC_Page_Size
Kojto 99:dbbf35b96557 130 This mode is available only for the STM32F446xx devices */
Kojto 99:dbbf35b96557 131
bogdanm 89:552587b429a1 132 }FMC_NORSRAM_InitTypeDef;
bogdanm 89:552587b429a1 133
bogdanm 89:552587b429a1 134 /**
Kojto 99:dbbf35b96557 135 * @brief FMC NORSRAM Timing parameters structure definition
bogdanm 89:552587b429a1 136 */
bogdanm 89:552587b429a1 137 typedef struct
bogdanm 89:552587b429a1 138 {
bogdanm 89:552587b429a1 139 uint32_t AddressSetupTime; /*!< Defines the number of HCLK cycles to configure
bogdanm 89:552587b429a1 140 the duration of the address setup time.
bogdanm 89:552587b429a1 141 This parameter can be a value between Min_Data = 0 and Max_Data = 15.
bogdanm 89:552587b429a1 142 @note This parameter is not used with synchronous NOR Flash memories. */
bogdanm 89:552587b429a1 143
bogdanm 89:552587b429a1 144 uint32_t AddressHoldTime; /*!< Defines the number of HCLK cycles to configure
bogdanm 89:552587b429a1 145 the duration of the address hold time.
bogdanm 89:552587b429a1 146 This parameter can be a value between Min_Data = 1 and Max_Data = 15.
bogdanm 89:552587b429a1 147 @note This parameter is not used with synchronous NOR Flash memories. */
bogdanm 89:552587b429a1 148
bogdanm 89:552587b429a1 149 uint32_t DataSetupTime; /*!< Defines the number of HCLK cycles to configure
bogdanm 89:552587b429a1 150 the duration of the data setup time.
bogdanm 89:552587b429a1 151 This parameter can be a value between Min_Data = 1 and Max_Data = 255.
bogdanm 89:552587b429a1 152 @note This parameter is used for SRAMs, ROMs and asynchronous multiplexed
bogdanm 89:552587b429a1 153 NOR Flash memories. */
bogdanm 89:552587b429a1 154
bogdanm 89:552587b429a1 155 uint32_t BusTurnAroundDuration; /*!< Defines the number of HCLK cycles to configure
bogdanm 89:552587b429a1 156 the duration of the bus turnaround.
bogdanm 89:552587b429a1 157 This parameter can be a value between Min_Data = 0 and Max_Data = 15.
bogdanm 89:552587b429a1 158 @note This parameter is only used for multiplexed NOR Flash memories. */
bogdanm 89:552587b429a1 159
bogdanm 89:552587b429a1 160 uint32_t CLKDivision; /*!< Defines the period of CLK clock output signal, expressed in number of
bogdanm 89:552587b429a1 161 HCLK cycles. This parameter can be a value between Min_Data = 2 and Max_Data = 16.
bogdanm 89:552587b429a1 162 @note This parameter is not used for asynchronous NOR Flash, SRAM or ROM
bogdanm 89:552587b429a1 163 accesses. */
bogdanm 89:552587b429a1 164
bogdanm 89:552587b429a1 165 uint32_t DataLatency; /*!< Defines the number of memory clock cycles to issue
bogdanm 89:552587b429a1 166 to the memory before getting the first data.
bogdanm 89:552587b429a1 167 The parameter value depends on the memory type as shown below:
bogdanm 89:552587b429a1 168 - It must be set to 0 in case of a CRAM
bogdanm 89:552587b429a1 169 - It is don't care in asynchronous NOR, SRAM or ROM accesses
bogdanm 89:552587b429a1 170 - It may assume a value between Min_Data = 2 and Max_Data = 17 in NOR Flash memories
bogdanm 89:552587b429a1 171 with synchronous burst mode enable */
bogdanm 89:552587b429a1 172
bogdanm 89:552587b429a1 173 uint32_t AccessMode; /*!< Specifies the asynchronous access mode.
bogdanm 89:552587b429a1 174 This parameter can be a value of @ref FMC_Access_Mode */
bogdanm 89:552587b429a1 175 }FMC_NORSRAM_TimingTypeDef;
bogdanm 89:552587b429a1 176
bogdanm 89:552587b429a1 177 /**
Kojto 99:dbbf35b96557 178 * @brief FMC NAND Configuration Structure definition
bogdanm 89:552587b429a1 179 */
bogdanm 89:552587b429a1 180 typedef struct
bogdanm 89:552587b429a1 181 {
bogdanm 89:552587b429a1 182 uint32_t NandBank; /*!< Specifies the NAND memory device that will be used.
bogdanm 89:552587b429a1 183 This parameter can be a value of @ref FMC_NAND_Bank */
bogdanm 89:552587b429a1 184
bogdanm 89:552587b429a1 185 uint32_t Waitfeature; /*!< Enables or disables the Wait feature for the NAND Memory device.
bogdanm 89:552587b429a1 186 This parameter can be any value of @ref FMC_Wait_feature */
bogdanm 89:552587b429a1 187
bogdanm 89:552587b429a1 188 uint32_t MemoryDataWidth; /*!< Specifies the external memory device width.
bogdanm 89:552587b429a1 189 This parameter can be any value of @ref FMC_NAND_Data_Width */
bogdanm 89:552587b429a1 190
bogdanm 89:552587b429a1 191 uint32_t EccComputation; /*!< Enables or disables the ECC computation.
bogdanm 89:552587b429a1 192 This parameter can be any value of @ref FMC_ECC */
bogdanm 89:552587b429a1 193
bogdanm 89:552587b429a1 194 uint32_t ECCPageSize; /*!< Defines the page size for the extended ECC.
bogdanm 89:552587b429a1 195 This parameter can be any value of @ref FMC_ECC_Page_Size */
bogdanm 89:552587b429a1 196
bogdanm 89:552587b429a1 197 uint32_t TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the
bogdanm 89:552587b429a1 198 delay between CLE low and RE low.
bogdanm 89:552587b429a1 199 This parameter can be a value between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 200
bogdanm 89:552587b429a1 201 uint32_t TARSetupTime; /*!< Defines the number of HCLK cycles to configure the
bogdanm 89:552587b429a1 202 delay between ALE low and RE low.
bogdanm 89:552587b429a1 203 This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 204 }FMC_NAND_InitTypeDef;
bogdanm 89:552587b429a1 205
bogdanm 89:552587b429a1 206 /**
Kojto 99:dbbf35b96557 207 * @brief FMC NAND/PCCARD Timing parameters structure definition
bogdanm 89:552587b429a1 208 */
bogdanm 89:552587b429a1 209 typedef struct
bogdanm 89:552587b429a1 210 {
bogdanm 89:552587b429a1 211 uint32_t SetupTime; /*!< Defines the number of HCLK cycles to setup address before
bogdanm 89:552587b429a1 212 the command assertion for NAND-Flash read or write access
bogdanm 89:552587b429a1 213 to common/Attribute or I/O memory space (depending on
bogdanm 89:552587b429a1 214 the memory space timing to be configured).
bogdanm 89:552587b429a1 215 This parameter can be a value between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 216
bogdanm 89:552587b429a1 217 uint32_t WaitSetupTime; /*!< Defines the minimum number of HCLK cycles to assert the
bogdanm 89:552587b429a1 218 command for NAND-Flash read or write access to
bogdanm 89:552587b429a1 219 common/Attribute or I/O memory space (depending on the
bogdanm 89:552587b429a1 220 memory space timing to be configured).
bogdanm 89:552587b429a1 221 This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 222
bogdanm 89:552587b429a1 223 uint32_t HoldSetupTime; /*!< Defines the number of HCLK clock cycles to hold address
bogdanm 89:552587b429a1 224 (and data for write access) after the command de-assertion
bogdanm 89:552587b429a1 225 for NAND-Flash read or write access to common/Attribute
bogdanm 89:552587b429a1 226 or I/O memory space (depending on the memory space timing
bogdanm 89:552587b429a1 227 to be configured).
bogdanm 89:552587b429a1 228 This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 229
bogdanm 89:552587b429a1 230 uint32_t HiZSetupTime; /*!< Defines the number of HCLK clock cycles during which the
bogdanm 89:552587b429a1 231 data bus is kept in HiZ after the start of a NAND-Flash
bogdanm 89:552587b429a1 232 write access to common/Attribute or I/O memory space (depending
bogdanm 89:552587b429a1 233 on the memory space timing to be configured).
bogdanm 89:552587b429a1 234 This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 235 }FMC_NAND_PCC_TimingTypeDef;
bogdanm 89:552587b429a1 236
bogdanm 89:552587b429a1 237 /**
Kojto 99:dbbf35b96557 238 * @brief FMC NAND Configuration Structure definition
bogdanm 89:552587b429a1 239 */
bogdanm 89:552587b429a1 240 typedef struct
bogdanm 89:552587b429a1 241 {
bogdanm 89:552587b429a1 242 uint32_t Waitfeature; /*!< Enables or disables the Wait feature for the PCCARD Memory device.
bogdanm 89:552587b429a1 243 This parameter can be any value of @ref FMC_Wait_feature */
bogdanm 89:552587b429a1 244
bogdanm 89:552587b429a1 245 uint32_t TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the
bogdanm 89:552587b429a1 246 delay between CLE low and RE low.
bogdanm 89:552587b429a1 247 This parameter can be a value between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 248
bogdanm 89:552587b429a1 249 uint32_t TARSetupTime; /*!< Defines the number of HCLK cycles to configure the
bogdanm 89:552587b429a1 250 delay between ALE low and RE low.
bogdanm 89:552587b429a1 251 This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
bogdanm 89:552587b429a1 252 }FMC_PCCARD_InitTypeDef;
bogdanm 89:552587b429a1 253
bogdanm 89:552587b429a1 254 /**
Kojto 99:dbbf35b96557 255 * @brief FMC SDRAM Configuration Structure definition
bogdanm 89:552587b429a1 256 */
bogdanm 89:552587b429a1 257 typedef struct
bogdanm 89:552587b429a1 258 {
bogdanm 89:552587b429a1 259 uint32_t SDBank; /*!< Specifies the SDRAM memory device that will be used.
bogdanm 89:552587b429a1 260 This parameter can be a value of @ref FMC_SDRAM_Bank */
bogdanm 89:552587b429a1 261
bogdanm 89:552587b429a1 262 uint32_t ColumnBitsNumber; /*!< Defines the number of bits of column address.
bogdanm 89:552587b429a1 263 This parameter can be a value of @ref FMC_SDRAM_Column_Bits_number. */
bogdanm 89:552587b429a1 264
bogdanm 89:552587b429a1 265 uint32_t RowBitsNumber; /*!< Defines the number of bits of column address.
bogdanm 89:552587b429a1 266 This parameter can be a value of @ref FMC_SDRAM_Row_Bits_number. */
bogdanm 89:552587b429a1 267
bogdanm 89:552587b429a1 268 uint32_t MemoryDataWidth; /*!< Defines the memory device width.
bogdanm 89:552587b429a1 269 This parameter can be a value of @ref FMC_SDRAM_Memory_Bus_Width. */
bogdanm 89:552587b429a1 270
bogdanm 89:552587b429a1 271 uint32_t InternalBankNumber; /*!< Defines the number of the device's internal banks.
bogdanm 89:552587b429a1 272 This parameter can be of @ref FMC_SDRAM_Internal_Banks_Number. */
bogdanm 89:552587b429a1 273
bogdanm 89:552587b429a1 274 uint32_t CASLatency; /*!< Defines the SDRAM CAS latency in number of memory clock cycles.
bogdanm 89:552587b429a1 275 This parameter can be a value of @ref FMC_SDRAM_CAS_Latency. */
bogdanm 89:552587b429a1 276
bogdanm 89:552587b429a1 277 uint32_t WriteProtection; /*!< Enables the SDRAM device to be accessed in write mode.
bogdanm 89:552587b429a1 278 This parameter can be a value of @ref FMC_SDRAM_Write_Protection. */
bogdanm 89:552587b429a1 279
bogdanm 89:552587b429a1 280 uint32_t SDClockPeriod; /*!< Define the SDRAM Clock Period for both SDRAM devices and they allow
bogdanm 89:552587b429a1 281 to disable the clock before changing frequency.
bogdanm 89:552587b429a1 282 This parameter can be a value of @ref FMC_SDRAM_Clock_Period. */
bogdanm 89:552587b429a1 283
bogdanm 89:552587b429a1 284 uint32_t ReadBurst; /*!< This bit enable the SDRAM controller to anticipate the next read
bogdanm 89:552587b429a1 285 commands during the CAS latency and stores data in the Read FIFO.
bogdanm 89:552587b429a1 286 This parameter can be a value of @ref FMC_SDRAM_Read_Burst. */
bogdanm 89:552587b429a1 287
bogdanm 89:552587b429a1 288 uint32_t ReadPipeDelay; /*!< Define the delay in system clock cycles on read data path.
bogdanm 89:552587b429a1 289 This parameter can be a value of @ref FMC_SDRAM_Read_Pipe_Delay. */
bogdanm 89:552587b429a1 290 }FMC_SDRAM_InitTypeDef;
bogdanm 89:552587b429a1 291
bogdanm 89:552587b429a1 292 /**
Kojto 99:dbbf35b96557 293 * @brief FMC SDRAM Timing parameters structure definition
bogdanm 89:552587b429a1 294 */
bogdanm 89:552587b429a1 295 typedef struct
bogdanm 89:552587b429a1 296 {
bogdanm 89:552587b429a1 297 uint32_t LoadToActiveDelay; /*!< Defines the delay between a Load Mode Register command and
bogdanm 89:552587b429a1 298 an active or Refresh command in number of memory clock cycles.
bogdanm 89:552587b429a1 299 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 300
bogdanm 89:552587b429a1 301 uint32_t ExitSelfRefreshDelay; /*!< Defines the delay from releasing the self refresh command to
bogdanm 89:552587b429a1 302 issuing the Activate command in number of memory clock cycles.
bogdanm 89:552587b429a1 303 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 304
bogdanm 89:552587b429a1 305 uint32_t SelfRefreshTime; /*!< Defines the minimum Self Refresh period in number of memory clock
bogdanm 89:552587b429a1 306 cycles.
bogdanm 89:552587b429a1 307 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 308
bogdanm 89:552587b429a1 309 uint32_t RowCycleDelay; /*!< Defines the delay between the Refresh command and the Activate command
bogdanm 89:552587b429a1 310 and the delay between two consecutive Refresh commands in number of
bogdanm 89:552587b429a1 311 memory clock cycles.
bogdanm 89:552587b429a1 312 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 313
bogdanm 89:552587b429a1 314 uint32_t WriteRecoveryTime; /*!< Defines the Write recovery Time in number of memory clock cycles.
bogdanm 89:552587b429a1 315 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 316
bogdanm 89:552587b429a1 317 uint32_t RPDelay; /*!< Defines the delay between a Precharge Command and an other command
bogdanm 89:552587b429a1 318 in number of memory clock cycles.
bogdanm 89:552587b429a1 319 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 320
bogdanm 89:552587b429a1 321 uint32_t RCDDelay; /*!< Defines the delay between the Activate Command and a Read/Write
bogdanm 89:552587b429a1 322 command in number of memory clock cycles.
bogdanm 89:552587b429a1 323 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 324 }FMC_SDRAM_TimingTypeDef;
bogdanm 89:552587b429a1 325
bogdanm 89:552587b429a1 326 /**
Kojto 99:dbbf35b96557 327 * @brief SDRAM command parameters structure definition
bogdanm 89:552587b429a1 328 */
bogdanm 89:552587b429a1 329 typedef struct
bogdanm 89:552587b429a1 330 {
bogdanm 89:552587b429a1 331 uint32_t CommandMode; /*!< Defines the command issued to the SDRAM device.
bogdanm 89:552587b429a1 332 This parameter can be a value of @ref FMC_SDRAM_Command_Mode. */
bogdanm 89:552587b429a1 333
bogdanm 89:552587b429a1 334 uint32_t CommandTarget; /*!< Defines which device (1 or 2) the command will be issued to.
bogdanm 89:552587b429a1 335 This parameter can be a value of @ref FMC_SDRAM_Command_Target. */
bogdanm 89:552587b429a1 336
bogdanm 89:552587b429a1 337 uint32_t AutoRefreshNumber; /*!< Defines the number of consecutive auto refresh command issued
bogdanm 89:552587b429a1 338 in auto refresh mode.
bogdanm 89:552587b429a1 339 This parameter can be a value between Min_Data = 1 and Max_Data = 16 */
bogdanm 89:552587b429a1 340 uint32_t ModeRegisterDefinition; /*!< Defines the SDRAM Mode register content */
bogdanm 89:552587b429a1 341 }FMC_SDRAM_CommandTypeDef;
Kojto 99:dbbf35b96557 342 /**
Kojto 99:dbbf35b96557 343 * @}
Kojto 99:dbbf35b96557 344 */
bogdanm 89:552587b429a1 345
Kojto 99:dbbf35b96557 346 /* Private constants ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 347 /** @defgroup FMC_LL_Private_Constants FMC Private Constants
bogdanm 89:552587b429a1 348 * @{
bogdanm 89:552587b429a1 349 */
bogdanm 89:552587b429a1 350
Kojto 99:dbbf35b96557 351 /** @defgroup FMC_LL_NOR_SRAM_Controller FMC NOR/SRAM Controller
Kojto 99:dbbf35b96557 352 * @{
Kojto 99:dbbf35b96557 353 */
Kojto 99:dbbf35b96557 354 /** @defgroup FMC_NORSRAM_Bank FMC NOR/SRAM Bank
bogdanm 89:552587b429a1 355 * @{
bogdanm 89:552587b429a1 356 */
bogdanm 89:552587b429a1 357 #define FMC_NORSRAM_BANK1 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 358 #define FMC_NORSRAM_BANK2 ((uint32_t)0x00000002)
bogdanm 89:552587b429a1 359 #define FMC_NORSRAM_BANK3 ((uint32_t)0x00000004)
bogdanm 89:552587b429a1 360 #define FMC_NORSRAM_BANK4 ((uint32_t)0x00000006)
bogdanm 89:552587b429a1 361 /**
bogdanm 89:552587b429a1 362 * @}
bogdanm 89:552587b429a1 363 */
bogdanm 89:552587b429a1 364
Kojto 99:dbbf35b96557 365 /** @defgroup FMC_Data_Address_Bus_Multiplexing FMC Data Address Bus Multiplexing
bogdanm 89:552587b429a1 366 * @{
bogdanm 89:552587b429a1 367 */
bogdanm 89:552587b429a1 368 #define FMC_DATA_ADDRESS_MUX_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 369 #define FMC_DATA_ADDRESS_MUX_ENABLE ((uint32_t)0x00000002)
bogdanm 89:552587b429a1 370 /**
bogdanm 89:552587b429a1 371 * @}
bogdanm 89:552587b429a1 372 */
bogdanm 89:552587b429a1 373
Kojto 99:dbbf35b96557 374 /** @defgroup FMC_Memory_Type FMC Memory Type
bogdanm 89:552587b429a1 375 * @{
bogdanm 89:552587b429a1 376 */
bogdanm 89:552587b429a1 377 #define FMC_MEMORY_TYPE_SRAM ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 378 #define FMC_MEMORY_TYPE_PSRAM ((uint32_t)0x00000004)
bogdanm 89:552587b429a1 379 #define FMC_MEMORY_TYPE_NOR ((uint32_t)0x00000008)
bogdanm 89:552587b429a1 380 /**
bogdanm 89:552587b429a1 381 * @}
bogdanm 89:552587b429a1 382 */
bogdanm 89:552587b429a1 383
Kojto 99:dbbf35b96557 384 /** @defgroup FMC_NORSRAM_Data_Width FMC NORSRAM Data Width
bogdanm 89:552587b429a1 385 * @{
bogdanm 89:552587b429a1 386 */
bogdanm 89:552587b429a1 387 #define FMC_NORSRAM_MEM_BUS_WIDTH_8 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 388 #define FMC_NORSRAM_MEM_BUS_WIDTH_16 ((uint32_t)0x00000010)
bogdanm 89:552587b429a1 389 #define FMC_NORSRAM_MEM_BUS_WIDTH_32 ((uint32_t)0x00000020)
bogdanm 89:552587b429a1 390 /**
bogdanm 89:552587b429a1 391 * @}
bogdanm 89:552587b429a1 392 */
bogdanm 89:552587b429a1 393
Kojto 99:dbbf35b96557 394 /** @defgroup FMC_NORSRAM_Flash_Access FMC NOR/SRAM Flash Access
bogdanm 89:552587b429a1 395 * @{
bogdanm 89:552587b429a1 396 */
bogdanm 89:552587b429a1 397 #define FMC_NORSRAM_FLASH_ACCESS_ENABLE ((uint32_t)0x00000040)
bogdanm 89:552587b429a1 398 #define FMC_NORSRAM_FLASH_ACCESS_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 399 /**
bogdanm 89:552587b429a1 400 * @}
bogdanm 89:552587b429a1 401 */
bogdanm 89:552587b429a1 402
Kojto 99:dbbf35b96557 403 /** @defgroup FMC_Burst_Access_Mode FMC Burst Access Mode
bogdanm 89:552587b429a1 404 * @{
bogdanm 89:552587b429a1 405 */
bogdanm 89:552587b429a1 406 #define FMC_BURST_ACCESS_MODE_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 407 #define FMC_BURST_ACCESS_MODE_ENABLE ((uint32_t)0x00000100)
bogdanm 89:552587b429a1 408 /**
bogdanm 89:552587b429a1 409 * @}
bogdanm 89:552587b429a1 410 */
bogdanm 89:552587b429a1 411
Kojto 99:dbbf35b96557 412 /** @defgroup FMC_Wait_Signal_Polarity FMC Wait Signal Polarity
bogdanm 89:552587b429a1 413 * @{
bogdanm 89:552587b429a1 414 */
bogdanm 89:552587b429a1 415 #define FMC_WAIT_SIGNAL_POLARITY_LOW ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 416 #define FMC_WAIT_SIGNAL_POLARITY_HIGH ((uint32_t)0x00000200)
bogdanm 89:552587b429a1 417 /**
bogdanm 89:552587b429a1 418 * @}
bogdanm 89:552587b429a1 419 */
bogdanm 89:552587b429a1 420
Kojto 99:dbbf35b96557 421 /** @defgroup FMC_Wrap_Mode FMC Wrap Mode
bogdanm 89:552587b429a1 422 * @{
bogdanm 89:552587b429a1 423 */
Kojto 110:165afa46840b 424 /** @note This mode is not available for the STM32F446/469/479xx devices
Kojto 99:dbbf35b96557 425 */
Kojto 99:dbbf35b96557 426 #define FMC_WRAP_MODE_DISABLE ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 427 #define FMC_WRAP_MODE_ENABLE ((uint32_t)0x00000400)
bogdanm 89:552587b429a1 428 /**
bogdanm 89:552587b429a1 429 * @}
bogdanm 89:552587b429a1 430 */
bogdanm 89:552587b429a1 431
Kojto 99:dbbf35b96557 432 /** @defgroup FMC_Wait_Timing FMC Wait Timing
Kojto 99:dbbf35b96557 433 * @{
Kojto 99:dbbf35b96557 434 */
Kojto 99:dbbf35b96557 435 #define FMC_WAIT_TIMING_BEFORE_WS ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 436 #define FMC_WAIT_TIMING_DURING_WS ((uint32_t)0x00000800)
Kojto 99:dbbf35b96557 437 /**
Kojto 99:dbbf35b96557 438 * @}
Kojto 99:dbbf35b96557 439 */
Kojto 99:dbbf35b96557 440
Kojto 99:dbbf35b96557 441 /** @defgroup FMC_Write_Operation FMC Write Operation
bogdanm 89:552587b429a1 442 * @{
bogdanm 89:552587b429a1 443 */
bogdanm 89:552587b429a1 444 #define FMC_WRITE_OPERATION_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 445 #define FMC_WRITE_OPERATION_ENABLE ((uint32_t)0x00001000)
bogdanm 89:552587b429a1 446 /**
bogdanm 89:552587b429a1 447 * @}
bogdanm 89:552587b429a1 448 */
bogdanm 89:552587b429a1 449
Kojto 99:dbbf35b96557 450 /** @defgroup FMC_Wait_Signal FMC Wait Signal
bogdanm 89:552587b429a1 451 * @{
bogdanm 89:552587b429a1 452 */
bogdanm 89:552587b429a1 453 #define FMC_WAIT_SIGNAL_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 454 #define FMC_WAIT_SIGNAL_ENABLE ((uint32_t)0x00002000)
bogdanm 89:552587b429a1 455 /**
bogdanm 89:552587b429a1 456 * @}
bogdanm 89:552587b429a1 457 */
bogdanm 89:552587b429a1 458
Kojto 99:dbbf35b96557 459 /** @defgroup FMC_Extended_Mode FMC Extended Mode
Kojto 99:dbbf35b96557 460 * @{
Kojto 99:dbbf35b96557 461 */
Kojto 99:dbbf35b96557 462 #define FMC_EXTENDED_MODE_DISABLE ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 463 #define FMC_EXTENDED_MODE_ENABLE ((uint32_t)0x00004000)
Kojto 99:dbbf35b96557 464 /**
Kojto 99:dbbf35b96557 465 * @}
Kojto 99:dbbf35b96557 466 */
Kojto 99:dbbf35b96557 467
Kojto 99:dbbf35b96557 468 /** @defgroup FMC_AsynchronousWait FMC Asynchronous Wait
bogdanm 89:552587b429a1 469 * @{
bogdanm 89:552587b429a1 470 */
bogdanm 89:552587b429a1 471 #define FMC_ASYNCHRONOUS_WAIT_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 472 #define FMC_ASYNCHRONOUS_WAIT_ENABLE ((uint32_t)0x00008000)
bogdanm 89:552587b429a1 473 /**
bogdanm 89:552587b429a1 474 * @}
bogdanm 89:552587b429a1 475 */
bogdanm 89:552587b429a1 476
Kojto 99:dbbf35b96557 477 /** @defgroup FMC_Page_Size FMC Page Size
Kojto 110:165afa46840b 478 * @note These values are available only for the STM32F446/469/479xx devices.
Kojto 99:dbbf35b96557 479 * @{
Kojto 99:dbbf35b96557 480 */
Kojto 99:dbbf35b96557 481 #define FMC_PAGE_SIZE_NONE ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 482 #define FMC_PAGE_SIZE_128 ((uint32_t)FMC_BCR1_CPSIZE_0)
Kojto 99:dbbf35b96557 483 #define FMC_PAGE_SIZE_256 ((uint32_t)FMC_BCR1_CPSIZE_1)
Kojto 99:dbbf35b96557 484 #define FMC_PAGE_SIZE_1024 ((uint32_t)FMC_BCR1_CPSIZE_2)
Kojto 99:dbbf35b96557 485 /**
Kojto 99:dbbf35b96557 486 * @}
Kojto 99:dbbf35b96557 487 */
Kojto 99:dbbf35b96557 488
Kojto 99:dbbf35b96557 489 /** @defgroup FMC_Write_FIFO FMC Write FIFO
Kojto 110:165afa46840b 490 * @note These values are available only for the STM32F446/469/479xx devices.
Kojto 99:dbbf35b96557 491 * @{
Kojto 99:dbbf35b96557 492 */
Kojto 99:dbbf35b96557 493 #define FMC_WRITE_FIFO_DISABLE ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 494 #define FMC_WRITE_FIFO_ENABLE ((uint32_t)FMC_BCR1_WFDIS)
Kojto 99:dbbf35b96557 495 /**
Kojto 99:dbbf35b96557 496 * @}
Kojto 99:dbbf35b96557 497 */
Kojto 99:dbbf35b96557 498
Kojto 99:dbbf35b96557 499 /** @defgroup FMC_Write_Burst FMC Write Burst
bogdanm 89:552587b429a1 500 * @{
bogdanm 89:552587b429a1 501 */
bogdanm 89:552587b429a1 502 #define FMC_WRITE_BURST_DISABLE ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 503 #define FMC_WRITE_BURST_ENABLE ((uint32_t)0x00080000)
bogdanm 89:552587b429a1 504 /**
bogdanm 89:552587b429a1 505 * @}
bogdanm 89:552587b429a1 506 */
bogdanm 89:552587b429a1 507
Kojto 99:dbbf35b96557 508 /** @defgroup FMC_Continous_Clock FMC Continuous Clock
bogdanm 89:552587b429a1 509 * @{
bogdanm 89:552587b429a1 510 */
Kojto 99:dbbf35b96557 511 #define FMC_CONTINUOUS_CLOCK_SYNC_ONLY ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 512 #define FMC_CONTINUOUS_CLOCK_SYNC_ASYNC ((uint32_t)0x00100000)
bogdanm 89:552587b429a1 513 /**
bogdanm 89:552587b429a1 514 * @}
bogdanm 89:552587b429a1 515 */
Kojto 99:dbbf35b96557 516
Kojto 99:dbbf35b96557 517 /** @defgroup FMC_Access_Mode FMC Access Mode
bogdanm 89:552587b429a1 518 * @{
bogdanm 89:552587b429a1 519 */
bogdanm 89:552587b429a1 520 #define FMC_ACCESS_MODE_A ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 521 #define FMC_ACCESS_MODE_B ((uint32_t)0x10000000)
bogdanm 89:552587b429a1 522 #define FMC_ACCESS_MODE_C ((uint32_t)0x20000000)
bogdanm 89:552587b429a1 523 #define FMC_ACCESS_MODE_D ((uint32_t)0x30000000)
bogdanm 89:552587b429a1 524 /**
bogdanm 89:552587b429a1 525 * @}
bogdanm 89:552587b429a1 526 */
bogdanm 89:552587b429a1 527
bogdanm 89:552587b429a1 528 /**
bogdanm 89:552587b429a1 529 * @}
Kojto 99:dbbf35b96557 530 */
bogdanm 89:552587b429a1 531
Kojto 99:dbbf35b96557 532 /** @defgroup FMC_LL_NAND_Controller FMC NAND Controller
bogdanm 89:552587b429a1 533 * @{
bogdanm 89:552587b429a1 534 */
Kojto 99:dbbf35b96557 535 /** @defgroup FMC_NAND_Bank FMC NAND Bank
bogdanm 89:552587b429a1 536 * @{
Kojto 99:dbbf35b96557 537 */
bogdanm 89:552587b429a1 538 #define FMC_NAND_BANK2 ((uint32_t)0x00000010)
Kojto 99:dbbf35b96557 539 #define FMC_NAND_BANK3 ((uint32_t)0x00000100)
bogdanm 89:552587b429a1 540 /**
bogdanm 89:552587b429a1 541 * @}
bogdanm 89:552587b429a1 542 */
bogdanm 89:552587b429a1 543
Kojto 99:dbbf35b96557 544 /** @defgroup FMC_Wait_feature FMC Wait feature
bogdanm 89:552587b429a1 545 * @{
bogdanm 89:552587b429a1 546 */
bogdanm 89:552587b429a1 547 #define FMC_NAND_PCC_WAIT_FEATURE_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 548 #define FMC_NAND_PCC_WAIT_FEATURE_ENABLE ((uint32_t)0x00000002)
bogdanm 89:552587b429a1 549 /**
bogdanm 89:552587b429a1 550 * @}
bogdanm 89:552587b429a1 551 */
bogdanm 89:552587b429a1 552
Kojto 99:dbbf35b96557 553 /** @defgroup FMC_PCR_Memory_Type FMC PCR Memory Type
bogdanm 89:552587b429a1 554 * @{
bogdanm 89:552587b429a1 555 */
bogdanm 89:552587b429a1 556 #define FMC_PCR_MEMORY_TYPE_PCCARD ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 557 #define FMC_PCR_MEMORY_TYPE_NAND ((uint32_t)0x00000008)
bogdanm 89:552587b429a1 558 /**
bogdanm 89:552587b429a1 559 * @}
bogdanm 89:552587b429a1 560 */
bogdanm 89:552587b429a1 561
Kojto 99:dbbf35b96557 562 /** @defgroup FMC_NAND_Data_Width FMC NAND Data Width
bogdanm 89:552587b429a1 563 * @{
bogdanm 89:552587b429a1 564 */
bogdanm 89:552587b429a1 565 #define FMC_NAND_PCC_MEM_BUS_WIDTH_8 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 566 #define FMC_NAND_PCC_MEM_BUS_WIDTH_16 ((uint32_t)0x00000010)
bogdanm 89:552587b429a1 567 /**
bogdanm 89:552587b429a1 568 * @}
bogdanm 89:552587b429a1 569 */
bogdanm 89:552587b429a1 570
Kojto 99:dbbf35b96557 571 /** @defgroup FMC_ECC FMC ECC
bogdanm 89:552587b429a1 572 * @{
bogdanm 89:552587b429a1 573 */
bogdanm 89:552587b429a1 574 #define FMC_NAND_ECC_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 575 #define FMC_NAND_ECC_ENABLE ((uint32_t)0x00000040)
bogdanm 89:552587b429a1 576 /**
bogdanm 89:552587b429a1 577 * @}
bogdanm 89:552587b429a1 578 */
bogdanm 89:552587b429a1 579
Kojto 99:dbbf35b96557 580 /** @defgroup FMC_ECC_Page_Size FMC ECC Page Size
bogdanm 89:552587b429a1 581 * @{
bogdanm 89:552587b429a1 582 */
bogdanm 89:552587b429a1 583 #define FMC_NAND_ECC_PAGE_SIZE_256BYTE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 584 #define FMC_NAND_ECC_PAGE_SIZE_512BYTE ((uint32_t)0x00020000)
bogdanm 89:552587b429a1 585 #define FMC_NAND_ECC_PAGE_SIZE_1024BYTE ((uint32_t)0x00040000)
bogdanm 89:552587b429a1 586 #define FMC_NAND_ECC_PAGE_SIZE_2048BYTE ((uint32_t)0x00060000)
bogdanm 89:552587b429a1 587 #define FMC_NAND_ECC_PAGE_SIZE_4096BYTE ((uint32_t)0x00080000)
bogdanm 89:552587b429a1 588 #define FMC_NAND_ECC_PAGE_SIZE_8192BYTE ((uint32_t)0x000A0000)
bogdanm 89:552587b429a1 589 /**
bogdanm 89:552587b429a1 590 * @}
bogdanm 89:552587b429a1 591 */
Kojto 99:dbbf35b96557 592
bogdanm 89:552587b429a1 593 /**
bogdanm 89:552587b429a1 594 * @}
Kojto 99:dbbf35b96557 595 */
bogdanm 89:552587b429a1 596
Kojto 99:dbbf35b96557 597 /** @defgroup FMC_LL_SDRAM_Controller FMC SDRAM Controller
bogdanm 89:552587b429a1 598 * @{
bogdanm 89:552587b429a1 599 */
Kojto 99:dbbf35b96557 600 /** @defgroup FMC_SDRAM_Bank FMC SDRAM Bank
bogdanm 89:552587b429a1 601 * @{
bogdanm 89:552587b429a1 602 */
Kojto 99:dbbf35b96557 603 #define FMC_SDRAM_BANK1 ((uint32_t)0x00000000)
Kojto 99:dbbf35b96557 604 #define FMC_SDRAM_BANK2 ((uint32_t)0x00000001)
bogdanm 89:552587b429a1 605 /**
bogdanm 89:552587b429a1 606 * @}
bogdanm 89:552587b429a1 607 */
bogdanm 89:552587b429a1 608
Kojto 99:dbbf35b96557 609 /** @defgroup FMC_SDRAM_Column_Bits_number FMC SDRAM Column Bits number
bogdanm 89:552587b429a1 610 * @{
bogdanm 89:552587b429a1 611 */
bogdanm 89:552587b429a1 612 #define FMC_SDRAM_COLUMN_BITS_NUM_8 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 613 #define FMC_SDRAM_COLUMN_BITS_NUM_9 ((uint32_t)0x00000001)
bogdanm 89:552587b429a1 614 #define FMC_SDRAM_COLUMN_BITS_NUM_10 ((uint32_t)0x00000002)
bogdanm 89:552587b429a1 615 #define FMC_SDRAM_COLUMN_BITS_NUM_11 ((uint32_t)0x00000003)
bogdanm 89:552587b429a1 616 /**
bogdanm 89:552587b429a1 617 * @}
bogdanm 89:552587b429a1 618 */
bogdanm 89:552587b429a1 619
Kojto 99:dbbf35b96557 620 /** @defgroup FMC_SDRAM_Row_Bits_number FMC SDRAM Row Bits number
bogdanm 89:552587b429a1 621 * @{
bogdanm 89:552587b429a1 622 */
bogdanm 89:552587b429a1 623 #define FMC_SDRAM_ROW_BITS_NUM_11 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 624 #define FMC_SDRAM_ROW_BITS_NUM_12 ((uint32_t)0x00000004)
bogdanm 89:552587b429a1 625 #define FMC_SDRAM_ROW_BITS_NUM_13 ((uint32_t)0x00000008)
bogdanm 89:552587b429a1 626 /**
bogdanm 89:552587b429a1 627 * @}
bogdanm 89:552587b429a1 628 */
bogdanm 89:552587b429a1 629
Kojto 99:dbbf35b96557 630 /** @defgroup FMC_SDRAM_Memory_Bus_Width FMC SDRAM Memory Bus Width
bogdanm 89:552587b429a1 631 * @{
bogdanm 89:552587b429a1 632 */
bogdanm 89:552587b429a1 633 #define FMC_SDRAM_MEM_BUS_WIDTH_8 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 634 #define FMC_SDRAM_MEM_BUS_WIDTH_16 ((uint32_t)0x00000010)
bogdanm 89:552587b429a1 635 #define FMC_SDRAM_MEM_BUS_WIDTH_32 ((uint32_t)0x00000020)
bogdanm 89:552587b429a1 636 /**
bogdanm 89:552587b429a1 637 * @}
bogdanm 89:552587b429a1 638 */
bogdanm 89:552587b429a1 639
Kojto 99:dbbf35b96557 640 /** @defgroup FMC_SDRAM_Internal_Banks_Number FMC SDRAM Internal Banks Number
bogdanm 89:552587b429a1 641 * @{
bogdanm 89:552587b429a1 642 */
bogdanm 89:552587b429a1 643 #define FMC_SDRAM_INTERN_BANKS_NUM_2 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 644 #define FMC_SDRAM_INTERN_BANKS_NUM_4 ((uint32_t)0x00000040)
bogdanm 89:552587b429a1 645 /**
bogdanm 89:552587b429a1 646 * @}
bogdanm 89:552587b429a1 647 */
bogdanm 89:552587b429a1 648
Kojto 99:dbbf35b96557 649 /** @defgroup FMC_SDRAM_CAS_Latency FMC SDRAM CAS Latency
bogdanm 89:552587b429a1 650 * @{
bogdanm 89:552587b429a1 651 */
bogdanm 89:552587b429a1 652 #define FMC_SDRAM_CAS_LATENCY_1 ((uint32_t)0x00000080)
bogdanm 89:552587b429a1 653 #define FMC_SDRAM_CAS_LATENCY_2 ((uint32_t)0x00000100)
bogdanm 89:552587b429a1 654 #define FMC_SDRAM_CAS_LATENCY_3 ((uint32_t)0x00000180)
bogdanm 89:552587b429a1 655 /**
bogdanm 89:552587b429a1 656 * @}
bogdanm 89:552587b429a1 657 */
bogdanm 89:552587b429a1 658
Kojto 99:dbbf35b96557 659 /** @defgroup FMC_SDRAM_Write_Protection FMC SDRAM Write Protection
bogdanm 89:552587b429a1 660 * @{
bogdanm 89:552587b429a1 661 */
bogdanm 89:552587b429a1 662 #define FMC_SDRAM_WRITE_PROTECTION_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 663 #define FMC_SDRAM_WRITE_PROTECTION_ENABLE ((uint32_t)0x00000200)
bogdanm 89:552587b429a1 664
bogdanm 89:552587b429a1 665 /**
bogdanm 89:552587b429a1 666 * @}
bogdanm 89:552587b429a1 667 */
bogdanm 89:552587b429a1 668
Kojto 99:dbbf35b96557 669 /** @defgroup FMC_SDRAM_Clock_Period FMC SDRAM Clock Period
bogdanm 89:552587b429a1 670 * @{
bogdanm 89:552587b429a1 671 */
bogdanm 89:552587b429a1 672 #define FMC_SDRAM_CLOCK_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 673 #define FMC_SDRAM_CLOCK_PERIOD_2 ((uint32_t)0x00000800)
bogdanm 89:552587b429a1 674 #define FMC_SDRAM_CLOCK_PERIOD_3 ((uint32_t)0x00000C00)
bogdanm 89:552587b429a1 675 /**
bogdanm 89:552587b429a1 676 * @}
bogdanm 89:552587b429a1 677 */
bogdanm 89:552587b429a1 678
Kojto 99:dbbf35b96557 679 /** @defgroup FMC_SDRAM_Read_Burst FMC SDRAM Read Burst
bogdanm 89:552587b429a1 680 * @{
bogdanm 89:552587b429a1 681 */
bogdanm 89:552587b429a1 682 #define FMC_SDRAM_RBURST_DISABLE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 683 #define FMC_SDRAM_RBURST_ENABLE ((uint32_t)0x00001000)
bogdanm 89:552587b429a1 684 /**
bogdanm 89:552587b429a1 685 * @}
bogdanm 89:552587b429a1 686 */
bogdanm 89:552587b429a1 687
Kojto 99:dbbf35b96557 688 /** @defgroup FMC_SDRAM_Read_Pipe_Delay FMC SDRAM Read Pipe Delay
bogdanm 89:552587b429a1 689 * @{
bogdanm 89:552587b429a1 690 */
bogdanm 89:552587b429a1 691 #define FMC_SDRAM_RPIPE_DELAY_0 ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 692 #define FMC_SDRAM_RPIPE_DELAY_1 ((uint32_t)0x00002000)
bogdanm 89:552587b429a1 693 #define FMC_SDRAM_RPIPE_DELAY_2 ((uint32_t)0x00004000)
bogdanm 89:552587b429a1 694 /**
bogdanm 89:552587b429a1 695 * @}
bogdanm 89:552587b429a1 696 */
bogdanm 89:552587b429a1 697
Kojto 99:dbbf35b96557 698 /** @defgroup FMC_SDRAM_Command_Mode FMC SDRAM Command Mode
bogdanm 89:552587b429a1 699 * @{
bogdanm 89:552587b429a1 700 */
bogdanm 89:552587b429a1 701 #define FMC_SDRAM_CMD_NORMAL_MODE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 702 #define FMC_SDRAM_CMD_CLK_ENABLE ((uint32_t)0x00000001)
bogdanm 89:552587b429a1 703 #define FMC_SDRAM_CMD_PALL ((uint32_t)0x00000002)
bogdanm 89:552587b429a1 704 #define FMC_SDRAM_CMD_AUTOREFRESH_MODE ((uint32_t)0x00000003)
bogdanm 89:552587b429a1 705 #define FMC_SDRAM_CMD_LOAD_MODE ((uint32_t)0x00000004)
bogdanm 89:552587b429a1 706 #define FMC_SDRAM_CMD_SELFREFRESH_MODE ((uint32_t)0x00000005)
bogdanm 89:552587b429a1 707 #define FMC_SDRAM_CMD_POWERDOWN_MODE ((uint32_t)0x00000006)
bogdanm 89:552587b429a1 708 /**
bogdanm 89:552587b429a1 709 * @}
bogdanm 89:552587b429a1 710 */
bogdanm 89:552587b429a1 711
Kojto 99:dbbf35b96557 712 /** @defgroup FMC_SDRAM_Command_Target FMC SDRAM Command Target
bogdanm 89:552587b429a1 713 * @{
bogdanm 89:552587b429a1 714 */
bogdanm 89:552587b429a1 715 #define FMC_SDRAM_CMD_TARGET_BANK2 FMC_SDCMR_CTB2
bogdanm 89:552587b429a1 716 #define FMC_SDRAM_CMD_TARGET_BANK1 FMC_SDCMR_CTB1
bogdanm 89:552587b429a1 717 #define FMC_SDRAM_CMD_TARGET_BANK1_2 ((uint32_t)0x00000018)
bogdanm 89:552587b429a1 718 /**
bogdanm 89:552587b429a1 719 * @}
bogdanm 89:552587b429a1 720 */
bogdanm 89:552587b429a1 721
Kojto 99:dbbf35b96557 722 /** @defgroup FMC_SDRAM_Mode_Status FMC SDRAM Mode Status
bogdanm 89:552587b429a1 723 * @{
bogdanm 89:552587b429a1 724 */
bogdanm 89:552587b429a1 725 #define FMC_SDRAM_NORMAL_MODE ((uint32_t)0x00000000)
bogdanm 89:552587b429a1 726 #define FMC_SDRAM_SELF_REFRESH_MODE FMC_SDSR_MODES1_0
bogdanm 89:552587b429a1 727 #define FMC_SDRAM_POWER_DOWN_MODE FMC_SDSR_MODES1_1
bogdanm 89:552587b429a1 728 /**
bogdanm 89:552587b429a1 729 * @}
bogdanm 89:552587b429a1 730 */
Kojto 99:dbbf35b96557 731
bogdanm 89:552587b429a1 732 /**
bogdanm 89:552587b429a1 733 * @}
bogdanm 89:552587b429a1 734 */
bogdanm 89:552587b429a1 735
Kojto 99:dbbf35b96557 736 /** @defgroup FMC_LL_Interrupt_definition FMC Interrupt definition
bogdanm 89:552587b429a1 737 * @{
bogdanm 89:552587b429a1 738 */
bogdanm 89:552587b429a1 739 #define FMC_IT_RISING_EDGE ((uint32_t)0x00000008)
bogdanm 89:552587b429a1 740 #define FMC_IT_LEVEL ((uint32_t)0x00000010)
bogdanm 89:552587b429a1 741 #define FMC_IT_FALLING_EDGE ((uint32_t)0x00000020)
bogdanm 89:552587b429a1 742 #define FMC_IT_REFRESH_ERROR ((uint32_t)0x00004000)
bogdanm 89:552587b429a1 743 /**
bogdanm 89:552587b429a1 744 * @}
bogdanm 89:552587b429a1 745 */
bogdanm 89:552587b429a1 746
Kojto 99:dbbf35b96557 747 /** @defgroup FMC_LL_Flag_definition FMC Flag definition
bogdanm 89:552587b429a1 748 * @{
bogdanm 89:552587b429a1 749 */
bogdanm 89:552587b429a1 750 #define FMC_FLAG_RISING_EDGE ((uint32_t)0x00000001)
bogdanm 89:552587b429a1 751 #define FMC_FLAG_LEVEL ((uint32_t)0x00000002)
bogdanm 89:552587b429a1 752 #define FMC_FLAG_FALLING_EDGE ((uint32_t)0x00000004)
bogdanm 89:552587b429a1 753 #define FMC_FLAG_FEMPT ((uint32_t)0x00000040)
bogdanm 89:552587b429a1 754 #define FMC_SDRAM_FLAG_REFRESH_IT FMC_SDSR_RE
bogdanm 89:552587b429a1 755 #define FMC_SDRAM_FLAG_BUSY FMC_SDSR_BUSY
bogdanm 89:552587b429a1 756 #define FMC_SDRAM_FLAG_REFRESH_ERROR FMC_SDRTR_CRE
bogdanm 89:552587b429a1 757 /**
bogdanm 89:552587b429a1 758 * @}
bogdanm 89:552587b429a1 759 */
bogdanm 89:552587b429a1 760
Kojto 99:dbbf35b96557 761 /** @defgroup FMC_LL_Alias_definition FMC Alias definition
Kojto 99:dbbf35b96557 762 * @{
Kojto 99:dbbf35b96557 763 */
Kojto 110:165afa46840b 764 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
Kojto 99:dbbf35b96557 765 #define FMC_NAND_TypeDef FMC_Bank3_TypeDef
Kojto 99:dbbf35b96557 766 #else
Kojto 99:dbbf35b96557 767 #define FMC_NAND_TypeDef FMC_Bank2_3_TypeDef
Kojto 99:dbbf35b96557 768 #define FMC_PCCARD_TypeDef FMC_Bank4_TypeDef
Kojto 110:165afa46840b 769 #endif /* STM32F446xx || STM32F469xx || STM32F479xx */
Kojto 99:dbbf35b96557 770 #define FMC_NORSRAM_TypeDef FMC_Bank1_TypeDef
Kojto 99:dbbf35b96557 771 #define FMC_NORSRAM_EXTENDED_TypeDef FMC_Bank1E_TypeDef
Kojto 99:dbbf35b96557 772 #define FMC_SDRAM_TypeDef FMC_Bank5_6_TypeDef
Kojto 99:dbbf35b96557 773
bogdanm 89:552587b429a1 774
Kojto 110:165afa46840b 775 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
Kojto 99:dbbf35b96557 776 #define FMC_NAND_DEVICE FMC_Bank3
Kojto 99:dbbf35b96557 777 #else
Kojto 99:dbbf35b96557 778 #define FMC_NAND_DEVICE FMC_Bank2_3
Kojto 99:dbbf35b96557 779 #define FMC_PCCARD_DEVICE FMC_Bank4
Kojto 110:165afa46840b 780 #endif /* STM32F446xx || STM32F469xx || STM32F479xx */
Kojto 99:dbbf35b96557 781 #define FMC_NORSRAM_DEVICE FMC_Bank1
Kojto 99:dbbf35b96557 782 #define FMC_NORSRAM_EXTENDED_DEVICE FMC_Bank1E
Kojto 99:dbbf35b96557 783 #define FMC_SDRAM_DEVICE FMC_Bank5_6
Kojto 99:dbbf35b96557 784 /**
Kojto 99:dbbf35b96557 785 * @}
Kojto 99:dbbf35b96557 786 */
Kojto 99:dbbf35b96557 787
Kojto 99:dbbf35b96557 788 /**
Kojto 99:dbbf35b96557 789 * @}
Kojto 99:dbbf35b96557 790 */
Kojto 99:dbbf35b96557 791
Kojto 99:dbbf35b96557 792 /* Private macro -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 793 /** @defgroup FMC_LL_Private_Macros FMC Private Macros
Kojto 99:dbbf35b96557 794 * @{
Kojto 99:dbbf35b96557 795 */
Kojto 99:dbbf35b96557 796
Kojto 99:dbbf35b96557 797 /** @defgroup FMC_LL_NOR_Macros FMC NOR/SRAM Macros
bogdanm 89:552587b429a1 798 * @brief macros to handle NOR device enable/disable and read/write operations
bogdanm 89:552587b429a1 799 * @{
bogdanm 89:552587b429a1 800 */
bogdanm 89:552587b429a1 801 /**
bogdanm 89:552587b429a1 802 * @brief Enable the NORSRAM device access.
bogdanm 89:552587b429a1 803 * @param __INSTANCE__: FMC_NORSRAM Instance
bogdanm 89:552587b429a1 804 * @param __BANK__: FMC_NORSRAM Bank
bogdanm 89:552587b429a1 805 * @retval None
bogdanm 89:552587b429a1 806 */
bogdanm 89:552587b429a1 807 #define __FMC_NORSRAM_ENABLE(__INSTANCE__, __BANK__) ((__INSTANCE__)->BTCR[(__BANK__)] |= FMC_BCR1_MBKEN)
bogdanm 89:552587b429a1 808
bogdanm 89:552587b429a1 809 /**
bogdanm 89:552587b429a1 810 * @brief Disable the NORSRAM device access.
bogdanm 89:552587b429a1 811 * @param __INSTANCE__: FMC_NORSRAM Instance
bogdanm 89:552587b429a1 812 * @param __BANK__: FMC_NORSRAM Bank
bogdanm 89:552587b429a1 813 * @retval None
bogdanm 89:552587b429a1 814 */
bogdanm 89:552587b429a1 815 #define __FMC_NORSRAM_DISABLE(__INSTANCE__, __BANK__) ((__INSTANCE__)->BTCR[(__BANK__)] &= ~FMC_BCR1_MBKEN)
bogdanm 89:552587b429a1 816 /**
bogdanm 89:552587b429a1 817 * @}
bogdanm 89:552587b429a1 818 */
bogdanm 89:552587b429a1 819
Kojto 99:dbbf35b96557 820 /** @defgroup FMC_LL_NAND_Macros FMC NAND Macros
bogdanm 89:552587b429a1 821 * @brief macros to handle NAND device enable/disable
bogdanm 89:552587b429a1 822 * @{
bogdanm 89:552587b429a1 823 */
Kojto 110:165afa46840b 824 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
Kojto 99:dbbf35b96557 825 /**
Kojto 99:dbbf35b96557 826 * @brief Enable the NAND device access.
Kojto 99:dbbf35b96557 827 * @param __INSTANCE__: FMC_NAND Instance
Kojto 99:dbbf35b96557 828 * @param __BANK__: FMC_NAND Bank
Kojto 99:dbbf35b96557 829 * @retval None
Kojto 99:dbbf35b96557 830 */
Kojto 99:dbbf35b96557 831 #define __FMC_NAND_ENABLE(__INSTANCE__, __BANK__) ((__INSTANCE__)->PCR |= FMC_PCR_PBKEN)
Kojto 99:dbbf35b96557 832
Kojto 99:dbbf35b96557 833 /**
Kojto 99:dbbf35b96557 834 * @brief Disable the NAND device access.
Kojto 99:dbbf35b96557 835 * @param __INSTANCE__: FMC_NAND Instance
Kojto 99:dbbf35b96557 836 * @param __BANK__: FMC_NAND Bank
Kojto 99:dbbf35b96557 837 * @retval None
Kojto 99:dbbf35b96557 838 */
Kojto 99:dbbf35b96557 839 #define __FMC_NAND_DISABLE(__INSTANCE__, __BANK__) ((__INSTANCE__)->PCR &= ~FMC_PCR_PBKEN)
Kojto 99:dbbf35b96557 840 #else /* defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) */
bogdanm 89:552587b429a1 841 /**
bogdanm 89:552587b429a1 842 * @brief Enable the NAND device access.
bogdanm 89:552587b429a1 843 * @param __INSTANCE__: FMC_NAND Instance
bogdanm 89:552587b429a1 844 * @param __BANK__: FMC_NAND Bank
bogdanm 89:552587b429a1 845 * @retval None
bogdanm 89:552587b429a1 846 */
bogdanm 89:552587b429a1 847 #define __FMC_NAND_ENABLE(__INSTANCE__, __BANK__) (((__BANK__) == FMC_NAND_BANK2)? ((__INSTANCE__)->PCR2 |= FMC_PCR2_PBKEN): \
bogdanm 89:552587b429a1 848 ((__INSTANCE__)->PCR3 |= FMC_PCR3_PBKEN))
bogdanm 89:552587b429a1 849
bogdanm 89:552587b429a1 850 /**
bogdanm 89:552587b429a1 851 * @brief Disable the NAND device access.
bogdanm 89:552587b429a1 852 * @param __INSTANCE__: FMC_NAND Instance
bogdanm 89:552587b429a1 853 * @param __BANK__: FMC_NAND Bank
bogdanm 89:552587b429a1 854 * @retval None
bogdanm 89:552587b429a1 855 */
bogdanm 89:552587b429a1 856 #define __FMC_NAND_DISABLE(__INSTANCE__, __BANK__) (((__BANK__) == FMC_NAND_BANK2)? ((__INSTANCE__)->PCR2 &= ~FMC_PCR2_PBKEN): \
bogdanm 89:552587b429a1 857 ((__INSTANCE__)->PCR3 &= ~FMC_PCR3_PBKEN))
Kojto 99:dbbf35b96557 858
Kojto 110:165afa46840b 859 #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) */
bogdanm 89:552587b429a1 860 /**
bogdanm 89:552587b429a1 861 * @}
bogdanm 89:552587b429a1 862 */
Kojto 99:dbbf35b96557 863 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
Kojto 99:dbbf35b96557 864 /** @defgroup FMC_LL_PCCARD_Macros FMC PCCARD Macros
bogdanm 89:552587b429a1 865 * @brief macros to handle SRAM read/write operations
bogdanm 89:552587b429a1 866 * @{
bogdanm 89:552587b429a1 867 */
bogdanm 89:552587b429a1 868 /**
bogdanm 89:552587b429a1 869 * @brief Enable the PCCARD device access.
bogdanm 89:552587b429a1 870 * @param __INSTANCE__: FMC_PCCARD Instance
bogdanm 89:552587b429a1 871 * @retval None
bogdanm 89:552587b429a1 872 */
bogdanm 89:552587b429a1 873 #define __FMC_PCCARD_ENABLE(__INSTANCE__) ((__INSTANCE__)->PCR4 |= FMC_PCR4_PBKEN)
bogdanm 89:552587b429a1 874
bogdanm 89:552587b429a1 875 /**
bogdanm 89:552587b429a1 876 * @brief Disable the PCCARD device access.
bogdanm 89:552587b429a1 877 * @param __INSTANCE__: FMC_PCCARD Instance
bogdanm 89:552587b429a1 878 * @retval None
bogdanm 89:552587b429a1 879 */
bogdanm 89:552587b429a1 880 #define __FMC_PCCARD_DISABLE(__INSTANCE__) ((__INSTANCE__)->PCR4 &= ~FMC_PCR4_PBKEN)
bogdanm 89:552587b429a1 881 /**
bogdanm 89:552587b429a1 882 * @}
bogdanm 89:552587b429a1 883 */
Kojto 99:dbbf35b96557 884 #endif /* defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) */
Kojto 99:dbbf35b96557 885
Kojto 99:dbbf35b96557 886 /** @defgroup FMC_LL_Flag_Interrupt_Macros FMC Flag&Interrupt Macros
Kojto 99:dbbf35b96557 887 * @brief macros to handle FMC flags and interrupts
bogdanm 89:552587b429a1 888 * @{
bogdanm 89:552587b429a1 889 */
Kojto 110:165afa46840b 890 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
Kojto 99:dbbf35b96557 891 /**
Kojto 99:dbbf35b96557 892 * @brief Enable the NAND device interrupt.
Kojto 99:dbbf35b96557 893 * @param __INSTANCE__: FMC_NAND instance
Kojto 99:dbbf35b96557 894 * @param __BANK__: FMC_NAND Bank
Kojto 99:dbbf35b96557 895 * @param __INTERRUPT__: FMC_NAND interrupt
Kojto 99:dbbf35b96557 896 * This parameter can be any combination of the following values:
Kojto 99:dbbf35b96557 897 * @arg FMC_IT_RISING_EDGE: Interrupt rising edge.
Kojto 99:dbbf35b96557 898 * @arg FMC_IT_LEVEL: Interrupt level.
Kojto 99:dbbf35b96557 899 * @arg FMC_IT_FALLING_EDGE: Interrupt falling edge.
Kojto 99:dbbf35b96557 900 * @retval None
Kojto 99:dbbf35b96557 901 */
Kojto 99:dbbf35b96557 902 #define __FMC_NAND_ENABLE_IT(__INSTANCE__, __BANK__, __INTERRUPT__) ((__INSTANCE__)->SR |= (__INTERRUPT__))
bogdanm 89:552587b429a1 903
bogdanm 89:552587b429a1 904 /**
Kojto 99:dbbf35b96557 905 * @brief Disable the NAND device interrupt.
Kojto 99:dbbf35b96557 906 * @param __INSTANCE__: FMC_NAND Instance
Kojto 99:dbbf35b96557 907 * @param __BANK__: FMC_NAND Bank
Kojto 99:dbbf35b96557 908 * @param __INTERRUPT__: FMC_NAND interrupt
Kojto 99:dbbf35b96557 909 * This parameter can be any combination of the following values:
Kojto 99:dbbf35b96557 910 * @arg FMC_IT_RISING_EDGE: Interrupt rising edge.
Kojto 99:dbbf35b96557 911 * @arg FMC_IT_LEVEL: Interrupt level.
Kojto 99:dbbf35b96557 912 * @arg FMC_IT_FALLING_EDGE: Interrupt falling edge.
Kojto 99:dbbf35b96557 913 * @retval None
Kojto 99:dbbf35b96557 914 */
Kojto 99:dbbf35b96557 915 #define __FMC_NAND_DISABLE_IT(__INSTANCE__, __BANK__, __INTERRUPT__) ((__INSTANCE__)->SR &= ~(__INTERRUPT__))
Kojto 99:dbbf35b96557 916
Kojto 99:dbbf35b96557 917 /**
Kojto 99:dbbf35b96557 918 * @brief Get flag status of the NAND device.
Kojto 99:dbbf35b96557 919 * @param __INSTANCE__: FMC_NAND Instance
Kojto 99:dbbf35b96557 920 * @param __BANK__: FMC_NAND Bank
Kojto 99:dbbf35b96557 921 * @param __FLAG__: FMC_NAND flag
Kojto 99:dbbf35b96557 922 * This parameter can be any combination of the following values:
Kojto 99:dbbf35b96557 923 * @arg FMC_FLAG_RISING_EDGE: Interrupt rising edge flag.
Kojto 99:dbbf35b96557 924 * @arg FMC_FLAG_LEVEL: Interrupt level edge flag.
Kojto 99:dbbf35b96557 925 * @arg FMC_FLAG_FALLING_EDGE: Interrupt falling edge flag.
Kojto 99:dbbf35b96557 926 * @arg FMC_FLAG_FEMPT: FIFO empty flag.
Kojto 99:dbbf35b96557 927 * @retval The state of FLAG (SET or RESET).
Kojto 99:dbbf35b96557 928 */
Kojto 99:dbbf35b96557 929 #define __FMC_NAND_GET_FLAG(__INSTANCE__, __BANK__, __FLAG__) (((__INSTANCE__)->SR &(__FLAG__)) == (__FLAG__))
Kojto 99:dbbf35b96557 930 /**
Kojto 99:dbbf35b96557 931 * @brief Clear flag status of the NAND device.
Kojto 99:dbbf35b96557 932 * @param __INSTANCE__: FMC_NAND Instance
Kojto 99:dbbf35b96557 933 * @param __BANK__: FMC_NAND Bank
Kojto 99:dbbf35b96557 934 * @param __FLAG__: FMC_NAND flag
Kojto 99:dbbf35b96557 935 * This parameter can be any combination of the following values:
Kojto 99:dbbf35b96557 936 * @arg FMC_FLAG_RISING_EDGE: Interrupt rising edge flag.
Kojto 99:dbbf35b96557 937 * @arg FMC_FLAG_LEVEL: Interrupt level edge flag.
Kojto 99:dbbf35b96557 938 * @arg FMC_FLAG_FALLING_EDGE: Interrupt falling edge flag.
Kojto 99:dbbf35b96557 939 * @arg FMC_FLAG_FEMPT: FIFO empty flag.
Kojto 99:dbbf35b96557 940 * @retval None
Kojto 99:dbbf35b96557 941 */
Kojto 99:dbbf35b96557 942 #define __FMC_NAND_CLEAR_FLAG(__INSTANCE__, __BANK__, __FLAG__) ((__INSTANCE__)->SR &= ~(__FLAG__))
Kojto 99:dbbf35b96557 943 #else /* defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) */
Kojto 99:dbbf35b96557 944 /**
bogdanm 89:552587b429a1 945 * @brief Enable the NAND device interrupt.
bogdanm 89:552587b429a1 946 * @param __INSTANCE__: FMC_NAND instance
bogdanm 89:552587b429a1 947 * @param __BANK__: FMC_NAND Bank
bogdanm 89:552587b429a1 948 * @param __INTERRUPT__: FMC_NAND interrupt
bogdanm 89:552587b429a1 949 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 950 * @arg FMC_IT_RISING_EDGE: Interrupt rising edge.
bogdanm 89:552587b429a1 951 * @arg FMC_IT_LEVEL: Interrupt level.
bogdanm 89:552587b429a1 952 * @arg FMC_IT_FALLING_EDGE: Interrupt falling edge.
bogdanm 89:552587b429a1 953 * @retval None
bogdanm 89:552587b429a1 954 */
bogdanm 89:552587b429a1 955 #define __FMC_NAND_ENABLE_IT(__INSTANCE__, __BANK__, __INTERRUPT__) (((__BANK__) == FMC_NAND_BANK2)? ((__INSTANCE__)->SR2 |= (__INTERRUPT__)): \
bogdanm 89:552587b429a1 956 ((__INSTANCE__)->SR3 |= (__INTERRUPT__)))
bogdanm 89:552587b429a1 957
bogdanm 89:552587b429a1 958 /**
bogdanm 89:552587b429a1 959 * @brief Disable the NAND device interrupt.
Kojto 99:dbbf35b96557 960 * @param __INSTANCE__: FMC_NAND Instance
bogdanm 89:552587b429a1 961 * @param __BANK__: FMC_NAND Bank
bogdanm 89:552587b429a1 962 * @param __INTERRUPT__: FMC_NAND interrupt
bogdanm 89:552587b429a1 963 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 964 * @arg FMC_IT_RISING_EDGE: Interrupt rising edge.
bogdanm 89:552587b429a1 965 * @arg FMC_IT_LEVEL: Interrupt level.
bogdanm 89:552587b429a1 966 * @arg FMC_IT_FALLING_EDGE: Interrupt falling edge.
bogdanm 89:552587b429a1 967 * @retval None
bogdanm 89:552587b429a1 968 */
bogdanm 89:552587b429a1 969 #define __FMC_NAND_DISABLE_IT(__INSTANCE__, __BANK__, __INTERRUPT__) (((__BANK__) == FMC_NAND_BANK2)? ((__INSTANCE__)->SR2 &= ~(__INTERRUPT__)): \
bogdanm 89:552587b429a1 970 ((__INSTANCE__)->SR3 &= ~(__INTERRUPT__)))
bogdanm 89:552587b429a1 971
bogdanm 89:552587b429a1 972 /**
bogdanm 89:552587b429a1 973 * @brief Get flag status of the NAND device.
Kojto 99:dbbf35b96557 974 * @param __INSTANCE__: FMC_NAND Instance
bogdanm 89:552587b429a1 975 * @param __BANK__: FMC_NAND Bank
bogdanm 89:552587b429a1 976 * @param __FLAG__: FMC_NAND flag
bogdanm 89:552587b429a1 977 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 978 * @arg FMC_FLAG_RISING_EDGE: Interrupt rising edge flag.
bogdanm 89:552587b429a1 979 * @arg FMC_FLAG_LEVEL: Interrupt level edge flag.
bogdanm 89:552587b429a1 980 * @arg FMC_FLAG_FALLING_EDGE: Interrupt falling edge flag.
bogdanm 89:552587b429a1 981 * @arg FMC_FLAG_FEMPT: FIFO empty flag.
bogdanm 89:552587b429a1 982 * @retval The state of FLAG (SET or RESET).
bogdanm 89:552587b429a1 983 */
bogdanm 89:552587b429a1 984 #define __FMC_NAND_GET_FLAG(__INSTANCE__, __BANK__, __FLAG__) (((__BANK__) == FMC_NAND_BANK2)? (((__INSTANCE__)->SR2 &(__FLAG__)) == (__FLAG__)): \
bogdanm 89:552587b429a1 985 (((__INSTANCE__)->SR3 &(__FLAG__)) == (__FLAG__)))
bogdanm 89:552587b429a1 986 /**
bogdanm 89:552587b429a1 987 * @brief Clear flag status of the NAND device.
Kojto 99:dbbf35b96557 988 * @param __INSTANCE__: FMC_NAND Instance
bogdanm 89:552587b429a1 989 * @param __BANK__: FMC_NAND Bank
bogdanm 89:552587b429a1 990 * @param __FLAG__: FMC_NAND flag
bogdanm 89:552587b429a1 991 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 992 * @arg FMC_FLAG_RISING_EDGE: Interrupt rising edge flag.
bogdanm 89:552587b429a1 993 * @arg FMC_FLAG_LEVEL: Interrupt level edge flag.
bogdanm 89:552587b429a1 994 * @arg FMC_FLAG_FALLING_EDGE: Interrupt falling edge flag.
bogdanm 89:552587b429a1 995 * @arg FMC_FLAG_FEMPT: FIFO empty flag.
bogdanm 89:552587b429a1 996 * @retval None
bogdanm 89:552587b429a1 997 */
bogdanm 89:552587b429a1 998 #define __FMC_NAND_CLEAR_FLAG(__INSTANCE__, __BANK__, __FLAG__) (((__BANK__) == FMC_NAND_BANK2)? ((__INSTANCE__)->SR2 &= ~(__FLAG__)): \
Kojto 99:dbbf35b96557 999 ((__INSTANCE__)->SR3 &= ~(__FLAG__)))
Kojto 110:165afa46840b 1000 #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) */
Kojto 99:dbbf35b96557 1001
Kojto 99:dbbf35b96557 1002 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
bogdanm 89:552587b429a1 1003 /**
bogdanm 89:552587b429a1 1004 * @brief Enable the PCCARD device interrupt.
bogdanm 89:552587b429a1 1005 * @param __INSTANCE__: FMC_PCCARD instance
bogdanm 89:552587b429a1 1006 * @param __INTERRUPT__: FMC_PCCARD interrupt
bogdanm 89:552587b429a1 1007 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1008 * @arg FMC_IT_RISING_EDGE: Interrupt rising edge.
bogdanm 89:552587b429a1 1009 * @arg FMC_IT_LEVEL: Interrupt level.
bogdanm 89:552587b429a1 1010 * @arg FMC_IT_FALLING_EDGE: Interrupt falling edge.
bogdanm 89:552587b429a1 1011 * @retval None
bogdanm 89:552587b429a1 1012 */
bogdanm 89:552587b429a1 1013 #define __FMC_PCCARD_ENABLE_IT(__INSTANCE__, __INTERRUPT__) ((__INSTANCE__)->SR4 |= (__INTERRUPT__))
bogdanm 89:552587b429a1 1014
bogdanm 89:552587b429a1 1015 /**
bogdanm 89:552587b429a1 1016 * @brief Disable the PCCARD device interrupt.
bogdanm 89:552587b429a1 1017 * @param __INSTANCE__: FMC_PCCARD instance
bogdanm 89:552587b429a1 1018 * @param __INTERRUPT__: FMC_PCCARD interrupt
bogdanm 89:552587b429a1 1019 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1020 * @arg FMC_IT_RISING_EDGE: Interrupt rising edge.
bogdanm 89:552587b429a1 1021 * @arg FMC_IT_LEVEL: Interrupt level.
bogdanm 89:552587b429a1 1022 * @arg FMC_IT_FALLING_EDGE: Interrupt falling edge.
bogdanm 89:552587b429a1 1023 * @retval None
bogdanm 89:552587b429a1 1024 */
bogdanm 89:552587b429a1 1025 #define __FMC_PCCARD_DISABLE_IT(__INSTANCE__, __INTERRUPT__) ((__INSTANCE__)->SR4 &= ~(__INTERRUPT__))
bogdanm 89:552587b429a1 1026
bogdanm 89:552587b429a1 1027 /**
bogdanm 89:552587b429a1 1028 * @brief Get flag status of the PCCARD device.
bogdanm 89:552587b429a1 1029 * @param __INSTANCE__: FMC_PCCARD instance
bogdanm 89:552587b429a1 1030 * @param __FLAG__: FMC_PCCARD flag
bogdanm 89:552587b429a1 1031 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1032 * @arg FMC_FLAG_RISING_EDGE: Interrupt rising edge flag.
bogdanm 89:552587b429a1 1033 * @arg FMC_FLAG_LEVEL: Interrupt level edge flag.
bogdanm 89:552587b429a1 1034 * @arg FMC_FLAG_FALLING_EDGE: Interrupt falling edge flag.
bogdanm 89:552587b429a1 1035 * @arg FMC_FLAG_FEMPT: FIFO empty flag.
bogdanm 89:552587b429a1 1036 * @retval The state of FLAG (SET or RESET).
bogdanm 89:552587b429a1 1037 */
bogdanm 89:552587b429a1 1038 #define __FMC_PCCARD_GET_FLAG(__INSTANCE__, __FLAG__) (((__INSTANCE__)->SR4 &(__FLAG__)) == (__FLAG__))
bogdanm 89:552587b429a1 1039
bogdanm 89:552587b429a1 1040 /**
bogdanm 89:552587b429a1 1041 * @brief Clear flag status of the PCCARD device.
bogdanm 89:552587b429a1 1042 * @param __INSTANCE__: FMC_PCCARD instance
bogdanm 89:552587b429a1 1043 * @param __FLAG__: FMC_PCCARD flag
bogdanm 89:552587b429a1 1044 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1045 * @arg FMC_FLAG_RISING_EDGE: Interrupt rising edge flag.
bogdanm 89:552587b429a1 1046 * @arg FMC_FLAG_LEVEL: Interrupt level edge flag.
bogdanm 89:552587b429a1 1047 * @arg FMC_FLAG_FALLING_EDGE: Interrupt falling edge flag.
bogdanm 89:552587b429a1 1048 * @arg FMC_FLAG_FEMPT: FIFO empty flag.
bogdanm 89:552587b429a1 1049 * @retval None
bogdanm 89:552587b429a1 1050 */
bogdanm 89:552587b429a1 1051 #define __FMC_PCCARD_CLEAR_FLAG(__INSTANCE__, __FLAG__) ((__INSTANCE__)->SR4 &= ~(__FLAG__))
Kojto 99:dbbf35b96557 1052 #endif /* defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) */
Kojto 99:dbbf35b96557 1053
bogdanm 89:552587b429a1 1054 /**
bogdanm 89:552587b429a1 1055 * @brief Enable the SDRAM device interrupt.
bogdanm 89:552587b429a1 1056 * @param __INSTANCE__: FMC_SDRAM instance
bogdanm 89:552587b429a1 1057 * @param __INTERRUPT__: FMC_SDRAM interrupt
bogdanm 89:552587b429a1 1058 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1059 * @arg FMC_IT_REFRESH_ERROR: Interrupt refresh error
bogdanm 89:552587b429a1 1060 * @retval None
bogdanm 89:552587b429a1 1061 */
bogdanm 89:552587b429a1 1062 #define __FMC_SDRAM_ENABLE_IT(__INSTANCE__, __INTERRUPT__) ((__INSTANCE__)->SDRTR |= (__INTERRUPT__))
bogdanm 89:552587b429a1 1063
bogdanm 89:552587b429a1 1064 /**
bogdanm 89:552587b429a1 1065 * @brief Disable the SDRAM device interrupt.
bogdanm 89:552587b429a1 1066 * @param __INSTANCE__: FMC_SDRAM instance
bogdanm 89:552587b429a1 1067 * @param __INTERRUPT__: FMC_SDRAM interrupt
bogdanm 89:552587b429a1 1068 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1069 * @arg FMC_IT_REFRESH_ERROR: Interrupt refresh error
bogdanm 89:552587b429a1 1070 * @retval None
bogdanm 89:552587b429a1 1071 */
bogdanm 89:552587b429a1 1072 #define __FMC_SDRAM_DISABLE_IT(__INSTANCE__, __INTERRUPT__) ((__INSTANCE__)->SDRTR &= ~(__INTERRUPT__))
bogdanm 89:552587b429a1 1073
bogdanm 89:552587b429a1 1074 /**
bogdanm 89:552587b429a1 1075 * @brief Get flag status of the SDRAM device.
bogdanm 89:552587b429a1 1076 * @param __INSTANCE__: FMC_SDRAM instance
bogdanm 89:552587b429a1 1077 * @param __FLAG__: FMC_SDRAM flag
bogdanm 89:552587b429a1 1078 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1079 * @arg FMC_SDRAM_FLAG_REFRESH_IT: Interrupt refresh error.
bogdanm 89:552587b429a1 1080 * @arg FMC_SDRAM_FLAG_BUSY: SDRAM busy flag.
bogdanm 89:552587b429a1 1081 * @arg FMC_SDRAM_FLAG_REFRESH_ERROR: Refresh error flag.
bogdanm 89:552587b429a1 1082 * @retval The state of FLAG (SET or RESET).
bogdanm 89:552587b429a1 1083 */
bogdanm 89:552587b429a1 1084 #define __FMC_SDRAM_GET_FLAG(__INSTANCE__, __FLAG__) (((__INSTANCE__)->SDSR &(__FLAG__)) == (__FLAG__))
bogdanm 89:552587b429a1 1085
bogdanm 89:552587b429a1 1086 /**
bogdanm 89:552587b429a1 1087 * @brief Clear flag status of the SDRAM device.
bogdanm 89:552587b429a1 1088 * @param __INSTANCE__: FMC_SDRAM instance
bogdanm 89:552587b429a1 1089 * @param __FLAG__: FMC_SDRAM flag
bogdanm 89:552587b429a1 1090 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 1091 * @arg FMC_SDRAM_FLAG_REFRESH_ERROR
bogdanm 89:552587b429a1 1092 * @retval None
bogdanm 89:552587b429a1 1093 */
bogdanm 89:552587b429a1 1094 #define __FMC_SDRAM_CLEAR_FLAG(__INSTANCE__, __FLAG__) ((__INSTANCE__)->SDRTR |= (__FLAG__))
bogdanm 89:552587b429a1 1095 /**
bogdanm 89:552587b429a1 1096 * @}
Kojto 99:dbbf35b96557 1097 */
Kojto 99:dbbf35b96557 1098
Kojto 99:dbbf35b96557 1099 /** @defgroup FSMC_LL_Assert_Macros FSMC Assert Macros
Kojto 99:dbbf35b96557 1100 * @{
Kojto 99:dbbf35b96557 1101 */
Kojto 99:dbbf35b96557 1102 #define IS_FMC_NORSRAM_BANK(BANK) (((BANK) == FMC_NORSRAM_BANK1) || \
Kojto 99:dbbf35b96557 1103 ((BANK) == FMC_NORSRAM_BANK2) || \
Kojto 99:dbbf35b96557 1104 ((BANK) == FMC_NORSRAM_BANK3) || \
Kojto 99:dbbf35b96557 1105 ((BANK) == FMC_NORSRAM_BANK4))
Kojto 99:dbbf35b96557 1106
Kojto 99:dbbf35b96557 1107 #define IS_FMC_MUX(__MUX__) (((__MUX__) == FMC_DATA_ADDRESS_MUX_DISABLE) || \
Kojto 99:dbbf35b96557 1108 ((__MUX__) == FMC_DATA_ADDRESS_MUX_ENABLE))
Kojto 99:dbbf35b96557 1109
Kojto 99:dbbf35b96557 1110 #define IS_FMC_MEMORY(__MEMORY__) (((__MEMORY__) == FMC_MEMORY_TYPE_SRAM) || \
Kojto 99:dbbf35b96557 1111 ((__MEMORY__) == FMC_MEMORY_TYPE_PSRAM)|| \
Kojto 99:dbbf35b96557 1112 ((__MEMORY__) == FMC_MEMORY_TYPE_NOR))
Kojto 99:dbbf35b96557 1113
Kojto 99:dbbf35b96557 1114 #define IS_FMC_NORSRAM_MEMORY_WIDTH(__WIDTH__) (((__WIDTH__) == FMC_NORSRAM_MEM_BUS_WIDTH_8) || \
Kojto 99:dbbf35b96557 1115 ((__WIDTH__) == FMC_NORSRAM_MEM_BUS_WIDTH_16) || \
Kojto 99:dbbf35b96557 1116 ((__WIDTH__) == FMC_NORSRAM_MEM_BUS_WIDTH_32))
Kojto 99:dbbf35b96557 1117
Kojto 99:dbbf35b96557 1118 #define IS_FMC_ACCESS_MODE(__MODE__) (((__MODE__) == FMC_ACCESS_MODE_A) || \
Kojto 99:dbbf35b96557 1119 ((__MODE__) == FMC_ACCESS_MODE_B) || \
Kojto 99:dbbf35b96557 1120 ((__MODE__) == FMC_ACCESS_MODE_C) || \
Kojto 99:dbbf35b96557 1121 ((__MODE__) == FMC_ACCESS_MODE_D))
Kojto 99:dbbf35b96557 1122
Kojto 99:dbbf35b96557 1123 #define IS_FMC_NAND_BANK(BANK) (((BANK) == FMC_NAND_BANK2) || \
Kojto 99:dbbf35b96557 1124 ((BANK) == FMC_NAND_BANK3))
Kojto 99:dbbf35b96557 1125
Kojto 99:dbbf35b96557 1126 #define IS_FMC_WAIT_FEATURE(FEATURE) (((FEATURE) == FMC_NAND_PCC_WAIT_FEATURE_DISABLE) || \
Kojto 99:dbbf35b96557 1127 ((FEATURE) == FMC_NAND_PCC_WAIT_FEATURE_ENABLE))
Kojto 99:dbbf35b96557 1128
Kojto 99:dbbf35b96557 1129 #define IS_FMC_NAND_MEMORY_WIDTH(WIDTH) (((WIDTH) == FMC_NAND_PCC_MEM_BUS_WIDTH_8) || \
Kojto 99:dbbf35b96557 1130 ((WIDTH) == FMC_NAND_PCC_MEM_BUS_WIDTH_16))
Kojto 99:dbbf35b96557 1131
Kojto 99:dbbf35b96557 1132 #define IS_FMC_ECC_STATE(STATE) (((STATE) == FMC_NAND_ECC_DISABLE) || \
Kojto 99:dbbf35b96557 1133 ((STATE) == FMC_NAND_ECC_ENABLE))
Kojto 99:dbbf35b96557 1134
Kojto 99:dbbf35b96557 1135 #define IS_FMC_ECCPAGE_SIZE(SIZE) (((SIZE) == FMC_NAND_ECC_PAGE_SIZE_256BYTE) || \
Kojto 99:dbbf35b96557 1136 ((SIZE) == FMC_NAND_ECC_PAGE_SIZE_512BYTE) || \
Kojto 99:dbbf35b96557 1137 ((SIZE) == FMC_NAND_ECC_PAGE_SIZE_1024BYTE) || \
Kojto 99:dbbf35b96557 1138 ((SIZE) == FMC_NAND_ECC_PAGE_SIZE_2048BYTE) || \
Kojto 99:dbbf35b96557 1139 ((SIZE) == FMC_NAND_ECC_PAGE_SIZE_4096BYTE) || \
Kojto 99:dbbf35b96557 1140 ((SIZE) == FMC_NAND_ECC_PAGE_SIZE_8192BYTE))
Kojto 99:dbbf35b96557 1141
Kojto 99:dbbf35b96557 1142 #define IS_FMC_TCLR_TIME(TIME) ((TIME) <= 255)
Kojto 99:dbbf35b96557 1143
Kojto 99:dbbf35b96557 1144 #define IS_FMC_TAR_TIME(TIME) ((TIME) <= 255)
Kojto 99:dbbf35b96557 1145
Kojto 99:dbbf35b96557 1146 #define IS_FMC_SETUP_TIME(TIME) ((TIME) <= 255)
Kojto 99:dbbf35b96557 1147
Kojto 99:dbbf35b96557 1148 #define IS_FMC_WAIT_TIME(TIME) ((TIME) <= 255)
Kojto 99:dbbf35b96557 1149
Kojto 99:dbbf35b96557 1150 #define IS_FMC_HOLD_TIME(TIME) ((TIME) <= 255)
Kojto 99:dbbf35b96557 1151
Kojto 99:dbbf35b96557 1152 #define IS_FMC_HIZ_TIME(TIME) ((TIME) <= 255)
Kojto 99:dbbf35b96557 1153
Kojto 99:dbbf35b96557 1154 #define IS_FMC_NORSRAM_DEVICE(__INSTANCE__) ((__INSTANCE__) == FMC_NORSRAM_DEVICE)
Kojto 99:dbbf35b96557 1155
Kojto 99:dbbf35b96557 1156 #define IS_FMC_NORSRAM_EXTENDED_DEVICE(__INSTANCE__) ((__INSTANCE__) == FMC_NORSRAM_EXTENDED_DEVICE)
Kojto 99:dbbf35b96557 1157
Kojto 99:dbbf35b96557 1158 #define IS_FMC_NAND_DEVICE(__INSTANCE__) ((__INSTANCE__) == FMC_NAND_DEVICE)
Kojto 99:dbbf35b96557 1159
Kojto 99:dbbf35b96557 1160 #define IS_FMC_PCCARD_DEVICE(__INSTANCE__) ((__INSTANCE__) == FMC_PCCARD_DEVICE)
Kojto 99:dbbf35b96557 1161
Kojto 99:dbbf35b96557 1162 #define IS_FMC_BURSTMODE(__STATE__) (((__STATE__) == FMC_BURST_ACCESS_MODE_DISABLE) || \
Kojto 99:dbbf35b96557 1163 ((__STATE__) == FMC_BURST_ACCESS_MODE_ENABLE))
Kojto 99:dbbf35b96557 1164
Kojto 99:dbbf35b96557 1165 #define IS_FMC_WAIT_POLARITY(__POLARITY__) (((__POLARITY__) == FMC_WAIT_SIGNAL_POLARITY_LOW) || \
Kojto 99:dbbf35b96557 1166 ((__POLARITY__) == FMC_WAIT_SIGNAL_POLARITY_HIGH))
Kojto 99:dbbf35b96557 1167
Kojto 110:165afa46840b 1168 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
Kojto 99:dbbf35b96557 1169 #define IS_FMC_WRAP_MODE(__MODE__) (((__MODE__) == FMC_WRAP_MODE_DISABLE) || \
Kojto 110:165afa46840b 1170 ((__MODE__) == FMC_WRAP_MODE_ENABLE))
Kojto 110:165afa46840b 1171 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */
Kojto 99:dbbf35b96557 1172
Kojto 99:dbbf35b96557 1173 #define IS_FMC_WAIT_SIGNAL_ACTIVE(__ACTIVE__) (((__ACTIVE__) == FMC_WAIT_TIMING_BEFORE_WS) || \
Kojto 99:dbbf35b96557 1174 ((__ACTIVE__) == FMC_WAIT_TIMING_DURING_WS))
Kojto 99:dbbf35b96557 1175
Kojto 99:dbbf35b96557 1176 #define IS_FMC_WRITE_OPERATION(__OPERATION__) (((__OPERATION__) == FMC_WRITE_OPERATION_DISABLE) || \
Kojto 99:dbbf35b96557 1177 ((__OPERATION__) == FMC_WRITE_OPERATION_ENABLE))
Kojto 99:dbbf35b96557 1178
Kojto 99:dbbf35b96557 1179 #define IS_FMC_WAITE_SIGNAL(__SIGNAL__) (((__SIGNAL__) == FMC_WAIT_SIGNAL_DISABLE) || \
Kojto 99:dbbf35b96557 1180 ((__SIGNAL__) == FMC_WAIT_SIGNAL_ENABLE))
Kojto 99:dbbf35b96557 1181
Kojto 99:dbbf35b96557 1182 #define IS_FMC_EXTENDED_MODE(__MODE__) (((__MODE__) == FMC_EXTENDED_MODE_DISABLE) || \
Kojto 99:dbbf35b96557 1183 ((__MODE__) == FMC_EXTENDED_MODE_ENABLE))
Kojto 99:dbbf35b96557 1184
Kojto 99:dbbf35b96557 1185 #define IS_FMC_ASYNWAIT(__STATE__) (((__STATE__) == FMC_ASYNCHRONOUS_WAIT_DISABLE) || \
Kojto 99:dbbf35b96557 1186 ((__STATE__) == FMC_ASYNCHRONOUS_WAIT_ENABLE))
Kojto 99:dbbf35b96557 1187
Kojto 99:dbbf35b96557 1188 #define IS_FMC_WRITE_BURST(__BURST__) (((__BURST__) == FMC_WRITE_BURST_DISABLE) || \
Kojto 99:dbbf35b96557 1189 ((__BURST__) == FMC_WRITE_BURST_ENABLE))
Kojto 99:dbbf35b96557 1190
Kojto 99:dbbf35b96557 1191 #define IS_FMC_CONTINOUS_CLOCK(CCLOCK) (((CCLOCK) == FMC_CONTINUOUS_CLOCK_SYNC_ONLY) || \
Kojto 99:dbbf35b96557 1192 ((CCLOCK) == FMC_CONTINUOUS_CLOCK_SYNC_ASYNC))
Kojto 99:dbbf35b96557 1193
Kojto 99:dbbf35b96557 1194 #define IS_FMC_ADDRESS_SETUP_TIME(__TIME__) ((__TIME__) <= 15)
Kojto 99:dbbf35b96557 1195
Kojto 99:dbbf35b96557 1196 #define IS_FMC_ADDRESS_HOLD_TIME(__TIME__) (((__TIME__) > 0) && ((__TIME__) <= 15))
Kojto 99:dbbf35b96557 1197
Kojto 99:dbbf35b96557 1198 #define IS_FMC_DATASETUP_TIME(__TIME__) (((__TIME__) > 0) && ((__TIME__) <= 255))
Kojto 99:dbbf35b96557 1199
Kojto 99:dbbf35b96557 1200 #define IS_FMC_TURNAROUND_TIME(__TIME__) ((__TIME__) <= 15)
Kojto 99:dbbf35b96557 1201
Kojto 99:dbbf35b96557 1202 #define IS_FMC_DATA_LATENCY(__LATENCY__) (((__LATENCY__) > 1) && ((__LATENCY__) <= 17))
Kojto 99:dbbf35b96557 1203
Kojto 99:dbbf35b96557 1204 #define IS_FMC_CLK_DIV(DIV) (((DIV) > 1) && ((DIV) <= 16))
Kojto 99:dbbf35b96557 1205
Kojto 99:dbbf35b96557 1206 #define IS_FMC_SDRAM_BANK(BANK) (((BANK) == FMC_SDRAM_BANK1) || \
Kojto 99:dbbf35b96557 1207 ((BANK) == FMC_SDRAM_BANK2))
Kojto 99:dbbf35b96557 1208
Kojto 99:dbbf35b96557 1209 #define IS_FMC_COLUMNBITS_NUMBER(COLUMN) (((COLUMN) == FMC_SDRAM_COLUMN_BITS_NUM_8) || \
Kojto 99:dbbf35b96557 1210 ((COLUMN) == FMC_SDRAM_COLUMN_BITS_NUM_9) || \
Kojto 99:dbbf35b96557 1211 ((COLUMN) == FMC_SDRAM_COLUMN_BITS_NUM_10) || \
Kojto 99:dbbf35b96557 1212 ((COLUMN) == FMC_SDRAM_COLUMN_BITS_NUM_11))
Kojto 99:dbbf35b96557 1213
Kojto 99:dbbf35b96557 1214 #define IS_FMC_ROWBITS_NUMBER(ROW) (((ROW) == FMC_SDRAM_ROW_BITS_NUM_11) || \
Kojto 99:dbbf35b96557 1215 ((ROW) == FMC_SDRAM_ROW_BITS_NUM_12) || \
Kojto 99:dbbf35b96557 1216 ((ROW) == FMC_SDRAM_ROW_BITS_NUM_13))
Kojto 99:dbbf35b96557 1217
Kojto 99:dbbf35b96557 1218 #define IS_FMC_SDMEMORY_WIDTH(WIDTH) (((WIDTH) == FMC_SDRAM_MEM_BUS_WIDTH_8) || \
Kojto 99:dbbf35b96557 1219 ((WIDTH) == FMC_SDRAM_MEM_BUS_WIDTH_16) || \
Kojto 99:dbbf35b96557 1220 ((WIDTH) == FMC_SDRAM_MEM_BUS_WIDTH_32))
Kojto 99:dbbf35b96557 1221
Kojto 99:dbbf35b96557 1222 #define IS_FMC_INTERNALBANK_NUMBER(NUMBER) (((NUMBER) == FMC_SDRAM_INTERN_BANKS_NUM_2) || \
Kojto 99:dbbf35b96557 1223 ((NUMBER) == FMC_SDRAM_INTERN_BANKS_NUM_4))
Kojto 99:dbbf35b96557 1224
Kojto 99:dbbf35b96557 1225
Kojto 99:dbbf35b96557 1226 #define IS_FMC_CAS_LATENCY(LATENCY) (((LATENCY) == FMC_SDRAM_CAS_LATENCY_1) || \
Kojto 99:dbbf35b96557 1227 ((LATENCY) == FMC_SDRAM_CAS_LATENCY_2) || \
Kojto 99:dbbf35b96557 1228 ((LATENCY) == FMC_SDRAM_CAS_LATENCY_3))
Kojto 99:dbbf35b96557 1229
Kojto 99:dbbf35b96557 1230 #define IS_FMC_SDCLOCK_PERIOD(PERIOD) (((PERIOD) == FMC_SDRAM_CLOCK_DISABLE) || \
Kojto 99:dbbf35b96557 1231 ((PERIOD) == FMC_SDRAM_CLOCK_PERIOD_2) || \
Kojto 99:dbbf35b96557 1232 ((PERIOD) == FMC_SDRAM_CLOCK_PERIOD_3))
Kojto 99:dbbf35b96557 1233
Kojto 99:dbbf35b96557 1234 #define IS_FMC_READ_BURST(RBURST) (((RBURST) == FMC_SDRAM_RBURST_DISABLE) || \
Kojto 99:dbbf35b96557 1235 ((RBURST) == FMC_SDRAM_RBURST_ENABLE))
Kojto 99:dbbf35b96557 1236
Kojto 99:dbbf35b96557 1237
Kojto 99:dbbf35b96557 1238 #define IS_FMC_READPIPE_DELAY(DELAY) (((DELAY) == FMC_SDRAM_RPIPE_DELAY_0) || \
Kojto 99:dbbf35b96557 1239 ((DELAY) == FMC_SDRAM_RPIPE_DELAY_1) || \
Kojto 99:dbbf35b96557 1240 ((DELAY) == FMC_SDRAM_RPIPE_DELAY_2))
Kojto 99:dbbf35b96557 1241
Kojto 99:dbbf35b96557 1242 #define IS_FMC_LOADTOACTIVE_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16))
Kojto 99:dbbf35b96557 1243
Kojto 99:dbbf35b96557 1244 #define IS_FMC_EXITSELFREFRESH_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16))
Kojto 99:dbbf35b96557 1245
Kojto 99:dbbf35b96557 1246 #define IS_FMC_SELFREFRESH_TIME(TIME) (((TIME) > 0) && ((TIME) <= 16))
Kojto 99:dbbf35b96557 1247
Kojto 99:dbbf35b96557 1248 #define IS_FMC_ROWCYCLE_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16))
Kojto 99:dbbf35b96557 1249
Kojto 99:dbbf35b96557 1250 #define IS_FMC_WRITE_RECOVERY_TIME(TIME) (((TIME) > 0) && ((TIME) <= 16))
Kojto 99:dbbf35b96557 1251
Kojto 99:dbbf35b96557 1252 #define IS_FMC_RP_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16))
Kojto 99:dbbf35b96557 1253
Kojto 99:dbbf35b96557 1254 #define IS_FMC_RCD_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16))
Kojto 99:dbbf35b96557 1255
Kojto 99:dbbf35b96557 1256 #define IS_FMC_COMMAND_MODE(COMMAND) (((COMMAND) == FMC_SDRAM_CMD_NORMAL_MODE) || \
Kojto 99:dbbf35b96557 1257 ((COMMAND) == FMC_SDRAM_CMD_CLK_ENABLE) || \
Kojto 99:dbbf35b96557 1258 ((COMMAND) == FMC_SDRAM_CMD_PALL) || \
Kojto 99:dbbf35b96557 1259 ((COMMAND) == FMC_SDRAM_CMD_AUTOREFRESH_MODE) || \
Kojto 99:dbbf35b96557 1260 ((COMMAND) == FMC_SDRAM_CMD_LOAD_MODE) || \
Kojto 99:dbbf35b96557 1261 ((COMMAND) == FMC_SDRAM_CMD_SELFREFRESH_MODE) || \
Kojto 99:dbbf35b96557 1262 ((COMMAND) == FMC_SDRAM_CMD_POWERDOWN_MODE))
Kojto 99:dbbf35b96557 1263
Kojto 99:dbbf35b96557 1264 #define IS_FMC_COMMAND_TARGET(TARGET) (((TARGET) == FMC_SDRAM_CMD_TARGET_BANK1) || \
Kojto 99:dbbf35b96557 1265 ((TARGET) == FMC_SDRAM_CMD_TARGET_BANK2) || \
Kojto 99:dbbf35b96557 1266 ((TARGET) == FMC_SDRAM_CMD_TARGET_BANK1_2))
Kojto 99:dbbf35b96557 1267
Kojto 99:dbbf35b96557 1268 #define IS_FMC_AUTOREFRESH_NUMBER(NUMBER) (((NUMBER) > 0) && ((NUMBER) <= 16))
Kojto 99:dbbf35b96557 1269
Kojto 99:dbbf35b96557 1270 #define IS_FMC_MODE_REGISTER(CONTENT) ((CONTENT) <= 8191)
Kojto 99:dbbf35b96557 1271
Kojto 99:dbbf35b96557 1272 #define IS_FMC_REFRESH_RATE(RATE) ((RATE) <= 8191)
Kojto 99:dbbf35b96557 1273
Kojto 99:dbbf35b96557 1274 #define IS_FMC_SDRAM_DEVICE(INSTANCE) ((INSTANCE) == FMC_SDRAM_DEVICE)
Kojto 99:dbbf35b96557 1275
Kojto 99:dbbf35b96557 1276 #define IS_FMC_WRITE_PROTECTION(WRITE) (((WRITE) == FMC_SDRAM_WRITE_PROTECTION_DISABLE) || \
Kojto 99:dbbf35b96557 1277 ((WRITE) == FMC_SDRAM_WRITE_PROTECTION_ENABLE))
Kojto 99:dbbf35b96557 1278
Kojto 110:165afa46840b 1279 #if defined (STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
Kojto 99:dbbf35b96557 1280 #define IS_FMC_PAGESIZE(SIZE) (((SIZE) == FMC_PAGE_SIZE_NONE) || \
Kojto 99:dbbf35b96557 1281 ((SIZE) == FMC_PAGE_SIZE_128) || \
Kojto 99:dbbf35b96557 1282 ((SIZE) == FMC_PAGE_SIZE_256) || \
Kojto 99:dbbf35b96557 1283 ((SIZE) == FMC_PAGE_SIZE_1024))
Kojto 99:dbbf35b96557 1284
Kojto 99:dbbf35b96557 1285 #define IS_FMC_WRITE_FIFO(FIFO) (((FIFO) == FMC_WRITE_FIFO_DISABLE) || \
Kojto 99:dbbf35b96557 1286 ((FIFO) == FMC_WRITE_FIFO_ENABLE))
Kojto 110:165afa46840b 1287 #endif /* STM32F446xx || STM32F469xx || STM32F479xx */
Kojto 99:dbbf35b96557 1288
Kojto 99:dbbf35b96557 1289 /**
Kojto 99:dbbf35b96557 1290 * @}
Kojto 99:dbbf35b96557 1291 */
Kojto 99:dbbf35b96557 1292
Kojto 99:dbbf35b96557 1293 /**
Kojto 99:dbbf35b96557 1294 * @}
bogdanm 89:552587b429a1 1295 */
bogdanm 89:552587b429a1 1296
Kojto 99:dbbf35b96557 1297 /* Private functions ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 1298 /** @defgroup FMC_LL_Private_Functions FMC LL Private Functions
Kojto 99:dbbf35b96557 1299 * @{
Kojto 99:dbbf35b96557 1300 */
bogdanm 89:552587b429a1 1301
Kojto 99:dbbf35b96557 1302 /** @defgroup FMC_LL_NORSRAM NOR SRAM
Kojto 99:dbbf35b96557 1303 * @{
Kojto 99:dbbf35b96557 1304 */
Kojto 99:dbbf35b96557 1305 /** @defgroup FMC_LL_NORSRAM_Private_Functions_Group1 NOR SRAM Initialization/de-initialization functions
Kojto 99:dbbf35b96557 1306 * @{
Kojto 99:dbbf35b96557 1307 */
bogdanm 89:552587b429a1 1308 HAL_StatusTypeDef FMC_NORSRAM_Init(FMC_NORSRAM_TypeDef *Device, FMC_NORSRAM_InitTypeDef *Init);
bogdanm 89:552587b429a1 1309 HAL_StatusTypeDef FMC_NORSRAM_Timing_Init(FMC_NORSRAM_TypeDef *Device, FMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank);
bogdanm 89:552587b429a1 1310 HAL_StatusTypeDef FMC_NORSRAM_Extended_Timing_Init(FMC_NORSRAM_EXTENDED_TypeDef *Device, FMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank, uint32_t ExtendedMode);
bogdanm 89:552587b429a1 1311 HAL_StatusTypeDef FMC_NORSRAM_DeInit(FMC_NORSRAM_TypeDef *Device, FMC_NORSRAM_EXTENDED_TypeDef *ExDevice, uint32_t Bank);
Kojto 99:dbbf35b96557 1312 /**
Kojto 99:dbbf35b96557 1313 * @}
Kojto 99:dbbf35b96557 1314 */
bogdanm 89:552587b429a1 1315
Kojto 99:dbbf35b96557 1316 /** @defgroup FMC_LL_NORSRAM_Private_Functions_Group2 NOR SRAM Control functions
Kojto 99:dbbf35b96557 1317 * @{
Kojto 99:dbbf35b96557 1318 */
bogdanm 89:552587b429a1 1319 HAL_StatusTypeDef FMC_NORSRAM_WriteOperation_Enable(FMC_NORSRAM_TypeDef *Device, uint32_t Bank);
bogdanm 89:552587b429a1 1320 HAL_StatusTypeDef FMC_NORSRAM_WriteOperation_Disable(FMC_NORSRAM_TypeDef *Device, uint32_t Bank);
Kojto 99:dbbf35b96557 1321 /**
Kojto 99:dbbf35b96557 1322 * @}
Kojto 99:dbbf35b96557 1323 */
Kojto 99:dbbf35b96557 1324 /**
Kojto 99:dbbf35b96557 1325 * @}
Kojto 99:dbbf35b96557 1326 */
bogdanm 89:552587b429a1 1327
Kojto 99:dbbf35b96557 1328 /** @defgroup FMC_LL_NAND NAND
Kojto 99:dbbf35b96557 1329 * @{
Kojto 99:dbbf35b96557 1330 */
Kojto 99:dbbf35b96557 1331 /** @defgroup FMC_LL_NAND_Private_Functions_Group1 NAND Initialization/de-initialization functions
Kojto 99:dbbf35b96557 1332 * @{
Kojto 99:dbbf35b96557 1333 */
bogdanm 89:552587b429a1 1334 HAL_StatusTypeDef FMC_NAND_Init(FMC_NAND_TypeDef *Device, FMC_NAND_InitTypeDef *Init);
bogdanm 89:552587b429a1 1335 HAL_StatusTypeDef FMC_NAND_CommonSpace_Timing_Init(FMC_NAND_TypeDef *Device, FMC_NAND_PCC_TimingTypeDef *Timing, uint32_t Bank);
bogdanm 89:552587b429a1 1336 HAL_StatusTypeDef FMC_NAND_AttributeSpace_Timing_Init(FMC_NAND_TypeDef *Device, FMC_NAND_PCC_TimingTypeDef *Timing, uint32_t Bank);
bogdanm 89:552587b429a1 1337 HAL_StatusTypeDef FMC_NAND_DeInit(FMC_NAND_TypeDef *Device, uint32_t Bank);
Kojto 99:dbbf35b96557 1338 /**
Kojto 99:dbbf35b96557 1339 * @}
Kojto 99:dbbf35b96557 1340 */
bogdanm 89:552587b429a1 1341
Kojto 99:dbbf35b96557 1342 /** @defgroup FMC_LL_NAND_Private_Functions_Group2 NAND Control functions
Kojto 99:dbbf35b96557 1343 * @{
Kojto 99:dbbf35b96557 1344 */
bogdanm 89:552587b429a1 1345 HAL_StatusTypeDef FMC_NAND_ECC_Enable(FMC_NAND_TypeDef *Device, uint32_t Bank);
bogdanm 89:552587b429a1 1346 HAL_StatusTypeDef FMC_NAND_ECC_Disable(FMC_NAND_TypeDef *Device, uint32_t Bank);
bogdanm 89:552587b429a1 1347 HAL_StatusTypeDef FMC_NAND_GetECC(FMC_NAND_TypeDef *Device, uint32_t *ECCval, uint32_t Bank, uint32_t Timeout);
bogdanm 89:552587b429a1 1348
Kojto 99:dbbf35b96557 1349 /**
Kojto 99:dbbf35b96557 1350 * @}
Kojto 99:dbbf35b96557 1351 */
Kojto 99:dbbf35b96557 1352 /**
Kojto 99:dbbf35b96557 1353 * @}
Kojto 99:dbbf35b96557 1354 */
Kojto 99:dbbf35b96557 1355 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
Kojto 99:dbbf35b96557 1356 /** @defgroup FMC_LL_PCCARD PCCARD
Kojto 99:dbbf35b96557 1357 * @{
Kojto 99:dbbf35b96557 1358 */
Kojto 99:dbbf35b96557 1359 /** @defgroup FMC_LL_PCCARD_Private_Functions_Group1 PCCARD Initialization/de-initialization functions
Kojto 99:dbbf35b96557 1360 * @{
Kojto 99:dbbf35b96557 1361 */
bogdanm 89:552587b429a1 1362 HAL_StatusTypeDef FMC_PCCARD_Init(FMC_PCCARD_TypeDef *Device, FMC_PCCARD_InitTypeDef *Init);
bogdanm 89:552587b429a1 1363 HAL_StatusTypeDef FMC_PCCARD_CommonSpace_Timing_Init(FMC_PCCARD_TypeDef *Device, FMC_NAND_PCC_TimingTypeDef *Timing);
bogdanm 89:552587b429a1 1364 HAL_StatusTypeDef FMC_PCCARD_AttributeSpace_Timing_Init(FMC_PCCARD_TypeDef *Device, FMC_NAND_PCC_TimingTypeDef *Timing);
bogdanm 89:552587b429a1 1365 HAL_StatusTypeDef FMC_PCCARD_IOSpace_Timing_Init(FMC_PCCARD_TypeDef *Device, FMC_NAND_PCC_TimingTypeDef *Timing);
bogdanm 89:552587b429a1 1366 HAL_StatusTypeDef FMC_PCCARD_DeInit(FMC_PCCARD_TypeDef *Device);
Kojto 99:dbbf35b96557 1367 /**
Kojto 99:dbbf35b96557 1368 * @}
Kojto 99:dbbf35b96557 1369 */
Kojto 99:dbbf35b96557 1370 /**
Kojto 99:dbbf35b96557 1371 * @}
Kojto 99:dbbf35b96557 1372 */
Kojto 99:dbbf35b96557 1373 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */
bogdanm 89:552587b429a1 1374
Kojto 99:dbbf35b96557 1375 /** @defgroup FMC_LL_SDRAM SDRAM
Kojto 99:dbbf35b96557 1376 * @{
Kojto 99:dbbf35b96557 1377 */
Kojto 99:dbbf35b96557 1378 /** @defgroup FMC_LL_SDRAM_Private_Functions_Group1 SDRAM Initialization/de-initialization functions
Kojto 99:dbbf35b96557 1379 * @{
Kojto 99:dbbf35b96557 1380 */
bogdanm 89:552587b429a1 1381 HAL_StatusTypeDef FMC_SDRAM_Init(FMC_SDRAM_TypeDef *Device, FMC_SDRAM_InitTypeDef *Init);
bogdanm 89:552587b429a1 1382 HAL_StatusTypeDef FMC_SDRAM_Timing_Init(FMC_SDRAM_TypeDef *Device, FMC_SDRAM_TimingTypeDef *Timing, uint32_t Bank);
bogdanm 89:552587b429a1 1383 HAL_StatusTypeDef FMC_SDRAM_DeInit(FMC_SDRAM_TypeDef *Device, uint32_t Bank);
Kojto 99:dbbf35b96557 1384 /**
Kojto 99:dbbf35b96557 1385 * @}
Kojto 99:dbbf35b96557 1386 */
bogdanm 89:552587b429a1 1387
Kojto 99:dbbf35b96557 1388 /** @defgroup FMC_LL_SDRAM_Private_Functions_Group2 SDRAM Control functions
Kojto 99:dbbf35b96557 1389 * @{
Kojto 99:dbbf35b96557 1390 */
bogdanm 89:552587b429a1 1391 HAL_StatusTypeDef FMC_SDRAM_WriteProtection_Enable(FMC_SDRAM_TypeDef *Device, uint32_t Bank);
bogdanm 89:552587b429a1 1392 HAL_StatusTypeDef FMC_SDRAM_WriteProtection_Disable(FMC_SDRAM_TypeDef *Device, uint32_t Bank);
bogdanm 89:552587b429a1 1393 HAL_StatusTypeDef FMC_SDRAM_SendCommand(FMC_SDRAM_TypeDef *Device, FMC_SDRAM_CommandTypeDef *Command, uint32_t Timeout);
bogdanm 89:552587b429a1 1394 HAL_StatusTypeDef FMC_SDRAM_ProgramRefreshRate(FMC_SDRAM_TypeDef *Device, uint32_t RefreshRate);
bogdanm 89:552587b429a1 1395 HAL_StatusTypeDef FMC_SDRAM_SetAutoRefreshNumber(FMC_SDRAM_TypeDef *Device, uint32_t AutoRefreshNumber);
bogdanm 89:552587b429a1 1396 uint32_t FMC_SDRAM_GetModeStatus(FMC_SDRAM_TypeDef *Device, uint32_t Bank);
bogdanm 89:552587b429a1 1397 /**
bogdanm 89:552587b429a1 1398 * @}
Kojto 99:dbbf35b96557 1399 */
Kojto 99:dbbf35b96557 1400 /**
Kojto 99:dbbf35b96557 1401 * @}
Kojto 99:dbbf35b96557 1402 */
bogdanm 89:552587b429a1 1403
bogdanm 89:552587b429a1 1404 /**
bogdanm 89:552587b429a1 1405 * @}
bogdanm 89:552587b429a1 1406 */
Kojto 99:dbbf35b96557 1407
Kojto 110:165afa46840b 1408 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F446xx || STM32F469xx || STM32F479xx */
Kojto 99:dbbf35b96557 1409 /**
Kojto 99:dbbf35b96557 1410 * @}
Kojto 99:dbbf35b96557 1411 */
Kojto 99:dbbf35b96557 1412
Kojto 99:dbbf35b96557 1413 /**
Kojto 99:dbbf35b96557 1414 * @}
Kojto 99:dbbf35b96557 1415 */
bogdanm 89:552587b429a1 1416 #ifdef __cplusplus
bogdanm 89:552587b429a1 1417 }
bogdanm 89:552587b429a1 1418 #endif
bogdanm 89:552587b429a1 1419
bogdanm 89:552587b429a1 1420 #endif /* __STM32F4xx_LL_FMC_H */
bogdanm 89:552587b429a1 1421
bogdanm 89:552587b429a1 1422 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/