Home | History | Annotate | Line # | Download | only in dev
plumpcmcia.c revision 1.16
      1  1.16     lukem /*	$NetBSD: plumpcmcia.c,v 1.16 2003/07/15 02:29:30 lukem Exp $ */
      2   1.1       uch 
      3   1.1       uch /*
      4   1.4       uch  * Copyright (c) 1999, 2000 UCHIYAMA Yasushi. All rights reserved.
      5   1.4       uch  * Copyright (c) 1997 Marc Horowitz. All rights reserved.
      6   1.1       uch  *
      7   1.1       uch  * Redistribution and use in source and binary forms, with or without
      8   1.1       uch  * modification, are permitted provided that the following conditions
      9   1.1       uch  * are met:
     10   1.1       uch  * 1. Redistributions of source code must retain the above copyright
     11   1.1       uch  *    notice, this list of conditions and the following disclaimer.
     12   1.1       uch  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       uch  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       uch  *    documentation and/or other materials provided with the distribution.
     15   1.1       uch  * 3. All advertising materials mentioning features or use of this software
     16   1.1       uch  *    must display the following acknowledgement:
     17   1.1       uch  *	This product includes software developed by Marc Horowitz.
     18   1.1       uch  * 4. The name of the author may not be used to endorse or promote products
     19   1.1       uch  *    derived from this software without specific prior written permission.
     20   1.1       uch  *
     21   1.1       uch  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1       uch  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1       uch  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1       uch  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1       uch  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1       uch  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1       uch  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1       uch  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1       uch  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1       uch  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1       uch  */
     32  1.16     lukem 
     33  1.16     lukem #include <sys/cdefs.h>
     34  1.16     lukem __KERNEL_RCSID(0, "$NetBSD: plumpcmcia.c,v 1.16 2003/07/15 02:29:30 lukem Exp $");
     35   1.1       uch 
     36   1.1       uch #include <sys/param.h>
     37   1.1       uch #include <sys/systm.h>
     38   1.1       uch #include <sys/device.h>
     39   1.4       uch #include <sys/kthread.h>
     40   1.1       uch 
     41   1.1       uch #include <machine/bus.h>
     42   1.5       uch #include <machine/config_hook.h>
     43   1.8  takemura #include <machine/bus_space_hpcmips.h>
     44   1.1       uch 
     45   1.1       uch #include <dev/pcmcia/pcmciareg.h>
     46   1.1       uch #include <dev/pcmcia/pcmciavar.h>
     47   1.1       uch #include <dev/pcmcia/pcmciachip.h>
     48   1.1       uch 
     49   1.1       uch #include <hpcmips/tx/tx39var.h>
     50   1.1       uch #include <hpcmips/dev/plumvar.h>
     51   1.1       uch #include <hpcmips/dev/plumicuvar.h>
     52   1.2       uch #include <hpcmips/dev/plumpowervar.h>
     53   1.1       uch #include <hpcmips/dev/plumpcmciareg.h>
     54   1.1       uch 
     55  1.10       uch #ifdef	PLUMPCMCIA_DEBUG
     56  1.10       uch #define DPRINTF_ENABLE
     57  1.10       uch #define DPRINTF_DEBUG	plumpcmcia_debug
     58   1.1       uch #endif
     59  1.10       uch #include <machine/debug.h>
     60   1.1       uch 
     61   1.4       uch int	plumpcmcia_match(struct device *, struct cfdata *, void *);
     62   1.4       uch void	plumpcmcia_attach(struct device *, struct device *, void *);
     63   1.4       uch int	plumpcmcia_print(void *, const char *);
     64   1.4       uch int	plumpcmcia_submatch(struct device *, struct cfdata *, void *);
     65   1.1       uch 
     66   1.5       uch int	plumpcmcia_power(void *, int, long, void *);
     67   1.5       uch 
     68   1.1       uch struct plumpcmcia_softc;
     69   1.1       uch 
     70   1.1       uch struct plumpcmcia_handle {
     71   1.1       uch 	/* parent */
     72   1.1       uch 	struct device	*ph_parent;
     73   1.1       uch 	/* child */
     74   1.1       uch 	struct device	*ph_pcmcia;
     75   1.1       uch 
     76   1.1       uch 	/* PCMCIA controller register space */
     77   1.1       uch 	bus_space_tag_t ph_regt;
     78   1.1       uch 	bus_space_handle_t ph_regh;
     79   1.1       uch 
     80   1.1       uch 	/* I/O port space */
     81   1.1       uch 	int ph_ioarea;	/* not PCMCIA window */
     82   1.1       uch 	struct {
     83   1.1       uch 		bus_addr_t	pi_addr;
     84   1.1       uch 		bus_size_t	pi_size;
     85   1.1       uch 		int		pi_width;
     86   1.1       uch 	} ph_io[PLUM_PCMCIA_IO_WINS];
     87   1.1       uch 	int ph_ioalloc;
     88   1.1       uch 	bus_space_tag_t ph_iot;
     89   1.1       uch 	bus_space_handle_t ph_ioh;
     90   1.1       uch 	bus_addr_t ph_iobase;
     91   1.1       uch 	bus_size_t ph_iosize;
     92   1.1       uch 
     93   1.1       uch 	/* I/O Memory space */
     94   1.1       uch 	int ph_memarea;	/* not PCMCIA window */
     95   1.1       uch 	struct {
     96   1.1       uch 		bus_addr_t	pm_addr;
     97   1.1       uch 		bus_size_t	pm_size;
     98   1.1       uch 		int32_t		pm_offset;
     99   1.1       uch 		int		pm_kind;
    100   1.1       uch 	} ph_mem[PLUM_PCMCIA_MEM_WINS];
    101   1.1       uch 	int ph_memalloc;
    102   1.1       uch 	bus_space_tag_t ph_memt;
    103   1.1       uch 	bus_space_handle_t ph_memh;
    104   1.1       uch 	bus_addr_t ph_membase;
    105   1.1       uch 	bus_size_t ph_memsize;
    106   1.1       uch 
    107   1.4       uch 	/* Card interrupt handler */
    108   1.1       uch 	int ph_plum_irq;
    109   1.1       uch 	void *ph_card_ih;
    110   1.1       uch };
    111   1.1       uch 
    112   1.4       uch enum plumpcmcia_event_type {
    113   1.4       uch 	PLUM_PCMCIA_EVENT_INSERT,
    114   1.4       uch 	PLUM_PCMCIA_EVENT_REMOVE,
    115   1.4       uch };
    116   1.4       uch 
    117   1.4       uch struct plumpcmcia_event {
    118   1.4       uch 	int __queued;
    119   1.4       uch 	enum plumpcmcia_event_type pe_type;
    120   1.4       uch 	struct plumpcmcia_handle *pe_ph;
    121   1.4       uch 	SIMPLEQ_ENTRY(plumpcmcia_event) pe_link;
    122   1.4       uch };
    123   1.4       uch 
    124   1.1       uch struct plumpcmcia_softc {
    125   1.1       uch 	struct device	sc_dev;
    126   1.1       uch 	plum_chipset_tag_t sc_pc;
    127   1.5       uch 
    128   1.1       uch 	/* Register space */
    129   1.1       uch 	bus_space_tag_t sc_regt;
    130   1.1       uch 	bus_space_handle_t sc_regh;
    131   1.1       uch 
    132   1.5       uch 	/* power management hook */
    133   1.5       uch 	void *sc_powerhook;
    134   1.5       uch 
    135   1.4       uch 	/* CSC event */
    136   1.4       uch 	struct proc *sc_event_thread;
    137   1.4       uch 	SIMPLEQ_HEAD (, plumpcmcia_event) sc_event_head;
    138   1.4       uch 
    139   1.4       uch 	/* for each slot */
    140   1.1       uch 	struct plumpcmcia_handle sc_ph[PLUMPCMCIA_NSLOTS];
    141   1.1       uch };
    142   1.1       uch 
    143   1.4       uch static void plumpcmcia_attach_socket(struct plumpcmcia_handle *);
    144   1.4       uch static int plumpcmcia_chip_mem_alloc(pcmcia_chipset_handle_t, bus_size_t,
    145   1.7       uch     struct pcmcia_mem_handle *);
    146   1.4       uch static void plumpcmcia_chip_mem_free(pcmcia_chipset_handle_t,
    147   1.7       uch     struct pcmcia_mem_handle *);
    148   1.4       uch static int plumpcmcia_chip_mem_map(pcmcia_chipset_handle_t, int, bus_addr_t,
    149   1.9     soren     bus_size_t, struct pcmcia_mem_handle *,  bus_size_t *, int *);
    150   1.4       uch static void plumpcmcia_chip_mem_unmap(pcmcia_chipset_handle_t, int);
    151   1.4       uch static int plumpcmcia_chip_io_alloc(pcmcia_chipset_handle_t, bus_addr_t,
    152   1.7       uch     bus_size_t, bus_size_t, struct pcmcia_io_handle *);
    153   1.4       uch static void plumpcmcia_chip_io_free(pcmcia_chipset_handle_t,
    154   1.7       uch     struct pcmcia_io_handle *);
    155   1.4       uch static int plumpcmcia_chip_io_map(pcmcia_chipset_handle_t, int, bus_addr_t,
    156   1.7       uch     bus_size_t, struct pcmcia_io_handle *, int *);
    157   1.4       uch static void plumpcmcia_chip_io_unmap(pcmcia_chipset_handle_t, int);
    158   1.4       uch static void plumpcmcia_chip_socket_enable(pcmcia_chipset_handle_t);
    159   1.4       uch static void plumpcmcia_chip_socket_disable(pcmcia_chipset_handle_t);
    160   1.4       uch static void *plumpcmcia_chip_intr_establish(pcmcia_chipset_handle_t,
    161   1.7       uch     struct pcmcia_function *, int, int (*)(void *), void *);
    162   1.4       uch static void plumpcmcia_chip_intr_disestablish(pcmcia_chipset_handle_t, void *);
    163   1.4       uch static void plumpcmcia_wait_ready(	struct plumpcmcia_handle *);
    164   1.4       uch static void plumpcmcia_chip_do_mem_map(struct plumpcmcia_handle *, int);
    165   1.4       uch static void plumpcmcia_chip_do_io_map(struct plumpcmcia_handle *, int);
    166   1.1       uch 
    167   1.1       uch static struct pcmcia_chip_functions plumpcmcia_functions = {
    168   1.1       uch 	plumpcmcia_chip_mem_alloc,
    169   1.1       uch 	plumpcmcia_chip_mem_free,
    170   1.1       uch 	plumpcmcia_chip_mem_map,
    171   1.1       uch 	plumpcmcia_chip_mem_unmap,
    172   1.1       uch 	plumpcmcia_chip_io_alloc,
    173   1.1       uch 	plumpcmcia_chip_io_free,
    174   1.1       uch 	plumpcmcia_chip_io_map,
    175   1.1       uch 	plumpcmcia_chip_io_unmap,
    176   1.1       uch 	plumpcmcia_chip_intr_establish,
    177   1.1       uch 	plumpcmcia_chip_intr_disestablish,
    178   1.1       uch 	plumpcmcia_chip_socket_enable,
    179   1.1       uch 	plumpcmcia_chip_socket_disable
    180   1.1       uch };
    181   1.1       uch 
    182   1.4       uch /* CSC */
    183   1.4       uch #define PLUM_PCMCIA_EVENT_QUEUE_MAX		5
    184   1.4       uch static struct plumpcmcia_event __event_queue_pool[PLUM_PCMCIA_EVENT_QUEUE_MAX];
    185   1.4       uch static struct plumpcmcia_event *plumpcmcia_event_alloc(void);
    186   1.4       uch static void plumpcmcia_event_free(struct plumpcmcia_event *);
    187   1.4       uch static void plum_csc_intr_setup(struct plumpcmcia_softc *,
    188   1.7       uch     struct plumpcmcia_handle *, int);
    189   1.4       uch static int plum_csc_intr(void *);
    190   1.4       uch static void plumpcmcia_create_event_thread(void *);
    191   1.4       uch static void plumpcmcia_event_thread(void *);
    192   1.4       uch 
    193  1.10       uch #ifdef PLUMPCMCIA_DEBUG
    194   1.4       uch /* debug */
    195   1.4       uch #define __DEBUG_FUNC	__attribute__((__unused__))
    196   1.4       uch static void __ioareadump(plumreg_t) __DEBUG_FUNC;
    197   1.4       uch static void __memareadump(plumreg_t) __DEBUG_FUNC;
    198   1.4       uch static void plumpcmcia_dump(struct plumpcmcia_softc *) __DEBUG_FUNC;
    199  1.10       uch #endif /* PLUMPCMCIA_DEBUG */
    200   1.4       uch 
    201  1.14   thorpej CFATTACH_DECL(plumpcmcia, sizeof(struct plumpcmcia_softc),
    202  1.14   thorpej     plumpcmcia_match, plumpcmcia_attach, NULL, NULL);
    203   1.1       uch 
    204   1.1       uch int
    205   1.4       uch plumpcmcia_match(struct device *parent, struct cfdata *cf, void *aux)
    206   1.1       uch {
    207   1.7       uch 	return (1);
    208   1.1       uch }
    209   1.1       uch 
    210   1.1       uch void
    211   1.4       uch plumpcmcia_attach(struct device *parent, struct device *self, void *aux)
    212   1.1       uch {
    213   1.1       uch 	struct plum_attach_args *pa = aux;
    214   1.1       uch 	struct plumpcmcia_softc *sc = (void*)self;
    215   1.1       uch 	struct plumpcmcia_handle *ph;
    216   1.1       uch 
    217   1.1       uch 	sc->sc_pc	= pa->pa_pc;
    218   1.1       uch 	sc->sc_regt	= pa->pa_regt;
    219   1.5       uch 
    220   1.5       uch 	/* map register area */
    221   1.1       uch 	if (bus_space_map(sc->sc_regt, PLUM_PCMCIA_REGBASE,
    222   1.7       uch 	    PLUM_PCMCIA_REGSIZE, 0, &sc->sc_regh)) {
    223   1.1       uch 		printf(": register map failed\n");
    224   1.1       uch 	}
    225   1.1       uch 
    226   1.5       uch 	/* power control */
    227   1.5       uch 	plumpcmcia_power(sc, 0, 0, (void *)PWR_RESUME);
    228   1.5       uch 	/* Add a hard power hook to power saving */
    229   1.5       uch #if notyet
    230   1.5       uch 	sc->sc_powerhook = config_hook(CONFIG_HOOK_PMEVENT,
    231   1.7       uch 	    CONFIG_HOOK_PMEVENT_HARDPOWER,
    232   1.7       uch 	    CONFIG_HOOK_SHARE,
    233   1.7       uch 	    plumpcmcia_power, sc);
    234   1.5       uch 	if (sc->sc_powerhook == 0)
    235   1.5       uch 		printf(": WARNING unable to establish hard power hook");
    236   1.5       uch #endif
    237   1.1       uch 	printf("\n");
    238   1.1       uch 
    239   1.4       uch 	/* Slot0/1 CSC event queue */
    240   1.4       uch 	SIMPLEQ_INIT (&sc->sc_event_head);
    241   1.4       uch 	kthread_create(plumpcmcia_create_event_thread, sc);
    242   1.4       uch 
    243   1.1       uch 	/* Slot 0 */
    244   1.1       uch 	ph = &sc->sc_ph[0];
    245   1.1       uch 	ph->ph_plum_irq	= PLUM_INT_C1IO;
    246   1.1       uch 	ph->ph_memarea	= PLUM_PCMCIA_MEMWINCTRL_MAP_AREA1;
    247   1.1       uch 	ph->ph_membase	= PLUM_PCMCIA_MEMBASE1;
    248   1.1       uch 	ph->ph_memsize	= PLUM_PCMCIA_MEMSIZE1;
    249   1.1       uch 	ph->ph_ioarea	= PLUM_PCMCIA_IOWINADDRCTRL_AREA1;
    250   1.1       uch 	ph->ph_iobase	= PLUM_PCMCIA_IOBASE1;
    251   1.1       uch 	ph->ph_iosize	= PLUM_PCMCIA_IOSIZE1;
    252   1.1       uch 	ph->ph_regt = sc->sc_regt;
    253   1.1       uch 	bus_space_subregion(sc->sc_regt, sc->sc_regh,
    254   1.7       uch 	    PLUM_PCMCIA_REGSPACE_SLOT0,
    255   1.7       uch 	    PLUM_PCMCIA_REGSPACE_SIZE,
    256   1.7       uch 	    &ph->ph_regh);
    257   1.1       uch 	ph->ph_iot	= pa->pa_iot;
    258   1.1       uch 	ph->ph_memt	= pa->pa_iot;
    259   1.1       uch 	ph->ph_parent = (void*)sc;
    260   1.2       uch 
    261   1.4       uch 	plum_csc_intr_setup(sc, ph, PLUM_INT_C1SC);
    262   1.2       uch 	plum_power_establish(sc->sc_pc, PLUM_PWR_PCC1);
    263   1.1       uch 	plumpcmcia_attach_socket(ph);
    264   1.1       uch 
    265   1.1       uch 	/* Slot 1 */
    266   1.1       uch 	ph = &sc->sc_ph[1];
    267   1.1       uch 	ph->ph_plum_irq	= PLUM_INT_C2IO;
    268   1.1       uch 	ph->ph_memarea	= PLUM_PCMCIA_MEMWINCTRL_MAP_AREA2;
    269   1.1       uch 	ph->ph_membase	= PLUM_PCMCIA_MEMBASE2;
    270   1.1       uch 	ph->ph_memsize	= PLUM_PCMCIA_MEMSIZE2;
    271   1.1       uch 	ph->ph_ioarea	= PLUM_PCMCIA_IOWINADDRCTRL_AREA2;
    272   1.1       uch 	ph->ph_iobase	= PLUM_PCMCIA_IOBASE2;
    273   1.1       uch 	ph->ph_iosize	= PLUM_PCMCIA_IOSIZE2;
    274   1.1       uch 	ph->ph_regt = sc->sc_regt;
    275   1.1       uch 	bus_space_subregion(sc->sc_regt, sc->sc_regh,
    276   1.7       uch 	    PLUM_PCMCIA_REGSPACE_SLOT1,
    277   1.7       uch 	    PLUM_PCMCIA_REGSPACE_SIZE,
    278   1.7       uch 	    &ph->ph_regh);
    279   1.1       uch 	ph->ph_iot	= pa->pa_iot;
    280   1.1       uch 	ph->ph_memt	= pa->pa_iot;
    281   1.1       uch 	ph->ph_parent = (void*)sc;
    282   1.2       uch 
    283   1.4       uch 	plum_csc_intr_setup(sc, ph, PLUM_INT_C2SC);
    284   1.2       uch 	plum_power_establish(sc->sc_pc, PLUM_PWR_PCC2);
    285   1.1       uch 	plumpcmcia_attach_socket(ph);
    286   1.1       uch }
    287   1.1       uch 
    288   1.1       uch int
    289   1.4       uch plumpcmcia_print(void *arg, const char *pnp)
    290   1.1       uch {
    291   1.1       uch 	if (pnp) {
    292  1.15   thorpej 		aprint_normal("pcmcia at %s", pnp);
    293   1.1       uch 	}
    294   1.1       uch 
    295   1.7       uch 	return (UNCONF);
    296   1.1       uch }
    297   1.1       uch 
    298   1.1       uch int
    299   1.4       uch plumpcmcia_submatch(struct device *parent, struct cfdata *cf, void *aux)
    300   1.1       uch {
    301  1.12   thorpej 	return (config_match(parent, cf, aux));
    302   1.1       uch }
    303   1.1       uch 
    304   1.4       uch static void
    305   1.4       uch plumpcmcia_attach_socket(struct plumpcmcia_handle *ph)
    306   1.1       uch {
    307   1.1       uch 	struct pcmciabus_attach_args paa;
    308   1.1       uch 	struct plumpcmcia_softc *sc = (void*)ph->ph_parent;
    309   1.1       uch 
    310   1.1       uch 	paa.paa_busname = "pcmcia";
    311   1.1       uch 	paa.pct = (pcmcia_chipset_tag_t)&plumpcmcia_functions;
    312   1.1       uch 	paa.pch = (pcmcia_chipset_handle_t)ph;
    313   1.6       uch 	paa.iobase = 0;
    314   1.6       uch 	paa.iosize = ph->ph_iosize;
    315   1.1       uch 
    316   1.1       uch 	if ((ph->ph_pcmcia = config_found_sm((void*)sc, &paa,
    317   1.7       uch 	    plumpcmcia_print,
    318   1.7       uch 	    plumpcmcia_submatch))) {
    319   1.1       uch 		/* Enable slot */
    320   1.1       uch 		plum_conf_write(ph->ph_regt, ph->ph_regh,
    321   1.7       uch 		    PLUM_PCMCIA_SLOTCTRL,
    322   1.7       uch 		    PLUM_PCMCIA_SLOTCTRL_ENABLE);
    323   1.1       uch 		/* Support 3.3V card & enable Voltage Sense Status */
    324   1.1       uch 		plum_conf_write(ph->ph_regt, ph->ph_regh,
    325   1.7       uch 		    PLUM_PCMCIA_FUNCCTRL,
    326   1.7       uch 		    PLUM_PCMCIA_FUNCCTRL_VSSEN |
    327   1.7       uch 		    PLUM_PCMCIA_FUNCCTRL_3VSUPPORT);
    328   1.1       uch 		pcmcia_card_attach(ph->ph_pcmcia);
    329   1.1       uch 	}
    330   1.1       uch }
    331   1.1       uch 
    332   1.4       uch static void *
    333   1.4       uch plumpcmcia_chip_intr_establish(pcmcia_chipset_handle_t pch,
    334   1.7       uch     struct pcmcia_function *pf, int ipl,
    335   1.7       uch     int (*ih_fun)(void *), void *ih_arg)
    336   1.1       uch {
    337   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    338   1.1       uch 	struct plumpcmcia_softc *sc = (void*)ph->ph_parent;
    339   1.1       uch 
    340   1.1       uch 	if (!(ph->ph_card_ih =
    341   1.7       uch 	    plum_intr_establish(sc->sc_pc, ph->ph_plum_irq,
    342   1.7       uch 		IST_EDGE, IPL_BIO, ih_fun, ih_arg))) {
    343   1.1       uch 		printf("plumpcmcia_chip_intr_establish: can't establish\n");
    344   1.7       uch 		return (0);
    345   1.1       uch 	}
    346   1.1       uch 
    347   1.7       uch 	return (ph->ph_card_ih);
    348   1.1       uch }
    349   1.1       uch 
    350   1.4       uch static void
    351   1.4       uch plumpcmcia_chip_intr_disestablish(pcmcia_chipset_handle_t pch, void *ih)
    352   1.1       uch {
    353   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    354   1.1       uch 	struct plumpcmcia_softc *sc = (void*)ph->ph_parent;
    355   1.1       uch 
    356   1.1       uch 	plum_intr_disestablish(sc->sc_pc, ih);
    357   1.1       uch }
    358   1.1       uch 
    359   1.4       uch static int
    360   1.4       uch plumpcmcia_chip_mem_alloc(pcmcia_chipset_handle_t pch, bus_size_t size,
    361   1.7       uch     struct pcmcia_mem_handle *pcmhp)
    362   1.1       uch {
    363   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    364   1.1       uch 	bus_size_t realsize;
    365   1.1       uch 
    366   1.1       uch 	/* convert size to PCIC pages */
    367   1.1       uch 	realsize = ((size + (PLUM_PCMCIA_MEM_PAGESIZE - 1)) /
    368   1.7       uch 	    PLUM_PCMCIA_MEM_PAGESIZE) * PLUM_PCMCIA_MEM_PAGESIZE;
    369   1.1       uch 
    370   1.1       uch 	if (bus_space_alloc(ph->ph_memt, ph->ph_membase,
    371   1.7       uch 	    ph->ph_membase + ph->ph_memsize,
    372   1.7       uch 	    realsize, PLUM_PCMCIA_MEM_PAGESIZE,
    373   1.7       uch 	    0, 0, 0, &pcmhp->memh)) {
    374   1.7       uch 		return (1);
    375   1.1       uch 	}
    376   1.1       uch 
    377   1.1       uch 	pcmhp->memt = ph->ph_memt;
    378   1.1       uch 	/* Address offset from MEM area base */
    379   1.8  takemura 	pcmhp->addr = pcmhp->memh - ph->ph_membase -
    380   1.8  takemura 	    ((struct bus_space_tag_hpcmips*)ph->ph_memt)->base;
    381   1.1       uch 	pcmhp->size = size;
    382   1.1       uch 	pcmhp->realsize = realsize;
    383   1.1       uch 
    384   1.1       uch 	DPRINTF(("plumpcmcia_chip_mem_alloc: size %#x->%#x addr %#x->%#x\n",
    385   1.7       uch 	    (unsigned)size, (unsigned)realsize, (unsigned)pcmhp->addr,
    386   1.7       uch 	    (unsigned)pcmhp->memh));
    387   1.1       uch 
    388   1.7       uch 	return (0);
    389   1.1       uch }
    390   1.1       uch 
    391   1.4       uch static void
    392   1.4       uch plumpcmcia_chip_mem_free(pcmcia_chipset_handle_t pch,
    393   1.7       uch     struct pcmcia_mem_handle *pcmhp)
    394   1.1       uch {
    395   1.7       uch 
    396   1.1       uch 	bus_space_free(pcmhp->memt, pcmhp->memh, pcmhp->size);
    397   1.1       uch }
    398   1.1       uch 
    399   1.4       uch static int
    400   1.4       uch plumpcmcia_chip_mem_map(pcmcia_chipset_handle_t pch, int kind,
    401   1.7       uch     bus_addr_t card_addr, bus_size_t size,
    402   1.7       uch     struct pcmcia_mem_handle *pcmhp,
    403   1.9     soren     bus_size_t *offsetp, int *windowp)
    404   1.1       uch {
    405   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    406   1.1       uch 	bus_addr_t busaddr;
    407   1.1       uch 	int32_t card_offset;
    408   1.1       uch 	int i, win;
    409   1.1       uch 
    410   1.1       uch 	for (win = -1, i = 0; i < PLUM_PCMCIA_MEM_WINS; i++) {
    411   1.1       uch 		if ((ph->ph_memalloc & (1 << i)) == 0) {
    412   1.1       uch 			win = i;
    413   1.1       uch 			ph->ph_memalloc |= (1 << i);
    414   1.1       uch 			break;
    415   1.1       uch 		}
    416   1.1       uch 	}
    417   1.1       uch 	if (win == -1) {
    418   1.1       uch 		DPRINTF(("plumpcmcia_chip_mem_map: no window\n"));
    419   1.7       uch 		return (1);
    420   1.1       uch 	}
    421   1.1       uch 
    422   1.1       uch 	busaddr = pcmhp->addr;
    423   1.1       uch 
    424   1.1       uch 	*offsetp = card_addr % PLUM_PCMCIA_MEM_PAGESIZE;
    425   1.1       uch 	card_addr -= *offsetp;
    426   1.1       uch 	size += *offsetp - 1;
    427   1.1       uch 	*windowp = win;
    428   1.1       uch 	card_offset = (((int32_t)card_addr) - ((int32_t)busaddr));
    429   1.1       uch 
    430   1.1       uch 	DPRINTF(("plumpcmcia_chip_mem_map window %d bus %#x(kv:%#x)+%#x"
    431   1.7       uch 	    " size %#x at card addr %#x offset %#x\n", win,
    432   1.7       uch 	    (unsigned)busaddr, (unsigned)pcmhp->memh, (unsigned)*offsetp,
    433   1.7       uch 	    (unsigned)size, (unsigned)card_addr, (unsigned)card_offset));
    434   1.1       uch 
    435   1.1       uch 	ph->ph_mem[win].pm_addr = busaddr;
    436   1.1       uch 	ph->ph_mem[win].pm_size = size;
    437   1.1       uch 	ph->ph_mem[win].pm_offset = card_offset;
    438   1.1       uch 	ph->ph_mem[win].pm_kind = kind;
    439   1.1       uch 	ph->ph_memalloc |= (1 << win);
    440   1.1       uch 
    441   1.1       uch 	plumpcmcia_chip_do_mem_map(ph, win);
    442   1.1       uch 
    443   1.7       uch 	return (0);
    444   1.1       uch }
    445   1.1       uch 
    446   1.4       uch static void
    447   1.4       uch plumpcmcia_chip_do_mem_map(struct plumpcmcia_handle *ph, int win)
    448   1.1       uch {
    449   1.1       uch 	bus_space_tag_t regt = ph->ph_regt;
    450   1.1       uch 	bus_space_handle_t regh = ph->ph_regh;
    451   1.1       uch 	plumreg_t reg, addr, offset, size;
    452   1.1       uch 
    453   1.1       uch 	if (win < 0 || win > 4) {
    454   1.1       uch 		panic("plumpcmcia_chip_do_mem_map: bogus window %d", win);
    455   1.1       uch 	}
    456   1.1       uch 
    457   1.1       uch 	addr = (ph->ph_mem[win].pm_addr) >> PLUM_PCMCIA_MEM_SHIFT;
    458   1.1       uch 	size = (ph->ph_mem[win].pm_size) >> PLUM_PCMCIA_MEM_SHIFT;
    459   1.1       uch 	offset = (ph->ph_mem[win].pm_offset) >> PLUM_PCMCIA_MEM_SHIFT;
    460   1.1       uch 
    461   1.1       uch 	/* Attribute memory or not */
    462   1.1       uch 	reg = ph->ph_mem[win].pm_kind == PCMCIA_MEM_ATTR ?
    463   1.7       uch 	    PLUM_PCMCIA_MEMWINCTRL_REGACTIVE : 0;
    464   1.1       uch 
    465   1.1       uch 	/* Notify I/O area to select for PCMCIA controller */
    466   1.1       uch 	reg = PLUM_PCMCIA_MEMWINCTRL_MAP_SET(reg, ph->ph_memarea);
    467   1.1       uch 
    468   1.1       uch 	/* Zero wait & 16bit access */
    469   1.1       uch 	reg |= (PLUM_PCMCIA_MEMWINCTRL_ZERO_WS |
    470   1.7       uch 	    PLUM_PCMCIA_MEMWINCTRL_DATASIZE16);
    471   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_MEMWINCTRL(win), reg);
    472   1.1       uch 
    473   1.1       uch 	/* Map Host <-> PC-Card address */
    474   1.1       uch 
    475   1.1       uch 	/* host-side */
    476   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_MEMWINSTARTADDR(win),
    477   1.7       uch 	    addr);
    478   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_MEMWINSTOPADDR(win),
    479   1.7       uch 	    addr + size);
    480   1.1       uch 
    481   1.1       uch 	/* card-side */
    482   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_MEMWINOFSADDR(win), offset);
    483   1.1       uch 
    484   1.1       uch 	/* Enable memory window */
    485   1.1       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_WINEN);
    486   1.1       uch 	reg |= PLUM_PCMCIA_WINEN_MEM(win);
    487   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_WINEN, reg);
    488   1.1       uch 
    489   1.2       uch 	DPRINTF(("plumpcmcia_chip_do_mem_map: window:%d %#x(%#x)+%#x\n",
    490   1.7       uch 	    win, offset, addr, size));
    491   1.1       uch 
    492   1.1       uch 	delay(100);
    493   1.1       uch }
    494   1.1       uch 
    495   1.4       uch static void
    496   1.4       uch plumpcmcia_chip_mem_unmap(pcmcia_chipset_handle_t pch, int window)
    497   1.1       uch {
    498   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    499   1.1       uch 	bus_space_tag_t regt = ph->ph_regt;
    500   1.1       uch 	bus_space_handle_t regh = ph->ph_regh;
    501   1.1       uch 	plumreg_t reg;
    502   1.1       uch 
    503   1.1       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_WINEN);
    504   1.1       uch 	reg &= ~PLUM_PCMCIA_WINEN_MEM(window);
    505   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_WINEN, reg);
    506   1.1       uch 
    507   1.1       uch 	ph->ph_memalloc &= ~(1 << window);
    508   1.1       uch }
    509   1.1       uch 
    510   1.4       uch static int
    511   1.4       uch plumpcmcia_chip_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start,
    512   1.7       uch     bus_size_t size, bus_size_t align,
    513   1.7       uch     struct pcmcia_io_handle *pcihp)
    514   1.1       uch {
    515   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    516   1.1       uch 
    517   1.1       uch 	DPRINTF(("plumpcmcia_chip_io_alloc: start=%#x size=%#x ",
    518   1.7       uch 	    (unsigned)start, (unsigned)size));
    519   1.1       uch 	if (start) {
    520   1.1       uch 		if (bus_space_map(ph->ph_iot, ph->ph_iobase + start,
    521   1.7       uch 		    size, 0, &pcihp->ioh)) {
    522   1.1       uch 			DPRINTF(("bus_space_map failed\n"));
    523   1.7       uch 			return (1);
    524   1.1       uch 		}
    525   1.1       uch 		pcihp->flags = 0;
    526   1.2       uch 		pcihp->addr = start;
    527   1.4       uch 		DPRINTF(("(mapped) %#x+%#x\n", (unsigned)start,
    528   1.7       uch 		    (unsigned)size));
    529   1.1       uch 	} else {
    530   1.1       uch 		if (bus_space_alloc(ph->ph_iot, ph->ph_iobase,
    531   1.7       uch 		    ph->ph_iobase + ph->ph_iosize, size,
    532   1.7       uch 		    align, 0, 0, 0, &pcihp->ioh)) {
    533   1.1       uch 			DPRINTF(("bus_space_alloc failed\n"));
    534   1.1       uch 			return 1;
    535   1.1       uch 		}
    536   1.2       uch 		/* Address offset from IO area base */
    537   1.2       uch 		pcihp->addr = pcihp->ioh - ph->ph_iobase -
    538   1.8  takemura 		    ((struct bus_space_tag_hpcmips*)ph->ph_iot)->base;
    539   1.1       uch 		pcihp->flags = PCMCIA_IO_ALLOCATED;
    540   1.4       uch 		DPRINTF(("(allocated) %#x+%#x\n", (unsigned)pcihp->addr,
    541   1.7       uch 		    (unsigned)size));
    542   1.1       uch 	}
    543   1.1       uch 
    544   1.1       uch 	pcihp->iot = ph->ph_iot;
    545   1.1       uch 	pcihp->size = size;
    546   1.1       uch 
    547   1.7       uch 	return (0);
    548   1.1       uch }
    549   1.1       uch 
    550   1.4       uch static int
    551   1.4       uch plumpcmcia_chip_io_map(pcmcia_chipset_handle_t pch, int width,
    552   1.7       uch     bus_addr_t offset, bus_size_t size,
    553   1.7       uch     struct pcmcia_io_handle *pcihp, int *windowp)
    554   1.1       uch {
    555  1.10       uch #ifdef PLUMPCMCIA_DEBUG
    556   1.1       uch 	static char *width_names[] = { "auto", "io8", "io16" };
    557  1.10       uch #endif /* PLUMPCMCIA_DEBUG */
    558   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    559   1.1       uch 	bus_addr_t winofs;
    560   1.1       uch 	int i, win;
    561   1.1       uch 
    562   1.2       uch 	winofs = pcihp->addr + offset;
    563   1.2       uch 
    564   1.2       uch 	if (winofs > 0x3ff) {
    565   1.3  takemura 		printf("plumpcmcia_chip_io_map: WARNING port %#lx > 0x3ff\n",
    566   1.7       uch 		    winofs);
    567   1.2       uch 	}
    568   1.1       uch 
    569   1.1       uch 	for (win = -1, i = 0; i < PLUM_PCMCIA_IO_WINS; i++) {
    570   1.1       uch 		if ((ph->ph_ioalloc & (1 << i)) == 0) {
    571   1.1       uch 			win = i;
    572   1.1       uch 			ph->ph_ioalloc |= (1 << i);
    573   1.1       uch 			break;
    574   1.1       uch 		}
    575   1.1       uch 	}
    576   1.1       uch 	if (win == -1) {
    577   1.1       uch 		DPRINTF(("plumpcmcia_chip_io_map: no window\n"));
    578   1.7       uch 		return (1);
    579   1.1       uch 	}
    580   1.1       uch 	*windowp = win;
    581   1.1       uch 
    582   1.1       uch 	ph->ph_io[win].pi_addr = winofs;
    583   1.1       uch 	ph->ph_io[win].pi_size = size;
    584   1.1       uch 	ph->ph_io[win].pi_width = width;
    585   1.1       uch 
    586   1.1       uch 	plumpcmcia_chip_do_io_map(ph, win);
    587   1.1       uch 
    588   1.1       uch 	DPRINTF(("plumpcmcia_chip_io_map: %#x(kv:%#x)+%#x %s\n",
    589   1.7       uch 	    (unsigned)offset, (unsigned)pcihp->ioh, (unsigned)size,
    590   1.7       uch 	    width_names[width]));
    591   1.1       uch 
    592   1.7       uch 	return (0);
    593   1.1       uch }
    594   1.1       uch 
    595   1.4       uch static void
    596   1.4       uch plumpcmcia_chip_do_io_map(struct plumpcmcia_handle *ph, int win)
    597   1.1       uch {
    598   1.1       uch 	bus_space_tag_t regt = ph->ph_regt;
    599   1.1       uch 	bus_space_handle_t regh = ph->ph_regh;
    600   1.1       uch 	plumreg_t reg;
    601   1.1       uch 	bus_addr_t addr;
    602   1.1       uch 	bus_size_t size;
    603   1.1       uch 	int shift;
    604   1.1       uch 	plumreg_t ioctlbits[3] = {
    605   1.1       uch 		PLUM_PCMCIA_IOWINCTRL_IOCS16SRC,
    606   1.1       uch 		0,
    607   1.1       uch 		PLUM_PCMCIA_IOWINCTRL_DATASIZE16
    608   1.1       uch 	};
    609   1.1       uch 
    610   1.1       uch 	if (win < 0 || win > 1) {
    611   1.1       uch 		panic("plumpcmcia_chip_do_io_map: bogus window %d", win);
    612   1.1       uch 	}
    613   1.1       uch 
    614   1.1       uch 	addr = ph->ph_io[win].pi_addr;
    615   1.1       uch 	size = ph->ph_io[win].pi_size;
    616   1.1       uch 
    617   1.1       uch 	/* Notify I/O area to select for PCMCIA controller */
    618   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_IOWINADDRCTRL(win),
    619   1.7       uch 	    ph->ph_ioarea);
    620   1.1       uch 
    621   1.1       uch 	/* Start/Stop addr */
    622   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_IOWINSTARTADDR(win), addr);
    623   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_IOWINSTOPADDR(win),
    624   1.7       uch 	    addr + size - 1);
    625   1.1       uch 
    626   1.1       uch 	/* Set bus width */
    627   1.1       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_IOWINCTRL);
    628   1.1       uch 	shift = win == 0 ? PLUM_PCMCIA_IOWINCTRL_WIN0SHIFT :
    629   1.7       uch 	    PLUM_PCMCIA_IOWINCTRL_WIN1SHIFT;
    630   1.1       uch 
    631   1.1       uch 	reg &= ~(PLUM_PCMCIA_IOWINCTRL_WINMASK << shift);
    632   1.1       uch 	reg |= ((ioctlbits[ph->ph_io[win].pi_width] |
    633   1.7       uch 	    PLUM_PCMCIA_IOWINCTRL_ZEROWAIT) << shift);
    634   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_IOWINCTRL, reg);
    635   1.1       uch 
    636   1.1       uch 	/* Enable window */
    637   1.1       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_WINEN);
    638   1.1       uch 	reg |= (win == 0 ? PLUM_PCMCIA_WINEN_IO0 :
    639   1.7       uch 	    PLUM_PCMCIA_WINEN_IO1);
    640   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_WINEN, reg);
    641   1.1       uch 
    642   1.1       uch 	delay(100);
    643   1.1       uch }
    644   1.1       uch 
    645   1.4       uch static void
    646   1.4       uch plumpcmcia_chip_io_free(pcmcia_chipset_handle_t pch,
    647   1.7       uch     struct pcmcia_io_handle *pcihp)
    648   1.1       uch {
    649   1.1       uch 	if (pcihp->flags & PCMCIA_IO_ALLOCATED) {
    650   1.1       uch 		bus_space_free(pcihp->iot, pcihp->ioh, pcihp->size);
    651   1.1       uch 	} else {
    652   1.1       uch 		bus_space_unmap(pcihp->iot, pcihp->ioh, pcihp->size);
    653   1.1       uch 	}
    654   1.1       uch 
    655   1.1       uch 	DPRINTF(("plumpcmcia_chip_io_free %#x+%#x\n", pcihp->ioh,
    656   1.7       uch 	    (unsigned)pcihp->size));
    657   1.1       uch }
    658   1.1       uch 
    659   1.4       uch static void
    660   1.4       uch plumpcmcia_chip_io_unmap(pcmcia_chipset_handle_t pch, int window)
    661   1.1       uch {
    662   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    663   1.1       uch 	bus_space_tag_t regt = ph->ph_regt;
    664   1.1       uch 	bus_space_handle_t regh = ph->ph_regh;
    665   1.1       uch 	plumreg_t reg;
    666   1.1       uch 
    667   1.1       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_WINEN);
    668   1.1       uch 	switch (window) {
    669   1.1       uch 	default:
    670   1.1       uch 		panic("plumpcmcia_chip_io_unmap: bogus window");
    671   1.1       uch 	case 0:
    672   1.1       uch 		reg &= ~PLUM_PCMCIA_WINEN_IO0;
    673   1.1       uch 		break;
    674   1.1       uch 	case 1:
    675   1.1       uch 		reg &= ~PLUM_PCMCIA_WINEN_IO1;
    676   1.1       uch 		break;
    677   1.1       uch 	}
    678   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_WINEN, reg);
    679   1.1       uch 	ph->ph_ioalloc &= ~(1 << window);
    680   1.1       uch }
    681   1.1       uch 
    682   1.4       uch static void
    683   1.4       uch plumpcmcia_wait_ready(struct plumpcmcia_handle *ph)
    684   1.1       uch {
    685   1.1       uch 	bus_space_tag_t regt = ph->ph_regt;
    686   1.1       uch 	bus_space_handle_t regh = ph->ph_regh;
    687   1.1       uch 	int i;
    688   1.1       uch 
    689   1.1       uch 	for (i = 0; i < 10000; i++) {
    690   1.1       uch 		if ((plum_conf_read(regt, regh, PLUM_PCMCIA_STATUS) &
    691   1.1       uch 		    PLUM_PCMCIA_STATUS_READY) &&
    692   1.1       uch 		    (plum_conf_read(regt, regh, PLUM_PCMCIA_STATUS) &
    693   1.7       uch 			PLUM_PCMCIA_STATUS_PWROK)) {
    694   1.1       uch 			return;
    695   1.1       uch 		}
    696   1.1       uch 		delay(500);
    697   1.1       uch 
    698   1.1       uch 		if ((i > 5000) && (i % 100 == 99)) {
    699   1.1       uch 			printf(".");
    700   1.1       uch 		}
    701   1.1       uch 	}
    702   1.1       uch 	printf("plumpcmcia_wait_ready: failed\n");
    703   1.1       uch }
    704   1.1       uch 
    705   1.4       uch static void
    706   1.4       uch plumpcmcia_chip_socket_enable(pcmcia_chipset_handle_t pch)
    707   1.1       uch {
    708   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    709   1.1       uch 	bus_space_tag_t regt = ph->ph_regt;
    710   1.1       uch 	bus_space_handle_t regh = ph->ph_regh;
    711   1.1       uch 	plumreg_t reg, power;
    712   1.1       uch 	int win, cardtype;
    713   1.1       uch 
    714   1.1       uch 	/* this bit is mostly stolen from pcic_attach_card */
    715   1.1       uch 
    716   1.1       uch 	/* power down the socket to reset it, clear the card reset pin */
    717   1.1       uch 
    718   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_PWRCTRL, 0);
    719   1.1       uch 
    720   1.1       uch 	/*
    721   1.1       uch 	 * wait 300ms until power fails (Tpf).  Then, wait 100ms since
    722   1.1       uch 	 * we are changing Vcc (Toff).
    723   1.1       uch 	 */
    724   1.1       uch 	delay((300 + 100) * 1000);
    725   1.1       uch 
    726   1.1       uch 	/*
    727   1.1       uch 	 *  power up the socket
    728   1.1       uch 	 */
    729   1.1       uch 	/* detect voltage */
    730   1.1       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_GENCTRL2);
    731   1.1       uch 	if ((reg & PLUM_PCMCIA_GENCTRL2_VCC5V) ==
    732   1.1       uch 	    PLUM_PCMCIA_GENCTRL2_VCC5V) {
    733   1.1       uch 		power = PLUM_PCMCIA_PWRCTRL_VCC_CTRLBIT1; /* 5V */
    734   1.1       uch 	} else {
    735   1.1       uch 		power = PLUM_PCMCIA_PWRCTRL_VCC_CTRLBIT0; /* 3.3V */
    736   1.1       uch 	}
    737   1.1       uch 
    738   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_PWRCTRL,
    739   1.7       uch 	    PLUM_PCMCIA_PWRCTRL_DISABLE_RESETDRV |
    740   1.7       uch 	    power |
    741   1.7       uch 	    PLUM_PCMCIA_PWRCTRL_PWR_ENABLE);
    742   1.1       uch 
    743   1.1       uch 	/*
    744   1.1       uch 	 * wait 100ms until power raise (Tpr) and 20ms to become
    745   1.1       uch 	 * stable (Tsu(Vcc)).
    746   1.1       uch 	 *
    747   1.1       uch 	 * some machines require some more time to be settled
    748   1.1       uch 	 * (300ms is added here).
    749   1.1       uch 	 */
    750   1.1       uch 	delay((100 + 20 + 300) * 1000);
    751   1.1       uch 
    752   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_PWRCTRL,
    753   1.7       uch 	    PLUM_PCMCIA_PWRCTRL_DISABLE_RESETDRV |
    754   1.7       uch 	    power |
    755   1.7       uch 	    PLUM_PCMCIA_PWRCTRL_OE |
    756   1.7       uch 	    PLUM_PCMCIA_PWRCTRL_PWR_ENABLE);
    757   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_GENCTRL, 0);
    758   1.1       uch 
    759   1.1       uch 	/*
    760   1.1       uch 	 * hold RESET at least 10us.
    761   1.1       uch 	 */
    762   1.1       uch 	delay(10);
    763   1.1       uch 
    764   1.1       uch 	/* clear the reset flag */
    765   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_GENCTRL,
    766   1.7       uch 	    PLUM_PCMCIA_GENCTRL_RESET);
    767   1.1       uch 
    768   1.1       uch 	/* wait 20ms as per pc card standard (r2.01) section 4.3.6 */
    769   1.1       uch 
    770   1.1       uch 	delay(20000);
    771   1.1       uch 
    772   1.1       uch 	/* wait for the chip to finish initializing */
    773   1.1       uch 	plumpcmcia_wait_ready(ph);
    774   1.1       uch 
    775   1.1       uch 	/* zero out the address windows */
    776   1.1       uch 
    777   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_WINEN, 0);
    778   1.1       uch 
    779   1.1       uch 	/* set the card type */
    780   1.1       uch 
    781   1.1       uch 	cardtype = pcmcia_card_gettype(ph->ph_pcmcia);
    782   1.1       uch 
    783   1.1       uch 	reg = (cardtype == PCMCIA_IFTYPE_IO) ?
    784   1.7       uch 	    PLUM_PCMCIA_GENCTRL_CARDTYPE_IO :
    785   1.7       uch 	    PLUM_PCMCIA_GENCTRL_CARDTYPE_MEM;
    786   1.1       uch 	reg |= plum_conf_read(regt, regh, PLUM_PCMCIA_GENCTRL);
    787   1.1       uch 	DPRINTF(("%s: plumpcmcia_chip_socket_enable cardtype %s\n",
    788   1.7       uch 	    ph->ph_parent->dv_xname,
    789   1.7       uch 	    ((cardtype == PCMCIA_IFTYPE_IO) ? "io" : "mem")));
    790   1.1       uch 
    791   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_GENCTRL, reg);
    792   1.1       uch 
    793   1.1       uch 	/* reinstall all the memory and io mappings */
    794   1.1       uch 
    795   1.1       uch 	for (win = 0; win < PLUM_PCMCIA_MEM_WINS; win++) {
    796   1.1       uch 		if (ph->ph_memalloc & (1 << win)) {
    797   1.1       uch 			plumpcmcia_chip_do_mem_map(ph, win);
    798   1.1       uch 		}
    799   1.1       uch 	}
    800   1.1       uch 
    801   1.1       uch 	for (win = 0; win < PLUM_PCMCIA_IO_WINS; win++) {
    802   1.1       uch 		if (ph->ph_ioalloc & (1 << win)) {
    803   1.1       uch 			plumpcmcia_chip_do_io_map(ph, win);
    804   1.1       uch 		}
    805   1.1       uch 	}
    806   1.1       uch 
    807   1.1       uch }
    808   1.1       uch 
    809   1.4       uch static void
    810   1.4       uch plumpcmcia_chip_socket_disable(pcmcia_chipset_handle_t pch)
    811   1.1       uch {
    812   1.1       uch 	struct plumpcmcia_handle *ph = (void*)pch;
    813   1.1       uch 	bus_space_tag_t regt = ph->ph_regt;
    814   1.1       uch 	bus_space_handle_t regh = ph->ph_regh;
    815   1.1       uch 
    816   1.1       uch 	/* power down the socket */
    817   1.1       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_PWRCTRL, 0);
    818   1.1       uch 
    819   1.1       uch 	/*
    820   1.1       uch 	 * wait 300ms until power fails (Tpf).
    821   1.1       uch 	 */
    822   1.1       uch 	delay(300 * 1000);
    823   1.1       uch }
    824   1.1       uch 
    825   1.4       uch static void
    826   1.4       uch plum_csc_intr_setup(struct plumpcmcia_softc *sc, struct plumpcmcia_handle *ph,
    827   1.7       uch     int irq)
    828   1.4       uch {
    829   1.4       uch 	bus_space_tag_t regt = ph->ph_regt;
    830   1.4       uch 	bus_space_handle_t regh = ph->ph_regh;
    831   1.4       uch 	plumreg_t reg;
    832   1.4       uch 	void *ih;
    833   1.4       uch 
    834   1.4       uch 	/* enable CARD DETECT ENABLE only */
    835   1.4       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_CSCINT,
    836   1.7       uch 	    PLUM_PCMCIA_CSCINT_CARD_DETECT);
    837   1.4       uch 
    838   1.4       uch 	/* don't use explicit writeback csc interrupt status */
    839   1.4       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_GLOBALCTRL);
    840   1.4       uch 	reg &= ~PLUM_PCMCIA_GLOBALCTRL_EXPLICIT_WB_CSC_INT;
    841   1.4       uch 	plum_conf_write(regt, regh, PLUM_PCMCIA_GLOBALCTRL, reg);
    842   1.4       uch 
    843   1.4       uch 	/* install interrupt handler (don't fail) */
    844   1.4       uch 	ih = plum_intr_establish(sc->sc_pc, irq, IST_EDGE, IPL_TTY,
    845   1.7       uch 	    plum_csc_intr, ph);
    846   1.4       uch 	KASSERT(ih != 0);
    847   1.4       uch }
    848   1.4       uch 
    849   1.4       uch static int
    850   1.4       uch plum_csc_intr(void *arg)
    851   1.4       uch {
    852   1.4       uch 	struct plumpcmcia_handle *ph = arg;
    853   1.4       uch 	struct plumpcmcia_softc *sc = (void *)ph->ph_parent;
    854   1.4       uch 	struct plumpcmcia_event *pe;
    855   1.4       uch 	bus_space_tag_t regt = ph->ph_regt;
    856   1.4       uch 	bus_space_handle_t regh = ph->ph_regh;
    857   1.4       uch 	plumreg_t reg;
    858   1.4       uch 	int flag;
    859   1.1       uch 
    860   1.4       uch 	/* read and clear interrupt status */
    861   1.4       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_CSCINT_STAT);
    862   1.4       uch 	if (reg & PLUM_PCMCIA_CSCINT_CARD_DETECT) {
    863   1.4       uch 		DPRINTF(("%s: card status change.\n", __FUNCTION__));
    864   1.4       uch 	} else {
    865   1.4       uch 		DPRINTF(("%s: unhandled csc event. 0x%02x\n",
    866   1.7       uch 		    __FUNCTION__, reg));
    867   1.7       uch 		return (0);
    868   1.4       uch 	}
    869   1.4       uch 
    870   1.4       uch 	/* inquire card status (insert or remove) */
    871   1.4       uch 	reg = plum_conf_read(regt, regh, PLUM_PCMCIA_STATUS);
    872   1.4       uch 	reg &= (PLUM_PCMCIA_STATUS_CD1 | PLUM_PCMCIA_STATUS_CD2);
    873   1.4       uch 	if (reg == (PLUM_PCMCIA_STATUS_CD1 | PLUM_PCMCIA_STATUS_CD2)) {
    874   1.4       uch 		/* insert */
    875   1.4       uch 		flag = PLUM_PCMCIA_EVENT_INSERT;
    876   1.4       uch 	} else {
    877   1.4       uch 		/* remove */
    878   1.4       uch 		flag = PLUM_PCMCIA_EVENT_REMOVE;
    879   1.4       uch 	}
    880   1.4       uch 
    881   1.4       uch 	/* queue event to event thread and wakeup. */
    882   1.4       uch 	pe = plumpcmcia_event_alloc();
    883   1.4       uch 	if (pe == 0) {
    884   1.4       uch 		printf("%s: event FIFO overflow (%d).\n", __FUNCTION__,
    885   1.7       uch 		    PLUM_PCMCIA_EVENT_QUEUE_MAX);
    886   1.7       uch 		return (0);
    887   1.4       uch 	}
    888   1.4       uch 	pe->pe_type = flag;
    889   1.4       uch 	pe->pe_ph = ph;
    890   1.4       uch 	SIMPLEQ_INSERT_TAIL(&sc->sc_event_head, pe, pe_link);
    891   1.4       uch 	wakeup(sc);
    892   1.4       uch 
    893   1.7       uch 	return (0);
    894   1.4       uch }
    895   1.4       uch 
    896   1.4       uch static struct plumpcmcia_event *
    897   1.4       uch plumpcmcia_event_alloc()
    898   1.4       uch {
    899   1.4       uch 	int i;
    900   1.4       uch 	/* I assume called from interrupt context only. so don't lock */
    901   1.4       uch 	for (i = 0; i < PLUM_PCMCIA_EVENT_QUEUE_MAX; i++) {
    902   1.4       uch 		if (!__event_queue_pool[i].__queued) {
    903   1.4       uch 			__event_queue_pool[i].__queued = 1;
    904   1.7       uch 			return (&__event_queue_pool[i]);
    905   1.4       uch 		}
    906   1.4       uch 	}
    907   1.4       uch 
    908   1.7       uch 	return (0);
    909   1.4       uch }
    910   1.4       uch 
    911   1.4       uch static void
    912   1.4       uch plumpcmcia_event_free(struct plumpcmcia_event *pe)
    913   1.4       uch {
    914   1.4       uch 	/* I assume context is already locked */
    915   1.4       uch 	pe->__queued = 0;
    916   1.4       uch }
    917   1.4       uch 
    918   1.4       uch static void
    919   1.4       uch plumpcmcia_create_event_thread(void *arg)
    920   1.4       uch {
    921   1.4       uch 	struct plumpcmcia_softc *sc = arg;
    922   1.4       uch 	int error;
    923   1.4       uch 
    924   1.4       uch 	error = kthread_create1(plumpcmcia_event_thread, sc,
    925   1.7       uch 	    &sc->sc_event_thread, "%s",
    926   1.7       uch 	    sc->sc_dev.dv_xname);
    927   1.4       uch 	KASSERT(error == 0);
    928   1.4       uch }
    929   1.4       uch 
    930   1.4       uch static void
    931   1.4       uch plumpcmcia_event_thread(void *arg)
    932   1.4       uch {
    933   1.4       uch 	struct plumpcmcia_softc *sc = arg;
    934   1.4       uch 	struct plumpcmcia_event *pe;
    935   1.4       uch 	int s;
    936   1.4       uch 
    937   1.4       uch 	while (/*CONSTCOND*/1) { /* XXX shutdown. -uch */
    938   1.4       uch 		tsleep(sc, PWAIT, "CSC wait", 0);
    939   1.4       uch 		s = spltty();
    940   1.4       uch 		while ((pe = SIMPLEQ_FIRST(&sc->sc_event_head))) {
    941   1.4       uch 			splx(s);
    942   1.4       uch 			switch (pe->pe_type) {
    943   1.4       uch 			default:
    944   1.4       uch 				printf("%s: unknown event.\n", __FUNCTION__);
    945   1.4       uch 				break;
    946   1.4       uch 			case PLUM_PCMCIA_EVENT_INSERT:
    947   1.4       uch 				DPRINTF(("%s: insert event.\n", __FUNCTION__));
    948   1.4       uch 				pcmcia_card_attach(pe->pe_ph->ph_pcmcia);
    949   1.4       uch 				break;
    950   1.4       uch 			case PLUM_PCMCIA_EVENT_REMOVE:
    951   1.4       uch 				DPRINTF(("%s: remove event.\n", __FUNCTION__));
    952   1.4       uch 				pcmcia_card_detach(pe->pe_ph->ph_pcmcia,
    953   1.7       uch 				    DETACH_FORCE);
    954   1.4       uch 				break;
    955   1.4       uch 			}
    956   1.4       uch 			s = spltty();
    957  1.11     lukem 			SIMPLEQ_REMOVE_HEAD(&sc->sc_event_head, pe_link);
    958   1.4       uch 			plumpcmcia_event_free(pe);
    959   1.4       uch 		}
    960   1.4       uch 		splx(s);
    961   1.4       uch 	}
    962   1.4       uch 	/* NOTREACHED */
    963   1.5       uch }
    964   1.5       uch 
    965   1.5       uch /* power XXX notyet */
    966   1.5       uch int
    967   1.5       uch plumpcmcia_power(void *ctx, int type, long id, void *msg)
    968   1.5       uch {
    969   1.5       uch 	struct plumpcmcia_softc *sc = ctx;
    970   1.5       uch 	bus_space_tag_t regt = sc->sc_regt;
    971   1.5       uch 	bus_space_handle_t regh = sc->sc_regh;
    972   1.5       uch 	int why = (int)msg;
    973   1.5       uch 
    974   1.5       uch 	switch (why) {
    975   1.5       uch 	case PWR_RESUME:
    976   1.5       uch 		DPRINTF(("%s: ON\n", sc->sc_dev.dv_xname));
    977   1.5       uch 		/* power on */
    978   1.5       uch 		plum_conf_write(regt, regh, PLUM_PCMCIA_CARDPWRCTRL,
    979   1.7       uch 		    PLUM_PCMCIA_CARDPWRCTRL_ON);
    980   1.5       uch 		break;
    981   1.5       uch 	case PWR_SUSPEND:
    982   1.5       uch 		/* FALLTHROUGH */
    983   1.5       uch 	case PWR_STANDBY:
    984   1.5       uch 		plum_conf_write(regt, regh, PLUM_PCMCIA_CARDPWRCTRL,
    985   1.7       uch 		    PLUM_PCMCIA_CARDPWRCTRL_OFF);
    986   1.5       uch 		DPRINTF(("%s: OFF\n", sc->sc_dev.dv_xname));
    987   1.5       uch 		break;
    988   1.5       uch 	}
    989   1.5       uch 
    990   1.7       uch 	return (0);
    991   1.4       uch }
    992   1.4       uch 
    993  1.10       uch #ifdef PLUMPCMCIA_DEBUG
    994   1.4       uch static void
    995   1.4       uch __ioareadump(plumreg_t reg)
    996   1.1       uch {
    997   1.7       uch 
    998   1.1       uch 	if (reg & PLUM_PCMCIA_IOWINADDRCTRL_AREA2) {
    999   1.1       uch 		printf("I/O Area 2\n");
   1000   1.1       uch 	} else {
   1001   1.1       uch 		printf("I/O Area 1\n");
   1002   1.1       uch 	}
   1003   1.1       uch }
   1004   1.1       uch 
   1005   1.4       uch static void
   1006  1.10       uch __memareadump(plumreg_t reg)
   1007  1.10       uch {
   1008  1.10       uch 	int maparea;
   1009  1.10       uch 
   1010  1.10       uch 	maparea = PLUM_PCMCIA_MEMWINCTRL_MAP(reg);
   1011  1.10       uch 	switch (maparea) {
   1012  1.10       uch 	case PLUM_PCMCIA_MEMWINCTRL_MAP_AREA1:
   1013  1.10       uch 		printf("MEM Area1\n");
   1014  1.10       uch 		break;
   1015  1.10       uch 	case PLUM_PCMCIA_MEMWINCTRL_MAP_AREA2:
   1016  1.10       uch 		printf("MEM Area2\n");
   1017  1.10       uch 		break;
   1018  1.10       uch 	case PLUM_PCMCIA_MEMWINCTRL_MAP_AREA3:
   1019  1.10       uch 		printf("MEM Area3\n");
   1020  1.10       uch 		break;
   1021  1.10       uch 	case PLUM_PCMCIA_MEMWINCTRL_MAP_AREA4:
   1022  1.10       uch 		printf("MEM Area4\n");
   1023  1.10       uch 		break;
   1024  1.10       uch 	}
   1025  1.10       uch }
   1026  1.10       uch 
   1027  1.10       uch static void
   1028   1.4       uch plumpcmcia_dump(struct plumpcmcia_softc *sc)
   1029   1.1       uch {
   1030   1.1       uch 	bus_space_tag_t regt = sc->sc_regt;
   1031   1.1       uch 	bus_space_handle_t regh = sc->sc_regh;
   1032   1.1       uch 	plumreg_t reg;
   1033   1.1       uch 
   1034   1.1       uch 	int i, j;
   1035   1.1       uch 
   1036   1.1       uch 	__memareadump(plum_conf_read(regt, regh, PLUM_PCMCIA_MEMWIN0CTRL));
   1037   1.1       uch 	__memareadump(plum_conf_read(regt, regh, PLUM_PCMCIA_MEMWIN1CTRL));
   1038   1.1       uch 	__memareadump(plum_conf_read(regt, regh, PLUM_PCMCIA_MEMWIN2CTRL));
   1039   1.1       uch 	__memareadump(plum_conf_read(regt, regh, PLUM_PCMCIA_MEMWIN3CTRL));
   1040   1.1       uch 	__memareadump(plum_conf_read(regt, regh, PLUM_PCMCIA_MEMWIN4CTRL));
   1041   1.1       uch 
   1042   1.1       uch 	__ioareadump(plum_conf_read(regt, regh, PLUM_PCMCIA_IOWIN0ADDRCTRL));
   1043   1.1       uch 	__ioareadump(plum_conf_read(regt, regh, PLUM_PCMCIA_IOWIN1ADDRCTRL));
   1044   1.1       uch 
   1045   1.1       uch 	for (j = 0; j < 2; j++) {
   1046   1.1       uch 		printf("[slot %d]\n", j);
   1047   1.1       uch 		for (i = 0; i < 0x120; i += 4) {
   1048   1.7       uch 			reg = plum_conf_read(sc->sc_regt, sc->sc_regh,
   1049   1.7       uch 			    i + 0x800 * j);
   1050   1.1       uch 			printf("%03x %08x", i, reg);
   1051  1.10       uch 			dbg_bit_print(reg);
   1052   1.1       uch 		}
   1053   1.1       uch 	}
   1054   1.1       uch 	printf("\n");
   1055   1.1       uch }
   1056  1.10       uch #endif /* PLUMPCMCIA_DEBUG */
   1057