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.
|
1999-10-16 05:11:46 +00:00
|
|
|
*
|
|
|
|
* $FreeBSD$
|
1995-08-24 08:56:20 +00:00
|
|
|
*/
|
1995-11-09 20:44:36 +00:00
|
|
|
|
1999-09-06 06:34:44 +00:00
|
|
|
#ifndef _PCCARD_SLOT_H
|
|
|
|
#define _PCCARD_SLOT_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Normally we shouldn't include stuff here, but we're trying to be
|
|
|
|
* compatible with the long, dark hand of the past.
|
|
|
|
*/
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
#include <machine/resource.h>
|
|
|
|
|
2001-01-09 04:33:49 +00:00
|
|
|
#include <sys/selinfo.h>
|
|
|
|
|
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 maxmem; /* Number of allowed memory windows */
|
|
|
|
int maxio; /* Number of allowed I/O windows */
|
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
|
|
|
/*
|
|
|
|
* 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 {
|
1999-10-25 02:41:58 +00:00
|
|
|
u_char name[128];
|
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 */
|
|
|
|
|
1999-10-25 02:41:58 +00:00
|
|
|
struct resource_list resources;
|
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) */
|
1999-12-06 01:35:37 +00:00
|
|
|
|
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 */
|
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);
|
1999-12-08 07:55:20 +00:00
|
|
|
int pccard_suspend(device_t);
|
|
|
|
int pccard_resume(device_t);
|
1999-10-25 02:41:58 +00:00
|
|
|
|
1999-09-06 06:34:44 +00:00
|
|
|
#endif /* !_PCCARD_SLOT_H */
|