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.
|
|
|
|
*/
|
2001-07-28 03:47:10 +00:00
|
|
|
#include <sys/param.h>
|
1999-09-06 06:34:44 +00:00
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
#include <machine/resource.h>
|
2001-07-28 03:47:10 +00:00
|
|
|
#if __FreeBSD_version >= 500000
|
2001-01-09 04:33:49 +00:00
|
|
|
#include <sys/selinfo.h>
|
2001-07-28 03:47:10 +00:00
|
|
|
#else
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
2001-01-09 04:33:49 +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 {
|
2001-04-19 00:04:08 +00:00
|
|
|
void (*mapirq)(struct slot *, int);
|
|
|
|
/* Map irq */
|
2001-03-22 05:49:18 +00:00
|
|
|
int (*mapmem)(struct slot *, int);
|
1995-11-21 12:55:26 +00:00
|
|
|
/* Map memory */
|
2001-03-22 05:49:18 +00:00
|
|
|
int (*mapio)(struct slot *, int);
|
1995-11-21 12:55:26 +00:00
|
|
|
/* Map io */
|
2001-03-22 05:49:18 +00:00
|
|
|
void (*reset)(void *);
|
1995-11-21 12:55:26 +00:00
|
|
|
/* init */
|
2001-03-22 05:49:18 +00:00
|
|
|
void (*disable)(struct slot *);
|
1995-11-21 12:55:26 +00:00
|
|
|
/* Disable slot */
|
2001-03-22 05:49:18 +00:00
|
|
|
int (*power)(struct slot *);
|
1995-11-21 12:55:26 +00:00
|
|
|
/* Set power values */
|
2001-03-22 05:49:18 +00:00
|
|
|
int (*ioctl)(struct slot *, int, caddr_t);
|
1995-11-21 12:55:26 +00:00
|
|
|
/* ioctl to lower level */
|
2001-03-22 05:49:18 +00:00
|
|
|
void (*resume)(struct slot *);
|
1997-01-08 00:22:58 +00:00
|
|
|
/* 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 */
|
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 {
|
2002-07-14 06:47:52 +00:00
|
|
|
uint8_t name[128];
|
|
|
|
int running; /* Current state of driver */
|
2002-07-22 06:46:10 +00:00
|
|
|
uint8_t misc[DEV_MISC_LEN]; /* For any random info */
|
|
|
|
uint8_t manufstr[DEV_MAX_CIS_LEN];
|
|
|
|
uint8_t versstr[DEV_MAX_CIS_LEN];
|
2003-04-23 23:39:21 +00:00
|
|
|
uint8_t cis3str[DEV_MAX_CIS_LEN];
|
|
|
|
uint8_t cis4str[DEV_MAX_CIS_LEN];
|
2002-07-14 06:47:52 +00:00
|
|
|
uint32_t manufacturer; /* Manufacturer ID */
|
|
|
|
uint32_t product; /* Product ID */
|
|
|
|
uint32_t prodext; /* Product ID (extended) */
|
|
|
|
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 */
|
2001-05-13 01:44:27 +00:00
|
|
|
device_t dev; /* Config system device. */
|
2004-06-16 09:47:26 +00:00
|
|
|
struct cdev *d; /* fs device */
|
1995-11-09 20:44:36 +00:00
|
|
|
};
|
1995-08-24 08:56:20 +00:00
|
|
|
|
2001-05-13 01:44:27 +00:00
|
|
|
#define PCCARD_DEVICE2SOFTC(d) ((struct slot *) device_get_softc(d))
|
|
|
|
#define PCCARD_DEV2SOFTC(d) ((struct slot *) (d)->si_drv1)
|
|
|
|
|
2001-07-27 07:21:42 +00:00
|
|
|
enum card_event { card_removed, card_inserted, card_deactivated };
|
1995-08-24 08:56:20 +00:00
|
|
|
|
2001-05-13 01:44:27 +00:00
|
|
|
struct slot *pccard_init_slot(device_t, 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 */
|