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