Home | History | Annotate | Line # | Download | only in hpc
button.c revision 1.12.38.1
      1  1.12.38.1    bouyer /*	$NetBSD: button.c,v 1.12.38.1 2007/10/25 22:37:22 bouyer Exp $	*/
      2        1.1  takemura 
      3        1.1  takemura /*-
      4        1.2  takemura  * Copyright (c) 1999-2001
      5        1.2  takemura  *         TAKEMURA Shin1 and PocketBSD Project. All rights reserved.
      6        1.1  takemura  *
      7        1.1  takemura  * Redistribution and use in source and binary forms, with or without
      8        1.1  takemura  * modification, are permitted provided that the following conditions
      9        1.1  takemura  * are met:
     10        1.1  takemura  * 1. Redistributions of source code must retain the above copyright
     11        1.1  takemura  *    notice, this list of conditions and the following disclaimer.
     12        1.1  takemura  * 2. Redistributions in binary form must reproduce the above copyright
     13        1.1  takemura  *    notice, this list of conditions and the following disclaimer in the
     14        1.1  takemura  *    documentation and/or other materials provided with the distribution.
     15        1.1  takemura  * 3. All advertising materials mentioning features or use of this software
     16        1.1  takemura  *    must display the following acknowledgement:
     17        1.1  takemura  *	This product includes software developed by the PocketBSD project
     18        1.1  takemura  *	and its contributors.
     19        1.1  takemura  * 4. Neither the name of the project nor the names of its contributors
     20        1.1  takemura  *    may be used to endorse or promote products derived from this software
     21        1.1  takemura  *    without specific prior written permission.
     22        1.1  takemura  *
     23        1.1  takemura  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24        1.1  takemura  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25        1.1  takemura  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26        1.1  takemura  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27        1.1  takemura  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28        1.1  takemura  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29        1.1  takemura  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30        1.1  takemura  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31        1.1  takemura  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32        1.1  takemura  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33        1.1  takemura  * SUCH DAMAGE.
     34        1.1  takemura  *
     35        1.1  takemura  */
     36        1.5     lukem 
     37        1.5     lukem #include <sys/cdefs.h>
     38  1.12.38.1    bouyer __KERNEL_RCSID(0, "$NetBSD: button.c,v 1.12.38.1 2007/10/25 22:37:22 bouyer Exp $");
     39        1.1  takemura 
     40        1.1  takemura #include <sys/param.h>
     41        1.1  takemura #include <sys/systm.h>
     42        1.1  takemura #include <sys/device.h>
     43        1.1  takemura 
     44  1.12.38.1    bouyer #include <sys/bus.h>
     45        1.1  takemura 
     46        1.1  takemura #include <machine/config_hook.h>
     47        1.1  takemura #include <machine/platid.h>
     48        1.1  takemura #include <machine/platid_mask.h>
     49        1.1  takemura 
     50        1.1  takemura #include <dev/hpc/hpciovar.h>
     51        1.1  takemura 
     52        1.1  takemura #include "locators.h"
     53        1.1  takemura 
     54        1.2  takemura struct button_softc {
     55        1.1  takemura 	struct device sc_dev;
     56        1.1  takemura 	hpcio_chip_t sc_hc;
     57        1.1  takemura 	hpcio_intr_handle_t sc_intr_handle;
     58        1.1  takemura 	int sc_port;
     59        1.1  takemura 	long sc_id;
     60        1.1  takemura 	int sc_active;
     61        1.1  takemura 	config_hook_tag sc_hook_tag;
     62        1.1  takemura 	config_hook_tag sc_ghook_tag;
     63        1.1  takemura };
     64        1.1  takemura 
     65        1.4       uch static int	button_match(struct device *, struct cfdata *, void *);
     66        1.4       uch static void	button_attach(struct device *, struct device *, void *);
     67        1.4       uch static int	button_intr(void *);
     68        1.4       uch static int	button_state(void *, int, long, void *);
     69        1.1  takemura 
     70        1.8   thorpej CFATTACH_DECL(button, sizeof(struct button_softc),
     71        1.9   thorpej     button_match, button_attach, NULL, NULL);
     72        1.1  takemura 
     73        1.1  takemura int
     74        1.4       uch button_match(struct device *parent, struct cfdata *match, void *aux)
     75        1.1  takemura {
     76        1.3  takemura 	struct hpcio_attach_args *haa = aux;
     77        1.1  takemura 	platid_mask_t mask;
     78        1.1  takemura 
     79        1.3  takemura 	if (strcmp(haa->haa_busname, HPCIO_BUSNAME))
     80        1.4       uch 		return (0);
     81        1.1  takemura 	if (match->cf_loc[HPCIOIFCF_PLATFORM] == 0)
     82        1.4       uch 		return (0);
     83        1.1  takemura 	mask = PLATID_DEREF(match->cf_loc[HPCIOIFCF_PLATFORM]);
     84        1.4       uch 	return (platid_match(&platid, &mask));
     85        1.1  takemura }
     86        1.1  takemura 
     87        1.1  takemura void
     88        1.4       uch button_attach(struct device *parent, struct device *self, void *aux)
     89        1.1  takemura {
     90        1.1  takemura 	struct hpcio_attach_args *haa = aux;
     91        1.1  takemura 	int *loc;
     92        1.2  takemura 	struct button_softc *sc = (void*)self;
     93        1.1  takemura 	int mode;
     94       1.10     perry 
     95       1.12   thorpej 	loc = device_cfdata(&sc->sc_dev)->cf_loc;
     96        1.2  takemura 	sc->sc_hc = (*haa->haa_getchip)(haa->haa_sc, loc[HPCIOIFCF_IOCHIP]);
     97        1.1  takemura 	sc->sc_port = loc[HPCIOIFCF_PORT];
     98        1.1  takemura 	sc->sc_id = loc[HPCIOIFCF_ID];
     99        1.1  takemura 	sc->sc_active = loc[HPCIOIFCF_ACTIVE];
    100        1.1  takemura 	printf(" port=%d id=%ld active=%s",
    101        1.4       uch 	    sc->sc_port, sc->sc_id, sc->sc_active ? "high" : "low");
    102        1.1  takemura 
    103        1.1  takemura 	mode = HPCIO_INTR_HOLD;
    104        1.1  takemura 	if (loc[HPCIOIFCF_LEVEL] != HPCIOIFCF_LEVEL_DEFAULT) {
    105        1.1  takemura 		mode |= HPCIO_INTR_LEVEL;
    106        1.1  takemura 		if (loc[HPCIOIFCF_LEVEL] == 0)
    107        1.1  takemura 			mode |= HPCIO_INTR_LOW;
    108        1.1  takemura 		else
    109        1.1  takemura 			mode |= HPCIO_INTR_HIGH;
    110        1.1  takemura 		printf(" sense=level");
    111        1.1  takemura 	} else {
    112        1.1  takemura 		mode |= HPCIO_INTR_EDGE;
    113        1.2  takemura 		switch (loc[HPCIOIFCF_EDGE]) {
    114        1.2  takemura 		case 1:
    115        1.2  takemura 			mode |= HPCIO_INTR_POSEDGE;
    116        1.2  takemura 			break;
    117        1.2  takemura 		case 2:
    118        1.2  takemura 			mode |= HPCIO_INTR_NEGEDGE;
    119        1.2  takemura 			break;
    120        1.2  takemura 		case 0:
    121        1.2  takemura 		case 3:
    122        1.2  takemura 		case HPCIOMANCF_EDGE_DEFAULT:
    123        1.2  takemura 			mode |= HPCIO_INTR_POSEDGE;
    124        1.2  takemura 			mode |= HPCIO_INTR_NEGEDGE;
    125        1.2  takemura 			break;
    126        1.2  takemura 		default:
    127        1.2  takemura 			printf("%s(%d): invalid configuration, edge=%d",
    128        1.2  takemura 			    __FILE__, __LINE__, loc[HPCIOIFCF_EDGE]);
    129        1.2  takemura 			break;
    130        1.2  takemura 		}
    131        1.1  takemura 		printf(" sense=edge");
    132        1.1  takemura 	}
    133        1.1  takemura 
    134        1.1  takemura 	if (sc->sc_port == HPCIOIFCF_PORT_DEFAULT ||
    135        1.1  takemura 	    sc->sc_id == HPCIOIFCF_ID_DEFAULT)
    136        1.1  takemura 		printf(" (ignored)");
    137        1.1  takemura 	else
    138        1.1  takemura 		sc->sc_intr_handle =
    139        1.1  takemura 		    hpcio_intr_establish(sc->sc_hc, sc->sc_port,
    140        1.4       uch 			mode, button_intr, sc);
    141        1.4       uch 	sc->sc_ghook_tag = config_hook(CONFIG_HOOK_GET, sc->sc_id,
    142       1.10     perry 	    CONFIG_HOOK_SHARE, button_state, sc);
    143        1.1  takemura 	printf("\n");
    144        1.1  takemura }
    145        1.1  takemura 
    146        1.1  takemura int
    147        1.4       uch button_state(void *ctx, int type, long id, void *msg)
    148        1.1  takemura {
    149        1.2  takemura 	struct button_softc *sc = ctx;
    150        1.1  takemura 
    151        1.1  takemura 	if (type != CONFIG_HOOK_GET || id != sc->sc_id)
    152        1.4       uch 		return (1);
    153        1.1  takemura 
    154        1.1  takemura 	if (CONFIG_HOOK_VALUEP(msg))
    155        1.4       uch 		return (1);
    156        1.1  takemura 
    157        1.1  takemura 	*(int*)msg = (hpcio_portread(sc->sc_hc, sc->sc_port) == sc->sc_active);
    158        1.4       uch 	return (0);
    159        1.1  takemura }
    160        1.1  takemura 
    161        1.1  takemura int
    162        1.4       uch button_intr(void *ctx)
    163        1.1  takemura {
    164        1.2  takemura 	struct button_softc *sc = ctx;
    165        1.1  takemura 	int on;
    166        1.1  takemura 
    167        1.1  takemura 	on = (hpcio_portread(sc->sc_hc, sc->sc_port) == sc->sc_active);
    168        1.1  takemura 
    169        1.1  takemura 	/* Clear interrupt */
    170        1.1  takemura 	hpcio_intr_clear(sc->sc_hc, sc->sc_intr_handle);
    171        1.1  takemura 
    172        1.1  takemura 	config_hook_call(CONFIG_HOOK_BUTTONEVENT, sc->sc_id, (void*)on);
    173        1.1  takemura 
    174        1.4       uch 	return (0);
    175        1.1  takemura }
    176