]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC11UXX/gpio_irq_api.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_NXP / TARGET_LPC11UXX / gpio_irq_api.c
1 /* mbed Microcontroller Library
2  * Copyright (c) 2006-2013 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 <stddef.h>
17 #include "cmsis.h"
18 #include "gpio_irq_api.h"
19 #include "mbed_error.h"
20
21 #define CHANNEL_NUM    8
22 #define LPC_GPIO_X LPC_GPIO_PIN_INT
23 #define PININT_IRQ 0
24
25 static uint32_t channel_ids[CHANNEL_NUM] = {0};
26 static gpio_irq_handler irq_handler;
27
28 static inline void handle_interrupt_in(uint32_t channel) {
29     uint32_t ch_bit = (1 << channel);
30     // Return immediately if:
31     //   * The interrupt was already served
32     //   * There is no user handler
33     //   * It is a level interrupt, not an edge interrupt
34     if ( ((LPC_GPIO_X->IST & ch_bit) == 0) ||
35          (channel_ids[channel] == 0      ) ||
36          (LPC_GPIO_X->ISEL & ch_bit      ) ) return;
37
38     if ((LPC_GPIO_X->IENR & ch_bit) && (LPC_GPIO_X->RISE & ch_bit)) {
39         irq_handler(channel_ids[channel], IRQ_RISE);
40         LPC_GPIO_X->RISE = ch_bit;
41     }
42     if ((LPC_GPIO_X->IENF & ch_bit) && (LPC_GPIO_X->FALL & ch_bit)) {
43         irq_handler(channel_ids[channel], IRQ_FALL);
44     }
45     LPC_GPIO_X->IST = ch_bit;
46 }
47
48 void gpio_irq0(void) {handle_interrupt_in(0);}
49 void gpio_irq1(void) {handle_interrupt_in(1);}
50 void gpio_irq2(void) {handle_interrupt_in(2);}
51 void gpio_irq3(void) {handle_interrupt_in(3);}
52 void gpio_irq4(void) {handle_interrupt_in(4);}
53 void gpio_irq5(void) {handle_interrupt_in(5);}
54 void gpio_irq6(void) {handle_interrupt_in(6);}
55 void gpio_irq7(void) {handle_interrupt_in(7);}
56
57 int gpio_irq_init(gpio_irq_t *obj, PinName pin, gpio_irq_handler handler, uint32_t id) {
58     if (pin == NC) return -1;
59     
60     irq_handler = handler;
61     
62     int found_free_channel = 0;
63     int i = 0;
64     for (i=0; i<CHANNEL_NUM; i++) {
65         if (channel_ids[i] == 0) {
66             channel_ids[i] = id;
67             obj->ch = i;
68             found_free_channel = 1;
69             break;
70         }
71     }
72     if (!found_free_channel) return -1;
73     
74     /* Enable AHB clock to the GPIO domain. */
75     LPC_SYSCON->SYSAHBCLKCTRL |= (1<<6);
76     
77     /* Enable AHB clock to the FlexInt, GroupedInt domain. */
78     LPC_SYSCON->SYSAHBCLKCTRL |= ((1<<19) | (1<<23) | (1<<24));
79     
80     /* To select a pin for any of the eight pin interrupts, write the pin number
81      * as 0 to 23 for pins PIO0_0 to PIO0_23 and 24 to 55.
82      * @see: mbed_capi/PinNames.h
83      */
84     LPC_SYSCON->PINTSEL[obj->ch] = (pin >> 5) ? (pin - 8) : (pin);
85     
86     // Interrupt Wake-Up Enable
87     LPC_SYSCON->STARTERP0 |= 1 << obj->ch;
88     
89     void (*channels_irq)(void) = NULL;
90     switch (obj->ch) {
91         case 0: channels_irq = &gpio_irq0; break;
92         case 1: channels_irq = &gpio_irq1; break;
93         case 2: channels_irq = &gpio_irq2; break;
94         case 3: channels_irq = &gpio_irq3; break;
95         case 4: channels_irq = &gpio_irq4; break;
96         case 5: channels_irq = &gpio_irq5; break;
97         case 6: channels_irq = &gpio_irq6; break;
98         case 7: channels_irq = &gpio_irq7; break;
99     }
100     NVIC_SetVector((IRQn_Type)(PININT_IRQ + obj->ch), (uint32_t)channels_irq);
101     NVIC_EnableIRQ((IRQn_Type)(PININT_IRQ + obj->ch));
102     
103     return 0;
104 }
105
106 void gpio_irq_free(gpio_irq_t *obj) {
107     channel_ids[obj->ch] = 0;
108     LPC_SYSCON->STARTERP0 &= ~(1 << obj->ch);
109 }
110
111 void gpio_irq_set(gpio_irq_t *obj, gpio_irq_event event, uint32_t enable) {
112     unsigned int ch_bit = (1 << obj->ch);
113     
114     // Clear interrupt
115     if (!(LPC_GPIO_X->ISEL & ch_bit))
116         LPC_GPIO_X->IST = ch_bit;
117     
118     // Edge trigger
119     LPC_GPIO_X->ISEL &= ~ch_bit;
120     if (event == IRQ_RISE) {
121         if (enable) {
122             LPC_GPIO_X->IENR |= ch_bit;
123         } else {
124             LPC_GPIO_X->IENR &= ~ch_bit;
125         }
126     } else {
127         if (enable) {
128             LPC_GPIO_X->IENF |= ch_bit;
129         } else {
130             LPC_GPIO_X->IENF &= ~ch_bit;
131         }
132     }
133 }
134
135 void gpio_irq_enable(gpio_irq_t *obj) {
136     NVIC_EnableIRQ((IRQn_Type)(PININT_IRQ + obj->ch));
137 }
138
139 void gpio_irq_disable(gpio_irq_t *obj) {
140     NVIC_DisableIRQ((IRQn_Type)(PININT_IRQ + obj->ch));
141 }