Home | History | Annotate | Line # | Download | only in dev
it8368.c revision 1.10.4.6
      1  1.10.4.6  thorpej /*	$NetBSD: it8368.c,v 1.10.4.6 2003/01/03 16:45:08 thorpej Exp $ */
      2  1.10.4.2  nathanw 
      3  1.10.4.2  nathanw /*-
      4  1.10.4.2  nathanw  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5  1.10.4.2  nathanw  * All rights reserved.
      6  1.10.4.2  nathanw  *
      7  1.10.4.2  nathanw  * This code is derived from software contributed to The NetBSD Foundation
      8  1.10.4.2  nathanw  * by UCHIYAMA Yasushi.
      9  1.10.4.2  nathanw  *
     10  1.10.4.2  nathanw  * Redistribution and use in source and binary forms, with or without
     11  1.10.4.2  nathanw  * modification, are permitted provided that the following conditions
     12  1.10.4.2  nathanw  * are met:
     13  1.10.4.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     14  1.10.4.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     15  1.10.4.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.10.4.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     17  1.10.4.2  nathanw  *    documentation and/or other materials provided with the distribution.
     18  1.10.4.2  nathanw  * 3. All advertising materials mentioning features or use of this software
     19  1.10.4.2  nathanw  *    must display the following acknowledgement:
     20  1.10.4.2  nathanw  *        This product includes software developed by the NetBSD
     21  1.10.4.2  nathanw  *        Foundation, Inc. and its contributors.
     22  1.10.4.2  nathanw  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.10.4.2  nathanw  *    contributors may be used to endorse or promote products derived
     24  1.10.4.2  nathanw  *    from this software without specific prior written permission.
     25  1.10.4.2  nathanw  *
     26  1.10.4.2  nathanw  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.10.4.2  nathanw  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.10.4.2  nathanw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.10.4.2  nathanw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.10.4.2  nathanw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.10.4.2  nathanw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.10.4.2  nathanw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.10.4.2  nathanw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.10.4.2  nathanw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.10.4.2  nathanw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.10.4.2  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     37  1.10.4.2  nathanw  */
     38  1.10.4.2  nathanw 
     39  1.10.4.2  nathanw #undef WINCE_DEFAULT_SETTING /* for debug */
     40  1.10.4.2  nathanw #undef IT8368DEBUG
     41  1.10.4.2  nathanw 
     42  1.10.4.2  nathanw #include <sys/param.h>
     43  1.10.4.2  nathanw #include <sys/systm.h>
     44  1.10.4.2  nathanw #include <sys/device.h>
     45  1.10.4.2  nathanw 
     46  1.10.4.2  nathanw #include <machine/bus.h>
     47  1.10.4.2  nathanw 
     48  1.10.4.2  nathanw #include <dev/pcmcia/pcmciareg.h>
     49  1.10.4.2  nathanw #include <dev/pcmcia/pcmciavar.h>
     50  1.10.4.2  nathanw #include <dev/pcmcia/pcmciachip.h>
     51  1.10.4.2  nathanw 
     52  1.10.4.2  nathanw #include <hpcmips/tx/tx39var.h>
     53  1.10.4.2  nathanw #include <hpcmips/tx/txcsbusvar.h>
     54  1.10.4.2  nathanw #include <hpcmips/tx/tx39biureg.h> /* legacy mode requires BIU access */
     55  1.10.4.2  nathanw #include <hpcmips/dev/it8368var.h>
     56  1.10.4.2  nathanw #include <hpcmips/dev/it8368reg.h>
     57  1.10.4.2  nathanw 
     58  1.10.4.2  nathanw #ifdef IT8368DEBUG
     59  1.10.4.2  nathanw int	it8368debug = 1;
     60  1.10.4.2  nathanw #define	DPRINTF(arg) if (it8368debug) printf arg;
     61  1.10.4.2  nathanw #define	DPRINTFN(n, arg) if (it8368debug > (n)) printf arg;
     62  1.10.4.2  nathanw #else
     63  1.10.4.2  nathanw #define	DPRINTF(arg)
     64  1.10.4.2  nathanw #define DPRINTFN(n, arg)
     65  1.10.4.2  nathanw #endif
     66  1.10.4.2  nathanw 
     67  1.10.4.2  nathanw int it8368e_match(struct device *, struct cfdata *, void *);
     68  1.10.4.2  nathanw void it8368e_attach(struct device *, struct device *, void *);
     69  1.10.4.2  nathanw int it8368_print(void *, const char *);
     70  1.10.4.2  nathanw int it8368_submatch(struct device *, struct cfdata *, void *);
     71  1.10.4.2  nathanw 
     72  1.10.4.2  nathanw #define IT8368_LASTSTATE_PRESENT	0x0002
     73  1.10.4.2  nathanw #define IT8368_LASTSTATE_HALF		0x0001
     74  1.10.4.2  nathanw #define IT8368_LASTSTATE_EMPTY		0x0000
     75  1.10.4.2  nathanw 
     76  1.10.4.2  nathanw struct it8368e_softc {
     77  1.10.4.2  nathanw 	struct device	sc_dev;
     78  1.10.4.2  nathanw 	struct device	*sc_pcmcia;
     79  1.10.4.2  nathanw 	tx_chipset_tag_t sc_tc;
     80  1.10.4.2  nathanw 
     81  1.10.4.2  nathanw 	/* Register space */
     82  1.10.4.2  nathanw 	bus_space_tag_t		sc_csregt;
     83  1.10.4.2  nathanw 	bus_space_handle_t	sc_csregh;
     84  1.10.4.2  nathanw 	/* I/O, attribute space */
     85  1.10.4.2  nathanw 	bus_space_tag_t		sc_csiot;
     86  1.10.4.2  nathanw 	bus_addr_t		sc_csiobase;
     87  1.10.4.2  nathanw 	bus_size_t		sc_csiosize;
     88  1.10.4.2  nathanw 	/*
     89  1.10.4.2  nathanw 	 *  XXX theses means attribute memory. not memory space.
     90  1.10.4.2  nathanw 	 *	memory space is 0x64000000.
     91  1.10.4.2  nathanw 	 */
     92  1.10.4.2  nathanw 	bus_space_tag_t		sc_csmemt;
     93  1.10.4.2  nathanw 	bus_addr_t		sc_csmembase;
     94  1.10.4.2  nathanw 	bus_size_t		sc_csmemsize;
     95  1.10.4.2  nathanw 
     96  1.10.4.2  nathanw 	/* Separate I/O and attribute space mode */
     97  1.10.4.2  nathanw 	int sc_fixattr;
     98  1.10.4.2  nathanw 
     99  1.10.4.2  nathanw 	/* Card interrupt handler */
    100  1.10.4.2  nathanw 	int	(*sc_card_fun)(void *);
    101  1.10.4.2  nathanw 	void	*sc_card_arg;
    102  1.10.4.2  nathanw 	void	*sc_card_ih;
    103  1.10.4.2  nathanw 	int	sc_card_irq;
    104  1.10.4.2  nathanw 
    105  1.10.4.2  nathanw 	/* Card status change */
    106  1.10.4.2  nathanw 	int	sc_irq;
    107  1.10.4.2  nathanw 	void	*sc_ih;
    108  1.10.4.2  nathanw 	int	sc_laststate;
    109  1.10.4.2  nathanw };
    110  1.10.4.2  nathanw 
    111  1.10.4.2  nathanw void it8368_init_socket(struct it8368e_softc*);
    112  1.10.4.2  nathanw void it8368_attach_socket(struct it8368e_softc *);
    113  1.10.4.2  nathanw int it8368_intr(void *);
    114  1.10.4.2  nathanw int it8368_chip_mem_alloc(pcmcia_chipset_handle_t, bus_size_t,
    115  1.10.4.2  nathanw     struct pcmcia_mem_handle *);
    116  1.10.4.2  nathanw void it8368_chip_mem_free(pcmcia_chipset_handle_t, struct pcmcia_mem_handle *);
    117  1.10.4.2  nathanw int it8368_chip_mem_map(pcmcia_chipset_handle_t, int, bus_size_t, bus_size_t,
    118  1.10.4.2  nathanw     struct pcmcia_mem_handle *, bus_addr_t *, int *);
    119  1.10.4.2  nathanw void it8368_chip_mem_unmap(pcmcia_chipset_handle_t, int);
    120  1.10.4.2  nathanw int it8368_chip_io_alloc(pcmcia_chipset_handle_t, bus_addr_t, bus_size_t,
    121  1.10.4.2  nathanw     bus_size_t, struct pcmcia_io_handle *);
    122  1.10.4.2  nathanw void it8368_chip_io_free(pcmcia_chipset_handle_t, struct pcmcia_io_handle *);
    123  1.10.4.2  nathanw int it8368_chip_io_map(pcmcia_chipset_handle_t, int, bus_addr_t, bus_size_t,
    124  1.10.4.2  nathanw     struct pcmcia_io_handle *, int *);
    125  1.10.4.2  nathanw void it8368_chip_io_unmap(pcmcia_chipset_handle_t, int);
    126  1.10.4.2  nathanw void it8368_chip_socket_enable(pcmcia_chipset_handle_t);
    127  1.10.4.2  nathanw void it8368_chip_socket_disable(pcmcia_chipset_handle_t);
    128  1.10.4.2  nathanw void *it8368_chip_intr_establish(pcmcia_chipset_handle_t,
    129  1.10.4.2  nathanw     struct pcmcia_function *, int, int (*) (void *), void *);
    130  1.10.4.2  nathanw void it8368_chip_intr_disestablish(pcmcia_chipset_handle_t, void *);
    131  1.10.4.2  nathanw 
    132  1.10.4.2  nathanw #ifdef IT8368DEBUG
    133  1.10.4.2  nathanw void it8368_dump(struct it8368e_softc *);
    134  1.10.4.2  nathanw #endif
    135  1.10.4.2  nathanw 
    136  1.10.4.2  nathanw static struct pcmcia_chip_functions it8368_functions = {
    137  1.10.4.2  nathanw 	it8368_chip_mem_alloc,
    138  1.10.4.2  nathanw 	it8368_chip_mem_free,
    139  1.10.4.2  nathanw 	it8368_chip_mem_map,
    140  1.10.4.2  nathanw 	it8368_chip_mem_unmap,
    141  1.10.4.2  nathanw 	it8368_chip_io_alloc,
    142  1.10.4.2  nathanw 	it8368_chip_io_free,
    143  1.10.4.2  nathanw 	it8368_chip_io_map,
    144  1.10.4.2  nathanw 	it8368_chip_io_unmap,
    145  1.10.4.2  nathanw 	it8368_chip_intr_establish,
    146  1.10.4.2  nathanw 	it8368_chip_intr_disestablish,
    147  1.10.4.2  nathanw 	it8368_chip_socket_enable,
    148  1.10.4.2  nathanw 	it8368_chip_socket_disable
    149  1.10.4.2  nathanw };
    150  1.10.4.2  nathanw 
    151  1.10.4.5  nathanw CFATTACH_DECL(it8368e, sizeof(struct it8368e_softc),
    152  1.10.4.5  nathanw     it8368e_match, it8368e_attach, NULL, NULL);
    153  1.10.4.2  nathanw 
    154  1.10.4.2  nathanw /*
    155  1.10.4.2  nathanw  *	IT8368 configuration register is big-endian.
    156  1.10.4.2  nathanw  */
    157  1.10.4.2  nathanw static __inline__ u_int16_t it8368_reg_read(bus_space_tag_t,
    158  1.10.4.2  nathanw     bus_space_handle_t, int);
    159  1.10.4.2  nathanw static __inline__ void it8368_reg_write(bus_space_tag_t, bus_space_handle_t,
    160  1.10.4.2  nathanw     int, u_int16_t);
    161  1.10.4.2  nathanw 
    162  1.10.4.2  nathanw #ifdef IT8368E_DESTRUCTIVE_CHECK
    163  1.10.4.2  nathanw int	it8368e_id_check(void *);
    164  1.10.4.2  nathanw 
    165  1.10.4.2  nathanw /*
    166  1.10.4.2  nathanw  *	IT8368E don't have identification method. this is destructive check.
    167  1.10.4.2  nathanw  */
    168  1.10.4.2  nathanw int
    169  1.10.4.2  nathanw it8368e_id_check(void *aux)
    170  1.10.4.2  nathanw {
    171  1.10.4.2  nathanw 	struct cs_attach_args *ca = aux;
    172  1.10.4.2  nathanw 	tx_chipset_tag_t tc;
    173  1.10.4.2  nathanw 	bus_space_tag_t csregt;
    174  1.10.4.2  nathanw 	bus_space_handle_t csregh;
    175  1.10.4.2  nathanw 	u_int16_t oreg, reg;
    176  1.10.4.2  nathanw 	int match = 0;
    177  1.10.4.2  nathanw 
    178  1.10.4.2  nathanw 	tc = ca->ca_tc;
    179  1.10.4.2  nathanw 	csregt = ca->ca_csreg.cstag;
    180  1.10.4.2  nathanw 
    181  1.10.4.2  nathanw 	bus_space_map(csregt, ca->ca_csreg.csbase, ca->ca_csreg.cssize,
    182  1.10.4.2  nathanw 	    0, &csregh);
    183  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_CTRL_REG);
    184  1.10.4.2  nathanw 	oreg = reg;
    185  1.10.4.3  nathanw 	dbg_bit_print(reg);
    186  1.10.4.2  nathanw 
    187  1.10.4.2  nathanw 	reg &= ~IT8368_CTRL_BYTESWAP;
    188  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_CTRL_REG, reg);
    189  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_CTRL_REG);
    190  1.10.4.2  nathanw 	if (reg & IT8368_CTRL_BYTESWAP)
    191  1.10.4.2  nathanw 		goto nomatch;
    192  1.10.4.2  nathanw 
    193  1.10.4.2  nathanw 	reg |= IT8368_CTRL_BYTESWAP;
    194  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_CTRL_REG, reg);
    195  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_CTRL_REG);
    196  1.10.4.2  nathanw 	if (!(reg & IT8368_CTRL_BYTESWAP))
    197  1.10.4.2  nathanw 		goto nomatch;
    198  1.10.4.2  nathanw 
    199  1.10.4.2  nathanw 	match = 1;
    200  1.10.4.2  nathanw  nomatch:
    201  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_CTRL_REG, oreg);
    202  1.10.4.2  nathanw 	bus_space_unmap(csregt, csregh, ca->ca_csreg.cssize);
    203  1.10.4.2  nathanw 
    204  1.10.4.2  nathanw 	return (match);
    205  1.10.4.2  nathanw }
    206  1.10.4.2  nathanw #endif /* IT8368E_DESTRUCTIVE_CHECK */
    207  1.10.4.2  nathanw 
    208  1.10.4.2  nathanw int
    209  1.10.4.2  nathanw it8368e_match(struct device *parent, struct cfdata *cf, void *aux)
    210  1.10.4.2  nathanw {
    211  1.10.4.2  nathanw #ifdef IT8368E_DESTRUCTIVE_CHECK
    212  1.10.4.2  nathanw 	return (it8368e_id_check(aux));
    213  1.10.4.2  nathanw #else
    214  1.10.4.2  nathanw 	return (1);
    215  1.10.4.2  nathanw #endif
    216  1.10.4.2  nathanw }
    217  1.10.4.2  nathanw 
    218  1.10.4.2  nathanw void
    219  1.10.4.2  nathanw it8368e_attach(struct device *parent, struct device *self, void *aux)
    220  1.10.4.2  nathanw {
    221  1.10.4.2  nathanw 	struct cs_attach_args *ca = aux;
    222  1.10.4.2  nathanw 	struct it8368e_softc *sc = (void*)self;
    223  1.10.4.2  nathanw 	tx_chipset_tag_t tc;
    224  1.10.4.2  nathanw 	bus_space_tag_t csregt;
    225  1.10.4.2  nathanw 	bus_space_handle_t csregh;
    226  1.10.4.2  nathanw 	u_int16_t reg;
    227  1.10.4.2  nathanw 
    228  1.10.4.2  nathanw 	sc->sc_tc = tc = ca->ca_tc;
    229  1.10.4.2  nathanw 	sc->sc_csregt = csregt = ca->ca_csreg.cstag;
    230  1.10.4.2  nathanw 
    231  1.10.4.2  nathanw 	bus_space_map(csregt, ca->ca_csreg.csbase, ca->ca_csreg.cssize,
    232  1.10.4.2  nathanw 	    0, &sc->sc_csregh);
    233  1.10.4.2  nathanw 	csregh = sc->sc_csregh;
    234  1.10.4.2  nathanw 	sc->sc_csiot = ca->ca_csio.cstag;
    235  1.10.4.2  nathanw 	sc->sc_csiobase = ca->ca_csio.csbase;
    236  1.10.4.2  nathanw 	sc->sc_csiosize = ca->ca_csio.cssize;
    237  1.10.4.2  nathanw 
    238  1.10.4.2  nathanw #ifdef IT8368DEBUG
    239  1.10.4.2  nathanw 	printf("\n\t[Windows CE setting]\n");
    240  1.10.4.2  nathanw 	it8368_dump(sc); /* print WindowsCE setting */
    241  1.10.4.2  nathanw #endif
    242  1.10.4.2  nathanw 	/* LHA[14:13] <= HA[14:13]	*/
    243  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_CTRL_REG);
    244  1.10.4.2  nathanw 	reg &= ~IT8368_CTRL_ADDRSEL;
    245  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_CTRL_REG, reg);
    246  1.10.4.2  nathanw 
    247  1.10.4.2  nathanw 	/* Set all MFIO direction as LHA[23:13] output pins */
    248  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_MFIODIR_REG);
    249  1.10.4.2  nathanw 	reg |= IT8368_MFIODIR_MASK;
    250  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_MFIODIR_REG, reg);
    251  1.10.4.2  nathanw 
    252  1.10.4.2  nathanw 	/* Set all MFIO functions as LHA */
    253  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_MFIOSEL_REG);
    254  1.10.4.2  nathanw 	reg &= ~IT8368_MFIOSEL_MASK;
    255  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_MFIOSEL_REG, reg);
    256  1.10.4.2  nathanw 
    257  1.10.4.2  nathanw 	/* Disable MFIO interrupt */
    258  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_MFIOPOSINTEN_REG);
    259  1.10.4.2  nathanw 	reg &= ~IT8368_MFIOPOSINTEN_MASK;
    260  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_MFIOPOSINTEN_REG, reg);
    261  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_MFIONEGINTEN_REG);
    262  1.10.4.2  nathanw 	reg &= ~IT8368_MFIONEGINTEN_MASK;
    263  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_MFIONEGINTEN_REG, reg);
    264  1.10.4.2  nathanw 
    265  1.10.4.2  nathanw 	/* Port direction */
    266  1.10.4.2  nathanw 	reg = IT8368_PIN_CRDVCCON1 | IT8368_PIN_CRDVCCON0 |
    267  1.10.4.2  nathanw 	    IT8368_PIN_CRDVPPON1 | IT8368_PIN_CRDVPPON0 |
    268  1.10.4.2  nathanw 	    IT8368_PIN_BCRDRST;
    269  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIODIR_REG, reg);
    270  1.10.4.2  nathanw 	printf("\n");
    271  1.10.4.2  nathanw 
    272  1.10.4.2  nathanw 	/*
    273  1.10.4.2  nathanw 	 *	Separate I/O and attribute memory region
    274  1.10.4.2  nathanw 	 */
    275  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_CTRL_REG);
    276  1.10.4.2  nathanw 
    277  1.10.4.2  nathanw 	reg |= IT8368_CTRL_FIXATTRIO;
    278  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_CTRL_REG, reg);
    279  1.10.4.2  nathanw 
    280  1.10.4.2  nathanw 	if (IT8368_CTRL_FIXATTRIO &
    281  1.10.4.2  nathanw 	    it8368_reg_read(csregt, csregh, IT8368_CTRL_REG)) {
    282  1.10.4.2  nathanw 		sc->sc_fixattr = 1;
    283  1.10.4.2  nathanw 		printf("%s: fix attr mode\n", sc->sc_dev.dv_xname);
    284  1.10.4.2  nathanw 	} else {
    285  1.10.4.2  nathanw 		sc->sc_fixattr = 0;
    286  1.10.4.2  nathanw 		printf("%s: legacy attr mode\n", sc->sc_dev.dv_xname);
    287  1.10.4.2  nathanw 	}
    288  1.10.4.2  nathanw 
    289  1.10.4.2  nathanw 	sc->sc_csmemt = sc->sc_csiot;
    290  1.10.4.2  nathanw 	sc->sc_csiosize /= 2;
    291  1.10.4.2  nathanw 	sc->sc_csmemsize = sc->sc_csiosize;
    292  1.10.4.2  nathanw 	sc->sc_csmembase = sc->sc_csiosize;
    293  1.10.4.2  nathanw 
    294  1.10.4.2  nathanw #ifdef IT8368DEBUG
    295  1.10.4.2  nathanw 	it8368_dump(sc);
    296  1.10.4.2  nathanw #endif
    297  1.10.4.2  nathanw 	/* Enable card and interrupt driving. */
    298  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_CTRL_REG);
    299  1.10.4.2  nathanw 	reg |= (IT8368_CTRL_GLOBALEN | IT8368_CTRL_CARDEN);
    300  1.10.4.2  nathanw 	if (sc->sc_fixattr)
    301  1.10.4.2  nathanw 		reg |= IT8368_CTRL_FIXATTRIO;
    302  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_CTRL_REG, reg);
    303  1.10.4.2  nathanw 
    304  1.10.4.2  nathanw 	sc->sc_irq = ca->ca_irq1;
    305  1.10.4.2  nathanw 	sc->sc_card_irq = ca->ca_irq3;
    306  1.10.4.2  nathanw 
    307  1.10.4.2  nathanw 	it8368_attach_socket(sc);
    308  1.10.4.2  nathanw }
    309  1.10.4.2  nathanw 
    310  1.10.4.2  nathanw __inline__ u_int16_t
    311  1.10.4.2  nathanw it8368_reg_read(bus_space_tag_t t, bus_space_handle_t h, int ofs)
    312  1.10.4.2  nathanw {
    313  1.10.4.2  nathanw 	u_int16_t val;
    314  1.10.4.2  nathanw 
    315  1.10.4.2  nathanw 	val = bus_space_read_2(t, h, ofs);
    316  1.10.4.2  nathanw 	return (0xffff & (((val >> 8) & 0xff)|((val << 8) & 0xff00)));
    317  1.10.4.2  nathanw }
    318  1.10.4.2  nathanw 
    319  1.10.4.2  nathanw __inline__ void
    320  1.10.4.2  nathanw it8368_reg_write(bus_space_tag_t t, bus_space_handle_t h, int ofs, u_int16_t v)
    321  1.10.4.2  nathanw {
    322  1.10.4.2  nathanw 	u_int16_t val;
    323  1.10.4.2  nathanw 
    324  1.10.4.2  nathanw 	val = 0xffff & (((v >> 8) & 0xff)|((v << 8) & 0xff00));
    325  1.10.4.2  nathanw 	bus_space_write_2(t, h, ofs, val);
    326  1.10.4.2  nathanw }
    327  1.10.4.2  nathanw 
    328  1.10.4.2  nathanw int
    329  1.10.4.2  nathanw it8368_intr(void *arg)
    330  1.10.4.2  nathanw {
    331  1.10.4.2  nathanw 	struct it8368e_softc *sc = arg;
    332  1.10.4.2  nathanw 	bus_space_tag_t csregt = sc->sc_csregt;
    333  1.10.4.2  nathanw 	bus_space_handle_t csregh = sc->sc_csregh;
    334  1.10.4.2  nathanw 	u_int16_t reg;
    335  1.10.4.2  nathanw 
    336  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIONEGINTSTAT_REG);
    337  1.10.4.2  nathanw 
    338  1.10.4.2  nathanw 	if (reg & IT8368_PIN_BCRDRDY) {
    339  1.10.4.2  nathanw 		if (sc->sc_card_fun) {
    340  1.10.4.2  nathanw 			/* clear interrupt */
    341  1.10.4.2  nathanw 			it8368_reg_write(csregt, csregh,
    342  1.10.4.2  nathanw 			    IT8368_GPIONEGINTSTAT_REG,
    343  1.10.4.2  nathanw 			    IT8368_PIN_BCRDRDY);
    344  1.10.4.2  nathanw 
    345  1.10.4.2  nathanw 			/* Dispatch card interrupt handler */
    346  1.10.4.2  nathanw 			(*sc->sc_card_fun)(sc->sc_card_arg);
    347  1.10.4.2  nathanw 		}
    348  1.10.4.2  nathanw 	} else if (reg & IT8368_PIN_CRDDET2) {
    349  1.10.4.2  nathanw 		it8368_reg_write(csregt, csregh, IT8368_GPIONEGINTSTAT_REG,
    350  1.10.4.2  nathanw 		    IT8368_PIN_CRDDET2);
    351  1.10.4.2  nathanw 		printf("[CSC]\n");
    352  1.10.4.2  nathanw #ifdef IT8368DEBUG
    353  1.10.4.2  nathanw 		it8368_dump(sc);
    354  1.10.4.2  nathanw #endif
    355  1.10.4.2  nathanw 		it8368_chip_socket_disable(sc);
    356  1.10.4.2  nathanw 	} else {
    357  1.10.4.2  nathanw #ifdef IT8368DEBUG
    358  1.10.4.2  nathanw 		u_int16_t reg2;
    359  1.10.4.2  nathanw 		reg2 = reg & ~(IT8368_PIN_BCRDRDY|IT8368_PIN_CRDDET2);
    360  1.10.4.2  nathanw 		printf("unknown it8368 interrupt: ");
    361  1.10.4.3  nathanw 		dbg_bit_print(reg2);
    362  1.10.4.2  nathanw 		it8368_reg_write(csregt, csregh, IT8368_GPIONEGINTSTAT_REG,
    363  1.10.4.2  nathanw 		    reg);
    364  1.10.4.2  nathanw #endif
    365  1.10.4.2  nathanw 	}
    366  1.10.4.2  nathanw 
    367  1.10.4.2  nathanw 	return (0);
    368  1.10.4.2  nathanw }
    369  1.10.4.2  nathanw 
    370  1.10.4.2  nathanw int
    371  1.10.4.2  nathanw it8368_print(void *arg, const char *pnp)
    372  1.10.4.2  nathanw {
    373  1.10.4.2  nathanw 	if (pnp)
    374  1.10.4.6  thorpej 		aprint_normal("pcmcia at %s", pnp);
    375  1.10.4.2  nathanw 
    376  1.10.4.2  nathanw 	return (UNCONF);
    377  1.10.4.2  nathanw }
    378  1.10.4.2  nathanw 
    379  1.10.4.2  nathanw int
    380  1.10.4.2  nathanw it8368_submatch(struct device *parent, struct cfdata *cf, void *aux)
    381  1.10.4.2  nathanw {
    382  1.10.4.2  nathanw 
    383  1.10.4.5  nathanw 	return (config_match(parent, cf, aux));
    384  1.10.4.2  nathanw }
    385  1.10.4.2  nathanw 
    386  1.10.4.2  nathanw void
    387  1.10.4.2  nathanw it8368_attach_socket(struct it8368e_softc *sc)
    388  1.10.4.2  nathanw {
    389  1.10.4.2  nathanw 	struct pcmciabus_attach_args paa;
    390  1.10.4.2  nathanw 
    391  1.10.4.2  nathanw 	paa.paa_busname = "pcmcia";
    392  1.10.4.2  nathanw 	paa.pct = (pcmcia_chipset_tag_t)&it8368_functions;
    393  1.10.4.2  nathanw 	paa.pch = (pcmcia_chipset_handle_t)sc;
    394  1.10.4.2  nathanw 	paa.iobase = 0;
    395  1.10.4.2  nathanw 	paa.iosize = sc->sc_csiosize;
    396  1.10.4.2  nathanw 
    397  1.10.4.2  nathanw 	if ((sc->sc_pcmcia = config_found_sm((void*)sc, &paa, it8368_print,
    398  1.10.4.2  nathanw 	    it8368_submatch))) {
    399  1.10.4.2  nathanw 
    400  1.10.4.2  nathanw 		it8368_init_socket(sc);
    401  1.10.4.2  nathanw 	}
    402  1.10.4.2  nathanw }
    403  1.10.4.2  nathanw 
    404  1.10.4.2  nathanw void
    405  1.10.4.2  nathanw it8368_init_socket(struct it8368e_softc *sc)
    406  1.10.4.2  nathanw {
    407  1.10.4.2  nathanw 	bus_space_tag_t csregt = sc->sc_csregt;
    408  1.10.4.2  nathanw 	bus_space_handle_t csregh = sc->sc_csregh;
    409  1.10.4.2  nathanw 	u_int16_t reg;
    410  1.10.4.2  nathanw 
    411  1.10.4.2  nathanw 	/*
    412  1.10.4.2  nathanw 	 *  set up the card to interrupt on card detect
    413  1.10.4.2  nathanw 	 */
    414  1.10.4.2  nathanw 	reg = IT8368_PIN_CRDDET2; /* CSC */
    415  1.10.4.2  nathanw 	/* enable negative edge */
    416  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIONEGINTEN_REG, reg);
    417  1.10.4.2  nathanw 	/* disable positive edge */
    418  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIOPOSINTEN_REG, 0);
    419  1.10.4.2  nathanw 
    420  1.10.4.2  nathanw 	sc->sc_ih = tx_intr_establish(sc->sc_tc, sc->sc_irq,
    421  1.10.4.2  nathanw 	    IST_EDGE, IPL_BIO, it8368_intr, sc);
    422  1.10.4.2  nathanw 	if (sc->sc_ih == NULL) {
    423  1.10.4.2  nathanw 		printf("%s: can't establish interrupt\n",
    424  1.10.4.2  nathanw 		    sc->sc_dev.dv_xname);
    425  1.10.4.2  nathanw 		return;
    426  1.10.4.2  nathanw 	}
    427  1.10.4.2  nathanw 
    428  1.10.4.2  nathanw 	/*
    429  1.10.4.2  nathanw 	 *  if there's a card there, then attach it.
    430  1.10.4.2  nathanw 	 */
    431  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIODATAIN_REG);
    432  1.10.4.2  nathanw 
    433  1.10.4.2  nathanw 	if (reg & (IT8368_PIN_CRDDET2|IT8368_PIN_CRDDET1)) {
    434  1.10.4.2  nathanw 		sc->sc_laststate = IT8368_LASTSTATE_EMPTY;
    435  1.10.4.2  nathanw 	} else {
    436  1.10.4.2  nathanw 		pcmcia_card_attach(sc->sc_pcmcia);
    437  1.10.4.2  nathanw 		sc->sc_laststate = IT8368_LASTSTATE_PRESENT;
    438  1.10.4.2  nathanw 	}
    439  1.10.4.2  nathanw }
    440  1.10.4.2  nathanw 
    441  1.10.4.2  nathanw void *
    442  1.10.4.2  nathanw it8368_chip_intr_establish(pcmcia_chipset_handle_t pch,
    443  1.10.4.2  nathanw     struct pcmcia_function *pf, int ipl, int (*ih_fun)(void *), void *ih_arg)
    444  1.10.4.2  nathanw {
    445  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*) pch;
    446  1.10.4.2  nathanw 	bus_space_tag_t csregt = sc->sc_csregt;
    447  1.10.4.2  nathanw 	bus_space_handle_t csregh = sc->sc_csregh;
    448  1.10.4.2  nathanw 	u_int16_t reg;
    449  1.10.4.2  nathanw 
    450  1.10.4.2  nathanw 	if (sc->sc_card_fun)
    451  1.10.4.2  nathanw 		panic("it8368_chip_intr_establish: "
    452  1.10.4.2  nathanw 		    "duplicate card interrupt handler.");
    453  1.10.4.2  nathanw 
    454  1.10.4.2  nathanw 	sc->sc_card_fun = ih_fun;
    455  1.10.4.2  nathanw 	sc->sc_card_arg = ih_arg;
    456  1.10.4.2  nathanw 
    457  1.10.4.2  nathanw 	sc->sc_card_ih = tx_intr_establish(sc->sc_tc, sc->sc_card_irq,
    458  1.10.4.2  nathanw 	    IST_EDGE, IPL_BIO, it8368_intr,
    459  1.10.4.2  nathanw 	    sc);
    460  1.10.4.2  nathanw 
    461  1.10.4.2  nathanw 	/* enable card interrupt */
    462  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIONEGINTEN_REG);
    463  1.10.4.2  nathanw 	reg |= IT8368_PIN_BCRDRDY;
    464  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIONEGINTEN_REG, reg);
    465  1.10.4.2  nathanw 
    466  1.10.4.2  nathanw 	return (sc->sc_card_ih);
    467  1.10.4.2  nathanw }
    468  1.10.4.2  nathanw 
    469  1.10.4.2  nathanw void
    470  1.10.4.2  nathanw it8368_chip_intr_disestablish(pcmcia_chipset_handle_t pch, void *ih)
    471  1.10.4.2  nathanw {
    472  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*) pch;
    473  1.10.4.2  nathanw 	bus_space_tag_t csregt = sc->sc_csregt;
    474  1.10.4.2  nathanw 	bus_space_handle_t csregh = sc->sc_csregh;
    475  1.10.4.2  nathanw 	u_int16_t reg;
    476  1.10.4.2  nathanw 
    477  1.10.4.2  nathanw 	if (!sc->sc_card_fun)
    478  1.10.4.2  nathanw 		panic("it8368_chip_intr_disestablish:"
    479  1.10.4.2  nathanw 		    "no handler established.");
    480  1.10.4.2  nathanw 	assert(ih == sc->sc_card_ih);
    481  1.10.4.2  nathanw 
    482  1.10.4.2  nathanw 	sc->sc_card_fun = 0;
    483  1.10.4.2  nathanw 	sc->sc_card_arg = 0;
    484  1.10.4.2  nathanw 
    485  1.10.4.2  nathanw 	/* disable card interrupt */
    486  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIONEGINTEN_REG);
    487  1.10.4.2  nathanw 	reg &= ~IT8368_PIN_BCRDRDY;
    488  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIONEGINTEN_REG, reg);
    489  1.10.4.2  nathanw 
    490  1.10.4.2  nathanw 	tx_intr_disestablish(sc->sc_tc, ih);
    491  1.10.4.2  nathanw }
    492  1.10.4.2  nathanw 
    493  1.10.4.2  nathanw int
    494  1.10.4.2  nathanw it8368_chip_mem_alloc(pcmcia_chipset_handle_t pch, bus_size_t size,
    495  1.10.4.2  nathanw     struct pcmcia_mem_handle *pcmhp)
    496  1.10.4.2  nathanw {
    497  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*) pch;
    498  1.10.4.2  nathanw 
    499  1.10.4.2  nathanw 	if (bus_space_alloc(sc->sc_csmemt, sc->sc_csmembase,
    500  1.10.4.2  nathanw 	    sc->sc_csmembase + sc->sc_csmemsize, size,
    501  1.10.4.2  nathanw 	    size, 0, 0, 0, &pcmhp->memh)) {
    502  1.10.4.2  nathanw 		DPRINTF(("it8368_chip_mem_alloc: failed\n"));
    503  1.10.4.2  nathanw 		return (1);
    504  1.10.4.2  nathanw 	}
    505  1.10.4.2  nathanw 
    506  1.10.4.2  nathanw 	if (!sc->sc_fixattr) /* XXX IT8368 brain damaged spec */
    507  1.10.4.2  nathanw 		pcmhp->memh -= sc->sc_csmembase;
    508  1.10.4.2  nathanw 
    509  1.10.4.2  nathanw 	pcmhp->memt = sc->sc_csmemt;
    510  1.10.4.2  nathanw 	pcmhp->addr = pcmhp->memh;
    511  1.10.4.2  nathanw 	pcmhp->size = size;
    512  1.10.4.2  nathanw 	pcmhp->realsize = size;
    513  1.10.4.2  nathanw 
    514  1.10.4.2  nathanw 	DPRINTF(("it8368_chip_mem_alloc: %#x+%#x\n",
    515  1.10.4.2  nathanw 	    (unsigned)pcmhp->memh, (unsigned)size));
    516  1.10.4.2  nathanw 
    517  1.10.4.2  nathanw 	return (0);
    518  1.10.4.2  nathanw }
    519  1.10.4.2  nathanw 
    520  1.10.4.2  nathanw void
    521  1.10.4.2  nathanw it8368_chip_mem_free(pcmcia_chipset_handle_t pch,
    522  1.10.4.2  nathanw     struct pcmcia_mem_handle *pcmhp)
    523  1.10.4.2  nathanw {
    524  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*) pch;
    525  1.10.4.2  nathanw 
    526  1.10.4.2  nathanw 	DPRINTF(("it8368_chip_mem_free: %#x+%#x\n",
    527  1.10.4.2  nathanw 	    (unsigned)pcmhp->memh, (unsigned)pcmhp->size));
    528  1.10.4.2  nathanw 
    529  1.10.4.2  nathanw 	if (!sc->sc_fixattr) /* XXX IT8368 brain damaged spec */
    530  1.10.4.2  nathanw 		pcmhp->memh += sc->sc_csmembase;
    531  1.10.4.2  nathanw 
    532  1.10.4.2  nathanw 	bus_space_unmap(pcmhp->memt, pcmhp->memh, pcmhp->size);
    533  1.10.4.2  nathanw }
    534  1.10.4.2  nathanw 
    535  1.10.4.2  nathanw int
    536  1.10.4.2  nathanw it8368_chip_mem_map(pcmcia_chipset_handle_t pch, int kind,
    537  1.10.4.2  nathanw     bus_addr_t card_addr, bus_size_t size, struct pcmcia_mem_handle *pcmhp,
    538  1.10.4.2  nathanw     bus_size_t *offsetp, int *windowp)
    539  1.10.4.2  nathanw {
    540  1.10.4.2  nathanw 	/* attribute mode */
    541  1.10.4.2  nathanw 	it8368_mode(pch, IT8368_ATTR_MODE, IT8368_WIDTH_16);
    542  1.10.4.2  nathanw 
    543  1.10.4.2  nathanw 	*offsetp = card_addr;
    544  1.10.4.2  nathanw 	DPRINTF(("it8368_chip_mem_map %#x+%#x\n",
    545  1.10.4.2  nathanw 	    (unsigned)pcmhp->memh, (unsigned)size));
    546  1.10.4.2  nathanw 
    547  1.10.4.2  nathanw 	return (0);
    548  1.10.4.2  nathanw }
    549  1.10.4.2  nathanw 
    550  1.10.4.2  nathanw void
    551  1.10.4.2  nathanw it8368_chip_mem_unmap(pcmcia_chipset_handle_t pch, int window)
    552  1.10.4.2  nathanw {
    553  1.10.4.2  nathanw 	/* return to I/O mode */
    554  1.10.4.2  nathanw 	it8368_mode(pch, IT8368_IO_MODE, IT8368_WIDTH_16);
    555  1.10.4.2  nathanw }
    556  1.10.4.2  nathanw 
    557  1.10.4.2  nathanw void
    558  1.10.4.2  nathanw it8368_mode(pcmcia_chipset_handle_t pch, int io, int width)
    559  1.10.4.2  nathanw {
    560  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*) pch;
    561  1.10.4.2  nathanw 	txreg_t reg32;
    562  1.10.4.2  nathanw 
    563  1.10.4.2  nathanw 	DPRINTF(("it8368_mode: change access space to "));
    564  1.10.4.2  nathanw 	DPRINTF((io ? "I/O (%dbit)\n" : "attribute (%dbit)...\n",
    565  1.10.4.2  nathanw 	    width == IT8368_WIDTH_8 ? 8 : 16));
    566  1.10.4.2  nathanw 
    567  1.10.4.2  nathanw 	reg32 = tx_conf_read(sc->sc_tc, TX39_MEMCONFIG3_REG);
    568  1.10.4.2  nathanw 
    569  1.10.4.2  nathanw 	if (io) {
    570  1.10.4.2  nathanw 		if (width == IT8368_WIDTH_8)
    571  1.10.4.2  nathanw 			reg32 |= TX39_MEMCONFIG3_PORT8SEL;
    572  1.10.4.2  nathanw 		else
    573  1.10.4.2  nathanw 			reg32 &= ~TX39_MEMCONFIG3_PORT8SEL;
    574  1.10.4.2  nathanw 	}
    575  1.10.4.2  nathanw 
    576  1.10.4.2  nathanw 	if (!sc->sc_fixattr) {
    577  1.10.4.2  nathanw 		if (io)
    578  1.10.4.2  nathanw 			reg32 |= TX39_MEMCONFIG3_CARD1IOEN;
    579  1.10.4.2  nathanw 		else
    580  1.10.4.2  nathanw 			reg32 &= ~TX39_MEMCONFIG3_CARD1IOEN;
    581  1.10.4.2  nathanw 	}
    582  1.10.4.2  nathanw 	tx_conf_write(sc->sc_tc, TX39_MEMCONFIG3_REG, reg32);
    583  1.10.4.2  nathanw 
    584  1.10.4.2  nathanw #ifdef IT8368DEBUG
    585  1.10.4.2  nathanw 	if (sc->sc_fixattr)
    586  1.10.4.2  nathanw 		return; /* No need to report BIU status */
    587  1.10.4.2  nathanw 
    588  1.10.4.2  nathanw 	/* check BIU status */
    589  1.10.4.2  nathanw 	reg32 = tx_conf_read(sc->sc_tc, TX39_MEMCONFIG3_REG);
    590  1.10.4.2  nathanw 	if (reg32 & TX39_MEMCONFIG3_CARD1IOEN) {
    591  1.10.4.2  nathanw 		DPRINTF(("it8368_mode: I/O space (%dbit) enabled\n",
    592  1.10.4.2  nathanw 		    reg32 & TX39_MEMCONFIG3_PORT8SEL ? 8 : 16));
    593  1.10.4.2  nathanw 	} else {
    594  1.10.4.2  nathanw 		DPRINTF(("it8368_mode: atttribute space enabled\n"));
    595  1.10.4.2  nathanw 	}
    596  1.10.4.2  nathanw #endif /* IT8368DEBUG */
    597  1.10.4.2  nathanw }
    598  1.10.4.2  nathanw 
    599  1.10.4.2  nathanw int
    600  1.10.4.2  nathanw it8368_chip_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start,
    601  1.10.4.2  nathanw     bus_size_t size, bus_size_t align, struct pcmcia_io_handle *pcihp)
    602  1.10.4.2  nathanw {
    603  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*) pch;
    604  1.10.4.2  nathanw 
    605  1.10.4.2  nathanw 	if (start) {
    606  1.10.4.2  nathanw 		if (bus_space_map(sc->sc_csiot, start, size, 0,
    607  1.10.4.2  nathanw 		    &pcihp->ioh)) {
    608  1.10.4.2  nathanw 			return (1);
    609  1.10.4.2  nathanw 		}
    610  1.10.4.2  nathanw 		DPRINTF(("it8368_chip_io_alloc map port %#x+%#x\n",
    611  1.10.4.2  nathanw 		    (unsigned)start, (unsigned)size));
    612  1.10.4.2  nathanw 	} else {
    613  1.10.4.2  nathanw 		if (bus_space_alloc(sc->sc_csiot, sc->sc_csiobase,
    614  1.10.4.2  nathanw 		    sc->sc_csiobase + sc->sc_csiosize,
    615  1.10.4.2  nathanw 		    size, align, 0, 0, &pcihp->addr,
    616  1.10.4.2  nathanw 		    &pcihp->ioh)) {
    617  1.10.4.2  nathanw 
    618  1.10.4.2  nathanw 			return (1);
    619  1.10.4.2  nathanw 		}
    620  1.10.4.2  nathanw 		pcihp->flags = PCMCIA_IO_ALLOCATED;
    621  1.10.4.2  nathanw 		DPRINTF(("it8368_chip_io_alloc alloc %#x from %#x\n",
    622  1.10.4.2  nathanw 		    (unsigned)size, (unsigned)pcihp->addr));
    623  1.10.4.2  nathanw 	}
    624  1.10.4.2  nathanw 
    625  1.10.4.2  nathanw 	pcihp->iot = sc->sc_csiot;
    626  1.10.4.2  nathanw 	pcihp->size = size;
    627  1.10.4.2  nathanw 
    628  1.10.4.2  nathanw 	return (0);
    629  1.10.4.2  nathanw }
    630  1.10.4.2  nathanw 
    631  1.10.4.2  nathanw int
    632  1.10.4.2  nathanw it8368_chip_io_map(pcmcia_chipset_handle_t pch, int width, bus_addr_t offset,
    633  1.10.4.2  nathanw     bus_size_t size, struct pcmcia_io_handle *pcihp, int *windowp)
    634  1.10.4.2  nathanw {
    635  1.10.4.2  nathanw 	/* I/O mode */
    636  1.10.4.2  nathanw 	it8368_mode(pch, IT8368_IO_MODE, IT8368_WIDTH_16);
    637  1.10.4.2  nathanw 
    638  1.10.4.2  nathanw 	DPRINTF(("it8368_chip_io_map %#x:%#x+%#x\n",
    639  1.10.4.2  nathanw 	    (unsigned)pcihp->ioh, (unsigned)offset, (unsigned)size));
    640  1.10.4.2  nathanw 
    641  1.10.4.2  nathanw 	return (0);
    642  1.10.4.2  nathanw }
    643  1.10.4.2  nathanw 
    644  1.10.4.2  nathanw void
    645  1.10.4.2  nathanw it8368_chip_io_free(pcmcia_chipset_handle_t pch,
    646  1.10.4.2  nathanw     struct pcmcia_io_handle *pcihp)
    647  1.10.4.2  nathanw {
    648  1.10.4.2  nathanw 	if (pcihp->flags & PCMCIA_IO_ALLOCATED)
    649  1.10.4.2  nathanw 		bus_space_free(pcihp->iot, pcihp->ioh, pcihp->size);
    650  1.10.4.2  nathanw 	else
    651  1.10.4.2  nathanw 		bus_space_unmap(pcihp->iot, pcihp->ioh, pcihp->size);
    652  1.10.4.2  nathanw 
    653  1.10.4.2  nathanw 	DPRINTF(("it8368_chip_io_free %#x+%#x\n",
    654  1.10.4.2  nathanw 	    (unsigned)pcihp->ioh, (unsigned)pcihp->size));
    655  1.10.4.2  nathanw }
    656  1.10.4.2  nathanw 
    657  1.10.4.2  nathanw void
    658  1.10.4.2  nathanw it8368_chip_io_unmap(pcmcia_chipset_handle_t pch, int window)
    659  1.10.4.2  nathanw {
    660  1.10.4.2  nathanw 
    661  1.10.4.2  nathanw }
    662  1.10.4.2  nathanw 
    663  1.10.4.2  nathanw void
    664  1.10.4.2  nathanw it8368_chip_socket_enable(pcmcia_chipset_handle_t pch)
    665  1.10.4.2  nathanw {
    666  1.10.4.2  nathanw #ifndef WINCE_DEFAULT_SETTING
    667  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*)pch;
    668  1.10.4.2  nathanw 	bus_space_tag_t csregt = sc->sc_csregt;
    669  1.10.4.2  nathanw 	bus_space_handle_t csregh = sc->sc_csregh;
    670  1.10.4.2  nathanw 	volatile u_int16_t reg;
    671  1.10.4.2  nathanw 
    672  1.10.4.2  nathanw 	/* Power off */
    673  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIODATAOUT_REG);
    674  1.10.4.2  nathanw 	reg &= ~(IT8368_PIN_CRDVCCMASK | IT8368_PIN_CRDVPPMASK);
    675  1.10.4.2  nathanw 	reg |= (IT8368_PIN_CRDVCC_0V | IT8368_PIN_CRDVPP_0V);
    676  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIODATAOUT_REG, reg);
    677  1.10.4.2  nathanw 	delay(20000);
    678  1.10.4.2  nathanw 
    679  1.10.4.2  nathanw 	/*
    680  1.10.4.2  nathanw 	 * wait 300ms until power fails (Tpf).  Then, wait 100ms since
    681  1.10.4.2  nathanw 	 * we are changing Vcc (Toff).
    682  1.10.4.2  nathanw 	 */
    683  1.10.4.2  nathanw 	delay((300 + 100) * 1000);
    684  1.10.4.2  nathanw 
    685  1.10.4.2  nathanw 	/* Supply Vcc */
    686  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIODATAOUT_REG);
    687  1.10.4.2  nathanw 	reg &= ~(IT8368_PIN_CRDVCCMASK | IT8368_PIN_CRDVPPMASK);
    688  1.10.4.2  nathanw 	reg |= IT8368_PIN_CRDVCC_5V; /* XXX */
    689  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIODATAOUT_REG, reg);
    690  1.10.4.2  nathanw 
    691  1.10.4.2  nathanw 	/*
    692  1.10.4.2  nathanw 	 * wait 100ms until power raise (Tpr) and 20ms to become
    693  1.10.4.2  nathanw 	 * stable (Tsu(Vcc)).
    694  1.10.4.2  nathanw 	 *
    695  1.10.4.2  nathanw 	 * some machines require some more time to be settled
    696  1.10.4.2  nathanw 	 * (300ms is added here).
    697  1.10.4.2  nathanw 	 */
    698  1.10.4.2  nathanw 	delay((100 + 20 + 300) * 1000);
    699  1.10.4.2  nathanw 
    700  1.10.4.2  nathanw 	/* Assert reset signal */
    701  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIODATAOUT_REG);
    702  1.10.4.2  nathanw 	reg |= IT8368_PIN_BCRDRST;
    703  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIODATAOUT_REG, reg);
    704  1.10.4.2  nathanw 
    705  1.10.4.2  nathanw 	/*
    706  1.10.4.2  nathanw 	 * hold RESET at least 10us.
    707  1.10.4.2  nathanw 	 */
    708  1.10.4.2  nathanw 	delay(10);
    709  1.10.4.2  nathanw 
    710  1.10.4.2  nathanw 	/* deassert reset signal */
    711  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIODATAOUT_REG);
    712  1.10.4.2  nathanw 	reg &= ~IT8368_PIN_BCRDRST;
    713  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIODATAOUT_REG, reg);
    714  1.10.4.2  nathanw 	delay(20000);
    715  1.10.4.2  nathanw 
    716  1.10.4.2  nathanw 	DPRINTF(("it8368_chip_socket_enable: socket enabled\n"));
    717  1.10.4.2  nathanw #endif /* !WINCE_DEFAULT_SETTING */
    718  1.10.4.2  nathanw }
    719  1.10.4.2  nathanw 
    720  1.10.4.2  nathanw void
    721  1.10.4.2  nathanw it8368_chip_socket_disable(pcmcia_chipset_handle_t pch)
    722  1.10.4.2  nathanw {
    723  1.10.4.2  nathanw #ifndef WINCE_DEFAULT_SETTING
    724  1.10.4.2  nathanw 	struct it8368e_softc *sc = (struct it8368e_softc*) pch;
    725  1.10.4.2  nathanw 	bus_space_tag_t csregt = sc->sc_csregt;
    726  1.10.4.2  nathanw 	bus_space_handle_t csregh = sc->sc_csregh;
    727  1.10.4.2  nathanw 	u_int16_t reg;
    728  1.10.4.2  nathanw 
    729  1.10.4.2  nathanw 	/* Power down */
    730  1.10.4.2  nathanw 	reg = it8368_reg_read(csregt, csregh, IT8368_GPIODATAOUT_REG);
    731  1.10.4.2  nathanw 	reg &= ~(IT8368_PIN_CRDVCCMASK | IT8368_PIN_CRDVPPMASK);
    732  1.10.4.2  nathanw 	reg |= (IT8368_PIN_CRDVCC_0V | IT8368_PIN_CRDVPP_0V);
    733  1.10.4.2  nathanw 	it8368_reg_write(csregt, csregh, IT8368_GPIODATAOUT_REG, reg);
    734  1.10.4.2  nathanw 	delay(20000);
    735  1.10.4.2  nathanw 
    736  1.10.4.2  nathanw 	/*
    737  1.10.4.2  nathanw 	 * wait 300ms until power fails (Tpf).
    738  1.10.4.2  nathanw 	 */
    739  1.10.4.2  nathanw 	delay(300 * 1000);
    740  1.10.4.2  nathanw 
    741  1.10.4.2  nathanw 	DPRINTF(("it8368_chip_socket_disable: socket disabled\n"));
    742  1.10.4.2  nathanw #endif /* !WINCE_DEFAULT_SETTING */
    743  1.10.4.2  nathanw }
    744  1.10.4.2  nathanw 
    745  1.10.4.2  nathanw #ifdef IT8368DEBUG
    746  1.10.4.3  nathanw #define PRINTGPIO(m) __dbg_bit_print(it8368_reg_read(csregt, csregh,		\
    747  1.10.4.4  nathanw 	IT8368_GPIO##m##_REG), 0, IT8368_GPIO_MAX, #m, DBG_BIT_PRINT_COUNT)
    748  1.10.4.3  nathanw #define PRINTMFIO(m) __dbg_bit_print(it8368_reg_read(csregt, csregh,		\
    749  1.10.4.4  nathanw 	IT8368_MFIO##m##_REG), 0, IT8368_MFIO_MAX, #m, DBG_BIT_PRINT_COUNT)
    750  1.10.4.2  nathanw void
    751  1.10.4.2  nathanw it8368_dump(struct it8368e_softc *sc)
    752  1.10.4.2  nathanw {
    753  1.10.4.2  nathanw 	bus_space_tag_t csregt = sc->sc_csregt;
    754  1.10.4.2  nathanw 	bus_space_handle_t csregh = sc->sc_csregh;
    755  1.10.4.2  nathanw 
    756  1.10.4.2  nathanw 	printf("[GPIO]\n");
    757  1.10.4.2  nathanw 	PRINTGPIO(DIR);
    758  1.10.4.2  nathanw 	PRINTGPIO(DATAIN);
    759  1.10.4.2  nathanw 	PRINTGPIO(DATAOUT);
    760  1.10.4.2  nathanw 	PRINTGPIO(POSINTEN);
    761  1.10.4.2  nathanw 	PRINTGPIO(NEGINTEN);
    762  1.10.4.2  nathanw 	PRINTGPIO(POSINTSTAT);
    763  1.10.4.2  nathanw 	PRINTGPIO(NEGINTSTAT);
    764  1.10.4.2  nathanw 	printf("[MFIO]\n");
    765  1.10.4.2  nathanw 	PRINTMFIO(SEL);
    766  1.10.4.2  nathanw 	PRINTMFIO(DIR);
    767  1.10.4.2  nathanw 	PRINTMFIO(DATAIN);
    768  1.10.4.2  nathanw 	PRINTMFIO(DATAOUT);
    769  1.10.4.2  nathanw 	PRINTMFIO(POSINTEN);
    770  1.10.4.2  nathanw 	PRINTMFIO(NEGINTEN);
    771  1.10.4.2  nathanw 	PRINTMFIO(POSINTSTAT);
    772  1.10.4.2  nathanw 	PRINTMFIO(NEGINTSTAT);
    773  1.10.4.3  nathanw 	__dbg_bit_print(it8368_reg_read(csregt, csregh, IT8368_CTRL_REG), 0, 15,
    774  1.10.4.4  nathanw 	    "CTRL", DBG_BIT_PRINT_COUNT);
    775  1.10.4.3  nathanw 	__dbg_bit_print(it8368_reg_read(csregt, csregh, IT8368_GPIODATAIN_REG),
    776  1.10.4.4  nathanw 	    8, 11, "]CRDDET/SENSE[", DBG_BIT_PRINT_COUNT);
    777  1.10.4.2  nathanw }
    778  1.10.4.2  nathanw #endif /* IT8368DEBUG */
    779