summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx31/gpio-imx31.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-04-09 01:21:53 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-04-09 01:21:53 +0000
commit7abf2b53a462612808d46d6d77a7f35261a0e5a3 (patch)
tree241304f7cd2b5d1c2a9e091fe56a33d2d2f8e816 /firmware/target/arm/imx31/gpio-imx31.c
parent43304b87b0662d1619ac60e5297a1694aa580310 (diff)
downloadrockbox-7abf2b53a462612808d46d6d77a7f35261a0e5a3.tar.gz
rockbox-7abf2b53a462612808d46d6d77a7f35261a0e5a3.zip
Gigabeat S/i.MX31: Sort files in the /target tree into things that are SoC-generic (into /imx31) and player-specific (into /gigabeat-s, based upon current appearances). Move i2s clock init into the appropriate file. Housekeeping only-- no functional changes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25547 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx31/gpio-imx31.c')
-rw-r--r--firmware/target/arm/imx31/gpio-imx31.c213
1 files changed, 213 insertions, 0 deletions
diff --git a/firmware/target/arm/imx31/gpio-imx31.c b/firmware/target/arm/imx31/gpio-imx31.c
new file mode 100644
index 0000000000..944f70eae3
--- /dev/null
+++ b/firmware/target/arm/imx31/gpio-imx31.c
@@ -0,0 +1,213 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (c) 2008 by Michael Sevakis
11 *
12 * IMX31 GPIO event manager
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
18 *
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
21 *
22 ****************************************************************************/
23#include "config.h"
24#include "system.h"
25#include "avic-imx31.h"
26#include "gpio-imx31.h"
27
28/* UIE vector found in avic-imx31.c */
29extern void UIE_VECTOR(void);
30
31/* Event lists are allocated for the specific target */
32#if (GPIO_EVENT_MASK & USE_GPIO1_EVENTS)
33static __attribute__((interrupt("IRQ"))) void GPIO1_HANDLER(void);
34extern const struct gpio_event_list gpio1_event_list;
35#endif
36
37#if (GPIO_EVENT_MASK & USE_GPIO2_EVENTS)
38static __attribute__((interrupt("IRQ"))) void GPIO2_HANDLER(void);
39extern const struct gpio_event_list gpio2_event_list;
40#endif
41
42#if (GPIO_EVENT_MASK & USE_GPIO3_EVENTS)
43static __attribute__((interrupt("IRQ"))) void GPIO3_HANDLER(void);
44extern const struct gpio_event_list gpio3_event_list;
45#endif
46
47static struct gpio_module_descriptor
48{
49 struct gpio_map * const base; /* Module base address */
50 enum IMX31_INT_LIST ints; /* AVIC int number */
51 void (*handler)(void); /* Interrupt function */
52 const struct gpio_event_list *list; /* Event handler list */
53} gpio_descs[GPIO_NUM_GPIO] =
54{
55#if (GPIO_EVENT_MASK & USE_GPIO1_EVENTS)
56 {
57 .base = (struct gpio_map *)GPIO1_BASE_ADDR,
58 .ints = INT_GPIO1,
59 .handler = GPIO1_HANDLER,
60 },
61#endif
62#if (GPIO_EVENT_MASK & USE_GPIO2_EVENTS)
63 {
64 .base = (struct gpio_map *)GPIO2_BASE_ADDR,
65 .ints = INT_GPIO2,
66 .handler = GPIO2_HANDLER,
67 },
68#endif
69#if (GPIO_EVENT_MASK & USE_GPIO3_EVENTS)
70 {
71 .base = (struct gpio_map *)GPIO3_BASE_ADDR,
72 .ints = INT_GPIO3,
73 .handler = GPIO3_HANDLER,
74 },
75#endif
76};
77
78static void gpio_call_events(const struct gpio_module_descriptor * const desc)
79{
80 const struct gpio_event_list * const list = desc->list;
81 struct gpio_map * const base = desc->base;
82 const struct gpio_event * event, *event_last;
83
84 /* Intersect pending and unmasked bits */
85 uint32_t pnd = base->isr & base->imr;
86
87 event = list->events;
88 event_last = event + list->count;
89
90 /* Call each event handler in order */
91 /* .count is surely expected to be > 0 */
92 do
93 {
94 uint32_t mask = event->mask;
95
96 if (pnd & mask)
97 {
98 event->callback();
99 pnd &= ~mask;
100 }
101
102 if (pnd == 0)
103 break; /* Teminate early if nothing more to service */
104 }
105 while (++event < event_last);
106
107 if (pnd != 0)
108 {
109 /* One or more weren't handled */
110 UIE_VECTOR();
111 }
112}
113
114#if (GPIO_EVENT_MASK & USE_GPIO1_EVENTS)
115static __attribute__((interrupt("IRQ"))) void GPIO1_HANDLER(void)
116{
117 gpio_call_events(&gpio_descs[GPIO1_NUM]);
118}
119#endif
120
121#if (GPIO_EVENT_MASK & USE_GPIO2_EVENTS)
122static __attribute__((interrupt("IRQ"))) void GPIO2_HANDLER(void)
123{
124 gpio_call_events(&gpio_descs[GPIO2_NUM]);
125}
126#endif
127
128#if (GPIO_EVENT_MASK & USE_GPIO3_EVENTS)
129static __attribute__((interrupt("IRQ"))) void GPIO3_HANDLER(void)
130{
131 gpio_call_events(&gpio_descs[GPIO3_NUM]);
132}
133#endif
134
135void gpio_init(void)
136{
137 /* Mask-out GPIO interrupts - enable what's wanted later */
138 GPIO1_IMR = 0;
139 GPIO2_IMR = 0;
140 GPIO3_IMR = 0;
141
142 /* Init the externally-defined event lists for each port */
143#if (GPIO_EVENT_MASK & USE_GPIO1_EVENTS)
144 gpio_descs[GPIO1_NUM].list = &gpio1_event_list;
145#endif
146#if (GPIO_EVENT_MASK & USE_GPIO2_EVENTS)
147 gpio_descs[GPIO2_NUM].list = &gpio2_event_list;
148#endif
149#if (GPIO_EVENT_MASK & USE_GPIO3_EVENTS)
150 gpio_descs[GPIO3_NUM].list = &gpio3_event_list;
151#endif
152}
153
154bool gpio_enable_event(enum gpio_event_ids id)
155{
156 const struct gpio_module_descriptor * const desc = &gpio_descs[id >> 5];
157 const struct gpio_event * const event = &desc->list->events[id & 31];
158 struct gpio_map * const base = desc->base;
159 volatile uint32_t *icr;
160 uint32_t mask, line;
161 uint32_t imr;
162 int shift;
163
164 int oldlevel = disable_irq_save();
165
166 imr = base->imr;
167
168 if (imr == 0)
169 {
170 /* First enabled interrupt for this GPIO */
171 avic_enable_int(desc->ints, INT_TYPE_IRQ, desc->list->ints_priority,
172 desc->handler);
173 }
174
175 /* Set the line sense */
176 line = find_first_set_bit(event->mask);
177 icr = &base->icr[line >> 4];
178 shift = (line & 15) << 1;
179 mask = GPIO_SENSE_CONFIG_MASK << shift;
180
181 *icr = (*icr & ~mask) | ((event->sense << shift) & mask);
182
183 /* Unmask the line */
184 base->imr = imr | event->mask;
185
186 restore_irq(oldlevel);
187
188 return true;
189}
190
191void gpio_disable_event(enum gpio_event_ids id)
192{
193 const struct gpio_module_descriptor * const desc = &gpio_descs[id >> 5];
194 const struct gpio_event * const event = &desc->list->events[id & 31];
195 struct gpio_map * const base = desc->base;
196 uint32_t imr;
197
198 int oldlevel = disable_irq_save();
199
200 /* Remove bit from mask */
201 imr = base->imr & ~event->mask;
202
203 /* Mask the line */
204 base->imr = imr;
205
206 if (imr == 0)
207 {
208 /* No events remain enabled */
209 avic_disable_int(desc->ints);
210 }
211
212 restore_irq(oldlevel);
213}