1995-08-24 08:56:20 +00:00
|
|
|
/*
|
|
|
|
* Slot structures for PC-CARD interface.
|
|
|
|
* Each slot has a controller specific structure
|
|
|
|
* attached to it. A slot number allows
|
|
|
|
* mapping from the character device to the
|
|
|
|
* slot structure. This is separate to the
|
|
|
|
* controller slot number to allow multiple controllers
|
|
|
|
* to be accessed.
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Copyright (c) 1995 Andrew McRae. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1995-11-09 20:44:36 +00:00
|
|
|
|
1995-08-24 08:56:20 +00:00
|
|
|
/*
|
|
|
|
* Controller data - Specific to each slot controller.
|
|
|
|
*/
|
1995-11-21 12:55:26 +00:00
|
|
|
struct slot;
|
1995-11-09 20:44:36 +00:00
|
|
|
struct slot_ctrl {
|
1995-11-21 12:55:26 +00:00
|
|
|
int (*mapmem) __P((struct slot *, int));
|
|
|
|
/* Map memory */
|
|
|
|
int (*mapio) __P((struct slot *, int));
|
|
|
|
/* Map io */
|
|
|
|
void (*reset) __P((void *));
|
|
|
|
/* init */
|
|
|
|
void (*disable) __P((struct slot *));
|
|
|
|
/* Disable slot */
|
|
|
|
int (*power) __P((struct slot *));
|
|
|
|
/* Set power values */
|
|
|
|
int (*ioctl) __P((struct slot *, int, caddr_t));
|
|
|
|
/* ioctl to lower level */
|
|
|
|
void (*mapirq) __P((struct slot *, int));
|
|
|
|
/* Map interrupt number */
|
1997-01-08 00:22:58 +00:00
|
|
|
void (*resume) __P((struct slot *));
|
|
|
|
/* suspend/resume support */
|
1995-08-24 08:56:20 +00:00
|
|
|
int extra; /* Controller specific size */
|
|
|
|
int maxmem; /* Number of allowed memory windows */
|
|
|
|
int maxio; /* Number of allowed I/O windows */
|
|
|
|
int irqs; /* IRQ's that are allowed */
|
1997-01-11 18:23:20 +00:00
|
|
|
u_int *imask; /* IRQ mask for the PCIC controller */
|
1995-08-24 08:56:20 +00:00
|
|
|
char *name; /* controller name */
|
1997-01-11 18:23:20 +00:00
|
|
|
|
1995-11-09 20:44:36 +00:00
|
|
|
/*
|
|
|
|
* The rest is maintained by the mainline PC-CARD code.
|
|
|
|
*/
|
|
|
|
struct slot_ctrl *next; /* Allows linked list of controllers */
|
1995-08-24 08:56:20 +00:00
|
|
|
int slots; /* Slots available */
|
1995-11-09 20:44:36 +00:00
|
|
|
};
|
|
|
|
|
1995-08-24 08:56:20 +00:00
|
|
|
/*
|
|
|
|
* Driver structure - each driver registers itself
|
|
|
|
* with the mainline PC-CARD code. These drivers are
|
|
|
|
* then available for linking to the devices.
|
|
|
|
*/
|
1997-10-26 04:36:24 +00:00
|
|
|
struct pccard_devinfo;
|
1995-08-24 08:56:20 +00:00
|
|
|
|
1997-10-26 04:36:24 +00:00
|
|
|
struct pccard_device {
|
|
|
|
char *name; /* Driver name */
|
1997-10-26 04:54:16 +00:00
|
|
|
int (*enable)(struct pccard_devinfo *); /* init/enable driver */
|
1997-10-26 04:36:24 +00:00
|
|
|
void (*disable)(struct pccard_devinfo *); /* disable driver */
|
|
|
|
int (*handler)(struct pccard_devinfo *); /* interrupt handler */
|
|
|
|
int attr; /* driver attributes */
|
|
|
|
unsigned int *imask; /* Interrupt mask ptr */
|
1995-08-24 08:56:20 +00:00
|
|
|
|
1997-10-26 04:36:24 +00:00
|
|
|
struct pccard_device *next;
|
1995-11-09 20:44:36 +00:00
|
|
|
};
|
|
|
|
|
1995-08-24 08:56:20 +00:00
|
|
|
/*
|
|
|
|
* Device structure for cards. Each card may have one
|
1997-10-26 04:36:24 +00:00
|
|
|
* or more pccard drivers attached to it; each driver is assumed
|
1995-08-24 08:56:20 +00:00
|
|
|
* to require at most one interrupt handler, one I/O block
|
|
|
|
* and one memory block. This structure is used to link the different
|
|
|
|
* devices together.
|
|
|
|
*/
|
1997-10-26 04:36:24 +00:00
|
|
|
struct pccard_devinfo {
|
|
|
|
struct pccard_device *drv;
|
1995-08-24 08:56:20 +00:00
|
|
|
struct isa_device isahd; /* Device details */
|
1997-10-26 04:36:24 +00:00
|
|
|
#if 0
|
1995-08-24 08:56:20 +00:00
|
|
|
void *arg; /* Device argument */
|
1997-10-26 04:36:24 +00:00
|
|
|
#endif
|
1995-08-24 08:56:20 +00:00
|
|
|
int running; /* Current state of driver */
|
1995-09-20 07:23:51 +00:00
|
|
|
u_char misc[128]; /* For any random info */
|
1997-10-26 04:36:24 +00:00
|
|
|
struct slot *slt; /* Back pointer to slot */
|
|
|
|
|
|
|
|
struct pccard_devinfo *next; /* List of drivers */
|
1995-11-09 20:44:36 +00:00
|
|
|
};
|
1995-08-24 08:56:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Per-slot structure.
|
|
|
|
*/
|
1995-11-09 20:44:36 +00:00
|
|
|
struct slot {
|
1997-10-26 04:36:24 +00:00
|
|
|
int slotnum; /* Slot number */
|
1995-08-24 08:56:20 +00:00
|
|
|
int flags; /* Slot flags (see below) */
|
|
|
|
int rwmem; /* Read/write flags */
|
|
|
|
int irq; /* IRQ allocated (0 = none) */
|
|
|
|
int irqref; /* Reference count of driver IRQs */
|
1997-10-26 04:36:24 +00:00
|
|
|
struct pccard_devinfo *devices; /* List of drivers attached */
|
1995-11-09 20:44:36 +00:00
|
|
|
/*
|
|
|
|
* flags.
|
|
|
|
*/
|
|
|
|
unsigned int insert_seq; /* Firing up under the card */
|
1997-09-21 22:02:25 +00:00
|
|
|
struct callout_handle insert_ch;/* Insert event timeout handle */
|
|
|
|
struct callout_handle poff_ch; /* Power Off timeout handle */
|
1995-08-24 08:56:20 +00:00
|
|
|
|
1995-11-09 20:44:36 +00:00
|
|
|
enum cardstate state, laststate; /* Current/last card states */
|
|
|
|
struct selinfo selp; /* Info for select */
|
|
|
|
struct mem_desc mem[NUM_MEM_WINDOWS]; /* Memory windows */
|
|
|
|
struct io_desc io[NUM_IO_WINDOWS]; /* I/O windows */
|
|
|
|
struct power pwr; /* Power values */
|
|
|
|
struct slot_ctrl *ctrl; /* Per-controller data */
|
|
|
|
void *cdata; /* Controller specific data */
|
1996-04-23 16:03:08 +00:00
|
|
|
int pwr_off_pending;/* Power status of slot */
|
1996-01-28 10:02:38 +00:00
|
|
|
#ifdef DEVFS
|
|
|
|
void *devfs_token;
|
|
|
|
#endif /* DEVFS*/
|
1997-10-26 04:36:24 +00:00
|
|
|
|
|
|
|
struct slot *next; /* Master list */
|
1995-11-09 20:44:36 +00:00
|
|
|
};
|
1995-08-24 08:56:20 +00:00
|
|
|
|
|
|
|
enum card_event { card_removed, card_inserted };
|
|
|
|
|
1995-11-09 20:44:36 +00:00
|
|
|
struct slot *pccard_alloc_slot(struct slot_ctrl *);
|
1997-10-26 04:36:24 +00:00
|
|
|
void pccard_event(struct slot *, enum card_event);
|
|
|
|
void pccard_remove_controller(struct slot_ctrl *);
|