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