]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC15XX/gpio_api.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_NXP / TARGET_LPC15XX / gpio_api.c
1 /* mbed Microcontroller Library
2  * Copyright (c) 2006-2014 ARM Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include "mbed_assert.h"
17 #include "gpio_api.h"
18 #include "pinmap.h"
19
20 static int  gpio_enabled = 0;
21
22 static void gpio_enable(void) {
23     gpio_enabled = 1;
24     
25     /* Enable AHB clock to the GPIO0/1/2 and IOCON domain. */
26     LPC_SYSCON->SYSAHBCLKCTRL0 |= (0xFUL << 13);
27 }
28
29 uint32_t gpio_set(PinName pin) {
30     MBED_ASSERT(pin != (PinName)NC);
31     if (!gpio_enabled)
32          gpio_enable();
33     
34     return (1UL << ((int)pin & 0x1f));
35 }
36
37 void gpio_init(gpio_t *obj, PinName pin) {
38     obj->pin = pin;
39     if (pin == (PinName)NC)
40         return;
41
42     obj->mask = gpio_set(pin);
43     
44     unsigned int port = (unsigned int)(pin >> 5);
45     
46     obj->reg_set = &LPC_GPIO_PORT->SET[port];
47     obj->reg_clr = &LPC_GPIO_PORT->CLR[port];
48     obj->reg_in  = &LPC_GPIO_PORT->PIN[port];
49     obj->reg_dir = &LPC_GPIO_PORT->DIR[port];
50 }
51
52 void gpio_mode(gpio_t *obj, PinMode mode) {
53     pin_mode(obj->pin, mode);
54 }
55
56 void gpio_dir(gpio_t *obj, PinDirection direction) {
57     MBED_ASSERT(obj->pin != (PinName)NC);
58     switch (direction) {
59         case PIN_INPUT :
60             *obj->reg_dir &= ~obj->mask;
61             break;
62         case PIN_OUTPUT:
63             *obj->reg_dir |=  obj->mask;
64             break;
65     }
66 }