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
Kojto 110:165afa46840b 1 /**
Kojto 110:165afa46840b 2 ******************************************************************************
Kojto 110:165afa46840b 3 * @file stm32f4xx_hal_pccard.h
Kojto 110:165afa46840b 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
Kojto 110:165afa46840b 7 * @brief Header file of PCCARD HAL module.
Kojto 110:165afa46840b 8 ******************************************************************************
Kojto 110:165afa46840b 9 * @attention
Kojto 110:165afa46840b 10 *
Kojto 110:165afa46840b 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 110:165afa46840b 12 *
Kojto 110:165afa46840b 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 110:165afa46840b 14 * are permitted provided that the following conditions are met:
Kojto 110:165afa46840b 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 110:165afa46840b 16 * this list of conditions and the following disclaimer.
Kojto 110:165afa46840b 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 110:165afa46840b 18 * this list of conditions and the following disclaimer in the documentation
Kojto 110:165afa46840b 19 * and/or other materials provided with the distribution.
Kojto 110:165afa46840b 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 110:165afa46840b 21 * may be used to endorse or promote products derived from this software
Kojto 110:165afa46840b 22 * without specific prior written permission.
Kojto 110:165afa46840b 23 *
Kojto 110:165afa46840b 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 110:165afa46840b 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 110:165afa46840b 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 110:165afa46840b 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 110:165afa46840b 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 110:165afa46840b 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 110:165afa46840b 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 110:165afa46840b 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 110:165afa46840b 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 110:165afa46840b 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 110:165afa46840b 34 *
Kojto 110:165afa46840b 35 ******************************************************************************
Kojto 110:165afa46840b 36 */
Kojto 110:165afa46840b 37
Kojto 110:165afa46840b 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 110:165afa46840b 39 #ifndef __STM32F4xx_HAL_PCCARD_H
Kojto 110:165afa46840b 40 #define __STM32F4xx_HAL_PCCARD_H
Kojto 110:165afa46840b 41
Kojto 110:165afa46840b 42 #ifdef __cplusplus
Kojto 110:165afa46840b 43 extern "C" {
Kojto 110:165afa46840b 44 #endif
Kojto 110:165afa46840b 45
Kojto 110:165afa46840b 46 /* Includes ------------------------------------------------------------------*/
Kojto 110:165afa46840b 47 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx)
Kojto 110:165afa46840b 48 #include "stm32f4xx_ll_fsmc.h"
Kojto 110:165afa46840b 49 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx */
Kojto 110:165afa46840b 50
Kojto 110:165afa46840b 51 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
Kojto 110:165afa46840b 52 #include "stm32f4xx_ll_fmc.h"
Kojto 110:165afa46840b 53 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */
Kojto 110:165afa46840b 54
Kojto 110:165afa46840b 55 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 110:165afa46840b 56 * @{
Kojto 110:165afa46840b 57 */
Kojto 110:165afa46840b 58
Kojto 110:165afa46840b 59 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) ||\
Kojto 110:165afa46840b 60 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
Kojto 110:165afa46840b 61
Kojto 110:165afa46840b 62 /** @addtogroup PCCARD
Kojto 110:165afa46840b 63 * @{
Kojto 110:165afa46840b 64 */
Kojto 110:165afa46840b 65
Kojto 110:165afa46840b 66 /* Exported typedef ----------------------------------------------------------*/
Kojto 110:165afa46840b 67 /** @defgroup PCCARD_Exported_Types PCCARD Exported Types
Kojto 110:165afa46840b 68 * @{
Kojto 110:165afa46840b 69 */
Kojto 110:165afa46840b 70
Kojto 110:165afa46840b 71 /**
Kojto 110:165afa46840b 72 * @brief HAL PCCARD State structures definition
Kojto 110:165afa46840b 73 */
Kojto 110:165afa46840b 74 typedef enum
Kojto 110:165afa46840b 75 {
Kojto 110:165afa46840b 76 HAL_PCCARD_STATE_RESET = 0x00, /*!< PCCARD peripheral not yet initialized or disabled */
Kojto 110:165afa46840b 77 HAL_PCCARD_STATE_READY = 0x01, /*!< PCCARD peripheral ready */
Kojto 110:165afa46840b 78 HAL_PCCARD_STATE_BUSY = 0x02, /*!< PCCARD peripheral busy */
Kojto 110:165afa46840b 79 HAL_PCCARD_STATE_ERROR = 0x04 /*!< PCCARD peripheral error */
Kojto 110:165afa46840b 80 }HAL_PCCARD_StateTypeDef;
Kojto 110:165afa46840b 81
Kojto 110:165afa46840b 82 typedef enum
Kojto 110:165afa46840b 83 {
Kojto 110:165afa46840b 84 HAL_PCCARD_STATUS_SUCCESS = 0,
Kojto 110:165afa46840b 85 HAL_PCCARD_STATUS_ONGOING,
Kojto 110:165afa46840b 86 HAL_PCCARD_STATUS_ERROR,
Kojto 110:165afa46840b 87 HAL_PCCARD_STATUS_TIMEOUT
Kojto 110:165afa46840b 88 }HAL_PCCARD_StatusTypeDef;
Kojto 110:165afa46840b 89
Kojto 110:165afa46840b 90 /**
Kojto 110:165afa46840b 91 * @brief FMC_PCCARD handle Structure definition
Kojto 110:165afa46840b 92 */
Kojto 110:165afa46840b 93 typedef struct
Kojto 110:165afa46840b 94 {
Kojto 110:165afa46840b 95 FMC_PCCARD_TypeDef *Instance; /*!< Register base address for PCCARD device */
Kojto 110:165afa46840b 96
Kojto 110:165afa46840b 97 FMC_PCCARD_InitTypeDef Init; /*!< PCCARD device control configuration parameters */
Kojto 110:165afa46840b 98
Kojto 110:165afa46840b 99 __IO HAL_PCCARD_StateTypeDef State; /*!< PCCARD device access state */
Kojto 110:165afa46840b 100
Kojto 110:165afa46840b 101 HAL_LockTypeDef Lock; /*!< PCCARD Lock */
Kojto 110:165afa46840b 102
Kojto 110:165afa46840b 103 }PCCARD_HandleTypeDef;
Kojto 110:165afa46840b 104 /**
Kojto 110:165afa46840b 105 * @}
Kojto 110:165afa46840b 106 */
Kojto 110:165afa46840b 107
Kojto 110:165afa46840b 108 /* Exported constants --------------------------------------------------------*/
Kojto 110:165afa46840b 109 /* Exported macro ------------------------------------------------------------*/
Kojto 110:165afa46840b 110 /** @defgroup PCCARD_Exported_Macros PCCARD Exported Macros
Kojto 110:165afa46840b 111 * @{
Kojto 110:165afa46840b 112 */
Kojto 110:165afa46840b 113 /** @brief Reset PCCARD handle state
Kojto 110:165afa46840b 114 * @param __HANDLE__: specifies the PCCARD handle.
Kojto 110:165afa46840b 115 * @retval None
Kojto 110:165afa46840b 116 */
Kojto 110:165afa46840b 117 #define __HAL_PCCARD_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_PCCARD_STATE_RESET)
Kojto 110:165afa46840b 118 /**
Kojto 110:165afa46840b 119 * @}
Kojto 110:165afa46840b 120 */
Kojto 110:165afa46840b 121
Kojto 110:165afa46840b 122 /* Exported functions --------------------------------------------------------*/
Kojto 110:165afa46840b 123 /** @addtogroup PCCARD_Exported_Functions
Kojto 110:165afa46840b 124 * @{
Kojto 110:165afa46840b 125 */
Kojto 110:165afa46840b 126
Kojto 110:165afa46840b 127 /** @addtogroup PCCARD_Exported_Functions_Group1
Kojto 110:165afa46840b 128 * @{
Kojto 110:165afa46840b 129 */
Kojto 110:165afa46840b 130 /* Initialization/de-initialization functions **********************************/
Kojto 110:165afa46840b 131 HAL_StatusTypeDef HAL_PCCARD_Init(PCCARD_HandleTypeDef *hpccard, FMC_NAND_PCC_TimingTypeDef *ComSpaceTiming, FMC_NAND_PCC_TimingTypeDef *AttSpaceTiming, FMC_NAND_PCC_TimingTypeDef *IOSpaceTiming);
Kojto 110:165afa46840b 132 HAL_StatusTypeDef HAL_PCCARD_DeInit(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 133 void HAL_PCCARD_MspInit(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 134 void HAL_PCCARD_MspDeInit(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 135 /**
Kojto 110:165afa46840b 136 * @}
Kojto 110:165afa46840b 137 */
Kojto 110:165afa46840b 138
Kojto 110:165afa46840b 139 /** @addtogroup PCCARD_Exported_Functions_Group2
Kojto 110:165afa46840b 140 * @{
Kojto 110:165afa46840b 141 */
Kojto 110:165afa46840b 142 /* IO operation functions *****************************************************/
Kojto 110:165afa46840b 143 HAL_StatusTypeDef HAL_PCCARD_Read_ID(PCCARD_HandleTypeDef *hpccard, uint8_t CompactFlash_ID[], uint8_t *pStatus);
Kojto 110:165afa46840b 144 HAL_StatusTypeDef HAL_PCCARD_Write_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, uint8_t *pStatus);
Kojto 110:165afa46840b 145 HAL_StatusTypeDef HAL_PCCARD_Read_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, uint8_t *pStatus);
Kojto 110:165afa46840b 146 HAL_StatusTypeDef HAL_PCCARD_Erase_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t SectorAddress, uint8_t *pStatus);
Kojto 110:165afa46840b 147 HAL_StatusTypeDef HAL_PCCARD_Reset(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 148 void HAL_PCCARD_IRQHandler(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 149 void HAL_PCCARD_ITCallback(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 150
Kojto 110:165afa46840b 151 /**
Kojto 110:165afa46840b 152 * @}
Kojto 110:165afa46840b 153 */
Kojto 110:165afa46840b 154
Kojto 110:165afa46840b 155 /** @addtogroup PCCARD_Exported_Functions_Group3
Kojto 110:165afa46840b 156 * @{
Kojto 110:165afa46840b 157 */
Kojto 110:165afa46840b 158 /* PCCARD State functions *******************************************************/
Kojto 110:165afa46840b 159 HAL_PCCARD_StateTypeDef HAL_PCCARD_GetState(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 160 HAL_PCCARD_StatusTypeDef HAL_PCCARD_GetStatus(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 161 HAL_PCCARD_StatusTypeDef HAL_PCCARD_ReadStatus(PCCARD_HandleTypeDef *hpccard);
Kojto 110:165afa46840b 162 /**
Kojto 110:165afa46840b 163 * @}
Kojto 110:165afa46840b 164 */
Kojto 110:165afa46840b 165
Kojto 110:165afa46840b 166 /**
Kojto 110:165afa46840b 167 * @}
Kojto 110:165afa46840b 168 */
Kojto 110:165afa46840b 169 /* Private types -------------------------------------------------------------*/
Kojto 110:165afa46840b 170 /* Private variables ---------------------------------------------------------*/
Kojto 110:165afa46840b 171 /* Private constants ---------------------------------------------------------*/
Kojto 110:165afa46840b 172 /** @defgroup PCCARD_Private_Constants PCCARD Private Constants
Kojto 110:165afa46840b 173 * @{
Kojto 110:165afa46840b 174 */
Kojto 110:165afa46840b 175 #define PCCARD_DEVICE_ADDRESS ((uint32_t)0x90000000)
Kojto 110:165afa46840b 176 #define PCCARD_ATTRIBUTE_SPACE_ADDRESS ((uint32_t)0x98000000) /* Attribute space size to @0x9BFF FFFF */
Kojto 110:165afa46840b 177 #define PCCARD_COMMON_SPACE_ADDRESS PCCARD_DEVICE_ADDRESS /* Common space size to @0x93FF FFFF */
Kojto 110:165afa46840b 178 #define PCCARD_IO_SPACE_ADDRESS ((uint32_t)0x9C000000) /* IO space size to @0x9FFF FFFF */
Kojto 110:165afa46840b 179 #define PCCARD_IO_SPACE_PRIMARY_ADDR ((uint32_t)0x9C0001F0) /* IO space size to @0x9FFF FFFF */
Kojto 110:165afa46840b 180
Kojto 110:165afa46840b 181 /* Flash-ATA registers description */
Kojto 110:165afa46840b 182 #define ATA_DATA ((uint8_t)0x00) /* Data register */
Kojto 110:165afa46840b 183 #define ATA_SECTOR_COUNT ((uint8_t)0x02) /* Sector Count register */
Kojto 110:165afa46840b 184 #define ATA_SECTOR_NUMBER ((uint8_t)0x03) /* Sector Number register */
Kojto 110:165afa46840b 185 #define ATA_CYLINDER_LOW ((uint8_t)0x04) /* Cylinder low register */
Kojto 110:165afa46840b 186 #define ATA_CYLINDER_HIGH ((uint8_t)0x05) /* Cylinder high register */
Kojto 110:165afa46840b 187 #define ATA_CARD_HEAD ((uint8_t)0x06) /* Card/Head register */
Kojto 110:165afa46840b 188 #define ATA_STATUS_CMD ((uint8_t)0x07) /* Status(read)/Command(write) register */
Kojto 110:165afa46840b 189 #define ATA_STATUS_CMD_ALTERNATE ((uint8_t)0x0E) /* Alternate Status(read)/Command(write) register */
Kojto 110:165afa46840b 190 #define ATA_COMMON_DATA_AREA ((uint16_t)0x0400) /* Start of data area (for Common access only!) */
Kojto 110:165afa46840b 191 #define ATA_CARD_CONFIGURATION ((uint16_t)0x0202) /* Card Configuration and Status Register */
Kojto 110:165afa46840b 192
Kojto 110:165afa46840b 193 /* Flash-ATA commands */
Kojto 110:165afa46840b 194 #define ATA_READ_SECTOR_CMD ((uint8_t)0x20)
Kojto 110:165afa46840b 195 #define ATA_WRITE_SECTOR_CMD ((uint8_t)0x30)
Kojto 110:165afa46840b 196 #define ATA_ERASE_SECTOR_CMD ((uint8_t)0xC0)
Kojto 110:165afa46840b 197 #define ATA_IDENTIFY_CMD ((uint8_t)0xEC)
Kojto 110:165afa46840b 198
Kojto 110:165afa46840b 199 /* PC Card/Compact Flash status */
Kojto 110:165afa46840b 200 #define PCCARD_TIMEOUT_ERROR ((uint8_t)0x60)
Kojto 110:165afa46840b 201 #define PCCARD_BUSY ((uint8_t)0x80)
Kojto 110:165afa46840b 202 #define PCCARD_PROGR ((uint8_t)0x01)
Kojto 110:165afa46840b 203 #define PCCARD_READY ((uint8_t)0x40)
Kojto 110:165afa46840b 204
Kojto 110:165afa46840b 205 #define PCCARD_SECTOR_SIZE ((uint32_t)255) /* In half words */
Kojto 110:165afa46840b 206
Kojto 110:165afa46840b 207 /**
Kojto 110:165afa46840b 208 * @}
Kojto 110:165afa46840b 209 */
Kojto 110:165afa46840b 210 /* Compact Flash redefinition */
Kojto 110:165afa46840b 211 #define HAL_CF_Init HAL_PCCARD_Init
Kojto 110:165afa46840b 212 #define HAL_CF_DeInit HAL_PCCARD_DeInit
Kojto 110:165afa46840b 213 #define HAL_CF_MspInit HAL_PCCARD_MspInit
Kojto 110:165afa46840b 214 #define HAL_CF_MspDeInit HAL_PCCARD_MspDeInit
Kojto 110:165afa46840b 215
Kojto 110:165afa46840b 216 #define HAL_CF_Read_ID HAL_PCCARD_Read_ID
Kojto 110:165afa46840b 217 #define HAL_CF_Write_Sector HAL_PCCARD_Write_Sector
Kojto 110:165afa46840b 218 #define HAL_CF_Read_Sector HAL_PCCARD_Read_Sector
Kojto 110:165afa46840b 219 #define HAL_CF_Erase_Sector HAL_PCCARD_Erase_Sector
Kojto 110:165afa46840b 220 #define HAL_CF_Reset HAL_PCCARD_Reset
Kojto 110:165afa46840b 221 #define HAL_CF_IRQHandler HAL_PCCARD_IRQHandler
Kojto 110:165afa46840b 222 #define HAL_CF_ITCallback HAL_PCCARD_ITCallback
Kojto 110:165afa46840b 223
Kojto 110:165afa46840b 224 #define HAL_CF_GetState HAL_PCCARD_GetState
Kojto 110:165afa46840b 225 #define HAL_CF_GetStatus HAL_PCCARD_GetStatus
Kojto 110:165afa46840b 226 #define HAL_CF_ReadStatus HAL_PCCARD_ReadStatus
Kojto 110:165afa46840b 227
Kojto 110:165afa46840b 228 #define HAL_CF_STATUS_SUCCESS HAL_PCCARD_STATUS_SUCCESS
Kojto 110:165afa46840b 229 #define HAL_CF_STATUS_ONGOING HAL_PCCARD_STATUS_ONGOING
Kojto 110:165afa46840b 230 #define HAL_CF_STATUS_ERROR HAL_PCCARD_STATUS_ERROR
Kojto 110:165afa46840b 231 #define HAL_CF_STATUS_TIMEOUT HAL_PCCARD_STATUS_TIMEOUT
Kojto 110:165afa46840b 232 #define HAL_CF_StatusTypeDef HAL_PCCARD_StatusTypeDef
Kojto 110:165afa46840b 233
Kojto 110:165afa46840b 234
Kojto 110:165afa46840b 235 #define CF_DEVICE_ADDRESS PCCARD_DEVICE_ADDRESS
Kojto 110:165afa46840b 236 #define CF_ATTRIBUTE_SPACE_ADDRESS PCCARD_ATTRIBUTE_SPACE_ADDRESS
Kojto 110:165afa46840b 237 #define CF_COMMON_SPACE_ADDRESS PCCARD_COMMON_SPACE_ADDRESS
Kojto 110:165afa46840b 238 #define CF_IO_SPACE_ADDRESS PCCARD_IO_SPACE_ADDRESS
Kojto 110:165afa46840b 239 #define CF_IO_SPACE_PRIMARY_ADDR PCCARD_IO_SPACE_PRIMARY_ADDR
Kojto 110:165afa46840b 240
Kojto 110:165afa46840b 241 #define CF_TIMEOUT_ERROR PCCARD_TIMEOUT_ERROR
Kojto 110:165afa46840b 242 #define CF_BUSY PCCARD_BUSY
Kojto 110:165afa46840b 243 #define CF_PROGR PCCARD_PROGR
Kojto 110:165afa46840b 244 #define CF_READY PCCARD_READY
Kojto 110:165afa46840b 245
Kojto 110:165afa46840b 246 #define CF_SECTOR_SIZE PCCARD_SECTOR_SIZE
Kojto 110:165afa46840b 247
Kojto 110:165afa46840b 248 /* Private macros ------------------------------------------------------------*/
Kojto 110:165afa46840b 249 /**
Kojto 110:165afa46840b 250 * @}
Kojto 110:165afa46840b 251 */
Kojto 110:165afa46840b 252
Kojto 110:165afa46840b 253 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx ||\
Kojto 110:165afa46840b 254 STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */
Kojto 110:165afa46840b 255
Kojto 110:165afa46840b 256
Kojto 110:165afa46840b 257 /**
Kojto 110:165afa46840b 258 * @}
Kojto 110:165afa46840b 259 */
Kojto 110:165afa46840b 260
Kojto 110:165afa46840b 261 #ifdef __cplusplus
Kojto 110:165afa46840b 262 }
Kojto 110:165afa46840b 263 #endif
Kojto 110:165afa46840b 264
Kojto 110:165afa46840b 265 #endif /* __STM32F4xx_HAL_PCCARD_H */
Kojto 110:165afa46840b 266
Kojto 110:165afa46840b 267 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/