Home | History | Annotate | Line # | Download | only in ic
i82365var.h revision 1.14
      1  1.14   thorpej /*	$NetBSD: i82365var.h,v 1.14 2000/02/26 17:24:44 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/device.h>
     33  1.14   thorpej #include <sys/lock.h>
     34   1.2   thorpej 
     35   1.2   thorpej #include <dev/pcmcia/pcmciareg.h>
     36   1.2   thorpej #include <dev/pcmcia/pcmciachip.h>
     37   1.2   thorpej 
     38   1.2   thorpej #include <dev/ic/i82365reg.h>
     39   1.2   thorpej 
     40   1.5   thorpej struct proc;
     41   1.5   thorpej 
     42   1.5   thorpej struct pcic_event {
     43   1.5   thorpej 	SIMPLEQ_ENTRY(pcic_event) pe_q;
     44   1.5   thorpej 	int pe_type;
     45   1.5   thorpej };
     46   1.5   thorpej 
     47   1.5   thorpej /* pe_type */
     48   1.5   thorpej #define	PCIC_EVENT_INSERTION	0
     49   1.5   thorpej #define	PCIC_EVENT_REMOVAL	1
     50   1.5   thorpej 
     51   1.2   thorpej struct pcic_handle {
     52   1.9    chopps 	struct device *ph_parent;
     53   1.9    chopps 	bus_space_tag_t ph_bus_t;	/* I/O or MEM?  I don't mind */
     54   1.9    chopps 	bus_space_handle_t ph_bus_h;
     55  1.10     enami 	u_int8_t (*ph_read) __P((struct pcic_handle *, int));
     56  1.10     enami 	void (*ph_write) __P((struct pcic_handle *, int, u_int8_t));
     57   1.8      haya 
     58   1.9    chopps 	int	vendor;		/* vendor of chip */
     59   1.9    chopps 	int	chip;		/* chip index 0 or 1 */
     60   1.2   thorpej 	int	sock;
     61   1.2   thorpej 	int	flags;
     62   1.9    chopps 	int	laststate;
     63   1.2   thorpej 	int	memalloc;
     64   1.2   thorpej 	struct {
     65   1.2   thorpej 		bus_addr_t	addr;
     66   1.2   thorpej 		bus_size_t	size;
     67   1.2   thorpej 		long		offset;
     68   1.2   thorpej 		int		kind;
     69   1.2   thorpej 	} mem[PCIC_MEM_WINS];
     70   1.2   thorpej 	int	ioalloc;
     71   1.2   thorpej 	struct {
     72   1.2   thorpej 		bus_addr_t	addr;
     73   1.2   thorpej 		bus_size_t	size;
     74   1.2   thorpej 		int		width;
     75   1.2   thorpej 	} io[PCIC_IO_WINS];
     76   1.2   thorpej 	int	ih_irq;
     77   1.2   thorpej 	struct device *pcmcia;
     78   1.5   thorpej 
     79   1.5   thorpej 	int shutdown;
     80   1.5   thorpej 	struct proc *event_thread;
     81   1.5   thorpej 	SIMPLEQ_HEAD(, pcic_event) events;
     82   1.2   thorpej };
     83   1.2   thorpej 
     84   1.2   thorpej #define	PCIC_FLAG_SOCKETP	0x0001
     85   1.2   thorpej #define	PCIC_FLAG_CARDP		0x0002
     86  1.11    chopps #define	PCIC_FLAG_ENABLED	0x0004
     87   1.7   msaitoh 
     88   1.7   msaitoh #define PCIC_LASTSTATE_PRESENT	0x0002
     89   1.9    chopps #define PCIC_LASTSTATE_HALF	0x0001
     90   1.7   msaitoh #define PCIC_LASTSTATE_EMPTY	0x0000
     91   1.2   thorpej 
     92   1.9    chopps #define	C0SA	0
     93   1.9    chopps #define	C0SB	PCIC_SOCKET_OFFSET
     94   1.9    chopps #define	C1SA	PCIC_CHIP_OFFSET
     95   1.9    chopps #define	C1SB	PCIC_CHIP_OFFSET + PCIC_SOCKET_OFFSET
     96   1.9    chopps 
     97   1.9    chopps #define	PCIC_VENDOR_UNKNOWN		0
     98   1.9    chopps #define	PCIC_VENDOR_I82365SLR0		1
     99   1.9    chopps #define	PCIC_VENDOR_I82365SLR1		2
    100   1.9    chopps #define	PCIC_VENDOR_CIRRUS_PD6710	3
    101   1.9    chopps #define	PCIC_VENDOR_CIRRUS_PD672X	4
    102   1.2   thorpej 
    103   1.2   thorpej /*
    104   1.2   thorpej  * This is sort of arbitrary.  It merely needs to be "enough". It can be
    105   1.2   thorpej  * overridden in the conf file, anyway.
    106   1.2   thorpej  */
    107   1.2   thorpej 
    108   1.2   thorpej #define	PCIC_MEM_PAGES	4
    109   1.2   thorpej #define	PCIC_MEMSIZE	PCIC_MEM_PAGES*PCIC_MEM_PAGESIZE
    110   1.2   thorpej 
    111   1.2   thorpej #define	PCIC_NSLOTS	4
    112   1.2   thorpej 
    113   1.2   thorpej struct pcic_softc {
    114   1.2   thorpej 	struct device dev;
    115   1.2   thorpej 
    116   1.2   thorpej 	bus_space_tag_t memt;
    117   1.2   thorpej 	bus_space_handle_t memh;
    118   1.2   thorpej 	bus_space_tag_t iot;
    119   1.2   thorpej 	bus_space_handle_t ioh;
    120   1.2   thorpej 
    121   1.2   thorpej 	pcmcia_chipset_tag_t pct;
    122  1.14   thorpej 
    123  1.14   thorpej 	struct lock sc_pcic_lock;
    124   1.2   thorpej 
    125   1.2   thorpej 	/* this needs to be large enough to hold PCIC_MEM_PAGES bits */
    126   1.2   thorpej 	int	subregionmask;
    127   1.6  christos #define PCIC_MAX_MEM_PAGES	(8 * sizeof(int))
    128   1.2   thorpej 
    129   1.2   thorpej 	/* used by memory window mapping functions */
    130   1.2   thorpej 	bus_addr_t membase;
    131   1.2   thorpej 
    132   1.2   thorpej 	/*
    133   1.2   thorpej 	 * used by io window mapping functions.  These can actually overlap
    134   1.2   thorpej 	 * with another pcic, since the underlying extent mapper will deal
    135   1.2   thorpej 	 * with individual allocations.  This is here to deal with the fact
    136   1.2   thorpej 	 * that different busses have different real widths (different pc
    137   1.2   thorpej 	 * hardware seems to use 10 or 12 bits for the I/O bus).
    138   1.2   thorpej 	 */
    139   1.2   thorpej 	bus_addr_t iobase;
    140   1.2   thorpej 	bus_addr_t iosize;
    141   1.2   thorpej 
    142   1.2   thorpej 	int	irq;
    143   1.2   thorpej 	void	*ih;
    144   1.2   thorpej 
    145   1.2   thorpej 	struct pcic_handle handle[PCIC_NSLOTS];
    146   1.9    chopps 
    147   1.9    chopps 	/* for use by underlying chip code for discovering irqs */
    148  1.12   mycroft 	int intr_detect, intr_false;
    149   1.9    chopps 	int intr_mask[PCIC_NSLOTS / 2];	/* probed intterupts if possible */
    150   1.2   thorpej };
    151   1.2   thorpej 
    152   1.2   thorpej 
    153   1.2   thorpej int	pcic_ident_ok __P((int));
    154   1.2   thorpej int	pcic_vendor __P((struct pcic_handle *));
    155   1.2   thorpej char	*pcic_vendor_to_string __P((int));
    156   1.2   thorpej 
    157   1.2   thorpej void	pcic_attach __P((struct pcic_softc *));
    158   1.2   thorpej void	pcic_attach_sockets __P((struct pcic_softc *));
    159   1.9    chopps void	pcic_attach_sockets_finish __P((struct pcic_softc *));
    160   1.2   thorpej int	pcic_intr __P((void *arg));
    161   1.2   thorpej 
    162   1.8      haya /*
    163   1.2   thorpej static inline int pcic_read __P((struct pcic_handle *, int));
    164   1.8      haya static inline void pcic_write __P((struct pcic_handle *, int, u_int8_t));
    165   1.8      haya */
    166   1.2   thorpej 
    167   1.2   thorpej int	pcic_chip_mem_alloc __P((pcmcia_chipset_handle_t, bus_size_t,
    168   1.2   thorpej 	    struct pcmcia_mem_handle *));
    169   1.2   thorpej void	pcic_chip_mem_free __P((pcmcia_chipset_handle_t,
    170   1.2   thorpej 	    struct pcmcia_mem_handle *));
    171   1.2   thorpej int	pcic_chip_mem_map __P((pcmcia_chipset_handle_t, int, bus_addr_t,
    172   1.2   thorpej 	    bus_size_t, struct pcmcia_mem_handle *, bus_addr_t *, int *));
    173   1.2   thorpej void	pcic_chip_mem_unmap __P((pcmcia_chipset_handle_t, int));
    174   1.2   thorpej 
    175   1.2   thorpej int	pcic_chip_io_alloc __P((pcmcia_chipset_handle_t, bus_addr_t,
    176   1.2   thorpej 	    bus_size_t, bus_size_t, struct pcmcia_io_handle *));
    177   1.2   thorpej void	pcic_chip_io_free __P((pcmcia_chipset_handle_t,
    178   1.2   thorpej 	    struct pcmcia_io_handle *));
    179   1.2   thorpej int	pcic_chip_io_map __P((pcmcia_chipset_handle_t, int, bus_addr_t,
    180   1.2   thorpej 	    bus_size_t, struct pcmcia_io_handle *, int *));
    181   1.2   thorpej void	pcic_chip_io_unmap __P((pcmcia_chipset_handle_t, int));
    182   1.2   thorpej 
    183   1.2   thorpej void	pcic_chip_socket_enable __P((pcmcia_chipset_handle_t));
    184   1.2   thorpej void	pcic_chip_socket_disable __P((pcmcia_chipset_handle_t));
    185   1.2   thorpej 
    186   1.8      haya #if 0
    187   1.8      haya 
    188   1.2   thorpej static __inline int pcic_read __P((struct pcic_handle *, int));
    189   1.2   thorpej static __inline int
    190   1.2   thorpej pcic_read(h, idx)
    191   1.2   thorpej 	struct pcic_handle *h;
    192   1.2   thorpej 	int idx;
    193   1.2   thorpej {
    194   1.2   thorpej 	if (idx != -1)
    195   1.2   thorpej 		bus_space_write_1(h->sc->iot, h->sc->ioh, PCIC_REG_INDEX,
    196   1.2   thorpej 		    h->sock + idx);
    197   1.2   thorpej 	return (bus_space_read_1(h->sc->iot, h->sc->ioh, PCIC_REG_DATA));
    198   1.2   thorpej }
    199   1.2   thorpej 
    200   1.2   thorpej static __inline void pcic_write __P((struct pcic_handle *, int, int));
    201   1.2   thorpej static __inline void
    202   1.2   thorpej pcic_write(h, idx, data)
    203   1.2   thorpej 	struct pcic_handle *h;
    204   1.2   thorpej 	int idx;
    205   1.2   thorpej 	int data;
    206   1.2   thorpej {
    207   1.2   thorpej 	if (idx != -1)
    208   1.2   thorpej 		bus_space_write_1(h->sc->iot, h->sc->ioh, PCIC_REG_INDEX,
    209   1.2   thorpej 		    h->sock + idx);
    210   1.2   thorpej 	bus_space_write_1(h->sc->iot, h->sc->ioh, PCIC_REG_DATA, (data));
    211   1.2   thorpej }
    212   1.8      haya #else
    213   1.8      haya #define pcic_read(h, idx) \
    214   1.8      haya 	(*(h)->ph_read)((h), (idx))
    215   1.8      haya 
    216   1.8      haya #define pcic_write(h, idx, data) \
    217   1.8      haya 	(*(h)->ph_write)((h), (idx), (data))
    218   1.8      haya 
    219   1.8      haya #endif
    220