Home | History | Annotate | Line # | Download | only in g42xxeb
gb225.c revision 1.4.6.1
      1  1.4.6.1    simonb /*	$NetBSD: gb225.c,v 1.4.6.1 2006/04/22 11:37:23 simonb Exp $ */
      2      1.1       bsh 
      3      1.1       bsh /*
      4      1.1       bsh  * Copyright (c) 2002, 2003  Genetec corp.  All rights reserved.
      5      1.1       bsh  * Written by Hiroyuki Bessho for Genetec corp.
      6      1.1       bsh  *
      7      1.1       bsh  * Redistribution and use in source and binary forms, with or without
      8      1.1       bsh  * modification, are permitted provided that the following conditions
      9      1.1       bsh  * are met:
     10      1.1       bsh  * 1. Redistributions of source code must retain the above copyright
     11      1.1       bsh  *    notice, this list of conditions and the following disclaimer.
     12      1.1       bsh  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1       bsh  *    notice, this list of conditions and the following disclaimer in the
     14      1.1       bsh  *    documentation and/or other materials provided with the distribution.
     15      1.1       bsh  * 3. The name of Genetec corp. may not be used to endorse
     16      1.1       bsh  *    or promote products derived from this software without specific prior
     17      1.1       bsh  *    written permission.
     18      1.1       bsh  *
     19      1.1       bsh  * THIS SOFTWARE IS PROVIDED BY GENETEC CORP. ``AS IS'' AND
     20      1.1       bsh  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21      1.1       bsh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22      1.1       bsh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORP.
     23      1.1       bsh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24      1.1       bsh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25      1.1       bsh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26      1.1       bsh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27      1.1       bsh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28      1.1       bsh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29      1.1       bsh  * POSSIBILITY OF SUCH DAMAGE.
     30      1.1       bsh  */
     31      1.1       bsh 
     32      1.1       bsh 
     33      1.1       bsh #include <sys/param.h>
     34      1.1       bsh #include <sys/systm.h>
     35      1.1       bsh #include <sys/device.h>
     36      1.1       bsh #include <sys/kernel.h>
     37      1.1       bsh #include <sys/reboot.h>
     38      1.1       bsh 
     39      1.1       bsh #include <machine/cpu.h>
     40      1.1       bsh #include <machine/bus.h>
     41      1.1       bsh #include <machine/intr.h>
     42      1.1       bsh #include <arm/cpufunc.h>
     43      1.1       bsh 
     44      1.1       bsh #include <arm/mainbus/mainbus.h>
     45      1.1       bsh #include <arm/xscale/pxa2x0reg.h>
     46      1.1       bsh #include <arm/xscale/pxa2x0var.h>
     47      1.1       bsh #include <arm/xscale/pxa2x0_gpio.h>
     48      1.1       bsh #include <arm/sa11x0/sa11x0_var.h>
     49      1.1       bsh #include <evbarm/g42xxeb/g42xxeb_reg.h>
     50      1.1       bsh #include <evbarm/g42xxeb/g42xxeb_var.h>
     51      1.1       bsh #include <evbarm/g42xxeb/gb225reg.h>
     52      1.1       bsh #include <evbarm/g42xxeb/gb225var.h>
     53      1.1       bsh 
     54      1.1       bsh #include "locators.h"
     55      1.1       bsh 
     56      1.1       bsh #define OPIO_INTR	G42XXEB_INT_EXT3
     57      1.1       bsh 
     58      1.1       bsh 
     59      1.1       bsh #define DEBOUNCE_COUNT	2
     60      1.1       bsh #define DEBOUNCE_TICKS	(hz/20)			/* 50ms */
     61      1.1       bsh 
     62      1.1       bsh /* prototypes */
     63      1.1       bsh static int	opio_match(struct device *, struct cfdata *, void *);
     64      1.1       bsh static void	opio_attach(struct device *, struct device *, void *);
     65      1.2  drochner static int 	opio_search(struct device *, struct cfdata *,
     66      1.3  drochner 			    const int *, void *);
     67      1.1       bsh static int	opio_print(void *, const char *);
     68      1.1       bsh #ifdef OPIO_INTR
     69      1.1       bsh static int 	opio_intr( void *arg );
     70      1.1       bsh static void	opio_debounce(void *arg);
     71      1.1       bsh #endif
     72      1.1       bsh 
     73      1.1       bsh 
     74      1.1       bsh /* attach structures */
     75      1.1       bsh CFATTACH_DECL(opio, sizeof(struct opio_softc), opio_match, opio_attach,
     76      1.1       bsh     NULL, NULL);
     77      1.1       bsh 
     78      1.1       bsh /*
     79      1.1       bsh  * int opio_print(void *aux, const char *name)
     80      1.1       bsh  * print configuration info for children
     81      1.1       bsh  */
     82      1.1       bsh 
     83      1.1       bsh static int
     84      1.1       bsh opio_print(void *aux, const char *name)
     85      1.1       bsh {
     86      1.1       bsh 	struct obio_attach_args *oba = (struct obio_attach_args*)aux;
     87      1.1       bsh 
     88      1.1       bsh 	if (oba->oba_addr != OPIOCF_ADDR_DEFAULT)
     89      1.1       bsh                 aprint_normal(" addr 0x%lx", oba->oba_addr);
     90      1.1       bsh         return (UNCONF);
     91      1.1       bsh }
     92      1.1       bsh 
     93      1.1       bsh int
     94      1.1       bsh opio_match(struct device *parent, struct cfdata *match, void *aux)
     95      1.1       bsh {
     96      1.1       bsh 	struct obio_softc *psc = (struct obio_softc *)parent;
     97      1.1       bsh 	uint16_t optid;
     98      1.1       bsh 
     99      1.1       bsh 	optid = bus_space_read_2(psc->sc_iot, psc->sc_obioreg_ioh,
    100      1.1       bsh 	    G42XXEB_OPTBRDID);
    101      1.1       bsh 
    102      1.1       bsh 	return optid == 0x01;
    103      1.1       bsh }
    104      1.1       bsh 
    105      1.1       bsh void
    106      1.1       bsh opio_attach(struct device *parent, struct device *self, void *aux)
    107      1.1       bsh {
    108      1.1       bsh 	struct opio_softc *sc = (struct opio_softc*)self;
    109      1.1       bsh 	struct obio_softc *bsc = (struct obio_softc *)parent;
    110      1.1       bsh 	struct obio_attach_args *oba = aux;
    111      1.1       bsh 	uint32_t reg;
    112      1.1       bsh 	int i;
    113      1.1       bsh 	bus_space_tag_t iot;
    114      1.1       bsh 	bus_space_handle_t  memctl_ioh = bsc->sc_memctl_ioh;
    115      1.1       bsh 
    116      1.1       bsh 	iot = oba->oba_iot;
    117      1.1       bsh 	sc->sc_iot = iot;
    118      1.1       bsh 	sc->sc_memctl_ioh = memctl_ioh;
    119      1.1       bsh 
    120      1.1       bsh 	/* use 16bit access for CS4, 32bit for CS5 */
    121      1.1       bsh 	reg = bus_space_read_4(iot, memctl_ioh, MEMCTL_MSC2);
    122      1.1       bsh 	reg |= MSC_RBW;
    123      1.1       bsh 	reg &= ~(MSC_RBW<<16);
    124      1.1       bsh 	/* XXX: set access timing */
    125      1.1       bsh 	bus_space_write_4(iot, memctl_ioh, MEMCTL_MSC2, reg);
    126      1.1       bsh 
    127      1.1       bsh 	/* Set alternative function for GPIO pings 48..57 on PXA2X0 */
    128      1.1       bsh #if 0
    129      1.1       bsh 	reg = bus_space_read_4(iot, csc->saip.sc_gpioh, GPIO_GPDR1);
    130      1.1       bsh 	bus_space_write_4(iot, csc->saip.sc_gpioh, GPIO_GPDR1,
    131      1.1       bsh 	    (reg & ~0x03ff0000) | 0x00ff0000);
    132      1.1       bsh 	reg = bus_space_read_4(iot, csc->saip.sc_gpioh, GPIO_GAFR1_U);
    133      1.1       bsh 	bus_space_write_4(iot, csc->saip.sc_gpioh, GPIO_GAFR1_U,
    134      1.1       bsh 	    (reg & ~0x000fffff) | 0x0005aaaa );
    135      1.1       bsh #else
    136      1.1       bsh 	for (i=47; i <= 55; ++i)
    137      1.1       bsh 		pxa2x0_gpio_set_function(i, GPIO_ALT_FN_2_OUT);
    138      1.1       bsh 	pxa2x0_gpio_set_function(56, GPIO_ALT_FN_1_IN);
    139      1.1       bsh 	pxa2x0_gpio_set_function(57, GPIO_ALT_FN_1_IN);
    140      1.1       bsh #endif
    141      1.1       bsh 
    142      1.1       bsh 	/* Enable bus switch for option board */
    143      1.1       bsh 	reg = bus_space_read_2(iot, bsc->sc_obioreg_ioh, G42XXEB_EXTCTRL);
    144      1.1       bsh 	bus_space_write_2(iot, bsc->sc_obioreg_ioh, G42XXEB_EXTCTRL, reg | 3);
    145      1.1       bsh 
    146      1.1       bsh 	/* Map on-board FPGA registers */
    147      1.1       bsh 	if( bus_space_map( iot, GB225_PLDREG_BASE, GB225_PLDREG_SIZE,
    148      1.1       bsh 	    0, &(sc->sc_ioh) ) ){
    149      1.1       bsh 		aprint_error("%s: can't map FPGA registers\n", self->dv_xname);
    150      1.1       bsh 	}
    151      1.1       bsh 
    152      1.1       bsh 	aprint_normal("\n");
    153      1.1       bsh 
    154      1.1       bsh 	callout_init(&sc->sc_callout);
    155      1.1       bsh 
    156      1.1       bsh 	for (i=0; i < N_OPIO_INTR; ++i) {
    157      1.1       bsh 		sc->sc_intr[i].func = NULL;
    158      1.1       bsh 		sc->sc_intr[i].reported_state = 0xff;
    159      1.1       bsh 		sc->sc_intr[i].last_state = 0xff;
    160      1.1       bsh 	}
    161      1.1       bsh 
    162      1.1       bsh #ifdef OPIO_INTR
    163      1.1       bsh 	sc->sc_ih = obio_intr_establish(bsc, OPIO_INTR, IPL_BIO,
    164      1.1       bsh 	    IST_EDGE_FALLING, opio_intr, sc);
    165      1.1       bsh #endif
    166      1.1       bsh 
    167      1.1       bsh #ifdef DEBUG
    168      1.1       bsh 	printf("%s: CF_DET=%x PCMCIA_DET=%x\n",
    169      1.1       bsh 	    self->dv_xname,
    170      1.1       bsh 	    bus_space_read_1(sc->sc_iot, sc->sc_ioh, GB225_CFDET),
    171      1.1       bsh 	    bus_space_read_1(sc->sc_iot, sc->sc_ioh, GB225_PCMCIADET));
    172      1.1       bsh #endif
    173      1.1       bsh 
    174      1.1       bsh 	/*
    175      1.1       bsh 	 *  Attach each devices
    176      1.1       bsh 	 */
    177      1.2  drochner 	config_search_ia(opio_search, self, "opio", NULL);
    178      1.1       bsh }
    179      1.1       bsh 
    180      1.1       bsh int
    181      1.2  drochner opio_search(struct device *parent, struct cfdata *cf,
    182      1.3  drochner 	    const int *ldesc, void *aux)
    183      1.1       bsh {
    184      1.1       bsh 	struct opio_softc *sc = (struct opio_softc *)parent;
    185      1.1       bsh 	struct obio_attach_args oba;
    186      1.1       bsh 
    187      1.1       bsh 	oba.oba_sc = sc;
    188      1.1       bsh         oba.oba_iot = sc->sc_iot;
    189      1.2  drochner         oba.oba_addr = cf->cf_loc[OPIOCF_ADDR];
    190      1.2  drochner         oba.oba_intr = cf->cf_loc[OPIOCF_INTR];
    191      1.1       bsh 
    192      1.1       bsh         if (config_match(parent, cf, &oba) > 0)
    193      1.1       bsh                 config_attach(parent, cf, &oba, opio_print);
    194      1.1       bsh 
    195      1.1       bsh         return 0;
    196      1.1       bsh }
    197      1.1       bsh 
    198      1.1       bsh void *
    199      1.1       bsh opio_intr_establish(struct opio_softc *sc, int intr, int ipl,
    200      1.1       bsh     int (*func)(void *, int), void *arg)
    201      1.1       bsh {
    202      1.1       bsh 	sc->sc_intr[intr].arg = arg;
    203      1.1       bsh 	sc->sc_intr[intr].func = func;
    204      1.1       bsh 
    205      1.1       bsh 	return &sc->sc_intr[intr];
    206      1.1       bsh }
    207      1.1       bsh 
    208      1.1       bsh 
    209      1.1       bsh #ifdef OPIO_INTR
    210      1.1       bsh /*
    211      1.1       bsh  * interrupt handler for option board. interrupt sources are:
    212      1.1       bsh  *   CF card insertion/removal.
    213      1.1       bsh  *   PCMCIA card insertion/removal.
    214      1.1       bsh  *   USB power failure.
    215      1.1       bsh  *   CF/PCMCIA power failure.
    216      1.1       bsh  * We need to debounce for CF/PCMCIA card insertion/removal signal.
    217      1.1       bsh  */
    218      1.1       bsh static int
    219      1.1       bsh opio_intr( void *arg )
    220      1.1       bsh {
    221      1.1       bsh 	struct opio_softc *sc = (struct opio_softc *)arg;
    222  1.4.6.1    simonb 	struct obio_softc *bsc =
    223  1.4.6.1    simonb 	    (struct obio_softc *)device_parent(&sc->sc_dev);
    224      1.1       bsh 
    225      1.1       bsh 	/* avoid further interrupts while debouncing */
    226      1.1       bsh 	obio_intr_mask(bsc, sc->sc_ih);
    227      1.1       bsh 
    228      1.1       bsh 	printf("OPIO ");
    229      1.1       bsh 
    230      1.1       bsh 	if (sc->sc_debounce == ST_STABLE) {
    231      1.1       bsh 		/* start debounce timer */
    232      1.1       bsh 		callout_reset(&sc->sc_callout, DEBOUNCE_TICKS,
    233      1.1       bsh 		    opio_debounce, sc);
    234      1.1       bsh 		sc->sc_debounce = ST_BOUNCING;
    235      1.1       bsh 	}
    236      1.1       bsh 
    237      1.1       bsh 	return 1;
    238      1.1       bsh }
    239      1.1       bsh 
    240      1.1       bsh 
    241      1.1       bsh static int
    242      1.1       bsh do_debounce(struct opio_softc *sc, int intr, int val, int count)
    243      1.1       bsh {
    244      1.1       bsh 	int s;
    245      1.1       bsh 
    246      1.1       bsh 
    247      1.1       bsh 	struct opio_intr_handler *p = &sc->sc_intr[intr];
    248      1.1       bsh 
    249      1.1       bsh 	if (p->last_state != val) {
    250      1.1       bsh 		p->debounce_count = 0;
    251      1.1       bsh 		p->last_state = val;
    252      1.1       bsh 		return 1;
    253      1.1       bsh 	}
    254      1.1       bsh 	else if (p->debounce_count++ < count)
    255      1.1       bsh 		return 1;
    256      1.1       bsh 	else {
    257      1.1       bsh 		/* debounce done. if status has changed, report it */
    258      1.1       bsh 		if (p->reported_state != val) {
    259      1.1       bsh 			p->reported_state = val;
    260      1.1       bsh 			if (p->func) {
    261      1.1       bsh 				s = _splraise(p->level);
    262      1.1       bsh 				p->func(p->arg, val);
    263      1.1       bsh 				splx(s);
    264      1.1       bsh 			}
    265      1.1       bsh 		}
    266      1.1       bsh 		return 0;
    267      1.1       bsh 	}
    268      1.1       bsh 	/*NOTREACHED*/
    269      1.1       bsh }
    270      1.1       bsh 
    271      1.1       bsh static void
    272      1.1       bsh opio_debounce(void *arg)
    273      1.1       bsh {
    274      1.1       bsh 	struct opio_softc *sc = arg;
    275  1.4.6.1    simonb 	struct obio_softc *osc =
    276  1.4.6.1    simonb 	    (struct obio_softc *)device_parent(&sc->sc_dev);
    277      1.1       bsh 	bus_space_tag_t iot = sc->sc_iot;
    278      1.1       bsh 	bus_space_handle_t ioh = sc->sc_ioh;
    279      1.1       bsh 	int flag = 0;
    280      1.1       bsh 	uint8_t reg;
    281      1.1       bsh 
    282      1.1       bsh 	reg = bus_space_read_1(iot, ioh, GB225_CFDET) & CARDDET_DET;
    283      1.1       bsh 	flag |= do_debounce(sc, OPIO_INTR_CF_INSERT, reg, DEBOUNCE_COUNT);
    284      1.1       bsh 
    285      1.1       bsh 	reg = bus_space_read_1(iot, ioh, GB225_PCMCIADET) & CARDDET_DET;
    286      1.1       bsh 	flag |= do_debounce(sc, OPIO_INTR_PCMCIA_INSERT, reg, DEBOUNCE_COUNT);
    287      1.1       bsh 
    288      1.1       bsh 	reg = bus_space_read_1(iot, ioh, GB225_DEVERROR);
    289      1.1       bsh 
    290      1.1       bsh 	flag |= do_debounce(sc, OPIO_INTR_USB_POWER, reg & DEVERROR_USB, 1);
    291      1.1       bsh 
    292      1.1       bsh 	flag |= do_debounce(sc, OPIO_INTR_CARD_POWER, reg & DEVERROR_CARD, 1);
    293      1.1       bsh 
    294      1.1       bsh 
    295      1.1       bsh 	if (flag) {
    296      1.1       bsh 		/* start debounce timer */
    297      1.1       bsh 		callout_reset(&sc->sc_callout, DEBOUNCE_TICKS,
    298      1.1       bsh 		    opio_debounce, sc);
    299      1.1       bsh 	}
    300      1.1       bsh 	else {
    301      1.1       bsh 		sc->sc_debounce = ST_STABLE;
    302      1.1       bsh 		obio_intr_unmask(osc, sc->sc_ih);
    303      1.1       bsh 	}
    304      1.1       bsh }
    305      1.1       bsh #endif
    306