Home | History | Annotate | Line # | Download | only in ic
i82365.c revision 1.25.2.2
      1  1.25.2.2    bouyer /*	$NetBSD: i82365.c,v 1.25.2.2 2001/03/12 13:30:22 bouyer Exp $	*/
      2       1.2   thorpej 
      3       1.2   thorpej #define	PCICDEBUG
      4       1.2   thorpej 
      5       1.2   thorpej /*
      6  1.25.2.1    bouyer  * Copyright (c) 2000 Christian E. Hopps.  All rights reserved.
      7       1.2   thorpej  * Copyright (c) 1997 Marc Horowitz.  All rights reserved.
      8       1.2   thorpej  *
      9       1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     10       1.2   thorpej  * modification, are permitted provided that the following conditions
     11       1.2   thorpej  * are met:
     12       1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     13       1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     14       1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     16       1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     17       1.2   thorpej  * 3. All advertising materials mentioning features or use of this software
     18       1.2   thorpej  *    must display the following acknowledgement:
     19       1.2   thorpej  *	This product includes software developed by Marc Horowitz.
     20       1.2   thorpej  * 4. The name of the author may not be used to endorse or promote products
     21       1.2   thorpej  *    derived from this software without specific prior written permission.
     22       1.2   thorpej  *
     23       1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24       1.2   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25       1.2   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26       1.2   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27       1.2   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28       1.2   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29       1.2   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30       1.2   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31       1.2   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32       1.2   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33       1.2   thorpej  */
     34       1.2   thorpej 
     35       1.2   thorpej #include <sys/types.h>
     36       1.2   thorpej #include <sys/param.h>
     37       1.2   thorpej #include <sys/systm.h>
     38       1.2   thorpej #include <sys/device.h>
     39       1.2   thorpej #include <sys/extent.h>
     40      1.20   msaitoh #include <sys/kernel.h>
     41       1.2   thorpej #include <sys/malloc.h>
     42      1.14   thorpej #include <sys/kthread.h>
     43       1.2   thorpej 
     44       1.2   thorpej #include <machine/bus.h>
     45       1.2   thorpej #include <machine/intr.h>
     46       1.2   thorpej 
     47       1.2   thorpej #include <dev/pcmcia/pcmciareg.h>
     48       1.2   thorpej #include <dev/pcmcia/pcmciavar.h>
     49       1.2   thorpej 
     50       1.2   thorpej #include <dev/ic/i82365reg.h>
     51       1.2   thorpej #include <dev/ic/i82365var.h>
     52       1.2   thorpej 
     53       1.5     enami #include "locators.h"
     54       1.5     enami 
     55       1.2   thorpej #ifdef PCICDEBUG
     56       1.2   thorpej int	pcic_debug = 0;
     57       1.2   thorpej #define	DPRINTF(arg) if (pcic_debug) printf arg;
     58       1.2   thorpej #else
     59       1.2   thorpej #define	DPRINTF(arg)
     60       1.2   thorpej #endif
     61       1.2   thorpej 
     62       1.2   thorpej /*
     63       1.2   thorpej  * Individual drivers will allocate their own memory and io regions. Memory
     64       1.2   thorpej  * regions must be a multiple of 4k, aligned on a 4k boundary.
     65       1.2   thorpej  */
     66       1.2   thorpej 
     67       1.2   thorpej #define	PCIC_MEM_ALIGN	PCIC_MEM_PAGESIZE
     68       1.2   thorpej 
     69       1.2   thorpej void	pcic_attach_socket __P((struct pcic_handle *));
     70  1.25.2.1    bouyer void	pcic_attach_socket_finish __P((struct pcic_handle *));
     71       1.2   thorpej 
     72       1.2   thorpej int	pcic_submatch __P((struct device *, struct cfdata *, void *));
     73       1.2   thorpej int	pcic_print  __P((void *arg, const char *pnp));
     74       1.2   thorpej int	pcic_intr_socket __P((struct pcic_handle *));
     75  1.25.2.1    bouyer void	pcic_poll_intr __P((void *));
     76       1.2   thorpej 
     77       1.2   thorpej void	pcic_attach_card __P((struct pcic_handle *));
     78      1.15   thorpej void	pcic_detach_card __P((struct pcic_handle *, int));
     79      1.15   thorpej void	pcic_deactivate_card __P((struct pcic_handle *));
     80       1.2   thorpej 
     81       1.2   thorpej void	pcic_chip_do_mem_map __P((struct pcic_handle *, int));
     82       1.2   thorpej void	pcic_chip_do_io_map __P((struct pcic_handle *, int));
     83       1.2   thorpej 
     84      1.14   thorpej void	pcic_create_event_thread __P((void *));
     85      1.14   thorpej void	pcic_event_thread __P((void *));
     86      1.14   thorpej 
     87      1.14   thorpej void	pcic_queue_event __P((struct pcic_handle *, int));
     88  1.25.2.1    bouyer void	pcic_power __P((int, void *));
     89      1.14   thorpej 
     90       1.8      marc static void	pcic_wait_ready __P((struct pcic_handle *));
     91  1.25.2.1    bouyer static void	pcic_delay __P((struct pcic_handle *, int, const char *));
     92       1.8      marc 
     93      1.25      haya static u_int8_t st_pcic_read __P((struct pcic_handle *, int));
     94      1.25      haya static void st_pcic_write __P((struct pcic_handle *, int, u_int8_t));
     95      1.25      haya 
     96       1.2   thorpej int
     97       1.2   thorpej pcic_ident_ok(ident)
     98       1.2   thorpej 	int ident;
     99       1.2   thorpej {
    100       1.2   thorpej 	/* this is very empirical and heuristic */
    101       1.2   thorpej 
    102       1.2   thorpej 	if ((ident == 0) || (ident == 0xff) || (ident & PCIC_IDENT_ZERO))
    103       1.2   thorpej 		return (0);
    104       1.2   thorpej 
    105       1.2   thorpej 	if ((ident & PCIC_IDENT_IFTYPE_MASK) != PCIC_IDENT_IFTYPE_MEM_AND_IO) {
    106       1.2   thorpej #ifdef DIAGNOSTIC
    107       1.2   thorpej 		printf("pcic: does not support memory and I/O cards, "
    108       1.2   thorpej 		    "ignored (ident=%0x)\n", ident);
    109       1.2   thorpej #endif
    110       1.2   thorpej 		return (0);
    111       1.2   thorpej 	}
    112       1.2   thorpej 	return (1);
    113       1.2   thorpej }
    114       1.2   thorpej 
    115       1.2   thorpej int
    116       1.2   thorpej pcic_vendor(h)
    117       1.2   thorpej 	struct pcic_handle *h;
    118       1.2   thorpej {
    119       1.2   thorpej 	int reg;
    120       1.2   thorpej 
    121       1.2   thorpej 	/*
    122       1.2   thorpej 	 * the chip_id of the cirrus toggles between 11 and 00 after a write.
    123       1.2   thorpej 	 * weird.
    124       1.2   thorpej 	 */
    125       1.2   thorpej 
    126       1.2   thorpej 	pcic_write(h, PCIC_CIRRUS_CHIP_INFO, 0);
    127       1.2   thorpej 	reg = pcic_read(h, -1);
    128       1.2   thorpej 
    129       1.2   thorpej 	if ((reg & PCIC_CIRRUS_CHIP_INFO_CHIP_ID) ==
    130       1.2   thorpej 	    PCIC_CIRRUS_CHIP_INFO_CHIP_ID) {
    131       1.2   thorpej 		reg = pcic_read(h, -1);
    132       1.2   thorpej 		if ((reg & PCIC_CIRRUS_CHIP_INFO_CHIP_ID) == 0) {
    133       1.2   thorpej 			if (reg & PCIC_CIRRUS_CHIP_INFO_SLOTS)
    134       1.2   thorpej 				return (PCIC_VENDOR_CIRRUS_PD672X);
    135       1.2   thorpej 			else
    136       1.2   thorpej 				return (PCIC_VENDOR_CIRRUS_PD6710);
    137       1.2   thorpej 		}
    138       1.2   thorpej 	}
    139       1.2   thorpej 
    140       1.2   thorpej 	reg = pcic_read(h, PCIC_IDENT);
    141       1.2   thorpej 
    142       1.2   thorpej 	if ((reg & PCIC_IDENT_REV_MASK) == PCIC_IDENT_REV_I82365SLR0)
    143       1.2   thorpej 		return (PCIC_VENDOR_I82365SLR0);
    144       1.2   thorpej 	else
    145       1.2   thorpej 		return (PCIC_VENDOR_I82365SLR1);
    146       1.2   thorpej 
    147       1.2   thorpej 	return (PCIC_VENDOR_UNKNOWN);
    148       1.2   thorpej }
    149       1.2   thorpej 
    150       1.2   thorpej char *
    151       1.2   thorpej pcic_vendor_to_string(vendor)
    152       1.2   thorpej 	int vendor;
    153       1.2   thorpej {
    154       1.2   thorpej 	switch (vendor) {
    155       1.2   thorpej 	case PCIC_VENDOR_I82365SLR0:
    156       1.2   thorpej 		return ("Intel 82365SL Revision 0");
    157       1.2   thorpej 	case PCIC_VENDOR_I82365SLR1:
    158       1.2   thorpej 		return ("Intel 82365SL Revision 1");
    159       1.2   thorpej 	case PCIC_VENDOR_CIRRUS_PD6710:
    160       1.2   thorpej 		return ("Cirrus PD6710");
    161       1.2   thorpej 	case PCIC_VENDOR_CIRRUS_PD672X:
    162       1.2   thorpej 		return ("Cirrus PD672X");
    163       1.2   thorpej 	}
    164       1.2   thorpej 
    165       1.2   thorpej 	return ("Unknown controller");
    166       1.2   thorpej }
    167       1.2   thorpej 
    168       1.2   thorpej void
    169       1.2   thorpej pcic_attach(sc)
    170       1.2   thorpej 	struct pcic_softc *sc;
    171       1.2   thorpej {
    172  1.25.2.1    bouyer 	int i, reg, chip, socket, intr;
    173  1.25.2.1    bouyer 	struct pcic_handle *h;
    174       1.2   thorpej 
    175       1.2   thorpej 	DPRINTF(("pcic ident regs:"));
    176       1.2   thorpej 
    177  1.25.2.1    bouyer 	lockinit(&sc->sc_pcic_lock, PWAIT, "pciclk", 0, 0);
    178       1.2   thorpej 
    179  1.25.2.1    bouyer 	/* find and configure for the available sockets */
    180  1.25.2.1    bouyer 	for (i = 0; i < PCIC_NSLOTS; i++) {
    181  1.25.2.1    bouyer 		h = &sc->handle[i];
    182  1.25.2.1    bouyer 		chip = i / 2;
    183  1.25.2.1    bouyer 		socket = i % 2;
    184  1.25.2.1    bouyer 
    185  1.25.2.1    bouyer 		h->ph_parent = (struct device *)sc;
    186  1.25.2.1    bouyer 		h->chip = chip;
    187  1.25.2.1    bouyer 		h->sock = chip * PCIC_CHIP_OFFSET + socket * PCIC_SOCKET_OFFSET;
    188  1.25.2.1    bouyer 		h->laststate = PCIC_LASTSTATE_EMPTY;
    189  1.25.2.1    bouyer 		/* initialize pcic_read and pcic_write functions */
    190  1.25.2.1    bouyer 		h->ph_read = st_pcic_read;
    191  1.25.2.1    bouyer 		h->ph_write = st_pcic_write;
    192  1.25.2.1    bouyer 		h->ph_bus_t = sc->iot;
    193  1.25.2.1    bouyer 		h->ph_bus_h = sc->ioh;
    194  1.25.2.1    bouyer 
    195  1.25.2.1    bouyer 		/* need to read vendor -- for cirrus to report no xtra chip */
    196  1.25.2.1    bouyer 		if (socket == 0)
    197  1.25.2.1    bouyer 			h->vendor = (h+1)->vendor = pcic_vendor(h);
    198       1.2   thorpej 
    199  1.25.2.1    bouyer 		/*
    200  1.25.2.1    bouyer 		 * During the socket probe, read the ident register twice.
    201  1.25.2.1    bouyer 		 * I don't understand why, but sometimes the clone chips
    202  1.25.2.1    bouyer 		 * in hpcmips boxes read all-0s the first time. -- mycroft
    203  1.25.2.1    bouyer 		 */
    204  1.25.2.1    bouyer 		reg = pcic_read(h, PCIC_IDENT);
    205  1.25.2.1    bouyer 		reg = pcic_read(h, PCIC_IDENT);
    206  1.25.2.1    bouyer 		DPRINTF(("ident reg 0x%02x\n", reg));
    207  1.25.2.1    bouyer 		if (pcic_ident_ok(reg))
    208  1.25.2.1    bouyer 			h->flags = PCIC_FLAG_SOCKETP;
    209  1.25.2.1    bouyer 		else
    210  1.25.2.1    bouyer 			h->flags = 0;
    211       1.2   thorpej 	}
    212       1.2   thorpej 
    213  1.25.2.1    bouyer 	for (i = 0; i < PCIC_NSLOTS; i++) {
    214  1.25.2.1    bouyer 		h = &sc->handle[i];
    215       1.2   thorpej 
    216  1.25.2.1    bouyer 		if (h->flags & PCIC_FLAG_SOCKETP) {
    217  1.25.2.1    bouyer 			SIMPLEQ_INIT(&h->events);
    218       1.2   thorpej 
    219  1.25.2.1    bouyer 			/* disable interrupts -- for now */
    220  1.25.2.1    bouyer 			pcic_write(h, PCIC_CSC_INTR, 0);
    221  1.25.2.1    bouyer 			intr = pcic_read(h, PCIC_INTR);
    222  1.25.2.1    bouyer 			DPRINTF(("intr was 0x%02x\n", intr));
    223  1.25.2.1    bouyer 			intr &= ~(PCIC_INTR_RI_ENABLE | PCIC_INTR_ENABLE |
    224  1.25.2.1    bouyer 			    PCIC_INTR_IRQ_MASK);
    225  1.25.2.1    bouyer 			pcic_write(h, PCIC_INTR, intr);
    226  1.25.2.1    bouyer 			(void) pcic_read(h, PCIC_CSC);
    227       1.2   thorpej 		}
    228       1.2   thorpej 	}
    229       1.2   thorpej 
    230  1.25.2.1    bouyer 	/* print detected info */
    231  1.25.2.1    bouyer 	for (i = 0; i < PCIC_NSLOTS; i += 2) {
    232  1.25.2.1    bouyer 		h = &sc->handle[i];
    233  1.25.2.1    bouyer 		chip = i / 2;
    234       1.2   thorpej 
    235  1.25.2.1    bouyer 		printf("%s: controller %d (%s) has ", sc->dev.dv_xname, chip,
    236  1.25.2.1    bouyer 		    pcic_vendor_to_string(sc->handle[i].vendor));
    237       1.2   thorpej 
    238  1.25.2.1    bouyer 		if ((h->flags & PCIC_FLAG_SOCKETP) &&
    239  1.25.2.1    bouyer 		    ((h+1)->flags & PCIC_FLAG_SOCKETP))
    240       1.2   thorpej 			printf("sockets A and B\n");
    241  1.25.2.1    bouyer 		else if (h->flags & PCIC_FLAG_SOCKETP)
    242       1.2   thorpej 			printf("socket A only\n");
    243  1.25.2.1    bouyer 		else if ((h+1)->flags & PCIC_FLAG_SOCKETP)
    244       1.2   thorpej 			printf("socket B only\n");
    245       1.2   thorpej 		else
    246  1.25.2.1    bouyer 			printf("no sockets\n");
    247       1.2   thorpej 	}
    248       1.2   thorpej }
    249       1.2   thorpej 
    250  1.25.2.1    bouyer /*
    251  1.25.2.1    bouyer  * attach the sockets before we know what interrupts we have
    252  1.25.2.1    bouyer  */
    253       1.2   thorpej void
    254       1.2   thorpej pcic_attach_sockets(sc)
    255       1.2   thorpej 	struct pcic_softc *sc;
    256       1.2   thorpej {
    257       1.2   thorpej 	int i;
    258       1.2   thorpej 
    259       1.2   thorpej 	for (i = 0; i < PCIC_NSLOTS; i++)
    260       1.2   thorpej 		if (sc->handle[i].flags & PCIC_FLAG_SOCKETP)
    261       1.2   thorpej 			pcic_attach_socket(&sc->handle[i]);
    262       1.2   thorpej }
    263       1.2   thorpej 
    264       1.2   thorpej void
    265  1.25.2.1    bouyer pcic_power(why, arg)
    266  1.25.2.1    bouyer 	int why;
    267  1.25.2.1    bouyer 	void *arg;
    268  1.25.2.1    bouyer {
    269  1.25.2.1    bouyer 	struct pcic_handle *h = (struct pcic_handle *)arg;
    270  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
    271  1.25.2.1    bouyer 	int reg;
    272  1.25.2.1    bouyer 
    273  1.25.2.1    bouyer 	DPRINTF(("%s: power: why %d\n", h->ph_parent->dv_xname, why));
    274  1.25.2.1    bouyer 
    275  1.25.2.1    bouyer 	if (h->flags & PCIC_FLAG_SOCKETP) {
    276  1.25.2.1    bouyer 		if ((why == PWR_RESUME) &&
    277  1.25.2.1    bouyer 		    (pcic_read(h, PCIC_CSC_INTR) == 0)) {
    278  1.25.2.1    bouyer #ifdef PCICDEBUG
    279  1.25.2.1    bouyer 			char bitbuf[64];
    280  1.25.2.1    bouyer #endif
    281  1.25.2.1    bouyer 			reg = PCIC_CSC_INTR_CD_ENABLE;
    282  1.25.2.1    bouyer 			if (sc->irq != -1)
    283  1.25.2.1    bouyer 			    reg |= sc->irq << PCIC_CSC_INTR_IRQ_SHIFT;
    284  1.25.2.1    bouyer 			pcic_write(h, PCIC_CSC_INTR, reg);
    285  1.25.2.1    bouyer 			DPRINTF(("%s: CSC_INTR was zero; reset to %s\n",
    286  1.25.2.1    bouyer 			    sc->dev.dv_xname,
    287  1.25.2.1    bouyer 			    bitmask_snprintf(pcic_read(h, PCIC_CSC_INTR),
    288  1.25.2.1    bouyer 				PCIC_CSC_INTR_FORMAT,
    289  1.25.2.1    bouyer 				bitbuf, sizeof(bitbuf))));
    290  1.25.2.1    bouyer 		}
    291  1.25.2.1    bouyer 
    292  1.25.2.1    bouyer 		/*
    293  1.25.2.1    bouyer 		 * check for card insertion or removal during suspend period.
    294  1.25.2.1    bouyer 		 * XXX: the code can't cope with card swap (remove then insert).
    295  1.25.2.1    bouyer 		 * how can we detect such situation?
    296  1.25.2.1    bouyer 		 */
    297  1.25.2.1    bouyer 		if (why == PWR_RESUME)
    298  1.25.2.1    bouyer 			(void)pcic_intr_socket(h);
    299  1.25.2.1    bouyer 	}
    300  1.25.2.1    bouyer }
    301  1.25.2.1    bouyer 
    302  1.25.2.1    bouyer 
    303  1.25.2.1    bouyer /*
    304  1.25.2.1    bouyer  * attach a socket -- we don't know about irqs yet
    305  1.25.2.1    bouyer  */
    306  1.25.2.1    bouyer void
    307       1.2   thorpej pcic_attach_socket(h)
    308       1.2   thorpej 	struct pcic_handle *h;
    309       1.2   thorpej {
    310       1.2   thorpej 	struct pcmciabus_attach_args paa;
    311  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
    312       1.2   thorpej 
    313       1.2   thorpej 	/* initialize the rest of the handle */
    314       1.2   thorpej 
    315      1.14   thorpej 	h->shutdown = 0;
    316       1.2   thorpej 	h->memalloc = 0;
    317       1.2   thorpej 	h->ioalloc = 0;
    318       1.2   thorpej 	h->ih_irq = 0;
    319       1.2   thorpej 
    320       1.2   thorpej 	/* now, config one pcmcia device per socket */
    321       1.2   thorpej 
    322      1.25      haya 	paa.paa_busname = "pcmcia";
    323      1.25      haya 	paa.pct = (pcmcia_chipset_tag_t) sc->pct;
    324       1.2   thorpej 	paa.pch = (pcmcia_chipset_handle_t) h;
    325      1.25      haya 	paa.iobase = sc->iobase;
    326      1.25      haya 	paa.iosize = sc->iosize;
    327       1.2   thorpej 
    328  1.25.2.1    bouyer 	h->pcmcia = config_found_sm(&sc->dev, &paa, pcic_print, pcic_submatch);
    329  1.25.2.1    bouyer 	if (h->pcmcia == NULL) {
    330  1.25.2.1    bouyer 		h->flags &= ~PCIC_FLAG_SOCKETP;
    331  1.25.2.1    bouyer 		return;
    332  1.25.2.1    bouyer 	}
    333       1.2   thorpej 
    334  1.25.2.1    bouyer 	/*
    335  1.25.2.1    bouyer 	 * queue creation of a kernel thread to handle insert/removal events.
    336  1.25.2.1    bouyer 	 */
    337  1.25.2.1    bouyer #ifdef DIAGNOSTIC
    338  1.25.2.1    bouyer 	if (h->event_thread != NULL)
    339  1.25.2.1    bouyer 		panic("pcic_attach_socket: event thread");
    340  1.25.2.1    bouyer #endif
    341  1.25.2.1    bouyer 	config_pending_incr();
    342  1.25.2.1    bouyer 	kthread_create(pcic_create_event_thread, h);
    343  1.25.2.1    bouyer }
    344  1.25.2.1    bouyer 
    345  1.25.2.1    bouyer /*
    346  1.25.2.1    bouyer  * now finish attaching the sockets, we are ready to allocate
    347  1.25.2.1    bouyer  * interrupts
    348  1.25.2.1    bouyer  */
    349  1.25.2.1    bouyer void
    350  1.25.2.1    bouyer pcic_attach_sockets_finish(sc)
    351  1.25.2.1    bouyer 	struct pcic_softc *sc;
    352  1.25.2.1    bouyer {
    353  1.25.2.1    bouyer 	int i;
    354       1.2   thorpej 
    355  1.25.2.1    bouyer 	for (i = 0; i < PCIC_NSLOTS; i++)
    356  1.25.2.1    bouyer 		if (sc->handle[i].flags & PCIC_FLAG_SOCKETP)
    357  1.25.2.1    bouyer 			pcic_attach_socket_finish(&sc->handle[i]);
    358  1.25.2.1    bouyer }
    359  1.25.2.1    bouyer 
    360  1.25.2.1    bouyer /*
    361  1.25.2.1    bouyer  * finishing attaching the socket.  Interrupts may now be on
    362  1.25.2.1    bouyer  * if so expects the pcic interrupt to be blocked
    363  1.25.2.1    bouyer  */
    364  1.25.2.1    bouyer void
    365  1.25.2.1    bouyer pcic_attach_socket_finish(h)
    366  1.25.2.1    bouyer 	struct pcic_handle *h;
    367  1.25.2.1    bouyer {
    368  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
    369  1.25.2.1    bouyer 	int reg, intr;
    370  1.25.2.1    bouyer 
    371  1.25.2.1    bouyer 	DPRINTF(("%s: attach finish socket %ld\n", h->ph_parent->dv_xname,
    372  1.25.2.1    bouyer 	    (long) (h - &sc->handle[0])));
    373  1.25.2.1    bouyer 
    374  1.25.2.1    bouyer 	/*
    375  1.25.2.1    bouyer 	 * Set up a powerhook to ensure it continues to interrupt on
    376  1.25.2.1    bouyer 	 * card detect even after suspend.
    377  1.25.2.1    bouyer 	 * (this works around a bug seen in suspend-to-disk on the
    378  1.25.2.1    bouyer 	 * Sony VAIO Z505; on resume, the CSC_INTR state is not preserved).
    379  1.25.2.1    bouyer 	 */
    380  1.25.2.1    bouyer 	powerhook_establish(pcic_power, h);
    381  1.25.2.1    bouyer 
    382  1.25.2.1    bouyer 	/* enable interrupts on card detect, poll for them if no irq avail */
    383  1.25.2.1    bouyer 	reg = PCIC_CSC_INTR_CD_ENABLE;
    384  1.25.2.1    bouyer 	if (sc->irq == -1) {
    385  1.25.2.1    bouyer 		if (sc->poll_established == 0) {
    386  1.25.2.1    bouyer 			callout_init(&sc->poll_ch);
    387  1.25.2.1    bouyer 			callout_reset(&sc->poll_ch, hz / 2, pcic_poll_intr, sc);
    388  1.25.2.1    bouyer 			sc->poll_established = 1;
    389  1.25.2.1    bouyer 		}
    390  1.25.2.1    bouyer 	} else
    391  1.25.2.1    bouyer 		reg |= sc->irq << PCIC_CSC_INTR_IRQ_SHIFT;
    392  1.25.2.1    bouyer 	pcic_write(h, PCIC_CSC_INTR, reg);
    393  1.25.2.1    bouyer 
    394  1.25.2.1    bouyer 	/* steer above mgmt interrupt to configured place */
    395  1.25.2.1    bouyer 	intr = pcic_read(h, PCIC_INTR);
    396  1.25.2.1    bouyer 	intr &= ~(PCIC_INTR_IRQ_MASK | PCIC_INTR_ENABLE);
    397  1.25.2.1    bouyer 	pcic_write(h, PCIC_INTR, intr);
    398  1.25.2.1    bouyer 
    399  1.25.2.1    bouyer 	/* power down the socket */
    400  1.25.2.1    bouyer 	pcic_write(h, PCIC_PWRCTL, 0);
    401  1.25.2.1    bouyer 
    402  1.25.2.1    bouyer 	/* zero out the address windows */
    403  1.25.2.1    bouyer 	pcic_write(h, PCIC_ADDRWIN_ENABLE, 0);
    404  1.25.2.1    bouyer 
    405  1.25.2.1    bouyer 	/* clear possible card detect interrupt */
    406  1.25.2.1    bouyer 	pcic_read(h, PCIC_CSC);
    407  1.25.2.1    bouyer 
    408  1.25.2.1    bouyer 	DPRINTF(("%s: attach finish vendor 0x%02x\n", h->ph_parent->dv_xname,
    409  1.25.2.1    bouyer 	    h->vendor));
    410  1.25.2.1    bouyer 
    411  1.25.2.1    bouyer 	/* unsleep the cirrus controller */
    412  1.25.2.1    bouyer 	if ((h->vendor == PCIC_VENDOR_CIRRUS_PD6710) ||
    413  1.25.2.1    bouyer 	    (h->vendor == PCIC_VENDOR_CIRRUS_PD672X)) {
    414  1.25.2.1    bouyer 		reg = pcic_read(h, PCIC_CIRRUS_MISC_CTL_2);
    415  1.25.2.1    bouyer 		if (reg & PCIC_CIRRUS_MISC_CTL_2_SUSPEND) {
    416  1.25.2.1    bouyer 			DPRINTF(("%s: socket %02x was suspended\n",
    417  1.25.2.1    bouyer 			    h->ph_parent->dv_xname, h->sock));
    418  1.25.2.1    bouyer 			reg &= ~PCIC_CIRRUS_MISC_CTL_2_SUSPEND;
    419  1.25.2.1    bouyer 			pcic_write(h, PCIC_CIRRUS_MISC_CTL_2, reg);
    420  1.25.2.1    bouyer 		}
    421  1.25.2.1    bouyer 	}
    422  1.25.2.1    bouyer 
    423  1.25.2.1    bouyer 	/* if there's a card there, then attach it. */
    424  1.25.2.1    bouyer 	reg = pcic_read(h, PCIC_IF_STATUS);
    425  1.25.2.1    bouyer 	if ((reg & PCIC_IF_STATUS_CARDDETECT_MASK) ==
    426  1.25.2.1    bouyer 	    PCIC_IF_STATUS_CARDDETECT_PRESENT) {
    427  1.25.2.1    bouyer 		pcic_queue_event(h, PCIC_EVENT_INSERTION);
    428  1.25.2.1    bouyer 		h->laststate = PCIC_LASTSTATE_PRESENT;
    429  1.25.2.1    bouyer 	} else {
    430  1.25.2.1    bouyer 		h->laststate = PCIC_LASTSTATE_EMPTY;
    431  1.25.2.1    bouyer 	}
    432       1.2   thorpej }
    433       1.2   thorpej 
    434       1.2   thorpej void
    435      1.14   thorpej pcic_create_event_thread(arg)
    436      1.14   thorpej 	void *arg;
    437      1.14   thorpej {
    438      1.14   thorpej 	struct pcic_handle *h = arg;
    439      1.14   thorpej 	const char *cs;
    440      1.14   thorpej 
    441      1.14   thorpej 	switch (h->sock) {
    442      1.14   thorpej 	case C0SA:
    443      1.14   thorpej 		cs = "0,0";
    444      1.14   thorpej 		break;
    445      1.14   thorpej 	case C0SB:
    446      1.14   thorpej 		cs = "0,1";
    447      1.14   thorpej 		break;
    448      1.14   thorpej 	case C1SA:
    449      1.14   thorpej 		cs = "1,0";
    450      1.14   thorpej 		break;
    451      1.14   thorpej 	case C1SB:
    452      1.14   thorpej 		cs = "1,1";
    453      1.14   thorpej 		break;
    454      1.14   thorpej 	default:
    455      1.14   thorpej 		panic("pcic_create_event_thread: unknown pcic socket");
    456      1.14   thorpej 	}
    457      1.14   thorpej 
    458      1.24   thorpej 	if (kthread_create1(pcic_event_thread, h, &h->event_thread,
    459      1.25      haya 	    "%s,%s", h->ph_parent->dv_xname, cs)) {
    460      1.14   thorpej 		printf("%s: unable to create event thread for sock 0x%02x\n",
    461      1.25      haya 		    h->ph_parent->dv_xname, h->sock);
    462      1.14   thorpej 		panic("pcic_create_event_thread");
    463      1.14   thorpej 	}
    464      1.14   thorpej }
    465      1.14   thorpej 
    466      1.14   thorpej void
    467      1.14   thorpej pcic_event_thread(arg)
    468      1.14   thorpej 	void *arg;
    469      1.14   thorpej {
    470      1.14   thorpej 	struct pcic_handle *h = arg;
    471      1.14   thorpej 	struct pcic_event *pe;
    472  1.25.2.1    bouyer 	int s, first = 1;
    473  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
    474      1.14   thorpej 
    475      1.14   thorpej 	while (h->shutdown == 0) {
    476  1.25.2.1    bouyer 		/*
    477  1.25.2.1    bouyer 		 * Serialize event processing on the PCIC.  We may
    478  1.25.2.1    bouyer 		 * sleep while we hold this lock.
    479  1.25.2.1    bouyer 		 */
    480  1.25.2.1    bouyer 		(void) lockmgr(&sc->sc_pcic_lock, LK_EXCLUSIVE, NULL);
    481  1.25.2.1    bouyer 
    482      1.14   thorpej 		s = splhigh();
    483      1.14   thorpej 		if ((pe = SIMPLEQ_FIRST(&h->events)) == NULL) {
    484      1.14   thorpej 			splx(s);
    485  1.25.2.1    bouyer 			if (first) {
    486  1.25.2.1    bouyer 				first = 0;
    487  1.25.2.1    bouyer 				config_pending_decr();
    488  1.25.2.1    bouyer 			}
    489  1.25.2.1    bouyer 			/*
    490  1.25.2.1    bouyer 			 * No events to process; release the PCIC lock.
    491  1.25.2.1    bouyer 			 */
    492  1.25.2.1    bouyer 			(void) lockmgr(&sc->sc_pcic_lock, LK_RELEASE, NULL);
    493      1.14   thorpej 			(void) tsleep(&h->events, PWAIT, "pcicev", 0);
    494      1.14   thorpej 			continue;
    495      1.20   msaitoh 		} else {
    496      1.20   msaitoh 			splx(s);
    497      1.20   msaitoh 			/* sleep .25s to be enqueued chatterling interrupts */
    498  1.25.2.1    bouyer 			(void) tsleep((caddr_t)pcic_event_thread, PWAIT,
    499  1.25.2.1    bouyer 			    "pcicss", hz/4);
    500      1.14   thorpej 		}
    501      1.20   msaitoh 		s = splhigh();
    502      1.14   thorpej 		SIMPLEQ_REMOVE_HEAD(&h->events, pe, pe_q);
    503      1.14   thorpej 		splx(s);
    504      1.14   thorpej 
    505      1.14   thorpej 		switch (pe->pe_type) {
    506      1.14   thorpej 		case PCIC_EVENT_INSERTION:
    507      1.20   msaitoh 			s = splhigh();
    508      1.20   msaitoh 			while (1) {
    509      1.20   msaitoh 				struct pcic_event *pe1, *pe2;
    510      1.20   msaitoh 
    511      1.20   msaitoh 				if ((pe1 = SIMPLEQ_FIRST(&h->events)) == NULL)
    512      1.20   msaitoh 					break;
    513      1.20   msaitoh 				if (pe1->pe_type != PCIC_EVENT_REMOVAL)
    514      1.20   msaitoh 					break;
    515      1.20   msaitoh 				if ((pe2 = SIMPLEQ_NEXT(pe1, pe_q)) == NULL)
    516      1.20   msaitoh 					break;
    517      1.20   msaitoh 				if (pe2->pe_type == PCIC_EVENT_INSERTION) {
    518  1.25.2.1    bouyer 					SIMPLEQ_REMOVE_HEAD(&h->events, pe1,
    519  1.25.2.1    bouyer 					    pe_q);
    520      1.20   msaitoh 					free(pe1, M_TEMP);
    521  1.25.2.1    bouyer 					SIMPLEQ_REMOVE_HEAD(&h->events, pe2,
    522  1.25.2.1    bouyer 					    pe_q);
    523      1.20   msaitoh 					free(pe2, M_TEMP);
    524      1.20   msaitoh 				}
    525      1.20   msaitoh 			}
    526      1.20   msaitoh 			splx(s);
    527      1.20   msaitoh 
    528  1.25.2.1    bouyer 			DPRINTF(("%s: insertion event\n",
    529  1.25.2.1    bouyer 			    h->ph_parent->dv_xname));
    530      1.14   thorpej 			pcic_attach_card(h);
    531      1.14   thorpej 			break;
    532      1.14   thorpej 
    533      1.14   thorpej 		case PCIC_EVENT_REMOVAL:
    534      1.20   msaitoh 			s = splhigh();
    535      1.20   msaitoh 			while (1) {
    536      1.20   msaitoh 				struct pcic_event *pe1, *pe2;
    537      1.20   msaitoh 
    538      1.20   msaitoh 				if ((pe1 = SIMPLEQ_FIRST(&h->events)) == NULL)
    539      1.20   msaitoh 					break;
    540      1.20   msaitoh 				if (pe1->pe_type != PCIC_EVENT_INSERTION)
    541      1.20   msaitoh 					break;
    542      1.20   msaitoh 				if ((pe2 = SIMPLEQ_NEXT(pe1, pe_q)) == NULL)
    543      1.20   msaitoh 					break;
    544      1.20   msaitoh 				if (pe2->pe_type == PCIC_EVENT_REMOVAL) {
    545  1.25.2.1    bouyer 					SIMPLEQ_REMOVE_HEAD(&h->events, pe1,
    546  1.25.2.1    bouyer 					    pe_q);
    547      1.20   msaitoh 					free(pe1, M_TEMP);
    548  1.25.2.1    bouyer 					SIMPLEQ_REMOVE_HEAD(&h->events, pe2,
    549  1.25.2.1    bouyer 					    pe_q);
    550      1.20   msaitoh 					free(pe2, M_TEMP);
    551      1.20   msaitoh 				}
    552      1.20   msaitoh 			}
    553      1.20   msaitoh 			splx(s);
    554      1.20   msaitoh 
    555  1.25.2.1    bouyer 			DPRINTF(("%s: removal event\n",
    556  1.25.2.1    bouyer 			    h->ph_parent->dv_xname));
    557      1.15   thorpej 			pcic_detach_card(h, DETACH_FORCE);
    558      1.14   thorpej 			break;
    559      1.14   thorpej 
    560      1.14   thorpej 		default:
    561      1.14   thorpej 			panic("pcic_event_thread: unknown event %d",
    562      1.14   thorpej 			    pe->pe_type);
    563      1.14   thorpej 		}
    564      1.14   thorpej 		free(pe, M_TEMP);
    565  1.25.2.1    bouyer 
    566  1.25.2.1    bouyer 		(void) lockmgr(&sc->sc_pcic_lock, LK_RELEASE, NULL);
    567      1.14   thorpej 	}
    568      1.14   thorpej 
    569      1.14   thorpej 	h->event_thread = NULL;
    570      1.14   thorpej 
    571      1.14   thorpej 	/* In case parent is waiting for us to exit. */
    572      1.25      haya 	wakeup(sc);
    573      1.14   thorpej 
    574      1.14   thorpej 	kthread_exit(0);
    575      1.14   thorpej }
    576      1.14   thorpej 
    577       1.2   thorpej int
    578       1.2   thorpej pcic_submatch(parent, cf, aux)
    579       1.2   thorpej 	struct device *parent;
    580       1.2   thorpej 	struct cfdata *cf;
    581       1.2   thorpej 	void *aux;
    582       1.2   thorpej {
    583       1.2   thorpej 
    584       1.3     enami 	struct pcmciabus_attach_args *paa = aux;
    585       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) paa->pch;
    586       1.2   thorpej 
    587       1.2   thorpej 	switch (h->sock) {
    588       1.2   thorpej 	case C0SA:
    589      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_CONTROLLER] !=
    590      1.16   thorpej 		    PCMCIABUSCF_CONTROLLER_DEFAULT &&
    591      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_CONTROLLER] != 0)
    592       1.2   thorpej 			return 0;
    593      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_SOCKET] !=
    594      1.16   thorpej 		    PCMCIABUSCF_SOCKET_DEFAULT &&
    595      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_SOCKET] != 0)
    596       1.2   thorpej 			return 0;
    597       1.2   thorpej 
    598       1.2   thorpej 		break;
    599       1.2   thorpej 	case C0SB:
    600      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_CONTROLLER] !=
    601      1.16   thorpej 		    PCMCIABUSCF_CONTROLLER_DEFAULT &&
    602      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_CONTROLLER] != 0)
    603       1.2   thorpej 			return 0;
    604      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_SOCKET] !=
    605      1.16   thorpej 		    PCMCIABUSCF_SOCKET_DEFAULT &&
    606      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_SOCKET] != 1)
    607       1.2   thorpej 			return 0;
    608       1.2   thorpej 
    609       1.2   thorpej 		break;
    610       1.2   thorpej 	case C1SA:
    611      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_CONTROLLER] !=
    612      1.16   thorpej 		    PCMCIABUSCF_CONTROLLER_DEFAULT &&
    613      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_CONTROLLER] != 1)
    614       1.2   thorpej 			return 0;
    615      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_SOCKET] !=
    616      1.16   thorpej 		    PCMCIABUSCF_SOCKET_DEFAULT &&
    617      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_SOCKET] != 0)
    618       1.2   thorpej 			return 0;
    619       1.2   thorpej 
    620       1.2   thorpej 		break;
    621       1.2   thorpej 	case C1SB:
    622      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_CONTROLLER] !=
    623      1.16   thorpej 		    PCMCIABUSCF_CONTROLLER_DEFAULT &&
    624      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_CONTROLLER] != 1)
    625       1.2   thorpej 			return 0;
    626      1.16   thorpej 		if (cf->cf_loc[PCMCIABUSCF_SOCKET] !=
    627      1.16   thorpej 		    PCMCIABUSCF_SOCKET_DEFAULT &&
    628      1.16   thorpej 		    cf->cf_loc[PCMCIABUSCF_SOCKET] != 1)
    629       1.2   thorpej 			return 0;
    630       1.2   thorpej 
    631       1.2   thorpej 		break;
    632       1.2   thorpej 	default:
    633       1.2   thorpej 		panic("unknown pcic socket");
    634       1.2   thorpej 	}
    635       1.2   thorpej 
    636       1.2   thorpej 	return ((*cf->cf_attach->ca_match)(parent, cf, aux));
    637       1.2   thorpej }
    638       1.2   thorpej 
    639       1.2   thorpej int
    640       1.2   thorpej pcic_print(arg, pnp)
    641       1.2   thorpej 	void *arg;
    642       1.2   thorpej 	const char *pnp;
    643       1.2   thorpej {
    644       1.3     enami 	struct pcmciabus_attach_args *paa = arg;
    645       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) paa->pch;
    646       1.2   thorpej 
    647       1.2   thorpej 	/* Only "pcmcia"s can attach to "pcic"s... easy. */
    648       1.2   thorpej 	if (pnp)
    649       1.2   thorpej 		printf("pcmcia at %s", pnp);
    650       1.2   thorpej 
    651       1.2   thorpej 	switch (h->sock) {
    652       1.2   thorpej 	case C0SA:
    653       1.2   thorpej 		printf(" controller 0 socket 0");
    654       1.2   thorpej 		break;
    655       1.2   thorpej 	case C0SB:
    656       1.2   thorpej 		printf(" controller 0 socket 1");
    657       1.2   thorpej 		break;
    658       1.2   thorpej 	case C1SA:
    659       1.2   thorpej 		printf(" controller 1 socket 0");
    660       1.2   thorpej 		break;
    661       1.2   thorpej 	case C1SB:
    662       1.2   thorpej 		printf(" controller 1 socket 1");
    663       1.2   thorpej 		break;
    664       1.2   thorpej 	default:
    665       1.2   thorpej 		panic("unknown pcic socket");
    666       1.2   thorpej 	}
    667       1.2   thorpej 
    668       1.2   thorpej 	return (UNCONF);
    669       1.2   thorpej }
    670       1.2   thorpej 
    671  1.25.2.1    bouyer void
    672  1.25.2.1    bouyer pcic_poll_intr(arg)
    673  1.25.2.1    bouyer 	void *arg;
    674  1.25.2.1    bouyer {
    675  1.25.2.1    bouyer 	struct pcic_softc *sc;
    676  1.25.2.1    bouyer 	int i, s;
    677  1.25.2.1    bouyer 
    678  1.25.2.1    bouyer 	s = spltty();
    679  1.25.2.1    bouyer 	sc = arg;
    680  1.25.2.1    bouyer 	for (i = 0; i < PCIC_NSLOTS; i++)
    681  1.25.2.1    bouyer 		if (sc->handle[i].flags & PCIC_FLAG_SOCKETP)
    682  1.25.2.1    bouyer 			(void)pcic_intr_socket(&sc->handle[i]);
    683  1.25.2.1    bouyer 	callout_reset(&sc->poll_ch, hz / 2, pcic_poll_intr, sc);
    684  1.25.2.1    bouyer 	splx(s);
    685  1.25.2.1    bouyer }
    686  1.25.2.1    bouyer 
    687       1.2   thorpej int
    688       1.2   thorpej pcic_intr(arg)
    689       1.2   thorpej 	void *arg;
    690       1.2   thorpej {
    691       1.3     enami 	struct pcic_softc *sc = arg;
    692       1.2   thorpej 	int i, ret = 0;
    693       1.2   thorpej 
    694       1.2   thorpej 	DPRINTF(("%s: intr\n", sc->dev.dv_xname));
    695       1.2   thorpej 
    696       1.2   thorpej 	for (i = 0; i < PCIC_NSLOTS; i++)
    697       1.2   thorpej 		if (sc->handle[i].flags & PCIC_FLAG_SOCKETP)
    698       1.2   thorpej 			ret += pcic_intr_socket(&sc->handle[i]);
    699       1.2   thorpej 
    700       1.2   thorpej 	return (ret ? 1 : 0);
    701       1.2   thorpej }
    702       1.2   thorpej 
    703       1.2   thorpej int
    704       1.2   thorpej pcic_intr_socket(h)
    705       1.2   thorpej 	struct pcic_handle *h;
    706       1.2   thorpej {
    707       1.2   thorpej 	int cscreg;
    708       1.2   thorpej 
    709       1.2   thorpej 	cscreg = pcic_read(h, PCIC_CSC);
    710       1.2   thorpej 
    711       1.2   thorpej 	cscreg &= (PCIC_CSC_GPI |
    712       1.2   thorpej 		   PCIC_CSC_CD |
    713       1.2   thorpej 		   PCIC_CSC_READY |
    714       1.2   thorpej 		   PCIC_CSC_BATTWARN |
    715       1.2   thorpej 		   PCIC_CSC_BATTDEAD);
    716       1.2   thorpej 
    717       1.2   thorpej 	if (cscreg & PCIC_CSC_GPI) {
    718      1.25      haya 		DPRINTF(("%s: %02x GPI\n", h->ph_parent->dv_xname, h->sock));
    719       1.2   thorpej 	}
    720       1.2   thorpej 	if (cscreg & PCIC_CSC_CD) {
    721       1.2   thorpej 		int statreg;
    722       1.2   thorpej 
    723       1.2   thorpej 		statreg = pcic_read(h, PCIC_IF_STATUS);
    724       1.2   thorpej 
    725      1.25      haya 		DPRINTF(("%s: %02x CD %x\n", h->ph_parent->dv_xname, h->sock,
    726       1.2   thorpej 		    statreg));
    727       1.2   thorpej 
    728       1.2   thorpej 		if ((statreg & PCIC_IF_STATUS_CARDDETECT_MASK) ==
    729       1.2   thorpej 		    PCIC_IF_STATUS_CARDDETECT_PRESENT) {
    730      1.20   msaitoh 			if (h->laststate != PCIC_LASTSTATE_PRESENT) {
    731      1.14   thorpej 				DPRINTF(("%s: enqueing INSERTION event\n",
    732      1.25      haya 					 h->ph_parent->dv_xname));
    733      1.14   thorpej 				pcic_queue_event(h, PCIC_EVENT_INSERTION);
    734      1.14   thorpej 			}
    735      1.20   msaitoh 			h->laststate = PCIC_LASTSTATE_PRESENT;
    736       1.2   thorpej 		} else {
    737      1.20   msaitoh 			if (h->laststate == PCIC_LASTSTATE_PRESENT) {
    738      1.15   thorpej 				/* Deactivate the card now. */
    739      1.15   thorpej 				DPRINTF(("%s: deactivating card\n",
    740      1.25      haya 					 h->ph_parent->dv_xname));
    741      1.15   thorpej 				pcic_deactivate_card(h);
    742      1.15   thorpej 
    743      1.14   thorpej 				DPRINTF(("%s: enqueing REMOVAL event\n",
    744      1.25      haya 					 h->ph_parent->dv_xname));
    745      1.14   thorpej 				pcic_queue_event(h, PCIC_EVENT_REMOVAL);
    746      1.14   thorpej 			}
    747  1.25.2.1    bouyer 			h->laststate =
    748  1.25.2.1    bouyer 			    ((statreg & PCIC_IF_STATUS_CARDDETECT_MASK) == 0) ?
    749  1.25.2.1    bouyer 			    PCIC_LASTSTATE_EMPTY : PCIC_LASTSTATE_HALF;
    750       1.2   thorpej 		}
    751       1.2   thorpej 	}
    752       1.2   thorpej 	if (cscreg & PCIC_CSC_READY) {
    753      1.25      haya 		DPRINTF(("%s: %02x READY\n", h->ph_parent->dv_xname, h->sock));
    754       1.2   thorpej 		/* shouldn't happen */
    755       1.2   thorpej 	}
    756       1.2   thorpej 	if (cscreg & PCIC_CSC_BATTWARN) {
    757  1.25.2.1    bouyer 		DPRINTF(("%s: %02x BATTWARN\n", h->ph_parent->dv_xname,
    758  1.25.2.1    bouyer 		    h->sock));
    759       1.2   thorpej 	}
    760       1.2   thorpej 	if (cscreg & PCIC_CSC_BATTDEAD) {
    761  1.25.2.1    bouyer 		DPRINTF(("%s: %02x BATTDEAD\n", h->ph_parent->dv_xname,
    762  1.25.2.1    bouyer 		    h->sock));
    763       1.2   thorpej 	}
    764       1.2   thorpej 	return (cscreg ? 1 : 0);
    765      1.14   thorpej }
    766      1.14   thorpej 
    767      1.14   thorpej void
    768      1.14   thorpej pcic_queue_event(h, event)
    769      1.14   thorpej 	struct pcic_handle *h;
    770      1.14   thorpej 	int event;
    771      1.14   thorpej {
    772      1.14   thorpej 	struct pcic_event *pe;
    773      1.14   thorpej 	int s;
    774      1.14   thorpej 
    775      1.14   thorpej 	pe = malloc(sizeof(*pe), M_TEMP, M_NOWAIT);
    776      1.14   thorpej 	if (pe == NULL)
    777      1.14   thorpej 		panic("pcic_queue_event: can't allocate event");
    778      1.14   thorpej 
    779      1.14   thorpej 	pe->pe_type = event;
    780      1.14   thorpej 	s = splhigh();
    781      1.14   thorpej 	SIMPLEQ_INSERT_TAIL(&h->events, pe, pe_q);
    782      1.14   thorpej 	splx(s);
    783      1.14   thorpej 	wakeup(&h->events);
    784       1.2   thorpej }
    785       1.2   thorpej 
    786       1.2   thorpej void
    787       1.2   thorpej pcic_attach_card(h)
    788       1.2   thorpej 	struct pcic_handle *h;
    789       1.2   thorpej {
    790      1.15   thorpej 
    791      1.20   msaitoh 	if (!(h->flags & PCIC_FLAG_CARDP)) {
    792      1.20   msaitoh 		/* call the MI attach function */
    793      1.20   msaitoh 		pcmcia_card_attach(h->pcmcia);
    794       1.2   thorpej 
    795      1.20   msaitoh 		h->flags |= PCIC_FLAG_CARDP;
    796      1.20   msaitoh 	} else {
    797      1.20   msaitoh 		DPRINTF(("pcic_attach_card: already attached"));
    798      1.20   msaitoh 	}
    799       1.2   thorpej }
    800       1.2   thorpej 
    801       1.2   thorpej void
    802      1.15   thorpej pcic_detach_card(h, flags)
    803       1.2   thorpej 	struct pcic_handle *h;
    804      1.15   thorpej 	int flags;		/* DETACH_* */
    805       1.2   thorpej {
    806      1.15   thorpej 
    807      1.20   msaitoh 	if (h->flags & PCIC_FLAG_CARDP) {
    808      1.20   msaitoh 		h->flags &= ~PCIC_FLAG_CARDP;
    809       1.2   thorpej 
    810      1.20   msaitoh 		/* call the MI detach function */
    811      1.20   msaitoh 		pcmcia_card_detach(h->pcmcia, flags);
    812      1.20   msaitoh 	} else {
    813      1.20   msaitoh 		DPRINTF(("pcic_detach_card: already detached"));
    814      1.20   msaitoh 	}
    815      1.15   thorpej }
    816      1.15   thorpej 
    817      1.15   thorpej void
    818      1.15   thorpej pcic_deactivate_card(h)
    819      1.15   thorpej 	struct pcic_handle *h;
    820      1.15   thorpej {
    821       1.2   thorpej 
    822      1.15   thorpej 	/* call the MI deactivate function */
    823      1.15   thorpej 	pcmcia_card_deactivate(h->pcmcia);
    824       1.2   thorpej 
    825       1.2   thorpej 	/* power down the socket */
    826       1.2   thorpej 	pcic_write(h, PCIC_PWRCTL, 0);
    827       1.2   thorpej 
    828      1.15   thorpej 	/* reset the socket */
    829       1.2   thorpej 	pcic_write(h, PCIC_INTR, 0);
    830       1.2   thorpej }
    831       1.2   thorpej 
    832       1.2   thorpej int
    833       1.2   thorpej pcic_chip_mem_alloc(pch, size, pcmhp)
    834       1.2   thorpej 	pcmcia_chipset_handle_t pch;
    835       1.2   thorpej 	bus_size_t size;
    836       1.2   thorpej 	struct pcmcia_mem_handle *pcmhp;
    837       1.2   thorpej {
    838       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
    839       1.2   thorpej 	bus_space_handle_t memh;
    840       1.2   thorpej 	bus_addr_t addr;
    841       1.2   thorpej 	bus_size_t sizepg;
    842       1.2   thorpej 	int i, mask, mhandle;
    843  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
    844       1.2   thorpej 
    845       1.2   thorpej 	/* out of sc->memh, allocate as many pages as necessary */
    846       1.2   thorpej 
    847       1.2   thorpej 	/* convert size to PCIC pages */
    848       1.2   thorpej 	sizepg = (size + (PCIC_MEM_ALIGN - 1)) / PCIC_MEM_ALIGN;
    849      1.19  christos 	if (sizepg > PCIC_MAX_MEM_PAGES)
    850      1.19  christos 		return (1);
    851       1.2   thorpej 
    852       1.2   thorpej 	mask = (1 << sizepg) - 1;
    853       1.2   thorpej 
    854       1.2   thorpej 	addr = 0;		/* XXX gcc -Wuninitialized */
    855       1.2   thorpej 	mhandle = 0;		/* XXX gcc -Wuninitialized */
    856       1.2   thorpej 
    857      1.19  christos 	for (i = 0; i <= PCIC_MAX_MEM_PAGES - sizepg; i++) {
    858      1.25      haya 		if ((sc->subregionmask & (mask << i)) == (mask << i)) {
    859      1.25      haya 			if (bus_space_subregion(sc->memt, sc->memh,
    860       1.2   thorpej 			    i * PCIC_MEM_PAGESIZE,
    861       1.2   thorpej 			    sizepg * PCIC_MEM_PAGESIZE, &memh))
    862       1.2   thorpej 				return (1);
    863       1.2   thorpej 			mhandle = mask << i;
    864      1.25      haya 			addr = sc->membase + (i * PCIC_MEM_PAGESIZE);
    865      1.25      haya 			sc->subregionmask &= ~(mhandle);
    866      1.25      haya 			pcmhp->memt = sc->memt;
    867      1.19  christos 			pcmhp->memh = memh;
    868      1.19  christos 			pcmhp->addr = addr;
    869      1.19  christos 			pcmhp->size = size;
    870      1.19  christos 			pcmhp->mhandle = mhandle;
    871      1.19  christos 			pcmhp->realsize = sizepg * PCIC_MEM_PAGESIZE;
    872      1.19  christos 			return (0);
    873       1.2   thorpej 		}
    874       1.2   thorpej 	}
    875       1.2   thorpej 
    876      1.19  christos 	return (1);
    877       1.2   thorpej }
    878       1.2   thorpej 
    879       1.2   thorpej void
    880       1.2   thorpej pcic_chip_mem_free(pch, pcmhp)
    881       1.2   thorpej 	pcmcia_chipset_handle_t pch;
    882       1.2   thorpej 	struct pcmcia_mem_handle *pcmhp;
    883       1.2   thorpej {
    884       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
    885  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
    886       1.2   thorpej 
    887      1.25      haya 	sc->subregionmask |= pcmhp->mhandle;
    888       1.2   thorpej }
    889       1.2   thorpej 
    890  1.25.2.2    bouyer static const struct mem_map_index_st {
    891       1.2   thorpej 	int	sysmem_start_lsb;
    892       1.2   thorpej 	int	sysmem_start_msb;
    893       1.2   thorpej 	int	sysmem_stop_lsb;
    894       1.2   thorpej 	int	sysmem_stop_msb;
    895       1.2   thorpej 	int	cardmem_lsb;
    896       1.2   thorpej 	int	cardmem_msb;
    897       1.2   thorpej 	int	memenable;
    898       1.2   thorpej } mem_map_index[] = {
    899       1.2   thorpej 	{
    900       1.2   thorpej 		PCIC_SYSMEM_ADDR0_START_LSB,
    901       1.2   thorpej 		PCIC_SYSMEM_ADDR0_START_MSB,
    902       1.2   thorpej 		PCIC_SYSMEM_ADDR0_STOP_LSB,
    903       1.2   thorpej 		PCIC_SYSMEM_ADDR0_STOP_MSB,
    904       1.2   thorpej 		PCIC_CARDMEM_ADDR0_LSB,
    905       1.2   thorpej 		PCIC_CARDMEM_ADDR0_MSB,
    906       1.2   thorpej 		PCIC_ADDRWIN_ENABLE_MEM0,
    907       1.2   thorpej 	},
    908       1.2   thorpej 	{
    909       1.2   thorpej 		PCIC_SYSMEM_ADDR1_START_LSB,
    910       1.2   thorpej 		PCIC_SYSMEM_ADDR1_START_MSB,
    911       1.2   thorpej 		PCIC_SYSMEM_ADDR1_STOP_LSB,
    912       1.2   thorpej 		PCIC_SYSMEM_ADDR1_STOP_MSB,
    913       1.2   thorpej 		PCIC_CARDMEM_ADDR1_LSB,
    914       1.2   thorpej 		PCIC_CARDMEM_ADDR1_MSB,
    915       1.2   thorpej 		PCIC_ADDRWIN_ENABLE_MEM1,
    916       1.2   thorpej 	},
    917       1.2   thorpej 	{
    918       1.2   thorpej 		PCIC_SYSMEM_ADDR2_START_LSB,
    919       1.2   thorpej 		PCIC_SYSMEM_ADDR2_START_MSB,
    920       1.2   thorpej 		PCIC_SYSMEM_ADDR2_STOP_LSB,
    921       1.2   thorpej 		PCIC_SYSMEM_ADDR2_STOP_MSB,
    922       1.2   thorpej 		PCIC_CARDMEM_ADDR2_LSB,
    923       1.2   thorpej 		PCIC_CARDMEM_ADDR2_MSB,
    924       1.2   thorpej 		PCIC_ADDRWIN_ENABLE_MEM2,
    925       1.2   thorpej 	},
    926       1.2   thorpej 	{
    927       1.2   thorpej 		PCIC_SYSMEM_ADDR3_START_LSB,
    928       1.2   thorpej 		PCIC_SYSMEM_ADDR3_START_MSB,
    929       1.2   thorpej 		PCIC_SYSMEM_ADDR3_STOP_LSB,
    930       1.2   thorpej 		PCIC_SYSMEM_ADDR3_STOP_MSB,
    931       1.2   thorpej 		PCIC_CARDMEM_ADDR3_LSB,
    932       1.2   thorpej 		PCIC_CARDMEM_ADDR3_MSB,
    933       1.2   thorpej 		PCIC_ADDRWIN_ENABLE_MEM3,
    934       1.2   thorpej 	},
    935       1.2   thorpej 	{
    936       1.2   thorpej 		PCIC_SYSMEM_ADDR4_START_LSB,
    937       1.2   thorpej 		PCIC_SYSMEM_ADDR4_START_MSB,
    938       1.2   thorpej 		PCIC_SYSMEM_ADDR4_STOP_LSB,
    939       1.2   thorpej 		PCIC_SYSMEM_ADDR4_STOP_MSB,
    940       1.2   thorpej 		PCIC_CARDMEM_ADDR4_LSB,
    941       1.2   thorpej 		PCIC_CARDMEM_ADDR4_MSB,
    942       1.2   thorpej 		PCIC_ADDRWIN_ENABLE_MEM4,
    943       1.2   thorpej 	},
    944       1.2   thorpej };
    945       1.2   thorpej 
    946       1.2   thorpej void
    947       1.2   thorpej pcic_chip_do_mem_map(h, win)
    948       1.2   thorpej 	struct pcic_handle *h;
    949       1.2   thorpej 	int win;
    950       1.2   thorpej {
    951       1.2   thorpej 	int reg;
    952  1.25.2.1    bouyer 	int kind = h->mem[win].kind & ~PCMCIA_WIDTH_MEM_MASK;
    953  1.25.2.1    bouyer 	int mem8 =
    954  1.25.2.1    bouyer 	    (h->mem[win].kind & PCMCIA_WIDTH_MEM_MASK) == PCMCIA_WIDTH_MEM8
    955  1.25.2.1    bouyer 	    || (kind == PCMCIA_MEM_ATTR);
    956  1.25.2.1    bouyer 
    957  1.25.2.1    bouyer 	DPRINTF(("mem8 %d\n", mem8));
    958  1.25.2.1    bouyer 	/* mem8 = 1; */
    959       1.2   thorpej 
    960       1.2   thorpej 	pcic_write(h, mem_map_index[win].sysmem_start_lsb,
    961       1.2   thorpej 	    (h->mem[win].addr >> PCIC_SYSMEM_ADDRX_SHIFT) & 0xff);
    962       1.2   thorpej 	pcic_write(h, mem_map_index[win].sysmem_start_msb,
    963       1.2   thorpej 	    ((h->mem[win].addr >> (PCIC_SYSMEM_ADDRX_SHIFT + 8)) &
    964  1.25.2.1    bouyer 	    PCIC_SYSMEM_ADDRX_START_MSB_ADDR_MASK) |
    965  1.25.2.1    bouyer 	    (mem8 ? 0 : PCIC_SYSMEM_ADDRX_START_MSB_DATASIZE_16BIT));
    966       1.2   thorpej 
    967       1.2   thorpej 	pcic_write(h, mem_map_index[win].sysmem_stop_lsb,
    968       1.2   thorpej 	    ((h->mem[win].addr + h->mem[win].size) >>
    969       1.2   thorpej 	    PCIC_SYSMEM_ADDRX_SHIFT) & 0xff);
    970       1.2   thorpej 	pcic_write(h, mem_map_index[win].sysmem_stop_msb,
    971       1.2   thorpej 	    (((h->mem[win].addr + h->mem[win].size) >>
    972       1.2   thorpej 	    (PCIC_SYSMEM_ADDRX_SHIFT + 8)) &
    973       1.2   thorpej 	    PCIC_SYSMEM_ADDRX_STOP_MSB_ADDR_MASK) |
    974       1.2   thorpej 	    PCIC_SYSMEM_ADDRX_STOP_MSB_WAIT2);
    975       1.2   thorpej 
    976       1.2   thorpej 	pcic_write(h, mem_map_index[win].cardmem_lsb,
    977       1.2   thorpej 	    (h->mem[win].offset >> PCIC_CARDMEM_ADDRX_SHIFT) & 0xff);
    978       1.2   thorpej 	pcic_write(h, mem_map_index[win].cardmem_msb,
    979       1.2   thorpej 	    ((h->mem[win].offset >> (PCIC_CARDMEM_ADDRX_SHIFT + 8)) &
    980       1.2   thorpej 	    PCIC_CARDMEM_ADDRX_MSB_ADDR_MASK) |
    981  1.25.2.1    bouyer 	    ((kind == PCMCIA_MEM_ATTR) ?
    982       1.2   thorpej 	    PCIC_CARDMEM_ADDRX_MSB_REGACTIVE_ATTR : 0));
    983       1.2   thorpej 
    984       1.2   thorpej 	reg = pcic_read(h, PCIC_ADDRWIN_ENABLE);
    985       1.2   thorpej 	reg |= (mem_map_index[win].memenable | PCIC_ADDRWIN_ENABLE_MEMCS16);
    986       1.2   thorpej 	pcic_write(h, PCIC_ADDRWIN_ENABLE, reg);
    987      1.21      marc 
    988      1.21      marc 	delay(100);
    989       1.2   thorpej 
    990       1.2   thorpej #ifdef PCICDEBUG
    991       1.2   thorpej 	{
    992       1.2   thorpej 		int r1, r2, r3, r4, r5, r6;
    993       1.2   thorpej 
    994       1.2   thorpej 		r1 = pcic_read(h, mem_map_index[win].sysmem_start_msb);
    995       1.2   thorpej 		r2 = pcic_read(h, mem_map_index[win].sysmem_start_lsb);
    996       1.2   thorpej 		r3 = pcic_read(h, mem_map_index[win].sysmem_stop_msb);
    997       1.2   thorpej 		r4 = pcic_read(h, mem_map_index[win].sysmem_stop_lsb);
    998       1.2   thorpej 		r5 = pcic_read(h, mem_map_index[win].cardmem_msb);
    999       1.2   thorpej 		r6 = pcic_read(h, mem_map_index[win].cardmem_lsb);
   1000       1.2   thorpej 
   1001       1.2   thorpej 		DPRINTF(("pcic_chip_do_mem_map window %d: %02x%02x %02x%02x "
   1002       1.2   thorpej 		    "%02x%02x\n", win, r1, r2, r3, r4, r5, r6));
   1003       1.2   thorpej 	}
   1004       1.2   thorpej #endif
   1005       1.2   thorpej }
   1006       1.2   thorpej 
   1007       1.2   thorpej int
   1008       1.2   thorpej pcic_chip_mem_map(pch, kind, card_addr, size, pcmhp, offsetp, windowp)
   1009       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1010       1.2   thorpej 	int kind;
   1011       1.2   thorpej 	bus_addr_t card_addr;
   1012       1.2   thorpej 	bus_size_t size;
   1013       1.2   thorpej 	struct pcmcia_mem_handle *pcmhp;
   1014       1.2   thorpej 	bus_addr_t *offsetp;
   1015       1.2   thorpej 	int *windowp;
   1016       1.2   thorpej {
   1017       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
   1018       1.2   thorpej 	bus_addr_t busaddr;
   1019       1.2   thorpej 	long card_offset;
   1020       1.2   thorpej 	int i, win;
   1021  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
   1022       1.2   thorpej 
   1023       1.2   thorpej 	win = -1;
   1024       1.2   thorpej 	for (i = 0; i < (sizeof(mem_map_index) / sizeof(mem_map_index[0]));
   1025       1.2   thorpej 	    i++) {
   1026       1.2   thorpej 		if ((h->memalloc & (1 << i)) == 0) {
   1027       1.2   thorpej 			win = i;
   1028       1.2   thorpej 			h->memalloc |= (1 << i);
   1029       1.2   thorpej 			break;
   1030       1.2   thorpej 		}
   1031       1.2   thorpej 	}
   1032       1.2   thorpej 
   1033       1.2   thorpej 	if (win == -1)
   1034       1.2   thorpej 		return (1);
   1035       1.2   thorpej 
   1036       1.2   thorpej 	*windowp = win;
   1037       1.2   thorpej 
   1038       1.2   thorpej 	/* XXX this is pretty gross */
   1039       1.2   thorpej 
   1040      1.25      haya 	if (sc->memt != pcmhp->memt)
   1041       1.2   thorpej 		panic("pcic_chip_mem_map memt is bogus");
   1042       1.2   thorpej 
   1043       1.2   thorpej 	busaddr = pcmhp->addr;
   1044       1.2   thorpej 
   1045       1.2   thorpej 	/*
   1046       1.2   thorpej 	 * compute the address offset to the pcmcia address space for the
   1047       1.2   thorpej 	 * pcic.  this is intentionally signed.  The masks and shifts below
   1048       1.2   thorpej 	 * will cause TRT to happen in the pcic registers.  Deal with making
   1049       1.2   thorpej 	 * sure the address is aligned, and return the alignment offset.
   1050       1.2   thorpej 	 */
   1051       1.2   thorpej 
   1052       1.2   thorpej 	*offsetp = card_addr % PCIC_MEM_ALIGN;
   1053       1.2   thorpej 	card_addr -= *offsetp;
   1054       1.2   thorpej 
   1055       1.2   thorpej 	DPRINTF(("pcic_chip_mem_map window %d bus %lx+%lx+%lx at card addr "
   1056       1.2   thorpej 	    "%lx\n", win, (u_long) busaddr, (u_long) * offsetp, (u_long) size,
   1057       1.2   thorpej 	    (u_long) card_addr));
   1058       1.2   thorpej 
   1059       1.2   thorpej 	/*
   1060       1.2   thorpej 	 * include the offset in the size, and decrement size by one, since
   1061       1.2   thorpej 	 * the hw wants start/stop
   1062       1.2   thorpej 	 */
   1063       1.2   thorpej 	size += *offsetp - 1;
   1064       1.2   thorpej 
   1065       1.2   thorpej 	card_offset = (((long) card_addr) - ((long) busaddr));
   1066       1.2   thorpej 
   1067       1.2   thorpej 	h->mem[win].addr = busaddr;
   1068       1.2   thorpej 	h->mem[win].size = size;
   1069       1.2   thorpej 	h->mem[win].offset = card_offset;
   1070       1.2   thorpej 	h->mem[win].kind = kind;
   1071       1.2   thorpej 
   1072       1.2   thorpej 	pcic_chip_do_mem_map(h, win);
   1073       1.2   thorpej 
   1074       1.2   thorpej 	return (0);
   1075       1.2   thorpej }
   1076       1.2   thorpej 
   1077       1.2   thorpej void
   1078       1.2   thorpej pcic_chip_mem_unmap(pch, window)
   1079       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1080       1.2   thorpej 	int window;
   1081       1.2   thorpej {
   1082       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
   1083       1.2   thorpej 	int reg;
   1084       1.2   thorpej 
   1085       1.2   thorpej 	if (window >= (sizeof(mem_map_index) / sizeof(mem_map_index[0])))
   1086       1.2   thorpej 		panic("pcic_chip_mem_unmap: window out of range");
   1087       1.2   thorpej 
   1088       1.2   thorpej 	reg = pcic_read(h, PCIC_ADDRWIN_ENABLE);
   1089       1.2   thorpej 	reg &= ~mem_map_index[window].memenable;
   1090       1.2   thorpej 	pcic_write(h, PCIC_ADDRWIN_ENABLE, reg);
   1091       1.2   thorpej 
   1092       1.2   thorpej 	h->memalloc &= ~(1 << window);
   1093       1.2   thorpej }
   1094       1.2   thorpej 
   1095       1.2   thorpej int
   1096       1.2   thorpej pcic_chip_io_alloc(pch, start, size, align, pcihp)
   1097       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1098       1.2   thorpej 	bus_addr_t start;
   1099       1.2   thorpej 	bus_size_t size;
   1100       1.2   thorpej 	bus_size_t align;
   1101       1.2   thorpej 	struct pcmcia_io_handle *pcihp;
   1102       1.2   thorpej {
   1103       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
   1104       1.2   thorpej 	bus_space_tag_t iot;
   1105       1.2   thorpej 	bus_space_handle_t ioh;
   1106       1.2   thorpej 	bus_addr_t ioaddr;
   1107       1.2   thorpej 	int flags = 0;
   1108  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
   1109       1.2   thorpej 
   1110       1.2   thorpej 	/*
   1111       1.2   thorpej 	 * Allocate some arbitrary I/O space.
   1112       1.2   thorpej 	 */
   1113       1.2   thorpej 
   1114      1.25      haya 	iot = sc->iot;
   1115       1.2   thorpej 
   1116       1.2   thorpej 	if (start) {
   1117       1.2   thorpej 		ioaddr = start;
   1118       1.2   thorpej 		if (bus_space_map(iot, start, size, 0, &ioh))
   1119       1.2   thorpej 			return (1);
   1120       1.2   thorpej 		DPRINTF(("pcic_chip_io_alloc map port %lx+%lx\n",
   1121       1.2   thorpej 		    (u_long) ioaddr, (u_long) size));
   1122       1.2   thorpej 	} else {
   1123       1.2   thorpej 		flags |= PCMCIA_IO_ALLOCATED;
   1124      1.25      haya 		if (bus_space_alloc(iot, sc->iobase,
   1125      1.25      haya 		    sc->iobase + sc->iosize, size, align, 0, 0,
   1126       1.2   thorpej 		    &ioaddr, &ioh))
   1127       1.2   thorpej 			return (1);
   1128       1.2   thorpej 		DPRINTF(("pcic_chip_io_alloc alloc port %lx+%lx\n",
   1129       1.2   thorpej 		    (u_long) ioaddr, (u_long) size));
   1130       1.2   thorpej 	}
   1131       1.2   thorpej 
   1132       1.2   thorpej 	pcihp->iot = iot;
   1133       1.2   thorpej 	pcihp->ioh = ioh;
   1134       1.2   thorpej 	pcihp->addr = ioaddr;
   1135       1.2   thorpej 	pcihp->size = size;
   1136       1.2   thorpej 	pcihp->flags = flags;
   1137       1.2   thorpej 
   1138       1.2   thorpej 	return (0);
   1139       1.2   thorpej }
   1140       1.2   thorpej 
   1141       1.2   thorpej void
   1142       1.2   thorpej pcic_chip_io_free(pch, pcihp)
   1143       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1144       1.2   thorpej 	struct pcmcia_io_handle *pcihp;
   1145       1.2   thorpej {
   1146       1.2   thorpej 	bus_space_tag_t iot = pcihp->iot;
   1147       1.2   thorpej 	bus_space_handle_t ioh = pcihp->ioh;
   1148       1.2   thorpej 	bus_size_t size = pcihp->size;
   1149       1.2   thorpej 
   1150       1.2   thorpej 	if (pcihp->flags & PCMCIA_IO_ALLOCATED)
   1151       1.2   thorpej 		bus_space_free(iot, ioh, size);
   1152       1.2   thorpej 	else
   1153       1.2   thorpej 		bus_space_unmap(iot, ioh, size);
   1154       1.2   thorpej }
   1155       1.2   thorpej 
   1156       1.2   thorpej 
   1157  1.25.2.2    bouyer static const struct io_map_index_st {
   1158       1.2   thorpej 	int	start_lsb;
   1159       1.2   thorpej 	int	start_msb;
   1160       1.2   thorpej 	int	stop_lsb;
   1161       1.2   thorpej 	int	stop_msb;
   1162       1.2   thorpej 	int	ioenable;
   1163       1.2   thorpej 	int	ioctlmask;
   1164       1.2   thorpej 	int	ioctlbits[3];		/* indexed by PCMCIA_WIDTH_* */
   1165       1.2   thorpej }               io_map_index[] = {
   1166       1.2   thorpej 	{
   1167       1.2   thorpej 		PCIC_IOADDR0_START_LSB,
   1168       1.2   thorpej 		PCIC_IOADDR0_START_MSB,
   1169       1.2   thorpej 		PCIC_IOADDR0_STOP_LSB,
   1170       1.2   thorpej 		PCIC_IOADDR0_STOP_MSB,
   1171       1.2   thorpej 		PCIC_ADDRWIN_ENABLE_IO0,
   1172       1.2   thorpej 		PCIC_IOCTL_IO0_WAITSTATE | PCIC_IOCTL_IO0_ZEROWAIT |
   1173       1.2   thorpej 		PCIC_IOCTL_IO0_IOCS16SRC_MASK | PCIC_IOCTL_IO0_DATASIZE_MASK,
   1174       1.2   thorpej 		{
   1175       1.2   thorpej 			PCIC_IOCTL_IO0_IOCS16SRC_CARD,
   1176       1.6     enami 			PCIC_IOCTL_IO0_IOCS16SRC_DATASIZE |
   1177       1.6     enami 			    PCIC_IOCTL_IO0_DATASIZE_8BIT,
   1178       1.6     enami 			PCIC_IOCTL_IO0_IOCS16SRC_DATASIZE |
   1179       1.6     enami 			    PCIC_IOCTL_IO0_DATASIZE_16BIT,
   1180       1.2   thorpej 		},
   1181       1.2   thorpej 	},
   1182       1.2   thorpej 	{
   1183       1.2   thorpej 		PCIC_IOADDR1_START_LSB,
   1184       1.2   thorpej 		PCIC_IOADDR1_START_MSB,
   1185       1.2   thorpej 		PCIC_IOADDR1_STOP_LSB,
   1186       1.2   thorpej 		PCIC_IOADDR1_STOP_MSB,
   1187       1.2   thorpej 		PCIC_ADDRWIN_ENABLE_IO1,
   1188       1.2   thorpej 		PCIC_IOCTL_IO1_WAITSTATE | PCIC_IOCTL_IO1_ZEROWAIT |
   1189       1.2   thorpej 		PCIC_IOCTL_IO1_IOCS16SRC_MASK | PCIC_IOCTL_IO1_DATASIZE_MASK,
   1190       1.2   thorpej 		{
   1191       1.2   thorpej 			PCIC_IOCTL_IO1_IOCS16SRC_CARD,
   1192       1.2   thorpej 			PCIC_IOCTL_IO1_IOCS16SRC_DATASIZE |
   1193       1.2   thorpej 			    PCIC_IOCTL_IO1_DATASIZE_8BIT,
   1194       1.2   thorpej 			PCIC_IOCTL_IO1_IOCS16SRC_DATASIZE |
   1195       1.2   thorpej 			    PCIC_IOCTL_IO1_DATASIZE_16BIT,
   1196       1.2   thorpej 		},
   1197       1.2   thorpej 	},
   1198       1.2   thorpej };
   1199       1.2   thorpej 
   1200       1.2   thorpej void
   1201       1.2   thorpej pcic_chip_do_io_map(h, win)
   1202       1.2   thorpej 	struct pcic_handle *h;
   1203       1.2   thorpej 	int win;
   1204       1.2   thorpej {
   1205       1.2   thorpej 	int reg;
   1206       1.2   thorpej 
   1207       1.2   thorpej 	DPRINTF(("pcic_chip_do_io_map win %d addr %lx size %lx width %d\n",
   1208       1.2   thorpej 	    win, (long) h->io[win].addr, (long) h->io[win].size,
   1209       1.2   thorpej 	    h->io[win].width * 8));
   1210       1.2   thorpej 
   1211       1.2   thorpej 	pcic_write(h, io_map_index[win].start_lsb, h->io[win].addr & 0xff);
   1212       1.2   thorpej 	pcic_write(h, io_map_index[win].start_msb,
   1213       1.2   thorpej 	    (h->io[win].addr >> 8) & 0xff);
   1214       1.2   thorpej 
   1215       1.2   thorpej 	pcic_write(h, io_map_index[win].stop_lsb,
   1216       1.2   thorpej 	    (h->io[win].addr + h->io[win].size - 1) & 0xff);
   1217       1.2   thorpej 	pcic_write(h, io_map_index[win].stop_msb,
   1218       1.2   thorpej 	    ((h->io[win].addr + h->io[win].size - 1) >> 8) & 0xff);
   1219       1.2   thorpej 
   1220       1.2   thorpej 	reg = pcic_read(h, PCIC_IOCTL);
   1221       1.2   thorpej 	reg &= ~io_map_index[win].ioctlmask;
   1222       1.2   thorpej 	reg |= io_map_index[win].ioctlbits[h->io[win].width];
   1223       1.2   thorpej 	pcic_write(h, PCIC_IOCTL, reg);
   1224       1.2   thorpej 
   1225       1.2   thorpej 	reg = pcic_read(h, PCIC_ADDRWIN_ENABLE);
   1226       1.2   thorpej 	reg |= io_map_index[win].ioenable;
   1227       1.2   thorpej 	pcic_write(h, PCIC_ADDRWIN_ENABLE, reg);
   1228       1.2   thorpej }
   1229       1.2   thorpej 
   1230       1.2   thorpej int
   1231       1.2   thorpej pcic_chip_io_map(pch, width, offset, size, pcihp, windowp)
   1232       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1233       1.2   thorpej 	int width;
   1234       1.2   thorpej 	bus_addr_t offset;
   1235       1.2   thorpej 	bus_size_t size;
   1236       1.2   thorpej 	struct pcmcia_io_handle *pcihp;
   1237       1.2   thorpej 	int *windowp;
   1238       1.2   thorpej {
   1239       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
   1240       1.2   thorpej 	bus_addr_t ioaddr = pcihp->addr + offset;
   1241       1.4     enami 	int i, win;
   1242       1.4     enami #ifdef PCICDEBUG
   1243       1.2   thorpej 	static char *width_names[] = { "auto", "io8", "io16" };
   1244       1.4     enami #endif
   1245  1.25.2.1    bouyer 	struct pcic_softc *sc = (struct pcic_softc *)h->ph_parent;
   1246       1.2   thorpej 
   1247       1.2   thorpej 	/* XXX Sanity check offset/size. */
   1248       1.2   thorpej 
   1249       1.2   thorpej 	win = -1;
   1250       1.2   thorpej 	for (i = 0; i < (sizeof(io_map_index) / sizeof(io_map_index[0])); i++) {
   1251       1.2   thorpej 		if ((h->ioalloc & (1 << i)) == 0) {
   1252       1.2   thorpej 			win = i;
   1253       1.2   thorpej 			h->ioalloc |= (1 << i);
   1254       1.2   thorpej 			break;
   1255       1.2   thorpej 		}
   1256       1.2   thorpej 	}
   1257       1.2   thorpej 
   1258       1.2   thorpej 	if (win == -1)
   1259       1.2   thorpej 		return (1);
   1260       1.2   thorpej 
   1261       1.2   thorpej 	*windowp = win;
   1262       1.2   thorpej 
   1263       1.2   thorpej 	/* XXX this is pretty gross */
   1264       1.2   thorpej 
   1265      1.25      haya 	if (sc->iot != pcihp->iot)
   1266       1.2   thorpej 		panic("pcic_chip_io_map iot is bogus");
   1267       1.2   thorpej 
   1268       1.2   thorpej 	DPRINTF(("pcic_chip_io_map window %d %s port %lx+%lx\n",
   1269       1.2   thorpej 		 win, width_names[width], (u_long) ioaddr, (u_long) size));
   1270       1.2   thorpej 
   1271       1.2   thorpej 	/* XXX wtf is this doing here? */
   1272       1.2   thorpej 
   1273       1.2   thorpej 	printf(" port 0x%lx", (u_long) ioaddr);
   1274       1.2   thorpej 	if (size > 1)
   1275       1.2   thorpej 		printf("-0x%lx", (u_long) ioaddr + (u_long) size - 1);
   1276       1.2   thorpej 
   1277       1.2   thorpej 	h->io[win].addr = ioaddr;
   1278       1.2   thorpej 	h->io[win].size = size;
   1279       1.2   thorpej 	h->io[win].width = width;
   1280       1.2   thorpej 
   1281       1.2   thorpej 	pcic_chip_do_io_map(h, win);
   1282       1.2   thorpej 
   1283       1.2   thorpej 	return (0);
   1284       1.2   thorpej }
   1285       1.2   thorpej 
   1286       1.2   thorpej void
   1287       1.2   thorpej pcic_chip_io_unmap(pch, window)
   1288       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1289       1.2   thorpej 	int window;
   1290       1.2   thorpej {
   1291       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
   1292       1.2   thorpej 	int reg;
   1293       1.2   thorpej 
   1294       1.2   thorpej 	if (window >= (sizeof(io_map_index) / sizeof(io_map_index[0])))
   1295       1.2   thorpej 		panic("pcic_chip_io_unmap: window out of range");
   1296       1.2   thorpej 
   1297       1.2   thorpej 	reg = pcic_read(h, PCIC_ADDRWIN_ENABLE);
   1298       1.2   thorpej 	reg &= ~io_map_index[window].ioenable;
   1299       1.2   thorpej 	pcic_write(h, PCIC_ADDRWIN_ENABLE, reg);
   1300       1.2   thorpej 
   1301       1.2   thorpej 	h->ioalloc &= ~(1 << window);
   1302       1.8      marc }
   1303       1.8      marc 
   1304       1.8      marc static void
   1305       1.8      marc pcic_wait_ready(h)
   1306       1.8      marc 	struct pcic_handle *h;
   1307       1.8      marc {
   1308       1.8      marc 	int i;
   1309       1.8      marc 
   1310  1.25.2.1    bouyer 	/* wait an initial 10ms for quick cards */
   1311  1.25.2.1    bouyer 	if (pcic_read(h, PCIC_IF_STATUS) & PCIC_IF_STATUS_READY)
   1312  1.25.2.1    bouyer 		return;
   1313  1.25.2.1    bouyer 	pcic_delay(h, 10, "pccwr0");
   1314  1.25.2.1    bouyer 	for (i = 0; i < 50; i++) {
   1315       1.8      marc 		if (pcic_read(h, PCIC_IF_STATUS) & PCIC_IF_STATUS_READY)
   1316       1.8      marc 			return;
   1317  1.25.2.1    bouyer 		/* wait .1s (100ms) each iteration now */
   1318  1.25.2.1    bouyer 		pcic_delay(h, 100, "pccwr1");
   1319       1.8      marc #ifdef PCICDEBUG
   1320       1.8      marc 		if (pcic_debug) {
   1321  1.25.2.1    bouyer 			if ((i > 20) && (i % 100 == 99))
   1322       1.8      marc 				printf(".");
   1323       1.8      marc 		}
   1324       1.8      marc #endif
   1325       1.8      marc 	}
   1326       1.8      marc 
   1327       1.8      marc #ifdef DIAGNOSTIC
   1328      1.11   mycroft 	printf("pcic_wait_ready: ready never happened, status = %02x\n",
   1329      1.11   mycroft 	    pcic_read(h, PCIC_IF_STATUS));
   1330       1.8      marc #endif
   1331       1.2   thorpej }
   1332       1.2   thorpej 
   1333  1.25.2.1    bouyer /*
   1334  1.25.2.1    bouyer  * Perform long (msec order) delay.
   1335  1.25.2.1    bouyer  */
   1336  1.25.2.1    bouyer static void
   1337  1.25.2.1    bouyer pcic_delay(h, timo, wmesg)
   1338  1.25.2.1    bouyer 	struct pcic_handle *h;
   1339  1.25.2.1    bouyer 	int timo;			/* in ms.  must not be zero */
   1340  1.25.2.1    bouyer 	const char *wmesg;
   1341  1.25.2.1    bouyer {
   1342  1.25.2.1    bouyer 
   1343  1.25.2.1    bouyer #ifdef DIAGNOSTIC
   1344  1.25.2.1    bouyer 	if (timo <= 0) {
   1345  1.25.2.1    bouyer 		printf("called with timeout %d\n", timo);
   1346  1.25.2.1    bouyer 		panic("pcic_delay");
   1347  1.25.2.1    bouyer 	}
   1348  1.25.2.1    bouyer 	if (curproc == NULL) {
   1349  1.25.2.1    bouyer 		printf("called in interrupt context\n");
   1350  1.25.2.1    bouyer 		panic("pcic_delay");
   1351  1.25.2.1    bouyer 	}
   1352  1.25.2.1    bouyer 	if (h->event_thread == NULL) {
   1353  1.25.2.1    bouyer 		printf("no event thread\n");
   1354  1.25.2.1    bouyer 		panic("pcic_delay");
   1355  1.25.2.1    bouyer 	}
   1356  1.25.2.1    bouyer #endif
   1357  1.25.2.1    bouyer 	DPRINTF(("pcic_delay: \"%s\" %p, sleep %d ms\n",
   1358  1.25.2.1    bouyer 	    wmesg, h->event_thread, timo));
   1359  1.25.2.1    bouyer 	tsleep(pcic_delay, PWAIT, wmesg, roundup(timo * hz, 1000) / 1000);
   1360  1.25.2.1    bouyer }
   1361  1.25.2.1    bouyer 
   1362       1.2   thorpej void
   1363       1.2   thorpej pcic_chip_socket_enable(pch)
   1364       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1365       1.2   thorpej {
   1366       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
   1367  1.25.2.1    bouyer 	int cardtype, win, intr, pwr;
   1368  1.25.2.1    bouyer #if defined(DIAGNOSTIC) || defined(PCICDEBUG)
   1369  1.25.2.1    bouyer 	int reg;
   1370  1.25.2.1    bouyer #endif
   1371       1.2   thorpej 
   1372  1.25.2.1    bouyer #ifdef DIAGNOSTIC
   1373  1.25.2.1    bouyer 	if (h->flags & PCIC_FLAG_ENABLED)
   1374  1.25.2.1    bouyer 		printf("pcic_chip_socket_enable: enabling twice\n");
   1375  1.25.2.1    bouyer #endif
   1376       1.2   thorpej 
   1377  1.25.2.1    bouyer 	/* disable interrupts */
   1378  1.25.2.1    bouyer 	intr = pcic_read(h, PCIC_INTR);
   1379  1.25.2.1    bouyer 	intr &= ~(PCIC_INTR_IRQ_MASK | PCIC_INTR_ENABLE);
   1380  1.25.2.1    bouyer 	pcic_write(h, PCIC_INTR, intr);
   1381       1.2   thorpej 
   1382  1.25.2.1    bouyer 	/* power down the socket to reset it, clear the card reset pin */
   1383  1.25.2.1    bouyer 	pwr = 0;
   1384  1.25.2.1    bouyer 	pcic_write(h, PCIC_PWRCTL, pwr);
   1385       1.2   thorpej 
   1386       1.9     enami 	/*
   1387       1.9     enami 	 * wait 300ms until power fails (Tpf).  Then, wait 100ms since
   1388       1.9     enami 	 * we are changing Vcc (Toff).
   1389       1.9     enami 	 */
   1390  1.25.2.1    bouyer 	pcic_delay(h, 300 + 100, "pccen0");
   1391       1.9     enami 
   1392      1.22   mycroft #ifdef VADEM_POWER_HACK
   1393      1.25      haya 	bus_space_write_1(sc->iot, sc->ioh, PCIC_REG_INDEX, 0x0e);
   1394      1.25      haya 	bus_space_write_1(sc->iot, sc->ioh, PCIC_REG_INDEX, 0x37);
   1395      1.22   mycroft 	printf("prcr = %02x\n", pcic_read(h, 0x02));
   1396      1.22   mycroft 	printf("cvsr = %02x\n", pcic_read(h, 0x2f));
   1397      1.22   mycroft 	printf("DANGER WILL ROBINSON!  Changing voltage select!\n");
   1398      1.22   mycroft 	pcic_write(h, 0x2f, pcic_read(h, 0x2f) & ~0x03);
   1399      1.22   mycroft 	printf("cvsr = %02x\n", pcic_read(h, 0x2f));
   1400      1.22   mycroft #endif
   1401       1.2   thorpej 	/* power up the socket */
   1402  1.25.2.1    bouyer 	pwr |= PCIC_PWRCTL_DISABLE_RESETDRV | PCIC_PWRCTL_PWR_ENABLE | PCIC_PWRCTL_VPP1_VCC;
   1403  1.25.2.1    bouyer 	pcic_write(h, PCIC_PWRCTL, pwr);
   1404       1.9     enami 
   1405       1.9     enami 	/*
   1406       1.9     enami 	 * wait 100ms until power raise (Tpr) and 20ms to become
   1407       1.9     enami 	 * stable (Tsu(Vcc)).
   1408      1.12   msaitoh 	 *
   1409      1.12   msaitoh 	 * some machines require some more time to be settled
   1410      1.20   msaitoh 	 * (300ms is added here).
   1411       1.9     enami 	 */
   1412  1.25.2.1    bouyer 	pcic_delay(h, 100 + 20 + 300, "pccen1");
   1413  1.25.2.1    bouyer 	pwr |= PCIC_PWRCTL_OE;
   1414  1.25.2.1    bouyer 	pcic_write(h, PCIC_PWRCTL, pwr);
   1415  1.25.2.1    bouyer 
   1416  1.25.2.1    bouyer 	/* now make sure we have reset# active */
   1417  1.25.2.1    bouyer 	intr &= ~PCIC_INTR_RESET;
   1418  1.25.2.1    bouyer 	pcic_write(h, PCIC_INTR, intr);
   1419       1.2   thorpej 
   1420  1.25.2.1    bouyer 	pcic_write(h, PCIC_PWRCTL, PCIC_PWRCTL_DISABLE_RESETDRV |
   1421  1.25.2.1    bouyer 	    PCIC_PWRCTL_OE | PCIC_PWRCTL_PWR_ENABLE | PCIC_PWRCTL_VPP1_VCC);
   1422       1.9     enami 	/*
   1423  1.25.2.1    bouyer 	 * hold RESET at least 10us, this is a min allow for slop in
   1424  1.25.2.1    bouyer 	 * delay routine.
   1425       1.9     enami 	 */
   1426  1.25.2.1    bouyer 	delay(20);
   1427       1.9     enami 
   1428       1.2   thorpej 	/* clear the reset flag */
   1429  1.25.2.1    bouyer 	intr |= PCIC_INTR_RESET;
   1430  1.25.2.1    bouyer 	pcic_write(h, PCIC_INTR, intr);
   1431       1.2   thorpej 
   1432       1.2   thorpej 	/* wait 20ms as per pc card standard (r2.01) section 4.3.6 */
   1433  1.25.2.1    bouyer 	pcic_delay(h, 20, "pccen2");
   1434      1.20   msaitoh 
   1435      1.20   msaitoh #ifdef DIAGNOSTIC
   1436      1.20   msaitoh 	reg = pcic_read(h, PCIC_IF_STATUS);
   1437      1.20   msaitoh 	if (!(reg & PCIC_IF_STATUS_POWERACTIVE)) {
   1438  1.25.2.1    bouyer 		printf("pcic_chip_socket_enable: status %x\n", reg);
   1439      1.20   msaitoh 	}
   1440      1.20   msaitoh #endif
   1441  1.25.2.1    bouyer 	/* wait for the chip to finish initializing */
   1442       1.2   thorpej 	pcic_wait_ready(h);
   1443       1.2   thorpej 
   1444       1.2   thorpej 	/* zero out the address windows */
   1445       1.2   thorpej 	pcic_write(h, PCIC_ADDRWIN_ENABLE, 0);
   1446       1.2   thorpej 
   1447  1.25.2.1    bouyer 	/* set the card type and enable the interrupt */
   1448       1.2   thorpej 	cardtype = pcmcia_card_gettype(h->pcmcia);
   1449  1.25.2.1    bouyer 	intr |= ((cardtype == PCMCIA_IFTYPE_IO) ?
   1450  1.25.2.1    bouyer 	    PCIC_INTR_CARDTYPE_IO : PCIC_INTR_CARDTYPE_MEM);
   1451  1.25.2.1    bouyer 	pcic_write(h, PCIC_INTR, intr);
   1452       1.2   thorpej 
   1453       1.2   thorpej 	DPRINTF(("%s: pcic_chip_socket_enable %02x cardtype %s %02x\n",
   1454  1.25.2.1    bouyer 	    h->ph_parent->dv_xname, h->sock,
   1455  1.25.2.1    bouyer 	    ((cardtype == PCMCIA_IFTYPE_IO) ? "io" : "mem"), reg));
   1456       1.2   thorpej 
   1457       1.2   thorpej 	/* reinstall all the memory and io mappings */
   1458       1.2   thorpej 	for (win = 0; win < PCIC_MEM_WINS; win++)
   1459       1.2   thorpej 		if (h->memalloc & (1 << win))
   1460       1.2   thorpej 			pcic_chip_do_mem_map(h, win);
   1461       1.2   thorpej 	for (win = 0; win < PCIC_IO_WINS; win++)
   1462       1.2   thorpej 		if (h->ioalloc & (1 << win))
   1463       1.2   thorpej 			pcic_chip_do_io_map(h, win);
   1464  1.25.2.1    bouyer 
   1465  1.25.2.1    bouyer 	h->flags |= PCIC_FLAG_ENABLED;
   1466  1.25.2.1    bouyer 
   1467  1.25.2.1    bouyer 	/* finally enable the interrupt */
   1468  1.25.2.1    bouyer 	intr |= h->ih_irq;
   1469  1.25.2.1    bouyer 	pcic_write(h, PCIC_INTR, intr);
   1470       1.2   thorpej }
   1471       1.2   thorpej 
   1472       1.2   thorpej void
   1473       1.2   thorpej pcic_chip_socket_disable(pch)
   1474       1.2   thorpej 	pcmcia_chipset_handle_t pch;
   1475       1.2   thorpej {
   1476       1.2   thorpej 	struct pcic_handle *h = (struct pcic_handle *) pch;
   1477  1.25.2.1    bouyer 	int intr;
   1478       1.2   thorpej 
   1479       1.2   thorpej 	DPRINTF(("pcic_chip_socket_disable\n"));
   1480       1.2   thorpej 
   1481  1.25.2.1    bouyer 	/* disable interrupts */
   1482  1.25.2.1    bouyer 	intr = pcic_read(h, PCIC_INTR);
   1483  1.25.2.1    bouyer 	intr &= ~(PCIC_INTR_IRQ_MASK | PCIC_INTR_ENABLE);
   1484  1.25.2.1    bouyer 	pcic_write(h, PCIC_INTR, intr);
   1485       1.2   thorpej 
   1486  1.25.2.1    bouyer 	/* power down the socket */
   1487       1.2   thorpej 	pcic_write(h, PCIC_PWRCTL, 0);
   1488       1.9     enami 
   1489  1.25.2.1    bouyer 	/* zero out the address windows */
   1490  1.25.2.1    bouyer 	pcic_write(h, PCIC_ADDRWIN_ENABLE, 0);
   1491      1.25      haya 
   1492  1.25.2.1    bouyer 	h->flags &= ~PCIC_FLAG_ENABLED;
   1493  1.25.2.1    bouyer }
   1494      1.25      haya 
   1495      1.25      haya static u_int8_t
   1496      1.25      haya st_pcic_read(h, idx)
   1497  1.25.2.1    bouyer 	struct pcic_handle *h;
   1498  1.25.2.1    bouyer 	int idx;
   1499      1.25      haya {
   1500      1.25      haya 
   1501  1.25.2.1    bouyer 	if (idx != -1)
   1502  1.25.2.1    bouyer 		bus_space_write_1(h->ph_bus_t, h->ph_bus_h, PCIC_REG_INDEX,
   1503  1.25.2.1    bouyer 		    h->sock + idx);
   1504  1.25.2.1    bouyer 	return (bus_space_read_1(h->ph_bus_t, h->ph_bus_h, PCIC_REG_DATA));
   1505      1.25      haya }
   1506      1.25      haya 
   1507      1.25      haya static void
   1508      1.25      haya st_pcic_write(h, idx, data)
   1509  1.25.2.1    bouyer 	struct pcic_handle *h;
   1510  1.25.2.1    bouyer 	int idx;
   1511  1.25.2.1    bouyer 	u_int8_t data;
   1512  1.25.2.1    bouyer {
   1513      1.25      haya 
   1514  1.25.2.1    bouyer 	if (idx != -1)
   1515  1.25.2.1    bouyer 		bus_space_write_1(h->ph_bus_t, h->ph_bus_h, PCIC_REG_INDEX,
   1516  1.25.2.1    bouyer 		    h->sock + idx);
   1517  1.25.2.1    bouyer 	bus_space_write_1(h->ph_bus_t, h->ph_bus_h, PCIC_REG_DATA, data);
   1518       1.2   thorpej }
   1519