s3c2410_extint.c revision 1.15 1 /* $NetBSD: s3c2410_extint.c,v 1.15 2021/08/07 16:18:45 thorpej Exp $ */
2
3 /*
4 * Copyright (c) 2003 Genetec corporation. All rights reserved.
5 * Written by Hiroyuki Bessho for Genetec corporation.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of Genetec corporation may not be used to endorse
16 * or promote products derived from this software without specific prior
17 * written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY GENETEC CORP. ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GENETEC CORP.
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*
33 * device driver to handle cascaded external interrupts of S3C2410.
34 *
35 * EXTINT [8..23] are cascaded to IRQ #5
36 * EXTINT [4..7] are cascaded to IRQ #4
37 * EXTINT [0..3] are not cascaded and connected directly as IRQ #[0..3].
38 * EXTINT [0..3] are handled by main interrupt handler in s3c2410_intr.c.
39 */
40
41 #include <sys/cdefs.h>
42 __KERNEL_RCSID(0, "$NetBSD: s3c2410_extint.c,v 1.15 2021/08/07 16:18:45 thorpej Exp $");
43
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/malloc.h>
47 #include <uvm/uvm_extern.h>
48 #include <sys/bus.h>
49 #include <machine/intr.h>
50 #include <arm/cpufunc.h>
51
52 #include <arm/s3c2xx0/s3c2410reg.h>
53 #include <arm/s3c2xx0/s3c2410var.h>
54
55 #include "locators.h"
56 #include "opt_s3c2410.h" /* for S3C2410_EXTINT_MAX */
57
58 #ifndef S3C2410_EXTINT_MAX
59 #define S3C2410_EXTINT_MAX 23
60 #endif
61
62 #define EXTINT_CASCADE_MIN 4
63
64 #if S3C2410_EXTINT_MAX < EXTINT_CASCADE_MIN
65 #error "Don't enable ssextio if you don't use extint[4..23]."
66 #endif
67
68 #define N_EXTINT (S3C2410_EXTINT_MAX - EXTINT_CASCADE_MIN +1)
69
70 struct ssextio_softc {
71 bus_space_tag_t sc_iot;
72 bus_space_handle_t sc_ioh;
73
74 uint32_t sc_pending;
75 uint32_t sc_mask;
76
77 struct extint_handler {
78 int (* func)(void *);
79 void *arg;
80 void *sh; /* softintr handler */
81 int level; /* IPL */
82 } sc_handler[N_EXTINT];
83
84 };
85
86 static struct ssextio_softc *ssextio_softc = NULL;
87
88 /* cookies */
89 #define EXTINT_4_7 1
90 #define EXTINT_8_23 2
91
92 /* prototypes */
93 static int ssextio_match(device_t, cfdata_t, void *);
94 static void ssextio_attach(device_t, device_t, void *);
95 static int ssextio_search(device_t, cfdata_t, const int *, void *);
96 static int ssextio_print(void *, const char *);
97
98 static int ssextio_cascaded_intr(void *);
99 static void ssextio_softintr(void *);
100
101 static inline void
102 update_hw_mask(void)
103 {
104 bus_space_write_4(ssextio_softc->sc_iot, ssextio_softc->sc_ioh,
105 GPIO_EINTMASK, ssextio_softc->sc_mask | ssextio_softc->sc_pending);
106 }
107
108
109 /* attach structures */
110 CFATTACH_DECL_NEW(ssextio, sizeof(struct ssextio_softc), ssextio_match, ssextio_attach,
111 NULL, NULL);
112
113 static int
114 ssextio_print(void *aux, const char *name)
115 {
116 struct s3c2xx0_attach_args *sa = aux;
117
118 if (sa->sa_addr != SSEXTIOCF_ADDR_DEFAULT)
119 aprint_normal(" addr 0x%lx", sa->sa_addr);
120 if (sa->sa_intr > 0)
121 aprint_normal(" intr %d", sa->sa_intr);
122 return (UNCONF);
123 }
124
125 int
126 ssextio_match(device_t parent, cfdata_t match, void *aux)
127 {
128 #if S3C2410_EXTINT_MAX < 4
129 /* better not configure this driver */
130 return 0;
131 #else
132 if (ssextio_softc != NULL)
133 return 0;
134
135 return 1;
136 #endif
137 }
138
139 void
140 ssextio_attach(device_t parent, device_t self, void *aux)
141 {
142 struct ssextio_softc *sc = device_private(self);
143 struct s3c24x0_softc *cpuc = ((struct s3c2xx0_attach_args *)aux)->sa_sc;
144
145 aprint_normal("\n");
146
147 ssextio_softc = sc;
148
149 sc->sc_iot = cpuc->sc_sx.sc_iot;
150 sc->sc_ioh = cpuc->sc_sx.sc_gpio_ioh;
151
152 sc->sc_pending = 0;
153 sc->sc_mask = ~0;
154
155 s3c24x0_intr_establish(S3C2410_INT_4_7, IPL_HIGH, IST_NONE,
156 ssextio_cascaded_intr, (void *)EXTINT_4_7);
157 #if S3C2410_EXTINT_MAX >= 8
158 s3c24x0_intr_establish(S3C2410_INT_8_23, IPL_HIGH, IST_NONE,
159 ssextio_cascaded_intr, (void *)EXTINT_8_23);
160 #endif
161 /*
162 * Attach each devices
163 */
164 config_search(self, NULL,
165 CFARGS(.search = ssextio_search));
166 }
167
168 static int
169 ssextio_search(device_t parent, cfdata_t cf, const int *ldesc, void *aux)
170 {
171 struct ssextio_softc *sc = device_private(parent);
172 struct s3c24x0_softc *cpuc = device_private(device_parent(parent));
173 struct s3c2xx0_attach_args sa;
174
175 sa.sa_sc = sc;
176 sa.sa_iot = sc->sc_iot;
177 sa.sa_addr = cf->cf_loc[SSEXTIOCF_ADDR];
178 sa.sa_size = cf->cf_loc[SSEXTIOCF_SIZE];
179 sa.sa_intr = cf->cf_loc[SSEXTIOCF_INTR];
180 sa.sa_dmat = cpuc->sc_sx.sc_dmat;
181
182 if (config_probe(parent, cf, &sa))
183 config_attach(parent, cf, &sa, ssextio_print, CFARGS_NONE);
184
185 return 0;
186 }
187
188 void *
189 s3c2410_extint_establish(int extint, int ipl, int type,
190 int (*func)(void *), void *arg)
191 {
192 int save;
193 int idx;
194 int soft_level;
195
196 if (extint < 0 || N_EXTINT <= extint)
197 panic("Bad interrupt no for extio");
198
199 if (extint < EXTINT_CASCADE_MIN) {
200 /*
201 * EXINT[0..3] are not cascaded. they are handled by
202 * the main interrupt controller.
203 */
204 return s3c24x0_intr_establish(extint, ipl, type, func, arg);
205 }
206
207 soft_level = SOFTINT_SERIAL;
208
209 idx = extint - EXTINT_CASCADE_MIN;
210
211 save = disable_interrupts(I32_bit);
212
213 ssextio_softc->sc_handler[idx].func = func;
214 ssextio_softc->sc_handler[idx].arg = arg;
215 ssextio_softc->sc_handler[idx].level = ipl;
216
217 ssextio_softc->sc_handler[idx].sh = softint_establish(soft_level,
218 ssextio_softintr, &ssextio_softc->sc_handler[idx]);
219
220 s3c2410_setup_extint(extint, type);
221
222 bus_space_write_4(ssextio_softc->sc_iot, ssextio_softc->sc_ioh,
223 GPIO_EINTPEND, 1U << extint);
224 ssextio_softc->sc_mask &= ~(1U << extint);
225 update_hw_mask();
226
227 restore_interrupts(save);
228 return &ssextio_softc->sc_handler[idx];
229 }
230
231
232 static int
233 ssextio_cascaded_intr(void *cookie)
234 {
235 uint32_t pending_mask, pending;
236 int int_min;
237 bus_space_tag_t iot = ssextio_softc->sc_iot;
238 bus_space_handle_t ioh = ssextio_softc->sc_ioh;
239 int save, i;
240
241 switch((int)cookie) {
242 case EXTINT_4_7:
243 pending_mask = 0x000000f0;
244 int_min = 4;
245 break;
246
247 case EXTINT_8_23:
248 pending_mask = 0x00ffff00;
249 int_min = 8;
250 break;
251
252 default:
253 panic("Bad cookie for %s", __func__);
254 }
255
256
257 save = disable_interrupts(I32_bit);
258 pending = pending_mask & bus_space_read_4(iot, ioh, GPIO_EINTPEND);
259 pending &= ~ssextio_softc->sc_mask;
260 ssextio_softc->sc_pending |= pending;
261 /* disable the extint until the handler is called. */
262 update_hw_mask();
263 restore_interrupts(save);
264
265 for (i=int_min; pending; ++i) {
266 if (pending & (1<<i)) {
267 assert(ssextio_softc->sc_handler[i-EXTINT_CASCADE_MIN].sh != NULL);
268
269 softint_schedule(
270 ssextio_softc->sc_handler[i-EXTINT_CASCADE_MIN].sh);
271 pending &= ~ (1<<i);
272 }
273 }
274
275 return 1;
276 }
277
278 static void
279 ssextio_softintr(void *cookie)
280 {
281 struct extint_handler *h = cookie;
282 int extint = EXTINT_CASCADE_MIN + h - ssextio_softc->sc_handler;
283 int s, save;
284
285 save = disable_interrupts(I32_bit);
286 /* clear hardware pending bits */
287 bus_space_write_4(ssextio_softc->sc_iot, ssextio_softc->sc_ioh,
288 GPIO_EINTPEND, 1<<extint);
289 ssextio_softc->sc_pending &= ~(1<<extint);
290 update_hw_mask();
291 restore_interrupts(save);
292
293 s = _splraise(h->level);
294 h->func(h->arg);
295 splx(s);
296 }
297