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