This commit represents a major revamping of the clock interrupt and timebase
[dragonfly.git] / sys / bus / 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: src/sys/pccard/slot.h,v 1.25.2.5 2002/09/22 20:26:58 imp Exp $
36  * $DragonFly: src/sys/bus/pccard/Attic/slot.h,v 1.2 2003/06/17 04:28:55 dillon Exp $
37  */
38
39 #ifndef _PCCARD_SLOT_H
40 #define _PCCARD_SLOT_H
41
42 /*
43  * Normally we shouldn't include stuff here, but we're trying to be
44  * compatible with the long, dark hand of the past.
45  */
46 #include <sys/param.h>
47 #include <sys/bus.h>
48 #include <machine/bus.h>
49 #include <sys/rman.h>
50 #include <machine/resource.h>
51 #if __FreeBSD_version >= 500000
52 #include <sys/selinfo.h>
53 #else
54 #include <sys/select.h>
55 #endif
56
57 /*
58  *      Controller data - Specific to each slot controller.
59  */
60 struct slot;
61 struct slot_ctrl {
62         void    (*mapirq)(struct slot *, int);
63                                 /* Map irq */
64         int     (*mapmem)(struct slot *, int);
65                                 /* Map memory */
66         int     (*mapio)(struct slot *, int);
67                                 /* Map io */
68         void    (*reset)(void *);
69                                 /* init */
70         void    (*disable)(struct slot *);
71                                 /* Disable slot */
72         int     (*power)(struct slot *);
73                                 /* Set power values */
74         int     (*ioctl)(struct slot *, int, caddr_t);
75                                 /* ioctl to lower level */
76         void    (*resume)(struct slot *);
77                                 /* suspend/resume support */
78         int     maxmem;         /* Number of allowed memory windows */
79         int     maxio;          /* Number of allowed I/O windows */
80 };
81
82 /*
83  *      Device structure for cards. Each card may have one
84  *      or more pccard drivers attached to it; each driver is assumed
85  *      to require at most one interrupt handler, one I/O block
86  *      and one memory block. This structure is used to link the different
87  *      devices together.
88  */
89 struct pccard_devinfo {
90         uint8_t         name[128];
91         int             running;        /* Current state of driver */
92         uint8_t         misc[DEV_MISC_LEN]; /* For any random info */
93         uint8_t         manufstr[DEV_MAX_CIS_LEN];
94         uint8_t         versstr[DEV_MAX_CIS_LEN];
95         uint32_t        manufacturer;   /* Manufacturer ID */
96         uint32_t        product;        /* Product ID */
97         uint32_t        prodext;        /* Product ID (extended) */
98         struct slot     *slt;           /* Back pointer to slot */
99         struct resource_list resources;
100 };
101
102 /*
103  *      Per-slot structure.
104  */
105 struct slot {
106         int slotnum;                    /* Slot number */
107         int flags;                      /* Slot flags (see below) */
108         int rwmem;                      /* Read/write flags */
109         int irq;                        /* IRQ allocated (0 = none) */
110
111         /*
112          *      flags.
113          */
114         unsigned int    insert_seq;     /* Firing up under the card */
115         struct callout_handle insert_ch;/* Insert event timeout handle */
116         struct callout_handle poff_ch;  /* Power Off timeout handle */
117
118         enum cardstate  state, laststate; /* Current/last card states */
119         struct selinfo  selp;           /* Info for select */
120         struct mem_desc mem[NUM_MEM_WINDOWS];   /* Memory windows */
121         struct io_desc  io[NUM_IO_WINDOWS];     /* I/O windows */
122         struct power    pwr;            /* Power values */
123         struct slot_ctrl *ctrl;         /* Per-controller data */
124         void            *cdata;         /* Controller specific data */
125         int             pwr_off_pending;/* Power status of slot */
126         device_t        dev;            /* Config system device. */
127         dev_t           d;              /* fs device */
128 };
129
130 #define PCCARD_DEVICE2SOFTC(d)  ((struct slot *) device_get_softc(d))
131 #define PCCARD_DEV2SOFTC(d)     ((struct slot *) (d)->si_drv1)
132
133 enum card_event { card_removed, card_inserted, card_deactivated };
134
135 struct slot     *pccard_init_slot(device_t, struct slot_ctrl *);
136 void             pccard_event(struct slot *, enum card_event);
137 int              pccard_suspend(device_t);
138 int              pccard_resume(device_t);
139
140 #endif /* !_PCCARD_SLOT_H */