mbed library sources. Supersedes mbed-src.

Fork of mbed-dev by mbed official

Committer:
fwndz
Date:
Thu Dec 22 05:12:40 2016 +0000
Revision:
153:9398a535854b
Parent:
149:156823d33999
device target maximize

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) 2015, 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: order must be the same as the one defined in PinNames.h !!!
<> 149:156823d33999 37 static const uint32_t gpio_mode[14] = {
<> 149:156823d33999 38 0x00000000, // 0 = GPIO_MODE_INPUT
<> 149:156823d33999 39 0x00000001, // 1 = GPIO_MODE_OUTPUT_PP
<> 149:156823d33999 40 0x00000011, // 2 = GPIO_MODE_OUTPUT_OD
<> 149:156823d33999 41 0x00000002, // 3 = GPIO_MODE_AF_PP
<> 149:156823d33999 42 0x00000012, // 4 = GPIO_MODE_AF_OD
<> 149:156823d33999 43 0x00000003, // 5 = GPIO_MODE_ANALOG
<> 149:156823d33999 44 0x0000000B, // 6 = GPIO_MODE_ANALOG_ADC_CONTROL
<> 149:156823d33999 45 0x10110000, // 7 = GPIO_MODE_IT_RISING
<> 149:156823d33999 46 0x10210000, // 8 = GPIO_MODE_IT_FALLING
<> 149:156823d33999 47 0x10310000, // 9 = GPIO_MODE_IT_RISING_FALLING
<> 149:156823d33999 48 0x10120000, // 10 = GPIO_MODE_EVT_RISING
<> 149:156823d33999 49 0x10220000, // 11 = GPIO_MODE_EVT_FALLING
<> 149:156823d33999 50 0x10320000, // 12 = GPIO_MODE_EVT_RISING_FALLING
<> 149:156823d33999 51 0x10000000 // 13 = Reset IT and EVT (not in STM32Cube HAL)
<> 149:156823d33999 52 };
<> 149:156823d33999 53
<> 149:156823d33999 54 // Enable GPIO clock and return GPIO base address
<> 149:156823d33999 55 uint32_t Set_GPIO_Clock(uint32_t port_idx)
<> 149:156823d33999 56 {
<> 149:156823d33999 57 uint32_t gpio_add = 0;
<> 149:156823d33999 58 switch (port_idx) {
<> 149:156823d33999 59 case PortA:
<> 149:156823d33999 60 gpio_add = GPIOA_BASE;
<> 149:156823d33999 61 __HAL_RCC_GPIOA_CLK_ENABLE();
<> 149:156823d33999 62 break;
<> 149:156823d33999 63 case PortB:
<> 149:156823d33999 64 gpio_add = GPIOB_BASE;
<> 149:156823d33999 65 __HAL_RCC_GPIOB_CLK_ENABLE();
<> 149:156823d33999 66 break;
<> 149:156823d33999 67 case PortC:
<> 149:156823d33999 68 gpio_add = GPIOC_BASE;
<> 149:156823d33999 69 __HAL_RCC_GPIOC_CLK_ENABLE();
<> 149:156823d33999 70 break;
<> 149:156823d33999 71 #if defined(GPIOD_BASE)
<> 149:156823d33999 72 case PortD:
<> 149:156823d33999 73 gpio_add = GPIOD_BASE;
<> 149:156823d33999 74 __HAL_RCC_GPIOD_CLK_ENABLE();
<> 149:156823d33999 75 break;
<> 149:156823d33999 76 #endif
<> 149:156823d33999 77 #if defined(GPIOE_BASE)
<> 149:156823d33999 78 case PortE:
<> 149:156823d33999 79 gpio_add = GPIOE_BASE;
<> 149:156823d33999 80 __HAL_RCC_GPIOE_CLK_ENABLE();
<> 149:156823d33999 81 break;
<> 149:156823d33999 82 #endif
<> 149:156823d33999 83 case PortH:
<> 149:156823d33999 84 gpio_add = GPIOH_BASE;
<> 149:156823d33999 85 __HAL_RCC_GPIOH_CLK_ENABLE();
<> 149:156823d33999 86 break;
<> 149:156823d33999 87 default:
<> 149:156823d33999 88 error("Pinmap error: wrong port number\n");
<> 149:156823d33999 89 break;
<> 149:156823d33999 90 }
<> 149:156823d33999 91 return gpio_add;
<> 149:156823d33999 92 }
<> 149:156823d33999 93
<> 149:156823d33999 94 /**
<> 149:156823d33999 95 * Configure pin (mode, speed, output type and pull-up/pull-down)
<> 149:156823d33999 96 */
<> 149:156823d33999 97 void pin_function(PinName pin, int data)
<> 149:156823d33999 98 {
<> 149:156823d33999 99 MBED_ASSERT(pin != (PinName)NC);
<> 149:156823d33999 100 // Get the pin informations
<> 149:156823d33999 101 uint32_t mode = STM_PIN_MODE(data);
<> 149:156823d33999 102 uint32_t pupd = STM_PIN_PUPD(data);
<> 149:156823d33999 103 uint32_t afnum = STM_PIN_AFNUM(data);
<> 149:156823d33999 104
<> 149:156823d33999 105 uint32_t port_index = STM_PORT(pin);
<> 149:156823d33999 106 uint32_t pin_index = STM_PIN(pin);
<> 149:156823d33999 107
<> 149:156823d33999 108 // Enable GPIO clock
<> 149:156823d33999 109 uint32_t gpio_add = Set_GPIO_Clock(port_index);
<> 149:156823d33999 110 GPIO_TypeDef *gpio = (GPIO_TypeDef *)gpio_add;
<> 149:156823d33999 111
<> 149:156823d33999 112 // Configure GPIO
<> 149:156823d33999 113 GPIO_InitTypeDef GPIO_InitStructure;
<> 149:156823d33999 114 GPIO_InitStructure.Pin = (uint32_t)(1 << pin_index);
<> 149:156823d33999 115 GPIO_InitStructure.Mode = gpio_mode[mode];
<> 149:156823d33999 116 GPIO_InitStructure.Pull = pupd;
<> 149:156823d33999 117 GPIO_InitStructure.Speed = GPIO_SPEED_HIGH;
<> 149:156823d33999 118 GPIO_InitStructure.Alternate = afnum;
<> 149:156823d33999 119 HAL_GPIO_Init(gpio, &GPIO_InitStructure);
<> 149:156823d33999 120
<> 149:156823d33999 121 // [TODO] Disconnect JTAG-DP + SW-DP signals.
<> 149:156823d33999 122 // Warning: Need to reconnect under reset
<> 149:156823d33999 123 //if ((pin == PA_13) || (pin == PA_14)) {
<> 149:156823d33999 124 //
<> 149:156823d33999 125 //}
<> 149:156823d33999 126 //if ((pin == PA_15) || (pin == PB_3) || (pin == PB_4)) {
<> 149:156823d33999 127 //
<> 149:156823d33999 128 //}
<> 149:156823d33999 129 }
<> 149:156823d33999 130
<> 149:156823d33999 131 /**
<> 149:156823d33999 132 * Configure pin pull-up/pull-down
<> 149:156823d33999 133 */
<> 149:156823d33999 134 void pin_mode(PinName pin, PinMode mode)
<> 149:156823d33999 135 {
<> 149:156823d33999 136 MBED_ASSERT(pin != (PinName)NC);
<> 149:156823d33999 137 uint32_t port_index = STM_PORT(pin);
<> 149:156823d33999 138 uint32_t pin_index = STM_PIN(pin);
<> 149:156823d33999 139
<> 149:156823d33999 140 // Enable GPIO clock
<> 149:156823d33999 141 uint32_t gpio_add = Set_GPIO_Clock(port_index);
<> 149:156823d33999 142 GPIO_TypeDef *gpio = (GPIO_TypeDef *)gpio_add;
<> 149:156823d33999 143
<> 149:156823d33999 144 // Configure pull-up/pull-down resistors
<> 149:156823d33999 145 uint32_t pupd = (uint32_t)mode;
<> 149:156823d33999 146 if (pupd > 2) {
<> 149:156823d33999 147 pupd = 0; // Open-drain = No pull-up/No pull-down
<> 149:156823d33999 148 }
<> 149:156823d33999 149 gpio->PUPDR &= (uint32_t)(~(GPIO_PUPDR_PUPDR0 << (pin_index * 2)));
<> 149:156823d33999 150 gpio->PUPDR |= (uint32_t)(pupd << (pin_index * 2));
<> 149:156823d33999 151 }
<> 149:156823d33999 152
<> 149:156823d33999 153 /* Internal function for setting the gpiomode/function
<> 149:156823d33999 154 * without changing Pull mode
<> 149:156823d33999 155 */
<> 149:156823d33999 156 void pin_function_gpiomode(PinName pin, uint32_t gpiomode) {
<> 149:156823d33999 157
<> 149:156823d33999 158 /* Read current pull state from HW to avoid over-write*/
<> 149:156823d33999 159 uint32_t port_index = STM_PORT(pin);
<> 149:156823d33999 160 uint32_t pin_index = STM_PIN(pin);
<> 149:156823d33999 161 GPIO_TypeDef *gpio = (GPIO_TypeDef *) Set_GPIO_Clock(port_index);
<> 149:156823d33999 162 uint32_t temp = gpio->PUPDR;
<> 149:156823d33999 163 uint32_t pull = (temp >> (pin_index * 2U)) & GPIO_PUPDR_PUPDR0;
<> 149:156823d33999 164
<> 149:156823d33999 165 /* Then re-use global function for updating the mode part*/
<> 149:156823d33999 166 pin_function(pin, STM_PIN_DATA(gpiomode, pull, 0));
<> 149:156823d33999 167 }