Home | History | Annotate | Line # | Download | only in cardbus
cardbusvar.h revision 1.3.2.1
      1  1.3.2.1    bouyer /*	$NetBSD: cardbusvar.h,v 1.3.2.1 2000/11/20 11:39:53 bouyer Exp $	*/
      2      1.1      haya 
      3      1.1      haya /*
      4  1.3.2.1    bouyer  * Copyright (c) 1998, 1999 and 2000
      5      1.1      haya  *       HAYAKAWA Koichi.  All rights reserved.
      6      1.1      haya  *
      7      1.1      haya  * Redistribution and use in source and binary forms, with or without
      8      1.1      haya  * modification, are permitted provided that the following conditions
      9      1.1      haya  * are met:
     10      1.1      haya  * 1. Redistributions of source code must retain the above copyright
     11      1.1      haya  *    notice, this list of conditions and the following disclaimer.
     12      1.1      haya  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1      haya  *    notice, this list of conditions and the following disclaimer in the
     14      1.1      haya  *    documentation and/or other materials provided with the distribution.
     15      1.1      haya  * 3. All advertising materials mentioning features or use of this software
     16      1.1      haya  *    must display the following acknowledgement:
     17      1.1      haya  *	This product includes software developed by the author.
     18      1.1      haya  * 4. The name of the author may not be used to endorse or promote products
     19      1.1      haya  *    derived from this software without specific prior written permission.
     20      1.1      haya  *
     21      1.1      haya  *
     22      1.1      haya  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23      1.1      haya  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     24      1.1      haya  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     25      1.1      haya  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     26      1.1      haya  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     27      1.1      haya  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     28      1.1      haya  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29      1.1      haya  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     30      1.1      haya  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     31      1.1      haya  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     32      1.1      haya  * POSSIBILITY OF SUCH DAMAGE.
     33      1.1      haya  */
     34      1.1      haya 
     35  1.3.2.1    bouyer #ifndef _DEV_CARDBUS_CARDBUSVAR_H_
     36  1.3.2.1    bouyer #define _DEV_CARDBUS_CARDBUSVAR_H_
     37      1.1      haya 
     38      1.1      haya #include <dev/pci/pcivar.h>	/* for pcitag_t */
     39      1.1      haya 
     40      1.1      haya #if 1
     41      1.1      haya #include <dev/cardbus/rbus.h>
     42      1.1      haya #endif
     43      1.1      haya 
     44      1.1      haya 
     45      1.1      haya 
     46      1.1      haya typedef void *cardbus_chipset_tag_t;
     47      1.1      haya typedef int cardbus_intr_handle_t;
     48      1.1      haya 
     49      1.1      haya 
     50      1.1      haya /* XXX they must be in cardbusreg.h */
     51      1.1      haya typedef u_int32_t cardbusreg_t;
     52      1.1      haya typedef pcitag_t cardbustag_t;
     53      1.1      haya typedef int cardbus_intr_line_t;
     54      1.1      haya 
     55      1.1      haya #define CARDBUS_ID_REG          0x00
     56      1.1      haya 
     57      1.1      haya typedef u_int16_t cardbus_vendor_id_t;
     58      1.1      haya typedef u_int16_t cardbus_product_id_t;
     59      1.1      haya 
     60      1.1      haya #  define CARDBUS_VENDOR_SHIFT  0
     61      1.1      haya #  define CARDBUS_VENDOR_MASK   0xffff
     62      1.1      haya #  define CARDBUS_VENDOR(id) \
     63      1.1      haya 	    (((id) >> CARDBUS_VENDOR_SHIFT) & CARDBUS_VENDOR_MASK)
     64      1.1      haya 
     65      1.1      haya #  define CARDBUS_PRODUCT_SHIFT  16
     66      1.1      haya #  define CARDBUS_PRODUCT_MASK   0xffff
     67      1.1      haya #  define CARDBUS_PRODUCT(id) \
     68      1.1      haya 	    (((id) >> CARDBUS_PRODUCT_SHIFT) & CARDBUS_PRODUCT_MASK)
     69      1.1      haya 
     70      1.1      haya 
     71      1.1      haya #define	CARDBUS_COMMAND_STATUS_REG  0x04
     72      1.1      haya 
     73  1.3.2.1    bouyer #  define CARDBUS_COMMAND_IO_ENABLE          0x00000001
     74  1.3.2.1    bouyer #  define CARDBUS_COMMAND_MEM_ENABLE         0x00000002
     75  1.3.2.1    bouyer #  define CARDBUS_COMMAND_MASTER_ENABLE      0x00000004
     76  1.3.2.1    bouyer #  define CARDBUS_COMMAND_SPECIAL_ENABLE     0x00000008
     77  1.3.2.1    bouyer #  define CARDBUS_COMMAND_INVALIDATE_ENABLE  0x00000010
     78  1.3.2.1    bouyer #  define CARDBUS_COMMAND_PALETTE_ENABLE     0x00000020
     79  1.3.2.1    bouyer #  define CARDBUS_COMMAND_PARITY_ENABLE      0x00000040
     80  1.3.2.1    bouyer #  define CARDBUS_COMMAND_STEPPING_ENABLE    0x00000080
     81  1.3.2.1    bouyer #  define CARDBUS_COMMAND_SERR_ENABLE        0x00000100
     82  1.3.2.1    bouyer #  define CARDBUS_COMMAND_BACKTOBACK_ENABLE  0x00000200
     83      1.1      haya 
     84      1.1      haya 
     85      1.1      haya #define CARDBUS_CLASS_REG       0x08
     86      1.3  augustss 
     87      1.3  augustss #define	CARDBUS_CLASS_SHIFT				24
     88      1.3  augustss #define	CARDBUS_CLASS_MASK				0xff
     89      1.3  augustss #define	CARDBUS_CLASS(cr) \
     90      1.3  augustss 	    (((cr) >> CARDBUS_CLASS_SHIFT) & CARDBUS_CLASS_MASK)
     91      1.3  augustss 
     92      1.3  augustss #define	CARDBUS_SUBCLASS_SHIFT			16
     93      1.3  augustss #define	CARDBUS_SUBCLASS_MASK			0xff
     94      1.3  augustss #define	CARDBUS_SUBCLASS(cr) \
     95      1.3  augustss 	    (((cr) >> CARDBUS_SUBCLASS_SHIFT) & CARDBUS_SUBCLASS_MASK)
     96      1.3  augustss 
     97      1.3  augustss #define	CARDBUS_INTERFACE_SHIFT			8
     98      1.3  augustss #define	CARDBUS_INTERFACE_MASK			0xff
     99      1.3  augustss #define	CARDBUS_INTERFACE(cr) \
    100      1.3  augustss 	    (((cr) >> CARDBUS_INTERFACE_SHIFT) & CARDBUS_INTERFACE_MASK)
    101      1.3  augustss 
    102      1.3  augustss #define	CARDBUS_REVISION_SHIFT			0
    103      1.3  augustss #define	CARDBUS_REVISION_MASK			0xff
    104      1.3  augustss #define	CARDBUS_REVISION(cr) \
    105      1.3  augustss 	    (((cr) >> CARDBUS_REVISION_SHIFT) & CARDBUS_REVISION_MASK)
    106      1.3  augustss 
    107      1.3  augustss /* base classes */
    108      1.3  augustss #define	CARDBUS_CLASS_PREHISTORIC		0x00
    109      1.3  augustss #define	CARDBUS_CLASS_MASS_STORAGE		0x01
    110      1.3  augustss #define	CARDBUS_CLASS_NETWORK			0x02
    111      1.3  augustss #define	CARDBUS_CLASS_DISPLAY			0x03
    112      1.3  augustss #define	CARDBUS_CLASS_MULTIMEDIA		0x04
    113      1.3  augustss #define	CARDBUS_CLASS_MEMORY			0x05
    114      1.3  augustss #define	CARDBUS_CLASS_BRIDGE			0x06
    115      1.3  augustss #define	CARDBUS_CLASS_COMMUNICATIONS		0x07
    116      1.3  augustss #define	CARDBUS_CLASS_SYSTEM			0x08
    117      1.3  augustss #define	CARDBUS_CLASS_INPUT			0x09
    118      1.3  augustss #define	CARDBUS_CLASS_DOCK			0x0a
    119      1.3  augustss #define	CARDBUS_CLASS_PROCESSOR			0x0b
    120      1.3  augustss #define	CARDBUS_CLASS_SERIALBUS			0x0c
    121      1.3  augustss #define	CARDBUS_CLASS_UNDEFINED			0xff
    122      1.3  augustss 
    123  1.3.2.1    bouyer /* 0x07 serial bus subclasses */
    124  1.3.2.1    bouyer #define	CARDBUS_SUBCLASS_COMMUNICATIONS_SERIAL	0x00
    125  1.3.2.1    bouyer 
    126      1.3  augustss /* 0x0c serial bus subclasses */
    127      1.3  augustss #define	CARDBUS_SUBCLASS_SERIALBUS_FIREWIRE	0x00
    128      1.3  augustss #define	CARDBUS_SUBCLASS_SERIALBUS_ACCESS	0x01
    129      1.3  augustss #define	CARDBUS_SUBCLASS_SERIALBUS_SSA		0x02
    130      1.3  augustss #define	CARDBUS_SUBCLASS_SERIALBUS_USB		0x03
    131      1.3  augustss #define	CARDBUS_SUBCLASS_SERIALBUS_FIBER	0x04
    132      1.1      haya 
    133      1.1      haya /* BIST, Header Type, Latency Timer, Cache Line Size */
    134      1.1      haya #define CARDBUS_BHLC_REG        0x0c
    135      1.1      haya 
    136      1.1      haya #define	CARDBUS_BIST_SHIFT        24
    137      1.1      haya #define	CARDBUS_BIST_MASK       0xff
    138      1.1      haya #define	CARDBUS_BIST(bhlcr) \
    139      1.1      haya 	    (((bhlcr) >> CARDBUS_BIST_SHIFT) & CARDBUS_BIST_MASK)
    140      1.1      haya 
    141      1.1      haya #define	CARDBUS_HDRTYPE_SHIFT     16
    142      1.1      haya #define	CARDBUS_HDRTYPE_MASK    0xff
    143      1.1      haya #define	CARDBUS_HDRTYPE(bhlcr) \
    144      1.1      haya 	    (((bhlcr) >> CARDBUS_HDRTYPE_SHIFT) & CARDBUS_HDRTYPE_MASK)
    145      1.1      haya 
    146      1.1      haya #define	CARDBUS_HDRTYPE_TYPE(bhlcr) \
    147      1.1      haya 	    (CARDBUS_HDRTYPE(bhlcr) & 0x7f)
    148      1.1      haya #define	CARDBUS_HDRTYPE_MULTIFN(bhlcr) \
    149      1.1      haya 	    ((CARDBUS_HDRTYPE(bhlcr) & 0x80) != 0)
    150      1.1      haya 
    151      1.1      haya #define	CARDBUS_LATTIMER_SHIFT      8
    152      1.1      haya #define	CARDBUS_LATTIMER_MASK    0xff
    153      1.1      haya #define	CARDBUS_LATTIMER(bhlcr) \
    154      1.1      haya 	    (((bhlcr) >> CARDBUS_LATTIMER_SHIFT) & CARDBUS_LATTIMER_MASK)
    155      1.1      haya 
    156      1.1      haya #define	CARDBUS_CACHELINE_SHIFT     0
    157      1.1      haya #define	CARDBUS_CACHELINE_MASK   0xff
    158      1.1      haya #define	CARDBUS_CACHELINE(bhlcr) \
    159      1.1      haya 	    (((bhlcr) >> CARDBUS_CACHELINE_SHIFT) & CARDBUS_CACHELINE_MASK)
    160      1.1      haya 
    161      1.1      haya 
    162      1.1      haya /* Base Resisters */
    163      1.1      haya #define CARDBUS_BASE0_REG  0x10
    164      1.1      haya #define CARDBUS_BASE1_REG  0x14
    165      1.1      haya #define CARDBUS_BASE2_REG  0x18
    166      1.1      haya #define CARDBUS_BASE3_REG  0x1C
    167      1.1      haya #define CARDBUS_BASE4_REG  0x20
    168      1.1      haya #define CARDBUS_BASE5_REG  0x24
    169      1.1      haya #define CARDBUS_CIS_REG    0x28
    170  1.3.2.1    bouyer #define CARDBUS_ROM_REG	   0x30
    171      1.1      haya #  define CARDBUS_CIS_ASIMASK 0x07
    172      1.1      haya #    define CARDBUS_CIS_ASI(x) (CARDBUS_CIS_ASIMASK & (x))
    173      1.1      haya #  define CARDBUS_CIS_ASI_TUPLE 0x00
    174      1.1      haya #  define CARDBUS_CIS_ASI_BAR0  0x01
    175      1.1      haya #  define CARDBUS_CIS_ASI_BAR1  0x02
    176      1.1      haya #  define CARDBUS_CIS_ASI_BAR2  0x03
    177      1.1      haya #  define CARDBUS_CIS_ASI_BAR3  0x04
    178      1.1      haya #  define CARDBUS_CIS_ASI_BAR4  0x05
    179      1.1      haya #  define CARDBUS_CIS_ASI_BAR5  0x06
    180      1.1      haya #  define CARDBUS_CIS_ASI_ROM   0x07
    181      1.1      haya #  define CARDBUS_CIS_ADDRMASK 0x0ffffff8
    182      1.1      haya #    define CARDBUS_CIS_ADDR(x) (CARDBUS_CIS_ADDRMASK & (x))
    183      1.1      haya #    define CARDBUS_CIS_ASI_BAR(x) (((CARDBUS_CIS_ASIMASK & (x))-1)*4+0x10)
    184  1.3.2.1    bouyer #    define CARDBUS_CIS_ASI_ROM_IMAGE(x) (((x) >> 28) & 0xf)
    185      1.1      haya 
    186      1.1      haya #define	CARDBUS_INTERRUPT_REG   0x3c
    187      1.1      haya 
    188      1.1      haya #define CARDBUS_MAPREG_TYPE_MEM		0x00000000
    189      1.1      haya #define CARDBUS_MAPREG_TYPE_IO		0x00000001
    190      1.1      haya 
    191      1.1      haya /* XXX end */
    192      1.1      haya 
    193      1.1      haya #if rbus
    194      1.1      haya 
    195      1.1      haya typedef struct cardbus_functions {
    196      1.1      haya   int (*cardbus_space_alloc) __P((cardbus_chipset_tag_t, rbus_tag_t,
    197      1.1      haya 				  bus_addr_t addr, bus_size_t size,
    198      1.1      haya 				  bus_addr_t mask, bus_size_t align,
    199      1.1      haya 				  int flags, bus_addr_t *addrp,
    200      1.1      haya 				  bus_space_handle_t *bshp));
    201      1.1      haya   int (*cardbus_space_free) __P((cardbus_chipset_tag_t, rbus_tag_t,
    202      1.1      haya 				 bus_space_handle_t, bus_size_t));
    203      1.1      haya   void *(*cardbus_intr_establish) __P((cardbus_chipset_tag_t, int irq, int level, int (*ih)(void *), void *sc));
    204      1.1      haya   void (*cardbus_intr_disestablish) __P((cardbus_chipset_tag_t ct, void *ih));
    205      1.1      haya   int (*cardbus_ctrl) __P((cardbus_chipset_tag_t, int));
    206      1.1      haya   int (*cardbus_power) __P((cardbus_chipset_tag_t, int));
    207      1.1      haya 
    208      1.1      haya   cardbustag_t (*cardbus_make_tag) __P((cardbus_chipset_tag_t, int, int, int));
    209      1.1      haya   void (*cardbus_free_tag) __P((cardbus_chipset_tag_t, cardbustag_t));
    210      1.1      haya   cardbusreg_t (*cardbus_conf_read) __P((cardbus_chipset_tag_t, cardbustag_t, int));
    211      1.1      haya   void (*cardbus_conf_write) __P((cardbus_chipset_tag_t, cardbustag_t, int, cardbusreg_t));
    212      1.1      haya } cardbus_function_t, *cardbus_function_tag_t;
    213      1.1      haya 
    214      1.1      haya #else
    215      1.1      haya 
    216      1.1      haya typedef struct cardbus_functions {
    217      1.1      haya   int (*cardbus_ctrl) __P((cardbus_chipset_tag_t, int));
    218      1.1      haya   int (*cardbus_power) __P((cardbus_chipset_tag_t, int));
    219      1.1      haya   int (*cardbus_mem_open) __P((cardbus_chipset_tag_t, int, u_int32_t, u_int32_t));
    220      1.1      haya   int (*cardbus_mem_close) __P((cardbus_chipset_tag_t, int));
    221      1.1      haya   int (*cardbus_io_open) __P((cardbus_chipset_tag_t, int, u_int32_t, u_int32_t));
    222      1.1      haya   int (*cardbus_io_close) __P((cardbus_chipset_tag_t, int));
    223      1.1      haya   void *(*cardbus_intr_establish) __P((cardbus_chipset_tag_t, int irq, int level, int (*ih)(void *), void *sc));
    224      1.1      haya   void (*cardbus_intr_disestablish) __P((cardbus_chipset_tag_t ct, void *ih));
    225      1.1      haya 
    226      1.1      haya   cardbustag_t (*cardbus_make_tag) __P((cardbus_chipset_tag_t, int, int, int));  cardbusreg_t (*cardbus_conf_read) __P((cardbus_chipset_tag_t, cardbustag_t, int));
    227      1.1      haya   void (*cardbus_conf_write) __P((cardbus_chipset_tag_t, cardbustag_t, int, cardbusreg_t));
    228      1.1      haya } cardbus_function_t, *cardbus_function_tag_t;
    229      1.1      haya #endif /* rbus */
    230      1.1      haya 
    231  1.3.2.1    bouyer /*
    232  1.3.2.1    bouyer  * struct cbslot_attach_args is the attach argument for cardbus card.
    233  1.3.2.1    bouyer  */
    234      1.1      haya struct cbslot_attach_args {
    235      1.1      haya   char *cba_busname;
    236      1.1      haya   bus_space_tag_t cba_iot;	/* cardbus i/o space tag */
    237      1.1      haya   bus_space_tag_t cba_memt;	/* cardbus mem space tag */
    238      1.1      haya   bus_dma_tag_t cba_dmat;	/* DMA tag */
    239      1.1      haya 
    240      1.1      haya   int cba_bus;			/* cardbus bus number */
    241      1.1      haya 
    242      1.1      haya   cardbus_chipset_tag_t cba_cc;	/* cardbus chipset */
    243      1.1      haya   cardbus_function_tag_t cba_cf; /* cardbus functions */
    244      1.1      haya   int cba_intrline;		/* interrupt line */
    245      1.1      haya 
    246      1.1      haya #if rbus
    247      1.1      haya   rbus_tag_t cba_rbus_iot;	/* CardBus i/o rbus tag */
    248      1.1      haya   rbus_tag_t cba_rbus_memt;	/* CardBus mem rbus tag */
    249      1.1      haya #endif
    250      1.1      haya 
    251      1.1      haya   int cba_cacheline;		/* cache line size */
    252      1.1      haya   int cba_lattimer;		/* latency timer */
    253      1.1      haya };
    254      1.1      haya 
    255      1.1      haya 
    256      1.1      haya #define cbslotcf_dev  cf_loc[0]
    257      1.1      haya #define cbslotcf_func cf_loc[1]
    258      1.1      haya #define CBSLOT_UNK_DEV -1
    259      1.1      haya #define CBSLOT_UNK_FUNC -1
    260      1.1      haya 
    261      1.1      haya 
    262      1.1      haya struct cardbus_devfunc;
    263      1.1      haya 
    264  1.3.2.1    bouyer /*
    265  1.3.2.1    bouyer  * struct cardbus_softc is the softc for cardbus card.
    266  1.3.2.1    bouyer  */
    267      1.1      haya struct cardbus_softc {
    268      1.1      haya   struct device sc_dev;		/* fundamental device structure */
    269      1.1      haya 
    270      1.1      haya   int sc_bus;			/* cardbus bus number */
    271      1.1      haya   int sc_device;		/* cardbus device number */
    272      1.1      haya   int sc_intrline;		/* CardBus intrline */
    273      1.1      haya 
    274      1.1      haya   bus_space_tag_t sc_iot;	/* CardBus I/O space tag */
    275      1.1      haya   bus_space_tag_t sc_memt;	/* CardBus MEM space tag */
    276      1.1      haya   bus_dma_tag_t sc_dmat;	/* DMA tag */
    277      1.1      haya 
    278      1.1      haya   cardbus_chipset_tag_t sc_cc;	/* CardBus chipset */
    279      1.1      haya   cardbus_function_tag_t sc_cf;	/* CardBus function */
    280      1.1      haya 
    281      1.1      haya #if rbus
    282      1.1      haya   rbus_tag_t sc_rbus_iot;	/* CardBus i/o rbus tag */
    283      1.1      haya   rbus_tag_t sc_rbus_memt;	/* CardBus mem rbus tag */
    284      1.1      haya #endif
    285      1.1      haya 
    286      1.1      haya   int sc_cacheline;		/* cache line size */
    287      1.1      haya   int sc_lattimer;		/* latency timer */
    288      1.1      haya   int sc_volt;			/* applied Vcc voltage */
    289      1.1      haya #define PCCARD_33V  0x02
    290      1.1      haya #define PCCARD_XXV  0x04
    291      1.1      haya #define PCCARD_YYV  0x08
    292      1.1      haya   int sc_poweron_func;
    293      1.1      haya   struct cardbus_devfunc *sc_funcs;	/* list of cardbus device functions */
    294      1.1      haya };
    295      1.1      haya 
    296      1.1      haya 
    297  1.3.2.1    bouyer /*
    298      1.1      haya  * struct cardbus_devfunc:
    299      1.1      haya  *
    300      1.1      haya  *   This is the data deposit for each function of a CardBus device.
    301      1.1      haya  *   This structure is used for memory or i/o space allocation and
    302      1.1      haya  *   disallocation.
    303  1.3.2.1    bouyer  */
    304      1.1      haya typedef struct cardbus_devfunc {
    305      1.1      haya   cardbus_chipset_tag_t ct_cc;
    306      1.1      haya   cardbus_function_tag_t ct_cf;
    307      1.1      haya   struct cardbus_softc *ct_sc;	/* pointer to the parent */
    308      1.1      haya   int ct_bus;			/* bus number */
    309      1.1      haya   int ct_dev;			/* device number */
    310      1.1      haya   int ct_func;			/* function number */
    311      1.1      haya 
    312      1.1      haya #if rbus
    313      1.1      haya   rbus_tag_t ct_rbus_iot;	/* CardBus i/o rbus tag */
    314      1.1      haya   rbus_tag_t ct_rbus_memt;	/* CardBus mem rbus tag */
    315      1.1      haya #endif
    316      1.1      haya 
    317      1.1      haya   u_int32_t ct_bar[6];		/* Base Address Regs 0 to 6 */
    318      1.1      haya   u_int32_t ct_lc;		/* Latency timer and cache line size */
    319      1.1      haya   /* u_int32_t ct_cisreg; */    /* CIS reg: is it needed??? */
    320      1.1      haya 
    321      1.1      haya   struct device *ct_device;	/* pointer to the device */
    322      1.1      haya 
    323      1.1      haya   struct cardbus_devfunc *ct_next;
    324      1.1      haya 
    325      1.1      haya   /* some data structure needed for tuple??? */
    326      1.1      haya } *cardbus_devfunc_t;
    327      1.1      haya 
    328      1.1      haya 
    329  1.3.2.1    bouyer /* XXX various things extracted from CIS */
    330  1.3.2.1    bouyer struct cardbus_cis_info {
    331  1.3.2.1    bouyer     int32_t		manufacturer;
    332  1.3.2.1    bouyer     int32_t		product;
    333  1.3.2.1    bouyer     char		cis1_info_buf[256];
    334  1.3.2.1    bouyer     char*		cis1_info[4];
    335  1.3.2.1    bouyer     struct cb_bar_info {
    336  1.3.2.1    bouyer 	unsigned int flags;
    337  1.3.2.1    bouyer 	unsigned int size;
    338  1.3.2.1    bouyer     } bar[7];
    339  1.3.2.1    bouyer     unsigned int	funcid;
    340  1.3.2.1    bouyer     union {
    341  1.3.2.1    bouyer 	struct {
    342  1.3.2.1    bouyer 	    int uart_type;
    343  1.3.2.1    bouyer 	    int uart_present;
    344  1.3.2.1    bouyer 	} serial;
    345  1.3.2.1    bouyer 	struct {
    346  1.3.2.1    bouyer 	    char netid[6];
    347  1.3.2.1    bouyer 	    char netid_present;
    348  1.3.2.1    bouyer 	    char __filler;
    349  1.3.2.1    bouyer 	} network;
    350  1.3.2.1    bouyer     } funce;
    351  1.3.2.1    bouyer };
    352  1.3.2.1    bouyer 
    353      1.1      haya struct cardbus_attach_args {
    354      1.1      haya   int ca_unit;
    355      1.1      haya   cardbus_devfunc_t ca_ct;
    356      1.1      haya 
    357      1.1      haya   bus_space_tag_t ca_iot;	/* CardBus I/O space tag */
    358      1.1      haya   bus_space_tag_t ca_memt;	/* CardBus MEM space tag */
    359      1.1      haya   bus_dma_tag_t ca_dmat;	/* DMA tag */
    360      1.1      haya 
    361      1.1      haya   u_int ca_device;
    362      1.1      haya   u_int ca_function;
    363      1.1      haya   cardbustag_t ca_tag;
    364      1.1      haya   cardbusreg_t ca_id;
    365      1.1      haya   cardbusreg_t ca_class;
    366      1.1      haya 
    367      1.1      haya   /* interrupt information */
    368      1.1      haya   cardbus_intr_line_t ca_intrline;
    369      1.1      haya 
    370      1.1      haya #if rbus
    371      1.1      haya   rbus_tag_t ca_rbus_iot;	/* CardBus i/o rbus tag */
    372      1.1      haya   rbus_tag_t ca_rbus_memt;	/* CardBus mem rbus tag */
    373      1.1      haya #endif
    374  1.3.2.1    bouyer 
    375  1.3.2.1    bouyer   struct cardbus_cis_info ca_cis;
    376      1.1      haya };
    377      1.1      haya 
    378      1.1      haya 
    379      1.1      haya #define CARDBUS_ENABLE  1	/* enable the channel */
    380      1.1      haya #define CARDBUS_DISABLE 2	/* disable the channel */
    381      1.1      haya #define CARDBUS_RESET   4
    382      1.1      haya #define CARDBUS_CD      7
    383      1.1      haya #  define CARDBUS_NOCARD 0
    384      1.1      haya #  define CARDBUS_5V_CARD 0x01	/* XXX: It must not exist */
    385      1.1      haya #  define CARDBUS_3V_CARD 0x02
    386      1.1      haya #  define CARDBUS_XV_CARD 0x04
    387      1.1      haya #  define CARDBUS_YV_CARD 0x08
    388      1.1      haya #define CARDBUS_IO_ENABLE    100
    389      1.1      haya #define CARDBUS_IO_DISABLE   101
    390      1.1      haya #define CARDBUS_MEM_ENABLE   102
    391      1.1      haya #define CARDBUS_MEM_DISABLE  103
    392      1.1      haya #define CARDBUS_BM_ENABLE    104 /* bus master */
    393      1.1      haya #define CARDBUS_BM_DISABLE   105
    394      1.1      haya 
    395      1.1      haya #define CARDBUS_VCC_UC  0x0000
    396      1.1      haya #define CARDBUS_VCC_3V  0x0001
    397      1.1      haya #define CARDBUS_VCC_XV  0x0002
    398      1.1      haya #define CARDBUS_VCC_YV  0x0003
    399      1.1      haya #define CARDBUS_VCC_0V  0x0004
    400      1.1      haya #define CARDBUS_VCC_5V  0x0005	/* ??? */
    401      1.1      haya #define CARDBUS_VCCMASK 0x000f
    402      1.1      haya #define CARDBUS_VPP_UC  0x0000
    403      1.1      haya #define CARDBUS_VPP_VCC 0x0010
    404      1.1      haya #define CARDBUS_VPP_12V 0x0030
    405      1.1      haya #define CARDBUS_VPP_0V  0x0040
    406      1.1      haya #define CARDBUS_VPPMASK 0x00f0
    407      1.1      haya 
    408      1.1      haya 
    409      1.1      haya #include "locators.h"
    410      1.1      haya 
    411      1.1      haya /*
    412      1.1      haya  * Locators devies that attach to 'cardbus', as specified to config.
    413      1.1      haya  */
    414      1.1      haya #define cardbuscf_dev cf_loc[CARDBUSCF_DEV]
    415      1.1      haya #define CARDBUS_UNK_DEV CARDBUSCF_DEV_DEFAULT
    416      1.1      haya 
    417      1.1      haya #define cardbuscf_function cf_loc[CARDBUSCF_FUNCTION]
    418      1.1      haya #define CARDBUS_UNK_FUNCTION CARDBUSCF_FUNCTION_DEFAULT
    419      1.1      haya 
    420      1.1      haya int cardbus_attach_card __P((struct cardbus_softc *));
    421  1.3.2.1    bouyer void cardbus_detach_card __P((struct cardbus_softc *));
    422      1.1      haya void *cardbus_intr_establish __P((cardbus_chipset_tag_t, cardbus_function_tag_t, cardbus_intr_handle_t irq, int level, int (*func) (void *), void *arg));
    423      1.1      haya void cardbus_intr_disestablish __P((cardbus_chipset_tag_t, cardbus_function_tag_t, void *handler));
    424      1.1      haya 
    425  1.3.2.1    bouyer int cardbus_mapreg_map __P((struct cardbus_softc *, int, int, cardbusreg_t,
    426  1.3.2.1    bouyer     int, bus_space_tag_t *, bus_space_handle_t *, bus_addr_t *, bus_size_t *));
    427  1.3.2.1    bouyer int cardbus_mapreg_unmap __P((struct cardbus_softc *, int, int,
    428  1.3.2.1    bouyer     bus_space_tag_t, bus_space_handle_t, bus_size_t));
    429      1.1      haya 
    430      1.1      haya int cardbus_save_bar __P((cardbus_devfunc_t));
    431      1.1      haya int cardbus_restore_bar __P((cardbus_devfunc_t));
    432      1.1      haya 
    433  1.3.2.1    bouyer int cardbus_function_enable __P((struct cardbus_softc *, int function));
    434  1.3.2.1    bouyer int cardbus_function_disable __P((struct cardbus_softc *, int function));
    435  1.3.2.1    bouyer 
    436  1.3.2.1    bouyer int cardbus_get_capability __P((cardbus_chipset_tag_t, cardbus_function_tag_t,
    437  1.3.2.1    bouyer     cardbustag_t, int, int *, cardbusreg_t *));
    438  1.3.2.1    bouyer 
    439  1.3.2.1    bouyer #define Cardbus_function_enable(ct) cardbus_function_enable((ct)->ct_sc, (ct)->ct_func)
    440  1.3.2.1    bouyer #define Cardbus_function_disable(ct) cardbus_function_disable((ct)->ct_sc, (ct)->ct_func)
    441  1.3.2.1    bouyer 
    442  1.3.2.1    bouyer 
    443  1.3.2.1    bouyer 
    444  1.3.2.1    bouyer #define Cardbus_mapreg_map(ct, reg, type, busflags, tagp, handlep, basep, sizep) \
    445  1.3.2.1    bouyer 	cardbus_mapreg_map((ct)->ct_sc, (ct->ct_func), (reg), (type),\
    446  1.3.2.1    bouyer 			   (busflags), (tagp), (handlep), (basep), (sizep))
    447  1.3.2.1    bouyer #define Cardbus_mapreg_unmap(ct, reg, tag, handle, size) \
    448  1.3.2.1    bouyer 	cardbus_mapreg_unmap((ct)->ct_sc, (ct->ct_func), (reg), (tag), (handle), (size))
    449      1.1      haya 
    450      1.1      haya #define Cardbus_make_tag(ct) (*(ct)->ct_cf->cardbus_make_tag)((ct)->ct_cc, (ct)->ct_bus, (ct)->ct_dev, (ct)->ct_func)
    451      1.1      haya #define cardbus_make_tag(cc, cf, bus, device, function) ((cf)->cardbus_make_tag)((cc), (bus), (device), (function))
    452      1.1      haya 
    453      1.1      haya #define Cardbus_free_tag(ct, tag) (*(ct)->ct_cf->cardbus_free_tag)((ct)->ct_cc, (tag))
    454  1.3.2.1    bouyer #define cardbus_free_tag(cc, cf, tag) (*(cf)->cardbus_free_tag)(cc, (tag))
    455      1.1      haya 
    456      1.1      haya #define Cardbus_conf_read(ct, tag, offs) (*(ct)->ct_cf->cardbus_conf_read)((ct)->ct_cf, (tag), (offs))
    457      1.1      haya #define cardbus_conf_read(cc, cf, tag, offs) ((cf)->cardbus_conf_read)((cc), (tag), (offs))
    458  1.3.2.1    bouyer #define Cardbus_conf_write(ct, tag, offs, val) (*(ct)->ct_cf->cardbus_conf_write)((ct)->ct_cf, (tag), (offs), (val))
    459      1.1      haya #define cardbus_conf_write(cc, cf, tag, offs, val) ((cf)->cardbus_conf_write)((cc), (tag), (offs), (val))
    460      1.1      haya 
    461  1.3.2.1    bouyer #endif /* !_DEV_CARDBUS_CARDBUSVAR_H_ */
    462