t

Fork of mbed-dev by mbed official

Committer:
<>
Date:
Fri Oct 28 11:17:30 2016 +0100
Revision:
149:156823d33999
This updates the lib to the mbed lib v128

NOTE: This release includes a restructuring of the file and directory locations and thus some
include paths in your code may need updating accordingly.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 149:156823d33999 1 /* mbed Microcontroller Library
<> 149:156823d33999 2 *******************************************************************************
<> 149:156823d33999 3 * Copyright (c) 2014, STMicroelectronics
<> 149:156823d33999 4 * All rights reserved.
<> 149:156823d33999 5 *
<> 149:156823d33999 6 * Redistribution and use in source and binary forms, with or without
<> 149:156823d33999 7 * modification, are permitted provided that the following conditions are met:
<> 149:156823d33999 8 *
<> 149:156823d33999 9 * 1. Redistributions of source code must retain the above copyright notice,
<> 149:156823d33999 10 * this list of conditions and the following disclaimer.
<> 149:156823d33999 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
<> 149:156823d33999 12 * this list of conditions and the following disclaimer in the documentation
<> 149:156823d33999 13 * and/or other materials provided with the distribution.
<> 149:156823d33999 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
<> 149:156823d33999 15 * may be used to endorse or promote products derived from this software
<> 149:156823d33999 16 * without specific prior written permission.
<> 149:156823d33999 17 *
<> 149:156823d33999 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
<> 149:156823d33999 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
<> 149:156823d33999 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
<> 149:156823d33999 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
<> 149:156823d33999 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
<> 149:156823d33999 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
<> 149:156823d33999 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
<> 149:156823d33999 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
<> 149:156823d33999 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
<> 149:156823d33999 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<> 149:156823d33999 28 *******************************************************************************
<> 149:156823d33999 29 */
<> 149:156823d33999 30 #include "mbed_assert.h"
<> 149:156823d33999 31 #include "pinmap.h"
<> 149:156823d33999 32 #include "PortNames.h"
<> 149:156823d33999 33 #include "mbed_error.h"
<> 149:156823d33999 34
<> 149:156823d33999 35 // GPIO mode look-up table
<> 149:156823d33999 36 // Warning: the elements order must be the same as the one defined in PinNames.h
<> 149:156823d33999 37 static const uint32_t gpio_mode[13] = {
<> 149:156823d33999 38 GPIO_MODE_INPUT, // 0 = STM_MODE_INPUT
<> 149:156823d33999 39 GPIO_MODE_OUTPUT_PP, // 1 = STM_MODE_OUTPUT_PP
<> 149:156823d33999 40 GPIO_MODE_OUTPUT_OD, // 2 = STM_MODE_OUTPUT_OD
<> 149:156823d33999 41 GPIO_MODE_AF_PP, // 3 = STM_MODE_AF_PP
<> 149:156823d33999 42 GPIO_MODE_AF_OD, // 4 = STM_MODE_AF_OD
<> 149:156823d33999 43 GPIO_MODE_ANALOG, // 5 = STM_MODE_ANALOG
<> 149:156823d33999 44 GPIO_MODE_IT_RISING, // 6 = STM_MODE_IT_RISING
<> 149:156823d33999 45 GPIO_MODE_IT_FALLING, // 7 = STM_MODE_IT_FALLING
<> 149:156823d33999 46 GPIO_MODE_IT_RISING_FALLING, // 8 = STM_MODE_IT_RISING_FALLING
<> 149:156823d33999 47 GPIO_MODE_EVT_RISING, // 9 = STM_MODE_EVT_RISING
<> 149:156823d33999 48 GPIO_MODE_EVT_FALLING, // 10 = STM_MODE_EVT_FALLING
<> 149:156823d33999 49 GPIO_MODE_EVT_RISING_FALLING, // 11 = STM_MODE_EVT_RISING_FALLING
<> 149:156823d33999 50 0x10000000 // 12 = STM_MODE_IT_EVT_RESET (not in STM32Cube HAL)
<> 149:156823d33999 51 };
<> 149:156823d33999 52
<> 149:156823d33999 53 // Enable GPIO clock and return GPIO base address
<> 149:156823d33999 54 uint32_t Set_GPIO_Clock(uint32_t port_idx)
<> 149:156823d33999 55 {
<> 149:156823d33999 56 uint32_t gpio_add = 0;
<> 149:156823d33999 57 switch (port_idx) {
<> 149:156823d33999 58 case PortA:
<> 149:156823d33999 59 gpio_add = GPIOA_BASE;
<> 149:156823d33999 60 __GPIOA_CLK_ENABLE();
<> 149:156823d33999 61 break;
<> 149:156823d33999 62 case PortB:
<> 149:156823d33999 63 gpio_add = GPIOB_BASE;
<> 149:156823d33999 64 __GPIOB_CLK_ENABLE();
<> 149:156823d33999 65 break;
<> 149:156823d33999 66 case PortC:
<> 149:156823d33999 67 gpio_add = GPIOC_BASE;
<> 149:156823d33999 68 __GPIOC_CLK_ENABLE();
<> 149:156823d33999 69 break;
<> 149:156823d33999 70 case PortD:
<> 149:156823d33999 71 gpio_add = GPIOD_BASE;
<> 149:156823d33999 72 __GPIOD_CLK_ENABLE();
<> 149:156823d33999 73 break;
<> 149:156823d33999 74 #if defined GPIOE_BASE
<> 149:156823d33999 75 case PortE:
<> 149:156823d33999 76 gpio_add = GPIOE_BASE;
<> 149:156823d33999 77 __GPIOE_CLK_ENABLE();
<> 149:156823d33999 78 break;
<> 149:156823d33999 79 #endif
<> 149:156823d33999 80 #if defined GPIOF_BASE
<> 149:156823d33999 81 case PortF:
<> 149:156823d33999 82 gpio_add = GPIOF_BASE;
<> 149:156823d33999 83 __GPIOF_CLK_ENABLE();
<> 149:156823d33999 84 break;
<> 149:156823d33999 85 #endif
<> 149:156823d33999 86 #if defined GPIOG_BASE
<> 149:156823d33999 87 case PortG:
<> 149:156823d33999 88 gpio_add = GPIOG_BASE;
<> 149:156823d33999 89 __GPIOG_CLK_ENABLE();
<> 149:156823d33999 90 break;
<> 149:156823d33999 91 #endif
<> 149:156823d33999 92 #if defined GPIOH_BASE
<> 149:156823d33999 93 case PortH:
<> 149:156823d33999 94 gpio_add = GPIOH_BASE;
<> 149:156823d33999 95 __GPIOH_CLK_ENABLE();
<> 149:156823d33999 96 break;
<> 149:156823d33999 97 #endif
<> 149:156823d33999 98 #if defined GPIOI_BASE
<> 149:156823d33999 99 case PortI:
<> 149:156823d33999 100 gpio_add = GPIOI_BASE;
<> 149:156823d33999 101 __GPIOI_CLK_ENABLE();
<> 149:156823d33999 102 break;
<> 149:156823d33999 103 #endif
<> 149:156823d33999 104 #if defined GPIOJ_BASE
<> 149:156823d33999 105 case PortJ:
<> 149:156823d33999 106 gpio_add = GPIOJ_BASE;
<> 149:156823d33999 107 __GPIOJ_CLK_ENABLE();
<> 149:156823d33999 108 break;
<> 149:156823d33999 109 #endif
<> 149:156823d33999 110 #if defined GPIOK_BASE
<> 149:156823d33999 111 case PortK:
<> 149:156823d33999 112 gpio_add = GPIOK_BASE;
<> 149:156823d33999 113 __GPIOK_CLK_ENABLE();
<> 149:156823d33999 114 break;
<> 149:156823d33999 115 #endif
<> 149:156823d33999 116
<> 149:156823d33999 117
<> 149:156823d33999 118 default:
<> 149:156823d33999 119 error("Pinmap error: wrong port number.");
<> 149:156823d33999 120 break;
<> 149:156823d33999 121 }
<> 149:156823d33999 122 return gpio_add;
<> 149:156823d33999 123 }
<> 149:156823d33999 124
<> 149:156823d33999 125 /**
<> 149:156823d33999 126 * Configure pin (mode, speed, output type and pull-up/pull-down)
<> 149:156823d33999 127 */
<> 149:156823d33999 128 void pin_function(PinName pin, int data)
<> 149:156823d33999 129 {
<> 149:156823d33999 130 MBED_ASSERT(pin != (PinName)NC);
<> 149:156823d33999 131 // Get the pin informations
<> 149:156823d33999 132 uint32_t mode = STM_PIN_MODE(data);
<> 149:156823d33999 133 uint32_t pupd = STM_PIN_PUPD(data);
<> 149:156823d33999 134 uint32_t afnum = STM_PIN_AFNUM(data);
<> 149:156823d33999 135
<> 149:156823d33999 136 uint32_t port_index = STM_PORT(pin);
<> 149:156823d33999 137 uint32_t pin_index = STM_PIN(pin);
<> 149:156823d33999 138
<> 149:156823d33999 139 // Enable GPIO clock
<> 149:156823d33999 140 uint32_t gpio_add = Set_GPIO_Clock(port_index);
<> 149:156823d33999 141 GPIO_TypeDef *gpio = (GPIO_TypeDef *)gpio_add;
<> 149:156823d33999 142
<> 149:156823d33999 143 // Configure GPIO
<> 149:156823d33999 144 GPIO_InitTypeDef GPIO_InitStructure;
<> 149:156823d33999 145 GPIO_InitStructure.Pin = (uint32_t)(1 << pin_index);
<> 149:156823d33999 146 GPIO_InitStructure.Mode = gpio_mode[mode];
<> 149:156823d33999 147 GPIO_InitStructure.Pull = pupd;
<> 149:156823d33999 148 GPIO_InitStructure.Speed = GPIO_SPEED_HIGH;
<> 149:156823d33999 149 GPIO_InitStructure.Alternate = afnum;
<> 149:156823d33999 150 HAL_GPIO_Init(gpio, &GPIO_InitStructure);
<> 149:156823d33999 151
<> 149:156823d33999 152 // [TODO] Disconnect JTAG-DP + SW-DP signals.
<> 149:156823d33999 153 // Warning: Need to reconnect under reset
<> 149:156823d33999 154 //if ((pin == PA_13) || (pin == PA_14)) {
<> 149:156823d33999 155 //
<> 149:156823d33999 156 //}
<> 149:156823d33999 157 }
<> 149:156823d33999 158
<> 149:156823d33999 159 /**
<> 149:156823d33999 160 * Configure pin pull-up/pull-down
<> 149:156823d33999 161 */
<> 149:156823d33999 162 void pin_mode(PinName pin, PinMode mode)
<> 149:156823d33999 163 {
<> 149:156823d33999 164 MBED_ASSERT(pin != (PinName)NC);
<> 149:156823d33999 165 uint32_t port_index = STM_PORT(pin);
<> 149:156823d33999 166 uint32_t pin_index = STM_PIN(pin);
<> 149:156823d33999 167
<> 149:156823d33999 168 // Enable GPIO clock
<> 149:156823d33999 169 uint32_t gpio_add = Set_GPIO_Clock(port_index);
<> 149:156823d33999 170 GPIO_TypeDef *gpio = (GPIO_TypeDef *)gpio_add;
<> 149:156823d33999 171
<> 149:156823d33999 172 // Configure pull-up/pull-down resistors
<> 149:156823d33999 173 uint32_t pupd = (uint32_t)mode;
<> 149:156823d33999 174 if (pupd > 2) {
<> 149:156823d33999 175 pupd = 0; // Open-drain = No pull-up/No pull-down
<> 149:156823d33999 176 }
<> 149:156823d33999 177 gpio->PUPDR &= (uint32_t)(~(GPIO_PUPDR_PUPDR0 << (pin_index * 2)));
<> 149:156823d33999 178 gpio->PUPDR |= (uint32_t)(pupd << (pin_index * 2));
<> 149:156823d33999 179 }
<> 149:156823d33999 180
<> 149:156823d33999 181 /* Internal function for setting the gpiomode/function
<> 149:156823d33999 182 * without changing Pull mode
<> 149:156823d33999 183 */
<> 149:156823d33999 184 void pin_function_gpiomode(PinName pin, uint32_t gpiomode) {
<> 149:156823d33999 185
<> 149:156823d33999 186 /* Read current pull state from HW to avoid over-write*/
<> 149:156823d33999 187 uint32_t port_index = STM_PORT(pin);
<> 149:156823d33999 188 uint32_t pin_index = STM_PIN(pin);
<> 149:156823d33999 189 GPIO_TypeDef *gpio = (GPIO_TypeDef *) Set_GPIO_Clock(port_index);
<> 149:156823d33999 190 uint32_t temp = gpio->PUPDR;
<> 149:156823d33999 191 uint32_t pull = (temp >> (pin_index * 2U)) & GPIO_PUPDR_PUPDR0;
<> 149:156823d33999 192
<> 149:156823d33999 193 /* Then re-use global function for updating the mode part*/
<> 149:156823d33999 194 pin_function(pin, STM_PIN_DATA(gpiomode, pull, 0));
<> 149:156823d33999 195 }