mbed library sources

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Mon Nov 03 10:30:07 2014 +0000
Revision:
381:5460fc57b6e4
Synchronized with git revision 02478cd1f27fc7b9643486472635eb515b2bca81

Full URL: https://github.com/mbedmicro/mbed/commit/02478cd1f27fc7b9643486472635eb515b2bca81/

Target: LPC1549 - Fix serial interrupt issues (issue report #616)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 381:5460fc57b6e4 1 /**
mbed_official 381:5460fc57b6e4 2 ******************************************************************************
mbed_official 381:5460fc57b6e4 3 * @file stm32f3xx_hal_pccard.h
mbed_official 381:5460fc57b6e4 4 * @author MCD Application Team
mbed_official 381:5460fc57b6e4 5 * @version V1.1.0
mbed_official 381:5460fc57b6e4 6 * @date 12-Sept-2014
mbed_official 381:5460fc57b6e4 7 * @brief Header file of PCCARD HAL module.
mbed_official 381:5460fc57b6e4 8 ******************************************************************************
mbed_official 381:5460fc57b6e4 9 * @attention
mbed_official 381:5460fc57b6e4 10 *
mbed_official 381:5460fc57b6e4 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 381:5460fc57b6e4 12 *
mbed_official 381:5460fc57b6e4 13 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 381:5460fc57b6e4 14 * are permitted provided that the following conditions are met:
mbed_official 381:5460fc57b6e4 15 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 381:5460fc57b6e4 16 * this list of conditions and the following disclaimer.
mbed_official 381:5460fc57b6e4 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 381:5460fc57b6e4 18 * this list of conditions and the following disclaimer in the documentation
mbed_official 381:5460fc57b6e4 19 * and/or other materials provided with the distribution.
mbed_official 381:5460fc57b6e4 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 381:5460fc57b6e4 21 * may be used to endorse or promote products derived from this software
mbed_official 381:5460fc57b6e4 22 * without specific prior written permission.
mbed_official 381:5460fc57b6e4 23 *
mbed_official 381:5460fc57b6e4 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 381:5460fc57b6e4 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 381:5460fc57b6e4 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 381:5460fc57b6e4 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 381:5460fc57b6e4 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 381:5460fc57b6e4 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 381:5460fc57b6e4 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 381:5460fc57b6e4 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 381:5460fc57b6e4 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 381:5460fc57b6e4 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 381:5460fc57b6e4 34 *
mbed_official 381:5460fc57b6e4 35 ******************************************************************************
mbed_official 381:5460fc57b6e4 36 */
mbed_official 381:5460fc57b6e4 37
mbed_official 381:5460fc57b6e4 38 /* Define to prevent recursive inclusion -------------------------------------*/
mbed_official 381:5460fc57b6e4 39 #ifndef __STM32F3xx_HAL_PCCARD_H
mbed_official 381:5460fc57b6e4 40 #define __STM32F3xx_HAL_PCCARD_H
mbed_official 381:5460fc57b6e4 41
mbed_official 381:5460fc57b6e4 42 #ifdef __cplusplus
mbed_official 381:5460fc57b6e4 43 extern "C" {
mbed_official 381:5460fc57b6e4 44 #endif
mbed_official 381:5460fc57b6e4 45
mbed_official 381:5460fc57b6e4 46 /* Includes ------------------------------------------------------------------*/
mbed_official 381:5460fc57b6e4 47 #if defined(STM32F302xE) || defined(STM32F303xE) || defined(STM32F398xx)
mbed_official 381:5460fc57b6e4 48 #include "stm32f3xx_ll_fmc.h"
mbed_official 381:5460fc57b6e4 49 #endif /* STM32F302xE || STM32F303xE || STM32F398xx */
mbed_official 381:5460fc57b6e4 50
mbed_official 381:5460fc57b6e4 51 /** @addtogroup STM32F3xx_HAL_Driver
mbed_official 381:5460fc57b6e4 52 * @{
mbed_official 381:5460fc57b6e4 53 */
mbed_official 381:5460fc57b6e4 54
mbed_official 381:5460fc57b6e4 55 /** @addtogroup PCCARD
mbed_official 381:5460fc57b6e4 56 * @{
mbed_official 381:5460fc57b6e4 57 */
mbed_official 381:5460fc57b6e4 58
mbed_official 381:5460fc57b6e4 59 #if defined(STM32F302xE) || defined(STM32F303xE) || defined(STM32F398xx)
mbed_official 381:5460fc57b6e4 60
mbed_official 381:5460fc57b6e4 61 /* Exported typedef ----------------------------------------------------------*/
mbed_official 381:5460fc57b6e4 62 /** @defgroup PCCARD_Exported_Types PCCARD Exported Types
mbed_official 381:5460fc57b6e4 63 * @{
mbed_official 381:5460fc57b6e4 64 */
mbed_official 381:5460fc57b6e4 65
mbed_official 381:5460fc57b6e4 66 /**
mbed_official 381:5460fc57b6e4 67 * @brief HAL PCCARD State structures definition
mbed_official 381:5460fc57b6e4 68 */
mbed_official 381:5460fc57b6e4 69 typedef enum
mbed_official 381:5460fc57b6e4 70 {
mbed_official 381:5460fc57b6e4 71 HAL_PCCARD_STATE_RESET = 0x00, /*!< PCCARD peripheral not yet initialized or disabled */
mbed_official 381:5460fc57b6e4 72 HAL_PCCARD_STATE_READY = 0x01, /*!< PCCARD peripheral ready */
mbed_official 381:5460fc57b6e4 73 HAL_PCCARD_STATE_BUSY = 0x02, /*!< PCCARD peripheral busy */
mbed_official 381:5460fc57b6e4 74 HAL_PCCARD_STATE_ERROR = 0x04 /*!< PCCARD peripheral error */
mbed_official 381:5460fc57b6e4 75 }HAL_PCCARD_StateTypeDef;
mbed_official 381:5460fc57b6e4 76
mbed_official 381:5460fc57b6e4 77 typedef enum
mbed_official 381:5460fc57b6e4 78 {
mbed_official 381:5460fc57b6e4 79 CF_SUCCESS = 0,
mbed_official 381:5460fc57b6e4 80 CF_ONGOING,
mbed_official 381:5460fc57b6e4 81 CF_ERROR,
mbed_official 381:5460fc57b6e4 82 CF_TIMEOUT
mbed_official 381:5460fc57b6e4 83 }CF_StatusTypedef;
mbed_official 381:5460fc57b6e4 84
mbed_official 381:5460fc57b6e4 85 /**
mbed_official 381:5460fc57b6e4 86 * @brief FMC_PCCARD handle Structure definition
mbed_official 381:5460fc57b6e4 87 */
mbed_official 381:5460fc57b6e4 88 typedef struct
mbed_official 381:5460fc57b6e4 89 {
mbed_official 381:5460fc57b6e4 90 FMC_PCCARD_TypeDef *Instance; /*!< Register base address for PCCARD device */
mbed_official 381:5460fc57b6e4 91
mbed_official 381:5460fc57b6e4 92 FMC_PCCARD_InitTypeDef Init; /*!< PCCARD device control configuration parameters */
mbed_official 381:5460fc57b6e4 93
mbed_official 381:5460fc57b6e4 94 __IO HAL_PCCARD_StateTypeDef State; /*!< PCCARD device access state */
mbed_official 381:5460fc57b6e4 95
mbed_official 381:5460fc57b6e4 96 HAL_LockTypeDef Lock; /*!< PCCARD Lock */
mbed_official 381:5460fc57b6e4 97
mbed_official 381:5460fc57b6e4 98 }PCCARD_HandleTypeDef;
mbed_official 381:5460fc57b6e4 99 /**
mbed_official 381:5460fc57b6e4 100 * @}
mbed_official 381:5460fc57b6e4 101 */
mbed_official 381:5460fc57b6e4 102
mbed_official 381:5460fc57b6e4 103 /* Exported constants --------------------------------------------------------*/
mbed_official 381:5460fc57b6e4 104 /** @defgroup PCCARD_Exported_Constants PCCARD Exported Constants
mbed_official 381:5460fc57b6e4 105 * @{
mbed_official 381:5460fc57b6e4 106 */
mbed_official 381:5460fc57b6e4 107
mbed_official 381:5460fc57b6e4 108 #define CF_DEVICE_ADDRESS ((uint32_t)0x90000000)
mbed_official 381:5460fc57b6e4 109 #define CF_ATTRIBUTE_SPACE_ADDRESS ((uint32_t)0x98000000) /* Attribute space size to @0x9BFF FFFF */
mbed_official 381:5460fc57b6e4 110 #define CF_COMMON_SPACE_ADDRESS CF_DEVICE_ADDRESS /* Common space size to @0x93FF FFFF */
mbed_official 381:5460fc57b6e4 111 #define CF_IO_SPACE_ADDRESS ((uint32_t)0x9C000000) /* IO space size to @0x9FFF FFFF */
mbed_official 381:5460fc57b6e4 112 #define CF_IO_SPACE_PRIMARY_ADDR ((uint32_t)0x9C0001F0) /* IO space size to @0x9FFF FFFF */
mbed_official 381:5460fc57b6e4 113
mbed_official 381:5460fc57b6e4 114 /* Compact Flash-ATA registers description */
mbed_official 381:5460fc57b6e4 115 #define CF_DATA ((uint8_t)0x00) /* Data register */
mbed_official 381:5460fc57b6e4 116 #define CF_SECTOR_COUNT ((uint8_t)0x02) /* Sector Count register */
mbed_official 381:5460fc57b6e4 117 #define CF_SECTOR_NUMBER ((uint8_t)0x03) /* Sector Number register */
mbed_official 381:5460fc57b6e4 118 #define CF_CYLINDER_LOW ((uint8_t)0x04) /* Cylinder low register */
mbed_official 381:5460fc57b6e4 119 #define CF_CYLINDER_HIGH ((uint8_t)0x05) /* Cylinder high register */
mbed_official 381:5460fc57b6e4 120 #define CF_CARD_HEAD ((uint8_t)0x06) /* Card/Head register */
mbed_official 381:5460fc57b6e4 121 #define CF_STATUS_CMD ((uint8_t)0x07) /* Status(read)/Command(write) register */
mbed_official 381:5460fc57b6e4 122 #define CF_STATUS_CMD_ALTERNATE ((uint8_t)0x0E) /* Alternate Status(read)/Command(write) register */
mbed_official 381:5460fc57b6e4 123 #define CF_COMMON_DATA_AREA ((uint16_t)0x0400) /* Start of data area (for Common access only!) */
mbed_official 381:5460fc57b6e4 124
mbed_official 381:5460fc57b6e4 125 /* Compact Flash-ATA commands */
mbed_official 381:5460fc57b6e4 126 #define CF_READ_SECTOR_CMD ((uint8_t)0x20)
mbed_official 381:5460fc57b6e4 127 #define CF_WRITE_SECTOR_CMD ((uint8_t)0x30)
mbed_official 381:5460fc57b6e4 128 #define CF_ERASE_SECTOR_CMD ((uint8_t)0xC0)
mbed_official 381:5460fc57b6e4 129 #define CF_IDENTIFY_CMD ((uint8_t)0xEC)
mbed_official 381:5460fc57b6e4 130
mbed_official 381:5460fc57b6e4 131 /* Compact Flash status */
mbed_official 381:5460fc57b6e4 132 #define CF_TIMEOUT_ERROR ((uint8_t)0x60)
mbed_official 381:5460fc57b6e4 133 #define CF_BUSY ((uint8_t)0x80)
mbed_official 381:5460fc57b6e4 134 #define CF_PROGR ((uint8_t)0x01)
mbed_official 381:5460fc57b6e4 135 #define CF_READY ((uint8_t)0x40)
mbed_official 381:5460fc57b6e4 136
mbed_official 381:5460fc57b6e4 137 #define CF_SECTOR_SIZE ((uint32_t)255) /* In half words */
mbed_official 381:5460fc57b6e4 138
mbed_official 381:5460fc57b6e4 139 /**
mbed_official 381:5460fc57b6e4 140 * @}
mbed_official 381:5460fc57b6e4 141 */
mbed_official 381:5460fc57b6e4 142
mbed_official 381:5460fc57b6e4 143 /* Exported macro ------------------------------------------------------------*/
mbed_official 381:5460fc57b6e4 144 /** @defgroup PCCARD_Exported_Macros PCCARD Exported Macros
mbed_official 381:5460fc57b6e4 145 * @{
mbed_official 381:5460fc57b6e4 146 */
mbed_official 381:5460fc57b6e4 147
mbed_official 381:5460fc57b6e4 148 /** @brief Reset PCCARD handle state
mbed_official 381:5460fc57b6e4 149 * @param __HANDLE__: specifies the PCCARD handle.
mbed_official 381:5460fc57b6e4 150 * @retval None
mbed_official 381:5460fc57b6e4 151 */
mbed_official 381:5460fc57b6e4 152 #define __HAL_PCCARD_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_PCCARD_STATE_RESET)
mbed_official 381:5460fc57b6e4 153 /**
mbed_official 381:5460fc57b6e4 154 * @}
mbed_official 381:5460fc57b6e4 155 */
mbed_official 381:5460fc57b6e4 156
mbed_official 381:5460fc57b6e4 157 /* Exported functions --------------------------------------------------------*/
mbed_official 381:5460fc57b6e4 158 /** @addtogroup PCCARD_Exported_Functions PCCARD Exported Functions
mbed_official 381:5460fc57b6e4 159 * @{
mbed_official 381:5460fc57b6e4 160 */
mbed_official 381:5460fc57b6e4 161
mbed_official 381:5460fc57b6e4 162 /** @addtogroup PCCARD_Exported_Functions_Group1 Initialization and de-initialization functions
mbed_official 381:5460fc57b6e4 163 * @{
mbed_official 381:5460fc57b6e4 164 */
mbed_official 381:5460fc57b6e4 165 /* Initialization/de-initialization functions **********************************/
mbed_official 381:5460fc57b6e4 166 HAL_StatusTypeDef HAL_PCCARD_Init(PCCARD_HandleTypeDef *hpccard, FMC_NAND_PCC_TimingTypeDef *ComSpaceTiming, FMC_NAND_PCC_TimingTypeDef *AttSpaceTiming, FMC_NAND_PCC_TimingTypeDef *IOSpaceTiming);
mbed_official 381:5460fc57b6e4 167 HAL_StatusTypeDef HAL_PCCARD_DeInit(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 168 void HAL_PCCARD_MspInit(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 169 void HAL_PCCARD_MspDeInit(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 170 /**
mbed_official 381:5460fc57b6e4 171 * @}
mbed_official 381:5460fc57b6e4 172 */
mbed_official 381:5460fc57b6e4 173
mbed_official 381:5460fc57b6e4 174 /** @addtogroup PCCARD_Exported_Functions_Group2 Input Output and memory functions
mbed_official 381:5460fc57b6e4 175 * @{
mbed_official 381:5460fc57b6e4 176 */
mbed_official 381:5460fc57b6e4 177 /* IO operation functions *****************************************************/
mbed_official 381:5460fc57b6e4 178 HAL_StatusTypeDef HAL_CF_Read_ID(PCCARD_HandleTypeDef *hpccard, uint8_t CompactFlash_ID[], uint8_t *pStatus);
mbed_official 381:5460fc57b6e4 179 HAL_StatusTypeDef HAL_CF_Write_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, uint8_t *pStatus);
mbed_official 381:5460fc57b6e4 180 HAL_StatusTypeDef HAL_CF_Read_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, uint8_t *pStatus);
mbed_official 381:5460fc57b6e4 181 HAL_StatusTypeDef HAL_CF_Erase_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t SectorAddress, uint8_t *pStatus);
mbed_official 381:5460fc57b6e4 182 HAL_StatusTypeDef HAL_CF_Reset(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 183 void HAL_PCCARD_IRQHandler(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 184 void HAL_PCCARD_ITCallback(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 185
mbed_official 381:5460fc57b6e4 186 /**
mbed_official 381:5460fc57b6e4 187 * @}
mbed_official 381:5460fc57b6e4 188 */
mbed_official 381:5460fc57b6e4 189
mbed_official 381:5460fc57b6e4 190 /** @defgroup PCCARD_Exported_Functions_Group3 Peripheral State functions
mbed_official 381:5460fc57b6e4 191 * @{
mbed_official 381:5460fc57b6e4 192 */
mbed_official 381:5460fc57b6e4 193 /* PCCARD State functions *******************************************************/
mbed_official 381:5460fc57b6e4 194 HAL_PCCARD_StateTypeDef HAL_PCCARD_GetState(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 195 CF_StatusTypedef HAL_CF_GetStatus(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 196 CF_StatusTypedef HAL_CF_ReadStatus(PCCARD_HandleTypeDef *hpccard);
mbed_official 381:5460fc57b6e4 197 /**
mbed_official 381:5460fc57b6e4 198 * @}
mbed_official 381:5460fc57b6e4 199 */
mbed_official 381:5460fc57b6e4 200
mbed_official 381:5460fc57b6e4 201 /**
mbed_official 381:5460fc57b6e4 202 * @}
mbed_official 381:5460fc57b6e4 203 */
mbed_official 381:5460fc57b6e4 204 #endif /* STM32F302xE || STM32F303xE || STM32F398xx */
mbed_official 381:5460fc57b6e4 205 /**
mbed_official 381:5460fc57b6e4 206 * @}
mbed_official 381:5460fc57b6e4 207 */
mbed_official 381:5460fc57b6e4 208
mbed_official 381:5460fc57b6e4 209 /**
mbed_official 381:5460fc57b6e4 210 * @}
mbed_official 381:5460fc57b6e4 211 */
mbed_official 381:5460fc57b6e4 212
mbed_official 381:5460fc57b6e4 213 #ifdef __cplusplus
mbed_official 381:5460fc57b6e4 214 }
mbed_official 381:5460fc57b6e4 215 #endif
mbed_official 381:5460fc57b6e4 216
mbed_official 381:5460fc57b6e4 217 #endif /* __STM32F3xx_HAL_PCCARD_H */
mbed_official 381:5460fc57b6e4 218
mbed_official 381:5460fc57b6e4 219 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/