]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/pccard/slot.h
This commit was generated by cvs2svn to compensate for changes in r89500,
[FreeBSD/FreeBSD.git] / sys / pccard / slot.h
1 /*
2  *      Slot structures for PC-CARD interface.
3  *      Each slot has a controller specific structure
4  *      attached to it. A slot number allows
5  *      mapping from the character device to the
6  *      slot structure. This is separate to the
7  *      controller slot number to allow multiple controllers
8  *      to be accessed.
9  *-------------------------------------------------------------------------
10  *
11  * Copyright (c) 1995 Andrew McRae.  All rights reserved.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. The name of the author may not be used to endorse or promote products
22  *    derived from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  *
35  * $FreeBSD$
36  */
37
38 #ifndef _PCCARD_SLOT_H
39 #define _PCCARD_SLOT_H
40
41 /*
42  * Normally we shouldn't include stuff here, but we're trying to be
43  * compatible with the long, dark hand of the past.
44  */
45 #include <sys/param.h>
46 #include <sys/bus.h>
47 #include <machine/bus.h>
48 #include <sys/rman.h>
49 #include <machine/resource.h>
50 #if __FreeBSD_version >= 500000
51 #include <sys/selinfo.h>
52 #else
53 #include <sys/select.h>
54 #endif
55
56 /*
57  *      Controller data - Specific to each slot controller.
58  */
59 struct slot;
60 struct slot_ctrl {
61         void    (*mapirq)(struct slot *, int);
62                                 /* Map irq */
63         int     (*mapmem)(struct slot *, int);
64                                 /* Map memory */
65         int     (*mapio)(struct slot *, int);
66                                 /* Map io */
67         void    (*reset)(void *);
68                                 /* init */
69         void    (*disable)(struct slot *);
70                                 /* Disable slot */
71         int     (*power)(struct slot *);
72                                 /* Set power values */
73         int     (*ioctl)(struct slot *, int, caddr_t);
74                                 /* ioctl to lower level */
75         void    (*resume)(struct slot *);
76                                 /* suspend/resume support */
77         int     maxmem;         /* Number of allowed memory windows */
78         int     maxio;          /* Number of allowed I/O windows */
79 };
80
81 /*
82  *      Device structure for cards. Each card may have one
83  *      or more pccard drivers attached to it; each driver is assumed
84  *      to require at most one interrupt handler, one I/O block
85  *      and one memory block. This structure is used to link the different
86  *      devices together.
87  */
88 struct pccard_devinfo {
89         u_char  name[128];
90         int running;                    /* Current state of driver */
91         u_char  misc[128];              /* For any random info */
92         struct slot *slt;               /* Back pointer to slot */
93
94         struct resource_list resources;
95 };
96
97 /*
98  *      Per-slot structure.
99  */
100 struct slot {
101         int slotnum;                    /* Slot number */
102         int flags;                      /* Slot flags (see below) */
103         int rwmem;                      /* Read/write flags */
104         int irq;                        /* IRQ allocated (0 = none) */
105
106         /*
107          *      flags.
108          */
109         unsigned int    insert_seq;     /* Firing up under the card */
110         struct callout_handle insert_ch;/* Insert event timeout handle */
111         struct callout_handle poff_ch;  /* Power Off timeout handle */
112
113         enum cardstate  state, laststate; /* Current/last card states */
114         struct selinfo  selp;           /* Info for select */
115         struct mem_desc mem[NUM_MEM_WINDOWS];   /* Memory windows */
116         struct io_desc  io[NUM_IO_WINDOWS];     /* I/O windows */
117         struct power    pwr;            /* Power values */
118         struct slot_ctrl *ctrl;         /* Per-controller data */
119         void            *cdata;         /* Controller specific data */
120         int             pwr_off_pending;/* Power status of slot */
121         device_t        dev;            /* Config system device. */
122         dev_t           d;              /* fs device */
123 };
124
125 #define PCCARD_DEVICE2SOFTC(d)  ((struct slot *) device_get_softc(d))
126 #define PCCARD_DEV2SOFTC(d)     ((struct slot *) (d)->si_drv1)
127
128 enum card_event { card_removed, card_inserted, card_deactivated };
129
130 struct slot     *pccard_init_slot(device_t, struct slot_ctrl *);
131 void             pccard_event(struct slot *, enum card_event);
132 int              pccard_suspend(device_t);
133 int              pccard_resume(device_t);
134
135 #endif /* !_PCCARD_SLOT_H */