]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/dev/pdq/pdq_freebsd.h
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / dev / pdq / pdq_freebsd.h
1 /*      $NetBSD: pdqvar.h,v 1.27 2000/05/03 19:17:54 thorpej Exp $      */
2
3 /*-
4  * Copyright (c) 1995, 1996 Matt Thomas <matt@3am-software.com>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. The name of the author may not be used to endorse or promote products
13  *    derived from this software without specific prior written permission
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * Id: pdqvar.h,v 1.21 1997/03/21 21:16:04 thomas Exp
27  * $FreeBSD$
28  *
29  */
30
31 /*
32  * DEC PDQ FDDI Controller; PDQ O/S dependent definitions
33  *
34  * Written by Matt Thomas
35  *
36  */
37
38 #if defined(PDQ_HWSUPPORT)
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/lock.h>
43 #include <sys/mutex.h>
44 #include <sys/malloc.h>
45 #include <sys/socket.h>
46 #include <sys/sockio.h>
47
48 #include <sys/module.h>
49 #include <sys/bus.h>
50
51 #include <machine/bus.h>
52 #include <machine/resource.h>
53 #include <sys/rman.h>
54         
55 #include <net/if.h>
56 #include <net/if_arp.h>
57 #include <net/if_dl.h>
58 #include <net/if_media.h>
59 #include <net/fddi.h>
60
61 #include <net/bpf.h>
62
63 #include <vm/vm.h>              /* for vtophys */
64 #include <vm/pmap.h>            /* for vtophys */
65
66 #endif  /* PDQ_HWSUPPORT */
67
68 typedef struct _pdq_t pdq_t;
69 typedef struct _pdq_csrs_t pdq_csrs_t;
70 typedef struct _pdq_pci_csrs_t pdq_pci_csrs_t;
71 typedef struct _pdq_lanaddr_t pdq_lanaddr_t;
72 typedef unsigned int pdq_uint32_t;
73 typedef unsigned short pdq_uint16_t;
74 typedef unsigned char pdq_uint8_t;
75 typedef enum _pdq_boolean_t pdq_boolean_t;
76 typedef enum _pdq_type_t pdq_type_t;
77 typedef enum _pdq_state_t pdq_state_t;
78 typedef struct mbuf PDQ_OS_DATABUF_T;
79
80 typedef bus_space_tag_t pdq_bus_t;
81 typedef bus_space_handle_t pdq_bus_memaddr_t;
82 typedef pdq_bus_memaddr_t pdq_bus_memoffset_t;
83
84 extern devclass_t pdq_devclass;
85
86 enum _pdq_type_t {
87     PDQ_DEFPA,          /* PCI-bus */
88     PDQ_DEFEA,          /* EISA-bus */
89     PDQ_DEFTA,          /* TurboChannel */
90     PDQ_DEFAA,          /* FutureBus+ */
91     PDQ_DEFQA           /* Q-bus */
92 };
93
94 #define sc_ifmedia      ifmedia
95 #if 0 /* ALTQ */
96 #define IFQ_DEQUEUE     IF_DEQUEUE
97 #define IFQ_IS_EMPTY(q) ((q)->ifq_len == 0)
98 #endif
99
100 typedef struct _pdq_os_ctx_t {
101         struct ifnet            *ifp;
102         struct ifmedia          ifmedia;
103         device_t                dev;
104         int                     debug;
105
106         pdq_t *                 sc_pdq;
107         int                     sc_flags;
108 #define PDQIF_DOWNCALL          0x0001  /* active calling from if to pdq */
109
110         struct resource *       io;
111         int                     io_rid;
112         int                     io_type;
113         bus_space_handle_t      io_bsh;
114         bus_space_tag_t         io_bst;
115
116         struct resource *       mem;
117         int                     mem_rid;
118         int                     mem_type;
119         bus_space_handle_t      mem_bsh;
120         bus_space_tag_t         mem_bst;
121
122         struct resource *       irq;
123         int                     irq_rid;
124         void *                  irq_ih;
125
126         struct mtx              mtx;
127 } pdq_softc_t;
128
129 #define PDQ_LOCK(_sc)           mtx_lock(&(_sc)->mtx)
130 #define PDQ_UNLOCK(_sc)         mtx_unlock(&(_sc)->mtx)
131
132 #define PDQ_OS_HDR_OFFSET       PDQ_RX_FC_OFFSET
133
134 #define PDQ_OS_PAGESIZE         PAGE_SIZE
135 #define PDQ_OS_TX_TRANSMIT      5
136
137 #define PDQ_OS_IORD_32(bt, bh, off)             bus_space_read_4(bt, bh, off)
138 #define PDQ_OS_IOWR_32(bt, bh, off, data)       bus_space_write_4(bt, bh, off, data)
139 #define PDQ_OS_IORD_8(bt, bh, off)              bus_space_read_1(bt, bh, off)
140 #define PDQ_OS_IOWR_8(bt, bh, off, data)        bus_space_write_1(bt, bh, off, data)
141
142 #define PDQ_CSR_OFFSET(base, offset)            (0 + (offset)*sizeof(pdq_uint32_t))
143 #define PDQ_CSR_WRITE(csr, name, data)          PDQ_OS_IOWR_32((csr)->csr_bus, (csr)->csr_base, (csr)->name, data)
144 #define PDQ_CSR_READ(csr, name)                 PDQ_OS_IORD_32((csr)->csr_bus, (csr)->csr_base, (csr)->name)
145
146 #define PDQ_OS_DATABUF_FREE(pdq, b)             (m_freem(b))
147
148 #if defined(PDQ_OSSUPPORT)
149 #define PDQ_OS_TX_TIMEOUT               5       /* seconds */
150
151 #define PDQ_OS_IFP_TO_SOFTC(ifp)        ((pdq_softc_t *) (ifp)->if_softc)
152 #define PDQ_BPF_MTAP(sc, m)             BPF_MTAP((sc)->ifp, m)
153 #define PDQ_IFNET(sc)                   ((sc)->ifp)
154
155 #endif  /* PDQ_OSSUPPORT */
156
157 #if defined(PDQ_HWSUPPORT)
158
159 #define PDQ_OS_PREFIX                   "%s: "
160 #define PDQ_OS_PREFIX_ARGS              pdq->pdq_os_name
161
162 #define PDQ_OS_PTR_FMT  "%p"
163 #define PDQ_OS_CSR_FMT  "0x%x"
164
165 #define PDQ_OS_USEC_DELAY(n)            DELAY(n)
166 #define PDQ_OS_VA_TO_BUSPA(pdq, p)      vtophys(p)
167
168 #define PDQ_OS_MEMALLOC(n)              malloc(n, M_DEVBUF, M_NOWAIT)
169 #define PDQ_OS_MEMFREE(p, n)            free((void *) p, M_DEVBUF)
170 #define PDQ_OS_MEMZERO(p, n)            bzero((caddr_t)(p), (n))
171 #define PDQ_OS_MEMALLOC_CONTIG(n)       contigmalloc(n, M_DEVBUF, M_NOWAIT, 0x800000, ~0, PAGE_SIZE, 0)
172 #define PDQ_OS_MEMFREE_CONTIG(p, n)     contigfree(p, n, M_DEVBUF)
173
174 #define PDQ_OS_DATABUF_SIZE                     (MCLBYTES)
175 #define PDQ_OS_DATABUF_NEXT(b)                  ((b)->m_next)
176 #define PDQ_OS_DATABUF_NEXT_SET(b, b1)          ((b)->m_next = (b1))
177 #define PDQ_OS_DATABUF_NEXTPKT(b)               ((b)->m_nextpkt)
178 #define PDQ_OS_DATABUF_NEXTPKT_SET(b, b1)       ((b)->m_nextpkt = (b1))
179 #define PDQ_OS_DATABUF_LEN(b)                   ((b)->m_len)
180 #define PDQ_OS_DATABUF_LEN_SET(b, n)            ((b)->m_len = (n))
181 /* #define      PDQ_OS_DATABUF_LEN_ADJ(b, n)            ((b)->m_len += (n)) */
182 #define PDQ_OS_DATABUF_PTR(b)                   (mtod((b), pdq_uint8_t *))
183 #define PDQ_OS_DATABUF_ADJ(b, n)                ((b)->m_data += (n), (b)->m_len -= (n))
184
185 #define PDQ_OS_DATABUF_ALLOC(pdq, b) do { \
186     PDQ_OS_DATABUF_T *x_m0; \
187     MGETHDR(x_m0, M_DONTWAIT, MT_DATA); \
188     if (x_m0 != NULL) { \
189         MCLGET(x_m0, M_DONTWAIT);       \
190         if ((x_m0->m_flags & M_EXT) == 0) { \
191             m_free(x_m0); \
192             (b) = NULL; \
193         } else { \
194             (b) = x_m0; \
195             x_m0->m_len = PDQ_OS_DATABUF_SIZE; \
196         } \
197     } else { \
198         (b) = NULL; \
199     } \
200 } while (0)
201
202 #define PDQ_OS_DATABUF_RESET(b) ((b)->m_data = (b)->m_ext.ext_buf, (b)->m_len = MCLBYTES)
203
204 #define PDQ_OS_DATABUF_ENQUEUE(q, b)    do { \
205     PDQ_OS_DATABUF_NEXTPKT_SET(b, NULL); \
206     if ((q)->q_tail == NULL) \
207         (q)->q_head = (b); \
208     else \
209         PDQ_OS_DATABUF_NEXTPKT_SET(((PDQ_OS_DATABUF_T *)(q)->q_tail), b); \
210     (q)->q_tail = (b); \
211 } while (0)
212
213 #define PDQ_OS_DATABUF_DEQUEUE(q, b)    do { \
214     if (((b) = (PDQ_OS_DATABUF_T *) (q)->q_head) != NULL) { \
215         if (((q)->q_head = PDQ_OS_DATABUF_NEXTPKT(b)) == NULL) \
216             (q)->q_tail = NULL; \
217         PDQ_OS_DATABUF_NEXTPKT_SET(b, NULL); \
218     } \
219 } while (0)
220
221 #define PDQ_OS_DATABUF_BUSPA(pdq, b)    PDQ_OS_VA_TO_BUSPA(pdq, PDQ_OS_DATABUF_PTR(b))
222
223 #define PDQ_OS_CONSUMER_PRESYNC(pdq)            do { } while(0)
224 #define PDQ_OS_CONSUMER_POSTSYNC(pdq)           do { } while(0)
225 #define PDQ_OS_DESC_PRESYNC(pdq, d, s)          do { } while(0)
226 #define PDQ_OS_DESC_POSTSYNC(pdq, d, s)         do { } while(0)
227 #define PDQ_OS_CMDRQST_PRESYNC(pdq, s)          do { } while(0)
228 #define PDQ_OS_CMDRQST_POSTSYNC(pdq, s)         do { } while(0)
229 #define PDQ_OS_CMDRSP_PRESYNC(pdq, s)           do { } while(0)
230 #define PDQ_OS_CMDRSP_POSTSYNC(pdq, s)          do { } while(0)
231 #define PDQ_OS_RXPDU_PRESYNC(pdq, b, o, l)      do { } while(0)
232 #define PDQ_OS_RXPDU_POSTSYNC(pdq, b, o, l)     do { } while(0)
233 #define PDQ_OS_UNSOL_EVENT_PRESYNC(pdq, e)      do { } while(0)
234 #define PDQ_OS_UNSOL_EVENT_POSTSYNC(pdq, e)     do { } while(0)
235
236 #endif  /* PDQ_HWSUPPORT */
237
238 /*
239  * OS dependent functions provided by pdq_ifsubr.c to pdq.c
240  */
241 void    pdq_os_addr_fill (pdq_t *pdq, pdq_lanaddr_t *addrs, size_t numaddrs);
242 void    pdq_os_receive_pdu (pdq_t *, PDQ_OS_DATABUF_T *, size_t, int);
243 void    pdq_os_restart_transmitter (pdq_t *pdq);
244 void    pdq_os_transmit_done (pdq_t *, PDQ_OS_DATABUF_T *);
245 void    pdq_os_update_status (pdq_t *, const void *);
246
247 /*
248  * Driver interfaces functions provided by pdq.c to pdq_ifsubr.c
249  */
250 pdq_boolean_t   pdq_queue_transmit_data (pdq_t *pdq, PDQ_OS_DATABUF_T *pdu);
251 void            pdq_run  (pdq_t *pdq);
252 pdq_state_t     pdq_stop (pdq_t *pdq);
253
254 /*
255  * OS dependent functions provided by
256  * pdq_ifsubr.c or pdq.c to the bus front ends
257  */
258 void            pdq_ifattach (pdq_softc_t *, const pdq_uint8_t *);
259 void            pdq_ifdetach (pdq_softc_t *);
260 void            pdq_free (device_t);
261 int             pdq_interrupt (pdq_t *pdq);
262 void            pdq_hwreset (pdq_t *pdq);
263 pdq_t *         pdq_initialize (pdq_bus_t bus, pdq_bus_memaddr_t csr_va,
264                                 const char *name, int unit,
265                                 void *ctx, pdq_type_t type);
266 /*
267  * Misc prototypes.
268  */
269 void            pdq_flush_transmitter(pdq_t *pdq);