]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_Freescale/TARGET_KLXX/TARGET_KL05Z/gpio_irq_api.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_Freescale / TARGET_KLXX / TARGET_KL05Z / 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
19 #include "gpio_irq_api.h"
20 #include "gpio_api.h"
21 #include "mbed_error.h"
22
23 #define CHANNEL_NUM    64   // 31 pins on 2 ports
24
25 static uint32_t channel_ids[CHANNEL_NUM] = {0};
26 static gpio_irq_handler irq_handler;
27
28 #define IRQ_DISABLED        (0)
29 #define IRQ_RAISING_EDGE    PORT_PCR_IRQC(9)
30 #define IRQ_FALLING_EDGE    PORT_PCR_IRQC(10)
31 #define IRQ_EITHER_EDGE     PORT_PCR_IRQC(11)
32
33 const uint32_t search_bits[] = {0x0000FFFF, 0x000000FF, 0x0000000F, 0x00000003, 0x00000001};
34
35 static void handle_interrupt_in(PORT_Type *port, int ch_base) {
36     uint32_t isfr;
37     uint8_t location;
38
39     while((isfr = port->ISFR) != 0) {
40         location = 0;
41         for (int i = 0; i < 5; i++) {
42             if (!(isfr & (search_bits[i] << location)))
43                 location += 1 << (4 - i);
44         }
45         
46         uint32_t id = channel_ids[ch_base + location];
47         if (id == 0) {
48             continue;
49         }
50
51         FGPIO_Type *gpio;
52         gpio_irq_event event = IRQ_NONE;
53         switch (port->PCR[location] & PORT_PCR_IRQC_MASK) {
54             case IRQ_RAISING_EDGE:
55                 event = IRQ_RISE;
56                 break;
57
58             case IRQ_FALLING_EDGE:
59                 event = IRQ_FALL;
60                 break;
61
62             case IRQ_EITHER_EDGE:
63                 gpio = (port == PORTA) ? (FPTA) : (FPTB);
64                 event = (gpio->PDIR & (1 << location)) ? (IRQ_RISE) : (IRQ_FALL);
65                 break;
66         }
67         if (event != IRQ_NONE) {
68             irq_handler(id, event);
69         }
70         port->ISFR = 1 << location;
71     }
72 }
73
74 /* IRQ only on PORTA and PORTB */
75 void gpio_irqA(void) {
76     handle_interrupt_in(PORTA, 0);
77 }
78
79 void gpio_irqB(void) {
80     handle_interrupt_in(PORTB, 32);
81 }
82
83 int gpio_irq_init(gpio_irq_t *obj, PinName pin, gpio_irq_handler handler, uint32_t id) {
84     if (pin == NC) return -1;
85
86     irq_handler = handler;
87
88     obj->port = pin >> PORT_SHIFT;
89     obj->pin = (pin & 0x7F) >> 2;
90
91     uint32_t ch_base, vector;
92     IRQn_Type irq_n;
93     switch (obj->port) {
94         case PortA:
95             ch_base = 0;
96             irq_n = PORTA_IRQn;
97             vector = (uint32_t)gpio_irqA;
98             break;
99
100         case PortB:
101             ch_base = 32;
102             irq_n = PORTB_IRQn;
103             vector = (uint32_t)gpio_irqB;
104             break;
105
106         default:
107             error("gpio_irq only supported on Port A and B");
108             break;
109     }
110     NVIC_SetVector(irq_n, vector);
111     NVIC_EnableIRQ(irq_n);
112
113     obj->ch = ch_base + obj->pin;
114     channel_ids[obj->ch] = id;
115
116     return 0;
117 }
118
119 void gpio_irq_free(gpio_irq_t *obj) {
120     channel_ids[obj->ch] = 0;
121 }
122
123 void gpio_irq_set(gpio_irq_t *obj, gpio_irq_event event, uint32_t enable) {
124     PORT_Type *port = (PORT_Type *)(PORTA_BASE + 0x1000 * obj->port);
125
126     uint32_t irq_settings = IRQ_DISABLED;
127
128     switch (port->PCR[obj->pin] & PORT_PCR_IRQC_MASK) {
129         case IRQ_DISABLED:
130             if (enable) {
131                 irq_settings = (event == IRQ_RISE) ? (IRQ_RAISING_EDGE) : (IRQ_FALLING_EDGE);
132             }
133             break;
134
135         case IRQ_RAISING_EDGE:
136             if (enable) {
137                 irq_settings = (event == IRQ_RISE) ? (IRQ_RAISING_EDGE) : (IRQ_EITHER_EDGE);
138             } else {
139                 if (event == IRQ_FALL)
140                     irq_settings = IRQ_RAISING_EDGE;
141             }
142             break;
143
144         case IRQ_FALLING_EDGE:
145             if (enable) {
146                 irq_settings = (event == IRQ_FALL) ? (IRQ_FALLING_EDGE) : (IRQ_EITHER_EDGE);
147             } else {
148                 if (event == IRQ_RISE)
149                     irq_settings = IRQ_FALLING_EDGE;
150             }
151             break;
152
153         case IRQ_EITHER_EDGE:
154             if (enable) {
155                 irq_settings = IRQ_EITHER_EDGE;
156             } else {
157                 irq_settings = (event == IRQ_RISE) ? (IRQ_FALLING_EDGE) : (IRQ_RAISING_EDGE);
158             }
159             break;
160     }
161
162     // Interrupt configuration and clear interrupt
163     port->PCR[obj->pin] = (port->PCR[obj->pin] & ~PORT_PCR_IRQC_MASK) | irq_settings | PORT_PCR_ISF_MASK;
164 }
165
166 void gpio_irq_enable(gpio_irq_t *obj) {
167     if (obj->port == PortA) {
168         NVIC_EnableIRQ(PORTA_IRQn);
169     } else if (obj->port == PortB) {
170         NVIC_EnableIRQ(PORTB_IRQn);
171     }
172 }
173
174 void gpio_irq_disable(gpio_irq_t *obj) {
175     if (obj->port == PortA) {
176         NVIC_DisableIRQ(PORTA_IRQn);
177     } else if (obj->port == PortB) {
178         NVIC_DisableIRQ(PORTB_IRQn);
179     }
180 }