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