xref: /netbsd-src/sys/arch/arm/ep93xx/epgpio.c (revision daf6c4152fcddc27c445489775ed1f66ab4ea9a9)
1 /*	$NetBSD: epgpio.c,v 1.3 2009/08/03 06:57:09 he Exp $	*/
2 
3 /*
4  * Copyright (c) 2005 HAMAJIMA Katsuomi. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __KERNEL_RCSID(0, "$NetBSD: epgpio.c,v 1.3 2009/08/03 06:57:09 he Exp $");
30 
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/device.h>
35 #include <machine/bus.h>
36 #include <machine/intr.h>
37 #include <sys/gpio.h>
38 #include <dev/gpio/gpiovar.h>
39 #include <arm/ep93xx/ep93xxvar.h>
40 #include <arm/ep93xx/epsocvar.h>
41 #include <arm/ep93xx/epgpioreg.h>
42 #include <arm/ep93xx/epgpiovar.h>
43 #include "opt_ep93xx_gpio_mask.h"
44 #include "gpio.h"
45 #include "locators.h"
46 
47 #ifdef EPGPIO_DEBUG
48 int epgpio_debug = EPGPIO_DEBUG;
49 #define DPRINTFN(n,x)	if (epgpio_debug>(n)) printf x;
50 #else
51 #define DPRINTFN(n,x)
52 #endif
53 
54 #define	EPGPIO_NPORTS	8
55 #define	EPGPIO_NPINS	8
56 
57 struct port_info {
58 	struct epgpio_softc	*sc;
59 	int			unit;
60 #if NGPIO > 0
61 	struct gpio_chipset_tag	gpio_chipset;
62 	gpio_pin_t		pins[EPGPIO_NPINS];
63 	int			gpio_mask;
64 	int			gpio_npins;
65 #endif
66 	bus_size_t		pxdr;
67 	bus_size_t		pxddr;
68 	bus_size_t		xinten;
69 	bus_size_t		xinttype1;
70 	bus_size_t		xinttype2;
71 	bus_size_t		xeoi;
72 	bus_size_t		xdb;
73 };
74 
75 struct intr_req {
76 	int		irq;
77 	int		(*ih_func)(void *);
78 	int		(*ireq_func)(void *);
79 	void		*ireq_arg;
80 	void		*cookie;
81 };
82 
83 struct epgpio_softc {
84 	struct device		sc_dev;
85 	bus_space_tag_t		sc_iot;
86 	bus_space_handle_t	sc_ioh;
87 	struct port_info	sc_port[EPGPIO_NPORTS];
88 	struct intr_req		sc_ireq_combine;
89 	struct intr_req		sc_ireq_f[EPGPIO_NPINS];
90 };
91 
92 static int epgpio_match(struct device *, struct cfdata *, void *);
93 static void epgpio_attach(struct device *, struct device *, void *);
94 
95 #if NGPIO > 0
96 static int epgpiobus_print(void *, const char *);
97 static int epgpio_pin_read(void *, int);
98 static void epgpio_pin_write(void *, int, int);
99 static void epgpio_pin_ctl(void *, int, int);
100 #endif
101 
102 static int epgpio_search(struct device *, struct cfdata *, const int *, void *);
103 static int epgpio_print(void *, const char *);
104 
105 static int epgpio_intr_combine(void* arg);
106 static int epgpio_intr_f(void* arg, int);
107 static int epgpio_intr_0(void* arg);
108 static int epgpio_intr_1(void* arg);
109 static int epgpio_intr_2(void* arg);
110 static int epgpio_intr_3(void* arg);
111 static int epgpio_intr_4(void* arg);
112 static int epgpio_intr_5(void* arg);
113 static int epgpio_intr_6(void* arg);
114 static int epgpio_intr_7(void* arg);
115 
116 static void epgpio_bit_set(struct epgpio_softc *, bus_size_t, int);
117 static void epgpio_bit_clear(struct epgpio_softc *, bus_size_t, int);
118 
119 CFATTACH_DECL(epgpio, sizeof(struct epgpio_softc),
120 	      epgpio_match, epgpio_attach, NULL, NULL);
121 
122 static int
123 epgpio_match(struct device *parent, struct cfdata *match, void *aux)
124 {
125 	return 2;
126 }
127 
128 static void
129 epgpio_attach(struct device *parent, struct device *self, void *aux)
130 {
131 	struct epgpio_softc *sc = (struct epgpio_softc*)self;
132 	struct epsoc_attach_args *sa = aux;
133 	struct port_info *pi;
134 #if NGPIO > 0
135 	struct gpiobus_attach_args gba;
136 	int dir, val;
137 	int i, j, pin;
138 #endif
139 
140 	printf("\n");
141 	sc->sc_iot = sa->sa_iot;
142 
143 	if (bus_space_map(sa->sa_iot, sa->sa_addr,
144 			  sa->sa_size, 0, &sc->sc_ioh)){
145 		printf("%s: Cannot map registers", self->dv_xname);
146 		return;
147 	}
148 
149 	/* PORT A */
150 	pi = &sc->sc_port[0];
151 	pi->unit = 0;
152 	pi->sc = sc;
153 	pi->pxdr = EP93XX_GPIO_PADR;
154 	pi->pxddr = EP93XX_GPIO_PADDR;
155 	pi->xinten = EP93XX_GPIO_AIntEn;
156 	pi->xinttype1 = EP93XX_GPIO_AIntType1;
157 	pi->xinttype2 = EP93XX_GPIO_AIntType2;
158 	pi->xeoi = EP93XX_GPIO_AEOI;
159 	pi->xdb = EP93XX_GPIO_ADB;
160 #if NGPIO > 0
161 	pi->gpio_mask = EPGPIO_PORT_A_MASK;
162 #endif
163 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, pi->xinten, 0);
164 	/* PORT B */
165 	pi = &sc->sc_port[1];
166 	pi->unit = 1;
167 	pi->sc = sc;
168 	pi->pxdr = EP93XX_GPIO_PBDR;
169 	pi->pxddr = EP93XX_GPIO_PBDDR;
170 	pi->xinten = EP93XX_GPIO_BIntEn;
171 	pi->xinttype1 = EP93XX_GPIO_BIntType1;
172 	pi->xinttype2 = EP93XX_GPIO_BIntType2;
173 	pi->xeoi = EP93XX_GPIO_BEOI;
174 	pi->xdb = EP93XX_GPIO_BDB;
175 #if NGPIO > 0
176 	pi->gpio_mask = EPGPIO_PORT_B_MASK;
177 #endif
178 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, pi->xinten, 0);
179 	/* PORT C */
180 	pi = &sc->sc_port[2];
181 	pi->unit = 2;
182 	pi->sc = sc;
183 	pi->pxdr = EP93XX_GPIO_PCDR;
184 	pi->pxddr = EP93XX_GPIO_PCDDR;
185 	pi->xinten = pi->xinttype1 = pi->xinttype2 = pi->xeoi = pi->xdb = -1;
186 #if NGPIO > 0
187 	pi->gpio_mask = EPGPIO_PORT_C_MASK;
188 #endif
189 	/* PORT D */
190 	pi = &sc->sc_port[3];
191 	pi->unit = 3;
192 	pi->sc = sc;
193 	pi->pxdr = EP93XX_GPIO_PDDR;
194 	pi->pxddr = EP93XX_GPIO_PDDDR;
195 	pi->xinten = pi->xinttype1 = pi->xinttype2 = pi->xeoi = pi->xdb = -1;
196 #if NGPIO > 0
197 	pi->gpio_mask = EPGPIO_PORT_D_MASK;
198 #endif
199 	/* PORT E */
200 	pi = &sc->sc_port[4];
201 	pi->unit = 4;
202 	pi->sc = sc;
203 	pi->pxdr = EP93XX_GPIO_PEDR;
204 	pi->pxddr = EP93XX_GPIO_PEDDR;
205 	pi->xinten = pi->xinttype1 = pi->xinttype2 = pi->xeoi = pi->xdb = -1;
206 #if NGPIO > 0
207 	pi->gpio_mask = EPGPIO_PORT_E_MASK;
208 #endif
209 	/* PORT F */
210 	pi = &sc->sc_port[5];
211 	pi->unit = 5;
212 	pi->sc = sc;
213 	pi->pxdr = EP93XX_GPIO_PFDR;
214 	pi->pxddr = EP93XX_GPIO_PFDDR;
215 	pi->xinten = EP93XX_GPIO_FIntEn;
216 	pi->xinttype1 = EP93XX_GPIO_FIntType1;
217 	pi->xinttype2 = EP93XX_GPIO_FIntType2;
218 	pi->xeoi = EP93XX_GPIO_FEOI;
219 	pi->xdb = EP93XX_GPIO_FDB;
220 #if NGPIO > 0
221 	pi->gpio_mask = EPGPIO_PORT_F_MASK;
222 #endif
223 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, pi->xinten, 0);
224 	/* PORT G */
225 	pi = &sc->sc_port[6];
226 	pi->unit = 6;
227 	pi->sc = sc;
228 	pi->pxdr = EP93XX_GPIO_PGDR;
229 	pi->pxddr = EP93XX_GPIO_PGDDR;
230 	pi->xinten = pi->xinttype1 = pi->xinttype2 = pi->xeoi = pi->xdb = -1;
231 #if NGPIO > 0
232 	pi->gpio_mask = EPGPIO_PORT_G_MASK;
233 #endif
234 	/* PORT H */
235 	pi = &sc->sc_port[7];
236 	pi->unit = 7;
237 	pi->sc = sc;
238 	pi->pxdr = EP93XX_GPIO_PHDR;
239 	pi->pxddr = EP93XX_GPIO_PHDDR;
240 	pi->xinten = pi->xinttype1 = pi->xinttype2 = pi->xeoi = pi->xdb = -1;
241 #if NGPIO > 0
242 	pi->gpio_mask = EPGPIO_PORT_H_MASK;
243 #endif
244 
245 	/* PORT A & B */
246 	sc->sc_ireq_combine.irq = EP93XX_GPIO_INTR;
247 	sc->sc_ireq_combine.ih_func = epgpio_intr_combine;
248 	/* PORT F */
249 	sc->sc_ireq_f[0].irq = EP93XX_GPIO0_INTR;
250 	sc->sc_ireq_f[0].ih_func = epgpio_intr_0;
251 	sc->sc_ireq_f[1].irq = EP93XX_GPIO1_INTR;
252 	sc->sc_ireq_f[1].ih_func = epgpio_intr_1;
253 	sc->sc_ireq_f[2].irq = EP93XX_GPIO2_INTR;
254 	sc->sc_ireq_f[2].ih_func = epgpio_intr_2;
255 	sc->sc_ireq_f[3].irq = EP93XX_GPIO3_INTR;
256 	sc->sc_ireq_f[3].ih_func = epgpio_intr_3;
257 	sc->sc_ireq_f[4].irq = EP93XX_GPIO4_INTR;
258 	sc->sc_ireq_f[4].ih_func = epgpio_intr_4;
259 	sc->sc_ireq_f[5].irq = EP93XX_GPIO5_INTR;
260 	sc->sc_ireq_f[5].ih_func = epgpio_intr_5;
261 	sc->sc_ireq_f[6].irq = EP93XX_GPIO6_INTR;
262 	sc->sc_ireq_f[6].ih_func = epgpio_intr_6;
263 	sc->sc_ireq_f[7].irq = EP93XX_GPIO7_INTR;
264 	sc->sc_ireq_f[7].ih_func = epgpio_intr_7;
265 
266 #if NGPIO > 0
267 	/* initialize and attach gpio(4) */
268 	for (i = 0; i < EPGPIO_NPORTS; i++) {
269 		pi = &sc->sc_port[i];
270 		/*
271 		 * If this port is completely disabled for gpio attachment,
272 		 * then skip it.
273 		 */
274 		if (pi->gpio_mask == 0x00)
275 			continue;
276 
277 		dir = bus_space_read_4(sc->sc_iot, sc->sc_ioh, pi->pxddr) & 0xff;
278 		val = bus_space_read_4(sc->sc_iot, sc->sc_ioh, pi->pxdr) & 0xff;
279 
280 		/*
281 		 * pin_num doesn't seem to be used for anything in the GPIO
282 		 * code.  So we're going to use it to refer to the REAL pin
283 		 * on the port.  Just to keep things straight below:
284 		 *
285 		 * pin - The pin number as seen by the GPIO code
286 		 * j   - The ACTUAL pin on the port
287 		 */
288 
289 		for (j = 0, pin = 0; j < EPGPIO_NPINS; j++) {
290 			if (pi->gpio_mask & (1 << j)) {
291 				pi->pins[pin].pin_num = j;
292 				pi->pins[pin].pin_caps = (GPIO_PIN_INPUT
293 							| GPIO_PIN_OUTPUT);
294 				if((dir >> j) & 0x01)
295 					pi->pins[pin].pin_flags =
296 							GPIO_PIN_OUTPUT;
297 				else
298 					pi->pins[pin].pin_flags =
299 						GPIO_PIN_INPUT;
300 				if((val >> j) & 0x01)
301 					pi->pins[pin].pin_state = GPIO_PIN_HIGH;
302 				else
303 					pi->pins[pin].pin_state = GPIO_PIN_LOW;
304 				pin++;
305 			}
306 		}
307 		pi->gpio_chipset.gp_cookie = pi;
308 		pi->gpio_chipset.gp_pin_read = epgpio_pin_read;
309 		pi->gpio_chipset.gp_pin_write = epgpio_pin_write;
310 		pi->gpio_chipset.gp_pin_ctl = epgpio_pin_ctl;
311 		gba.gba_gc = &pi->gpio_chipset;
312 		gba.gba_pins = pi->pins;
313 		gba.gba_npins = pin;
314 		config_found_ia(self, "gpiobus", &gba, epgpiobus_print);
315 	}
316 #endif
317 
318 	/* attach device */
319 	config_search_ia(epgpio_search, self, "epgpio", epgpio_print);
320 }
321 
322 #if NGPIO > 0
323 static int
324 epgpiobus_print(void *aux, const char *name)
325 {
326 	struct gpiobus_attach_args *gba = aux;
327 	struct port_info *pi = (struct port_info *)gba->gba_gc->gp_cookie;
328 
329 	gpiobus_print(aux, name);
330 	aprint_normal(": port %c", pi->unit+'A');
331 
332 	return (UNCONF);
333 }
334 #endif
335 
336 
337 static int
338 epgpio_search(struct device *parent, struct cfdata *cf,
339 	      const int *ldesc, void *aux)
340 {
341 	struct epgpio_softc *sc = (struct epgpio_softc*)parent;
342 	struct epgpio_attach_args ga;
343 
344 	ga.ga_gc = sc;
345 	ga.ga_iot = sc->sc_iot;
346 	ga.ga_port = cf->cf_loc[EPGPIOCF_PORT];
347 	ga.ga_bit1 = cf->cf_loc[EPGPIOCF_BIT1];
348 	ga.ga_bit2 = cf->cf_loc[EPGPIOCF_BIT2];
349 
350 	if (config_match(parent, cf, &ga) > 0)
351 		config_attach(parent, cf, &ga, epgpio_print);
352 
353 	return 0;
354 }
355 
356 static int
357 epgpio_print(void *aux, const char *name)
358 {
359 	struct epgpio_attach_args *ga = (struct epgpio_attach_args*)aux;
360 	struct epgpio_softc *sc = (struct epgpio_softc*)ga->ga_gc;
361 
362 	aprint_normal(":");
363 	if (ga->ga_port > -1)
364 		aprint_normal(" port %c", sc->sc_port[ga->ga_port].unit+'A');
365 	if (ga->ga_bit1 > -1)
366 		aprint_normal(" bit1 %d", ga->ga_bit1);
367 	if (ga->ga_bit2 > -1)
368 		aprint_normal(" bit2 %d", ga->ga_bit2);
369 
370 	return (UNCONF);
371 }
372 
373 int
374 epgpio_read(struct epgpio_softc *sc, epgpio_port port, int bit)
375 {
376 	struct port_info *pi = &sc->sc_port[port];
377 
378 #if NGPIO > 0
379 	pi->pins[bit].pin_caps = 0;
380 #endif
381 	return (bus_space_read_4(sc->sc_iot, sc->sc_ioh, pi->pxdr) >> bit) & 1;
382 }
383 
384 void
385 epgpio_set(struct epgpio_softc *sc, epgpio_port port, int bit)
386 {
387 	struct port_info *pi = &sc->sc_port[port];
388 
389 #if NGPIO > 0
390 	pi->pins[bit].pin_caps = 0;
391 #endif
392 	epgpio_bit_set(sc, pi->pxdr, bit);
393 }
394 
395 void
396 epgpio_clear(struct epgpio_softc *sc, epgpio_port port, int bit)
397 {
398 	struct port_info *pi = &sc->sc_port[port];
399 
400 #if NGPIO > 0
401 	pi->pins[bit].pin_caps = 0;
402 #endif
403 	epgpio_bit_clear(sc, pi->pxdr, bit);
404 }
405 
406 void
407 epgpio_in(struct epgpio_softc *sc, epgpio_port port, int bit)
408 {
409 	struct port_info *pi = &sc->sc_port[port];
410 
411 #if NGPIO > 0
412 	pi->pins[bit].pin_caps = 0;
413 #endif
414 	epgpio_bit_clear(sc, pi->pxddr, bit);
415 }
416 
417 void
418 epgpio_out(struct epgpio_softc *sc, epgpio_port port, int bit)
419 {
420 	struct port_info *pi = &sc->sc_port[port];
421 
422 #if NGPIO > 0
423 	pi->pins[bit].pin_caps = 0;
424 #endif
425 	epgpio_bit_set(sc, pi->pxddr, bit);
426 }
427 
428 void *
429 epgpio_intr_establish(struct epgpio_softc *sc, epgpio_port port, int bit,
430 		      int flag, int ipl, int (*ireq_func)(void *), void *arg) {
431 	struct port_info *pi;
432 	struct intr_req *intq;
433 
434 	DPRINTFN(1, ("epgpio_intr_establish: port=%d, bit=%d, flag=%#x\n",port,bit,flag));
435 
436 	if (bit < 0 || bit >= EPGPIO_NPINS)
437 		return 0;
438 
439 	switch (port) {
440 	case PORT_A:
441 	case PORT_B:
442 		intq = &sc->sc_ireq_combine;
443 		break;
444 	case PORT_F:
445 		intq = &sc->sc_ireq_f[bit];
446 		break;
447 	default:
448 		return 0;
449 	};
450 
451 	if (intq->ireq_func)
452 		return 0;	/* already used */
453 
454 	intq->ireq_func = ireq_func;
455 	intq->ireq_arg = arg;
456 
457 	pi = &sc->sc_port[port];
458 	epgpio_bit_clear(sc, pi->xinten, bit);
459 	epgpio_in(sc, port, bit);
460 #if NGPIO > 0
461 	pi->pins[bit].pin_caps = 0;
462 #endif
463 
464 	if (flag & EDGE_TRIGGER)
465 		epgpio_bit_set(sc, pi->xinttype1, bit);
466 	else	/* LEVEL_SENSE */
467 		epgpio_bit_clear(sc, pi->xinttype1, bit);
468 	if (flag & RISING_EDGE)	/* or HIGH_LEVEL */
469 		epgpio_bit_set(sc, pi->xinttype2, bit);
470 	else	/* FALLING_EDGE or LOW_LEVEL */
471 		epgpio_bit_clear(sc, pi->xinttype2, bit);
472 	if (flag & DEBOUNCE)
473 		epgpio_bit_set(sc, pi->xdb, bit);
474 	else
475 		epgpio_bit_clear(sc, pi->xdb, bit);
476 
477 	if (!intq->cookie)
478 		intq->cookie = ep93xx_intr_establish(intq->irq, ipl,
479 						     intq->ih_func, pi);
480 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, pi->xeoi, 1 << bit);
481 	epgpio_bit_set(sc, pi->xinten, bit);
482 	return intq->cookie;
483 }
484 
485 void
486 epgpio_intr_disestablish(struct epgpio_softc *sc, epgpio_port port, int bit)
487 {
488 	struct port_info *pi;
489 	struct intr_req *intq;
490 
491 	DPRINTFN(1, ("epgpio_intr_disestablish: port=%d, bit=%d\n",port,bit));
492 
493 	if (bit < 0 || bit >= EPGPIO_NPINS)
494 		return;
495 
496 	switch (port) {
497 	case PORT_A:
498 	case PORT_B:
499 		intq = &sc->sc_ireq_combine;
500 		break;
501 	case PORT_F:
502 		intq = &sc->sc_ireq_f[bit];
503 		break;
504 	default:
505 		return;
506 	};
507 
508 	if (!intq->ireq_func)
509 		return;
510 
511 	pi = &sc->sc_port[port];
512 	epgpio_bit_clear(sc, pi->xinten, bit);
513 	intq->ireq_func = 0;
514 	intq->ireq_arg = 0;
515 	ep93xx_intr_disestablish(intq->cookie);
516 	intq->cookie = 0;
517 }
518 
519 static int
520 epgpio_intr_combine(void *arg)
521 {
522 	struct port_info *pi = arg;
523 	struct epgpio_softc *sc = pi->sc;
524 	struct intr_req *intq = &sc->sc_ireq_combine;
525 	int err = 0;
526 
527 	DPRINTFN(1, ("epgpio_intr_combine\n"));
528 
529 	if (intq->ireq_func)
530 		err = (*intq->ireq_func)(intq->ireq_arg);
531 	epgpio_bit_set(sc, pi->xeoi, 0xff);
532 	return err;
533 }
534 
535 static int
536 epgpio_intr_f(void *arg, int bit)
537 {
538 	struct port_info *pi = arg;
539 	struct epgpio_softc *sc = pi->sc;
540 	struct intr_req *intq = &sc->sc_ireq_f[bit];
541 	int err = 0;
542 
543 	DPRINTFN(1, ("epgpio_intr_%d\n", bit));
544 
545 	if (intq->ireq_func)
546 		err = (*intq->ireq_func)(intq->ireq_arg);
547 	epgpio_bit_set(sc, pi->xeoi, bit);
548 	return err;
549 }
550 
551 static int
552 epgpio_intr_0(void *arg)
553 {
554 	return epgpio_intr_f(arg, 0);
555 }
556 
557 static int
558 epgpio_intr_1(void *arg)
559 {
560 	return epgpio_intr_f(arg, 1);
561 }
562 
563 static int
564 epgpio_intr_2(void *arg)
565 {
566 	return epgpio_intr_f(arg, 2);
567 }
568 
569 static int
570 epgpio_intr_3(void *arg)
571 {
572 	return epgpio_intr_f(arg, 3);
573 }
574 
575 static int
576 epgpio_intr_4(void *arg)
577 {
578 	return epgpio_intr_f(arg, 4);
579 }
580 
581 static int
582 epgpio_intr_5(void *arg)
583 {
584 	return epgpio_intr_f(arg, 5);
585 }
586 
587 static int
588 epgpio_intr_6(void *arg)
589 {
590 	return epgpio_intr_f(arg, 6);
591 }
592 
593 static int
594 epgpio_intr_7(void *arg)
595 {
596 	return epgpio_intr_f(arg, 7);
597 }
598 
599 #if NGPIO > 0
600 static int
601 epgpio_pin_read(void *arg, int pin)
602 {
603 	struct port_info *pi = arg;
604 	struct epgpio_softc *sc = pi->sc;
605 
606 	pin %= pi->gpio_npins;
607 	if (!pi->pins[pin].pin_caps)
608 		return 0; /* EBUSY? */
609 
610 	return (bus_space_read_4(sc->sc_iot, sc->sc_ioh,
611 				 pi->pxdr) >> pi->pins[pin].pin_num) & 1;
612 }
613 
614 static void
615 epgpio_pin_write(void *arg, int pin, int val)
616 {
617 	struct port_info *pi = arg;
618 	struct epgpio_softc *sc = pi->sc;
619 
620 	pin %= pi->gpio_npins;
621 	if (!pi->pins[pin].pin_caps)
622 		return;
623 
624 	if (val)
625 		epgpio_bit_set(sc, pi->pxdr, pi->pins[pin].pin_num);
626 	else
627 		epgpio_bit_clear(sc, pi->pxdr, pi->pins[pin].pin_num);
628 }
629 
630 static void
631 epgpio_pin_ctl(void *arg, int pin, int flags)
632 {
633 	struct port_info *pi = arg;
634 	struct epgpio_softc *sc = pi->sc;
635 
636 	pin %= pi->gpio_npins;
637 	if (!pi->pins[pin].pin_caps)
638 		return;
639 
640 	if (flags & GPIO_PIN_INPUT)
641 		epgpio_bit_clear(sc, pi->pxddr, pi->pins[pin].pin_num);
642 	else if (flags & GPIO_PIN_OUTPUT)
643 		epgpio_bit_set(sc, pi->pxddr, pi->pins[pin].pin_num);
644 }
645 #endif
646 
647 static void
648 epgpio_bit_set(struct epgpio_softc *sc, bus_size_t reg, int bit)
649 {
650 	int t = bus_space_read_4(sc->sc_iot, sc->sc_ioh, reg) & 0xff;
651 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, reg, t | (1 << bit));
652 }
653 
654 static void
655 epgpio_bit_clear(struct epgpio_softc *sc, bus_size_t reg, int bit)
656 {
657 	int t = bus_space_read_4(sc->sc_iot, sc->sc_ioh, reg) & 0xff;
658 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, reg, t & ~(1 << bit));
659 }
660