Home | History | Annotate | Line # | Download | only in pcmcia
pcmciavar.h revision 1.2
      1  1.2  thorpej /*	$NetBSD: pcmciavar.h,v 1.2 1997/10/16 23:27:40 thorpej Exp $	*/
      2  1.2  thorpej 
      3  1.2  thorpej /*
      4  1.2  thorpej  * Copyright (c) 1997 Marc Horowitz.  All rights reserved.
      5  1.2  thorpej  *
      6  1.2  thorpej  * Redistribution and use in source and binary forms, with or without
      7  1.2  thorpej  * modification, are permitted provided that the following conditions
      8  1.2  thorpej  * are met:
      9  1.2  thorpej  * 1. Redistributions of source code must retain the above copyright
     10  1.2  thorpej  *    notice, this list of conditions and the following disclaimer.
     11  1.2  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.2  thorpej  *    notice, this list of conditions and the following disclaimer in the
     13  1.2  thorpej  *    documentation and/or other materials provided with the distribution.
     14  1.2  thorpej  * 3. All advertising materials mentioning features or use of this software
     15  1.2  thorpej  *    must display the following acknowledgement:
     16  1.2  thorpej  *	This product includes software developed by Marc Horowitz.
     17  1.2  thorpej  * 4. The name of the author may not be used to endorse or promote products
     18  1.2  thorpej  *    derived from this software without specific prior written permission.
     19  1.2  thorpej  *
     20  1.2  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  1.2  thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  1.2  thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.2  thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  1.2  thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  1.2  thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  1.2  thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  1.2  thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  1.2  thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  1.2  thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  1.2  thorpej  */
     31  1.2  thorpej 
     32  1.2  thorpej #include <sys/types.h>
     33  1.2  thorpej #include <sys/queue.h>
     34  1.2  thorpej 
     35  1.2  thorpej #include <machine/bus.h>
     36  1.2  thorpej 
     37  1.2  thorpej #include <dev/pcmcia/pcmciachip.h>
     38  1.2  thorpej 
     39  1.2  thorpej /*
     40  1.2  thorpej  * Contains information about mapped/allocated i/o spaces.
     41  1.2  thorpej  */
     42  1.2  thorpej struct pcmcia_io_handle {
     43  1.2  thorpej 	bus_space_tag_t iot;		/* bus space tag (from chipset) */
     44  1.2  thorpej 	bus_space_handle_t ioh;		/* mapped space handle */
     45  1.2  thorpej 	bus_addr_t      addr;		/* resulting address in bus space */
     46  1.2  thorpej 	bus_size_t      size;		/* size of i/o space */
     47  1.2  thorpej 	int             flags;		/* misc. information */
     48  1.2  thorpej };
     49  1.2  thorpej 
     50  1.2  thorpej #define	PCMCIA_IO_ALLOCATED	0x01	/* i/o space was allocated */
     51  1.2  thorpej 
     52  1.2  thorpej /*
     53  1.2  thorpej  * Contains information about allocated memory space.
     54  1.2  thorpej  */
     55  1.2  thorpej struct pcmcia_mem_handle {
     56  1.2  thorpej 	bus_space_tag_t memt;		/* bus space tag (from chipset) */
     57  1.2  thorpej 	bus_space_handle_t memh;	/* mapped space handle */
     58  1.2  thorpej 	bus_addr_t      addr;		/* resulting address in bus space */
     59  1.2  thorpej 	bus_size_t      size;		/* size of mem space */
     60  1.2  thorpej 	pcmcia_mem_handle_t mhandle;	/* opaque memory handle */
     61  1.2  thorpej 	bus_size_t      realsize;	/* how much we really allocated */
     62  1.2  thorpej };
     63  1.2  thorpej 
     64  1.2  thorpej /* pcmcia itself */
     65  1.2  thorpej 
     66  1.2  thorpej #define PCMCIA_CFE_MWAIT_REQUIRED	0x0001
     67  1.2  thorpej #define PCMCIA_CFE_RDYBSY_ACTIVE	0x0002
     68  1.2  thorpej #define PCMCIA_CFE_WP_ACTIVE		0x0004
     69  1.2  thorpej #define PCMCIA_CFE_BVD_ACTIVE		0x0008
     70  1.2  thorpej #define PCMCIA_CFE_IO8			0x0010
     71  1.2  thorpej #define PCMCIA_CFE_IO16			0x0020
     72  1.2  thorpej #define PCMCIA_CFE_IRQSHARE		0x0040
     73  1.2  thorpej #define PCMCIA_CFE_IRQPULSE		0x0080
     74  1.2  thorpej #define PCMCIA_CFE_IRQLEVEL		0x0100
     75  1.2  thorpej #define PCMCIA_CFE_POWERDOWN		0x0200
     76  1.2  thorpej #define PCMCIA_CFE_READONLY		0x0400
     77  1.2  thorpej #define PCMCIA_CFE_AUDIO		0x0800
     78  1.2  thorpej 
     79  1.2  thorpej struct pcmcia_config_entry {
     80  1.2  thorpej 	int		number;
     81  1.2  thorpej 	u_int32_t	flags;
     82  1.2  thorpej 	int		iftype;
     83  1.2  thorpej 	int		num_iospace;
     84  1.2  thorpej 
     85  1.2  thorpej 	/*
     86  1.2  thorpej 	 * The card will only decode this mask in any case, so we can
     87  1.2  thorpej 	 * do dynamic allocation with this in mind, in case the suggestions
     88  1.2  thorpej 	 * below are no good.
     89  1.2  thorpej 	 */
     90  1.2  thorpej 	u_long		iomask;
     91  1.2  thorpej 	struct {
     92  1.2  thorpej 		u_long	length;
     93  1.2  thorpej 		u_long	start;
     94  1.2  thorpej 	} iospace[4];		/* XXX this could be as high as 16 */
     95  1.2  thorpej 	u_int16_t	irqmask;
     96  1.2  thorpej 	int		num_memspace;
     97  1.2  thorpej 	struct {
     98  1.2  thorpej 		u_long	length;
     99  1.2  thorpej 		u_long	cardaddr;
    100  1.2  thorpej 		u_long	hostaddr;
    101  1.2  thorpej 	} memspace[2];		/* XXX this could be as high as 8 */
    102  1.2  thorpej 	int		maxtwins;
    103  1.2  thorpej 	SIMPLEQ_ENTRY(pcmcia_config_entry) cfe_list;
    104  1.2  thorpej };
    105  1.2  thorpej 
    106  1.2  thorpej struct pcmcia_function {
    107  1.2  thorpej 	/* read off the card */
    108  1.2  thorpej 	int		number;
    109  1.2  thorpej 	int		function;
    110  1.2  thorpej 	int		last_config_index;
    111  1.2  thorpej 	u_long		ccr_base;
    112  1.2  thorpej 	u_long		ccr_mask;
    113  1.2  thorpej 	SIMPLEQ_HEAD(, pcmcia_config_entry) cfe_head;
    114  1.2  thorpej 	SIMPLEQ_ENTRY(pcmcia_function) pf_list;
    115  1.2  thorpej 	/* run-time state */
    116  1.2  thorpej 	struct pcmcia_softc *sc;
    117  1.2  thorpej 	struct pcmcia_config_entry *cfe;
    118  1.2  thorpej 	struct pcmcia_mem_handle pf_pcmh;
    119  1.2  thorpej #define	pf_ccrt		pf_pcmh.memt
    120  1.2  thorpej #define	pf_ccrh		pf_pcmh.memh
    121  1.2  thorpej #define	pf_ccr_mhandle	pf_pcmh.mhandle
    122  1.2  thorpej #define	pf_ccr_realsize	pf_pcmh.realsize
    123  1.2  thorpej 	bus_addr_t	pf_ccr_offset;
    124  1.2  thorpej 	int		pf_ccr_window;
    125  1.2  thorpej 	int		(*ih_fct) __P((void *));
    126  1.2  thorpej 	void		*ih_arg;
    127  1.2  thorpej 	int		ih_ipl;
    128  1.2  thorpej 	int		pf_flags;
    129  1.2  thorpej };
    130  1.2  thorpej 
    131  1.2  thorpej /* pf_flags */
    132  1.2  thorpej #define	PFF_ENABLED	0x0001		/* function is enabled */
    133  1.2  thorpej 
    134  1.2  thorpej struct pcmcia_card {
    135  1.2  thorpej 	int		cis1_major;
    136  1.2  thorpej 	int		cis1_minor;
    137  1.2  thorpej 	/* XXX waste of space? */
    138  1.2  thorpej 	char		cis1_info_buf[256];
    139  1.2  thorpej 	char		*cis1_info[4];
    140  1.2  thorpej 	int		manufacturer;
    141  1.2  thorpej 	u_int16_t	product;
    142  1.2  thorpej 	u_int16_t	error;
    143  1.2  thorpej 	SIMPLEQ_HEAD(, pcmcia_function) pf_head;
    144  1.2  thorpej };
    145  1.2  thorpej 
    146  1.2  thorpej struct pcmcia_softc {
    147  1.2  thorpej 	struct device	dev;
    148  1.2  thorpej 
    149  1.2  thorpej 	/* this stuff is for the socket */
    150  1.2  thorpej 	pcmcia_chipset_tag_t pct;
    151  1.2  thorpej 	pcmcia_chipset_handle_t pch;
    152  1.2  thorpej 
    153  1.2  thorpej 	/* this stuff is for the card */
    154  1.2  thorpej 	struct pcmcia_card card;
    155  1.2  thorpej 	void		*ih;
    156  1.2  thorpej 	int		sc_enabled_count;	/* how many functions are
    157  1.2  thorpej 						   enabled */
    158  1.2  thorpej 
    159  1.2  thorpej 	/*
    160  1.2  thorpej 	 * These are passed down from the PCMCIA chip, and exist only
    161  1.2  thorpej 	 * so that cards with Very Special address allocation needs
    162  1.2  thorpej 	 * know what range they should be dealing with.
    163  1.2  thorpej 	 */
    164  1.2  thorpej 	bus_addr_t iobase;		/* start i/o space allocation here */
    165  1.2  thorpej 	bus_size_t iosize;		/* size of the i/o space range */
    166  1.2  thorpej };
    167  1.2  thorpej 
    168  1.2  thorpej struct pcmcia_attach_args {
    169  1.2  thorpej 	u_int16_t manufacturer;
    170  1.2  thorpej 	u_int16_t product;
    171  1.2  thorpej 	struct pcmcia_card *card;
    172  1.2  thorpej 	struct pcmcia_function *pf;
    173  1.2  thorpej };
    174  1.2  thorpej 
    175  1.2  thorpej struct pcmcia_tuple {
    176  1.2  thorpej 	unsigned int	code;
    177  1.2  thorpej 	unsigned int	length;
    178  1.2  thorpej 	u_long		mult;
    179  1.2  thorpej 	bus_addr_t	ptr;
    180  1.2  thorpej 	bus_space_tag_t	memt;
    181  1.2  thorpej 	bus_space_handle_t memh;
    182  1.2  thorpej };
    183  1.2  thorpej 
    184  1.2  thorpej void	pcmcia_read_cis __P((struct pcmcia_softc *));
    185  1.2  thorpej void	pcmcia_print_cis __P((struct pcmcia_softc *));
    186  1.2  thorpej int	pcmcia_scan_cis __P((struct device * dev,
    187  1.2  thorpej 	    int (*) (struct pcmcia_tuple *, void *), void *));
    188  1.2  thorpej 
    189  1.2  thorpej #define	pcmcia_cis_read_1(tuple, idx0)					\
    190  1.2  thorpej 	(bus_space_read_1((tuple)->memt, (tuple)->memh, (tuple)->mult*(idx0)))
    191  1.2  thorpej 
    192  1.2  thorpej #define	pcmcia_tuple_read_1(tuple, idx1)				\
    193  1.2  thorpej 	(pcmcia_cis_read_1((tuple), ((tuple)->ptr+(2+(idx1)))))
    194  1.2  thorpej 
    195  1.2  thorpej #define	pcmcia_tuple_read_2(tuple, idx2)				\
    196  1.2  thorpej 	(pcmcia_tuple_read_1((tuple), (idx2)) | 			\
    197  1.2  thorpej 	 (pcmcia_tuple_read_1((tuple), (idx2)+1)<<8))
    198  1.2  thorpej 
    199  1.2  thorpej #define	pcmcia_tuple_read_3(tuple, idx3)				\
    200  1.2  thorpej 	(pcmcia_tuple_read_1((tuple), (idx3)) |				\
    201  1.2  thorpej 	 (pcmcia_tuple_read_1((tuple), (idx3)+1)<<8) |			\
    202  1.2  thorpej 	 (pcmcia_tuple_read_1((tuple), (idx3)+2)<<16))
    203  1.2  thorpej 
    204  1.2  thorpej #define	pcmcia_tuple_read_4(tuple, idx4)				\
    205  1.2  thorpej 	(pcmcia_tuple_read_1((tuple), (idx4)) |				\
    206  1.2  thorpej 	 (pcmcia_tuple_read_1((tuple), (idx4)+1)<<8) |			\
    207  1.2  thorpej 	 (pcmcia_tuple_read_1((tuple), (idx4)+2)<<16) |			\
    208  1.2  thorpej 	 (pcmcia_tuple_read_1((tuple), (idx4)+3)<<24))
    209  1.2  thorpej 
    210  1.2  thorpej #define	pcmcia_tuple_read_n(tuple, n, idxn)				\
    211  1.2  thorpej 	(((n)==1)?pcmcia_tuple_read_1((tuple), (idxn)) :		\
    212  1.2  thorpej 	 (((n)==2)?pcmcia_tuple_read_2((tuple), (idxn)) :		\
    213  1.2  thorpej 	  (((n)==3)?pcmcia_tuple_read_3((tuple), (idxn)) :		\
    214  1.2  thorpej 	   /* n == 4 */ pcmcia_tuple_read_4((tuple), (idxn)))))
    215  1.2  thorpej 
    216  1.2  thorpej #define	PCMCIA_SPACE_MEMORY	1
    217  1.2  thorpej #define	PCMCIA_SPACE_IO		2
    218  1.2  thorpej 
    219  1.2  thorpej int	pcmcia_ccr_read __P((struct pcmcia_function *, int));
    220  1.2  thorpej void	pcmcia_ccr_write __P((struct pcmcia_function *, int, int));
    221  1.2  thorpej 
    222  1.2  thorpej #define	pcmcia_mfc(sc)	((sc)->card.pf_head.sqh_first &&		\
    223  1.2  thorpej 			 (sc)->card.pf_head.sqh_first->pf_list.sqe_next)
    224  1.2  thorpej 
    225  1.2  thorpej void	pcmcia_function_init __P((struct pcmcia_function *,
    226  1.2  thorpej 	    struct pcmcia_config_entry *));
    227  1.2  thorpej int	pcmcia_function_enable __P((struct pcmcia_function *));
    228  1.2  thorpej void	pcmcia_function_disable __P((struct pcmcia_function *));
    229  1.2  thorpej 
    230  1.2  thorpej #define	pcmcia_io_alloc(pf, start, size, align, pciop)			\
    231  1.2  thorpej 	(pcmcia_chip_io_alloc((pf)->sc->pct, pf->sc->pch, (start),	\
    232  1.2  thorpej 	 (size), (align), (pciop)))
    233  1.2  thorpej 
    234  1.2  thorpej int	pcmcia_io_map __P((struct pcmcia_function *, int, bus_addr_t,
    235  1.2  thorpej 	    bus_size_t, struct pcmcia_io_handle *, int *));
    236  1.2  thorpej 
    237  1.2  thorpej #define pcmcia_mem_alloc(pf, size, pcmhp)				\
    238  1.2  thorpej 	(pcmcia_chip_mem_alloc((pf)->sc->pct, (pf)->sc->pch, (size), (pcmhp)))
    239  1.2  thorpej 
    240  1.2  thorpej #define pcmcia_mem_free(pf, pcmhp)					\
    241  1.2  thorpej 	(pcmcia_chip_mem_free((pf)->sc->pct, (pf)->sc->pch, (pcmhp)))
    242  1.2  thorpej 
    243  1.2  thorpej #define pcmcia_mem_map(pf, kind, card_addr, size, pcmhp, offsetp, windowp) \
    244  1.2  thorpej 	(pcmcia_chip_mem_map((pf)->sc->pct, (pf)->sc->pch, (kind),	\
    245  1.2  thorpej 	 (card_addr), (size), (pcmhp), (offsetp), (windowp)))
    246  1.2  thorpej 
    247  1.2  thorpej #define	pcmcia_mem_unmap(pf, window)					\
    248  1.2  thorpej 	(pcmcia_chip_mem_unmap((pf)->sc->pct, (pf)->sc->pch, (window)))
    249  1.2  thorpej 
    250  1.2  thorpej void	*pcmcia_intr_establish __P((struct pcmcia_function *, int,
    251  1.2  thorpej 	    int (*) (void *), void *));
    252  1.2  thorpej void 	pcmcia_intr_disestablish __P((struct pcmcia_function *, void *));
    253