Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / dev / ic / dp83932var.h
blobec5f44fb24280787b47560d083bc46846819183e
1 /* $NetBSD: dp83932var.h,v 1.11 2008/04/28 20:23:49 martin Exp $ */
3 /*-
4 * Copyright (c) 2001 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #ifndef _DEV_IC_DP83932VAR_H_
33 #define _DEV_IC_DP83932VAR_H_
36 * Data structure definitions for the National Semiconductor DP83932
37 * Systems-Oriented Network Interface Controller (SONIC).
41 * NOTE: The control data for the SONIC must not cross a 64k boundary,
42 * so we have to be careful about how we size things.
44 * Also, since the SONIC is only a 10Mb/s chip, and systems on which
45 * it is present tend to be low on memory, we try to keep the data
46 * structure sizes small.
50 * Transmit descriptor list size.
52 #define SONIC_NTXDESC 32
53 #define SONIC_NTXDESC_MASK (SONIC_NTXDESC - 1)
54 #define SONIC_NEXTTX(x) (((x) + 1) & SONIC_NTXDESC_MASK)
57 * Receive descriptor list size.
59 #define SONIC_NRXDESC 32
60 #define SONIC_NRXDESC_MASK (SONIC_NRXDESC - 1)
61 #define SONIC_NEXTRX(x) (((x) + 1) & SONIC_NRXDESC_MASK)
62 #define SONIC_PREVRX(x) (((x) - 1) & SONIC_NRXDESC_MASK)
63 #define SONIC_RXSEQ_TO_DESC(x) ((x) & SONIC_NRXDESC_MASK)
66 * Number of CAM entries.
68 #define SONIC_NCAMENT 16
71 * Control structures are DMA'd to the SONIC chip. We allocate them in
72 * a single clump that maps to a single DMA segment to make several things
73 * easier.
75 struct sonic_control_data16 {
77 * The transmit descriptors.
79 struct sonic_tda16 scd_txdescs[SONIC_NTXDESC];
82 * The receive descriptors.
84 struct sonic_rda16 scd_rxdescs[SONIC_NRXDESC];
87 * The receive resource descriptors.
89 struct sonic_rra16 scd_rxbufs[SONIC_NRXDESC];
92 * The CAM descriptors.
94 struct sonic_cda16 scd_cam[SONIC_NCAMENT];
95 uint16_t scd_camenable;
98 #define SONIC_CDOFF16(x) offsetof(struct sonic_control_data16, x)
99 #define SONIC_CDTXOFF16(x) SONIC_CDOFF16(scd_txdescs[(x)])
100 #define SONIC_CDRXOFF16(x) SONIC_CDOFF16(scd_rxdescs[(x)])
101 #define SONIC_CDRROFF16(x) SONIC_CDOFF16(scd_rxbufs[(x)])
102 #define SONIC_CDCAMOFF16 SONIC_CDOFF16(scd_cam)
103 #define SONIC_CDCAMSIZE16 \
104 (sizeof(struct sonic_cda16) * SONIC_NCAMENT + sizeof(uint16_t))
106 struct sonic_control_data32 {
108 * The transmit descriptors.
110 struct sonic_tda32 scd_txdescs[SONIC_NTXDESC];
113 * The receive descriptors.
115 struct sonic_rda32 scd_rxdescs[SONIC_NRXDESC];
118 * The receive resource descriptors.
120 struct sonic_rra32 scd_rxbufs[SONIC_NRXDESC];
123 * The CAM descriptors.
125 struct sonic_cda32 scd_cam[SONIC_NCAMENT];
126 uint32_t scd_camenable;
129 #define SONIC_CDOFF32(x) offsetof(struct sonic_control_data32, x)
130 #define SONIC_CDTXOFF32(x) SONIC_CDOFF32(scd_txdescs[(x)])
131 #define SONIC_CDRXOFF32(x) SONIC_CDOFF32(scd_rxdescs[(x)])
132 #define SONIC_CDRROFF32(x) SONIC_CDOFF32(scd_rxbufs[(x)])
133 #define SONIC_CDCAMOFF32 SONIC_CDOFF32(scd_cam)
134 #define SONIC_CDCAMSIZE32 \
135 (sizeof(struct sonic_cda32) * SONIC_NCAMENT + sizeof(uint32_t))
138 * Software state for transmit and receive descriptors.
140 struct sonic_descsoft {
141 struct mbuf *ds_mbuf; /* head of mbuf chain */
142 bus_dmamap_t ds_dmamap; /* our DMA map */
146 * Software state per device.
148 struct sonic_softc {
149 device_t sc_dev; /* generic device information */
150 bus_space_tag_t sc_st; /* bus space tag */
151 bus_space_handle_t sc_sh; /* bus space handle */
152 bus_dma_tag_t sc_dmat; /* bus DMA tag */
153 struct ethercom sc_ethercom; /* ethernet common data */
155 int sc_32bit; /* use 32-bit mode */
156 int sc_bigendian; /* BMODE -> Vcc */
158 /* Our register map. */
159 bus_addr_t sc_regmap[SONIC_NREGS];
161 bus_dmamap_t sc_cddmamap; /* control data DMA map */
162 #define sc_cddma sc_cddmamap->dm_segs[0].ds_addr
163 bus_dmamap_t sc_nulldmamap; /* DMA map for the pad buffer */
164 #define sc_nulldma sc_nulldmamap->dm_segs[0].ds_addr
167 * Software state for transmit and receive descriptors.
169 struct sonic_descsoft sc_txsoft[SONIC_NTXDESC];
170 struct sonic_descsoft sc_rxsoft[SONIC_NRXDESC];
173 * Control data structures.
175 union {
176 struct sonic_control_data16 *cdun_16;
177 struct sonic_control_data32 *cdun_32;
178 } sc_cdun;
179 #define sc_cdata16 sc_cdun.cdun_16
180 #define sc_cdata32 sc_cdun.cdun_32
182 #define sc_tda16 sc_cdun.cdun_16->scd_txdescs
183 #define sc_rda16 sc_cdun.cdun_16->scd_rxdescs
184 #define sc_rra16 sc_cdun.cdun_16->scd_rxbufs
185 #define sc_cda16 sc_cdun.cdun_16->scd_cam
186 #define sc_cdaenable16 sc_cdun.cdun_16->scd_camenable
188 #define sc_tda32 sc_cdun.cdun_32->scd_txdescs
189 #define sc_rda32 sc_cdun.cdun_32->scd_rxdescs
190 #define sc_rra32 sc_cdun.cdun_32->scd_rxbufs
191 #define sc_cda32 sc_cdun.cdun_32->scd_cam
192 #define sc_cdaenable32 sc_cdun.cdun_32->scd_camenable
194 int sc_txpending; /* number of Tx requests pending */
195 int sc_txdirty; /* first dirty Tx descriptor */
196 int sc_txlast; /* last used Tx descriptor */
198 int sc_rxptr; /* next ready Rx descriptor */
200 uint16_t sc_imr; /* prototype IMR */
201 uint16_t sc_dcr; /* prototype DCR */
202 uint16_t sc_dcr2; /* prototype DCR2 */
205 #define CSR_READ(sc, reg) \
206 bus_space_read_2((sc)->sc_st, (sc)->sc_sh, \
207 (sc)->sc_regmap[(reg)])
209 #define CSR_WRITE(sc, reg, val) \
210 bus_space_write_2((sc)->sc_st, (sc)->sc_sh, \
211 (sc)->sc_regmap[(reg)], (val))
213 #define SONIC_CDTXADDR16(sc, x) \
214 ((sc)->sc_cddma + SONIC_CDTXOFF16((x)))
216 #define SONIC_CDTXADDR32(sc, x) \
217 ((sc)->sc_cddma + SONIC_CDTXOFF32((x)))
219 #define SONIC_CDTXADDR(sc, x) \
220 ((sc)->sc_32bit ? SONIC_CDTXADDR32((sc), (x)) : \
221 SONIC_CDTXADDR16((sc), (x)))
223 #define SONIC_CDRXADDR16(sc, x) \
224 ((sc)->sc_cddma + SONIC_CDRXOFF16((x)))
226 #define SONIC_CDRXADDR32(sc, x) \
227 ((sc)->sc_cddma + SONIC_CDRXOFF32((x)))
229 #define SONIC_CDRXADDR(sc, x) \
230 ((sc)->sc_32bit ? SONIC_CDRXADDR32((sc), (x)) : \
231 SONIC_CDRXADDR16((sc), (x)))
233 #define SONIC_CDRRADDR(sc, x) \
234 ((sc)->sc_cddma + \
235 ((sc)->sc_32bit ? SONIC_CDRROFF32((x)) : SONIC_CDRROFF16((x))))
237 #define SONIC_CDCAMADDR(sc) \
238 ((sc)->sc_cddma + \
239 ((sc)->sc_32bit ? SONIC_CDCAMOFF32 : SONIC_CDCAMOFF16))
241 #define SONIC_CDTXSYNC16(sc, x, ops) \
242 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
243 SONIC_CDTXOFF16((x)), sizeof(struct sonic_tda16), (ops))
245 #define SONIC_CDTXSYNC32(sc, x, ops) \
246 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
247 SONIC_CDTXOFF32((x)), sizeof(struct sonic_tda32), (ops))
249 #define SONIC_CDRXSYNC16(sc, x, ops) \
250 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
251 SONIC_CDRXOFF16((x)), sizeof(struct sonic_rda16), (ops))
253 #define SONIC_CDRXSYNC32(sc, x, ops) \
254 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
255 SONIC_CDRXOFF32((x)), sizeof(struct sonic_rda32), (ops))
257 #define SONIC_CDRRSYNC16(sc, x, ops) \
258 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
259 SONIC_CDRROFF16((x)), sizeof(struct sonic_rra16), (ops))
261 #define SONIC_CDRRSYNC32(sc, x, ops) \
262 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
263 SONIC_CDRROFF32((x)), sizeof(struct sonic_rra32), (ops))
265 #define SONIC_CDCAMSYNC(sc, ops) \
266 do { \
267 if ((sc)->sc_32bit) \
268 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
269 SONIC_CDCAMOFF32, SONIC_CDCAMSIZE32, \
270 (ops)); \
271 else \
272 bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
273 SONIC_CDCAMOFF16, SONIC_CDCAMSIZE16, \
274 (ops)); \
275 } while (/*CONSTCOND*/0)
277 #define SONIC_INIT_RXDESC(sc, x) \
278 do { \
279 struct sonic_descsoft *__ds = &(sc)->sc_rxsoft[(x)]; \
280 struct mbuf *__m = __ds->ds_mbuf; \
282 if ((sc)->sc_32bit) { \
283 /* \
284 * Unfortuantely, in 32-bit mode, the Rx buffer must \
285 * be 32-bit aligned. \
286 */ \
287 struct sonic_rda32 *__rda = &(sc)->sc_rda32[(x)]; \
288 struct sonic_rda32 *__prda = \
289 &(sc)->sc_rda32[SONIC_PREVRX((x))]; \
290 struct sonic_rra32 *__rra = &(sc)->sc_rra32[(x)]; \
292 __m->m_data = __m->m_ext.ext_buf; \
294 __rra->rra_ptr1 = \
295 __ds->ds_dmamap->dm_segs[0].ds_addr >> 16; \
296 __rra->rra_ptr0 = \
297 __ds->ds_dmamap->dm_segs[0].ds_addr & 0xffff; \
298 __rra->rra_wc1 = 0; \
299 __rra->rra_wc0 = (ETHER_MAX_LEN + 6) / 2; \
301 __rda->rda_link = \
302 (SONIC_CDRXADDR32((sc), SONIC_NEXTRX((x))) & 0xffff) |\
303 RDA_LINK_EOL; \
304 __rda->rda_inuse = 1; \
306 __prda->rda_link = SONIC_CDRXADDR32((sc), (x)); \
308 SONIC_CDRRSYNC32((sc), (x), BUS_DMASYNC_PREWRITE); \
309 SONIC_CDRXSYNC32((sc), (x), \
310 BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
311 SONIC_CDRXSYNC32((sc), SONIC_PREVRX(x), \
312 BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
313 } else { \
314 /* \
315 * In 16-bit mode, we scoot the packet forward 2 bytes \
316 * so that the payload after the Ethernet header is \
317 * suitably aligned. \
318 */ \
319 struct sonic_rda16 *__rda = &(sc)->sc_rda16[(x)]; \
320 struct sonic_rda16 *__prda = \
321 &(sc)->sc_rda16[SONIC_PREVRX((x))]; \
322 struct sonic_rra16 *__rra = &(sc)->sc_rra16[(x)]; \
324 __m->m_data = __m->m_ext.ext_buf + 2; \
326 __rra->rra_ptr1 = \
327 __ds->ds_dmamap->dm_segs[0].ds_addr >> 16; \
328 __rra->rra_ptr0 = \
329 (__ds->ds_dmamap->dm_segs[0].ds_addr + 2) & 0xffff; \
330 __rra->rra_wc1 = 0; \
331 __rra->rra_wc0 = (ETHER_MAX_LEN + 2) / 2; \
333 __rda->rda_link = \
334 (SONIC_CDRXADDR16((sc), SONIC_NEXTRX((x))) & 0xffff) |\
335 RDA_LINK_EOL; \
336 __rda->rda_inuse = 1; \
338 __prda->rda_link = SONIC_CDRXADDR16((sc), (x)); \
340 SONIC_CDRRSYNC16((sc), (x), BUS_DMASYNC_PREWRITE); \
341 SONIC_CDRXSYNC16((sc), (x), \
342 BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
343 SONIC_CDRXSYNC16((sc), SONIC_PREVRX(x), \
344 BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
346 } while (/*CONSTCOND*/0)
348 static __inline uint16_t __unused
349 htosonic16(struct sonic_softc *sc, uint16_t val)
352 if (sc->sc_bigendian)
353 return (htobe16(val));
354 return (htole16(val));
357 static __inline uint16_t __unused
358 sonic16toh(struct sonic_softc *sc, uint16_t val)
361 if (sc->sc_bigendian)
362 return (be16toh(val));
363 return (le16toh(val));
366 static __inline uint32_t __unused
367 htosonic32(struct sonic_softc *sc, uint32_t val)
370 if (sc->sc_bigendian)
371 return (htobe32(val));
372 return (htole32(val));
375 static __inline uint32_t __unused
376 sonic32toh(struct sonic_softc *sc, uint32_t val)
379 if (sc->sc_bigendian)
380 return (be32toh(val));
381 return (le32toh(val));
384 #ifdef _KERNEL
385 void sonic_attach(struct sonic_softc *, const uint8_t *);
386 int sonic_intr(void *);
387 #endif /* _KERNEL */
389 #endif /* _DEV_IC_DP83932VAR_H_ */