]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/dev/tx/if_txvar.h
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / dev / tx / if_txvar.h
1 /*-
2  * Copyright (c) 1997 Semen Ustimenko
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 /*
30  * Configuration
31  */
32 /*#define       EPIC_DIAG       1*/
33 /*#define       EPIC_USEIOSPACE 1*/
34 /*#define       EPIC_EARLY_RX   1*/
35
36 #ifndef ETHER_MAX_LEN
37 #define ETHER_MAX_LEN           1518
38 #endif
39 #ifndef ETHER_MIN_LEN
40 #define ETHER_MIN_LEN           64
41 #endif
42 #ifndef ETHER_CRC_LEN
43 #define ETHER_CRC_LEN           4
44 #endif
45 #define TX_RING_SIZE            16              /* Leave this a power of 2 */
46 #define RX_RING_SIZE            16              /* And this too, to do not */
47                                                 /* confuse RX(TX)_RING_MASK */
48 #define TX_RING_MASK            (TX_RING_SIZE - 1)
49 #define RX_RING_MASK            (RX_RING_SIZE - 1)
50 #define ETHER_MAX_FRAME_LEN     (ETHER_MAX_LEN + ETHER_CRC_LEN)
51 #define ETHER_ALIGN             2
52
53 /* This is driver's structure to define EPIC descriptors */
54 struct epic_rx_buffer {
55         struct mbuf *mbuf;              /* mbuf receiving packet */
56         bus_dmamap_t map;               /* DMA map */
57 };
58
59 struct epic_tx_buffer {
60         struct mbuf *mbuf;              /* mbuf contained packet */
61         bus_dmamap_t map;               /* DMA map */
62 };
63
64 /* PHY, known by tx driver */
65 #define EPIC_UNKN_PHY           0x0000
66 #define EPIC_QS6612_PHY         0x0001
67 #define EPIC_AC101_PHY          0x0002
68 #define EPIC_LXT970_PHY         0x0003
69 #define EPIC_SERIAL             0x0004
70
71 /* Driver status structure */
72 typedef struct {
73         struct ifnet            *ifp;
74         struct resource         *res;
75         struct resource         *irq;
76
77         device_t                miibus;
78         device_t                dev;
79         struct callout_handle   stat_ch;
80
81         u_int32_t               unit;
82         void                    *sc_ih;
83         bus_space_tag_t         sc_st;
84         bus_space_handle_t      sc_sh;
85         bus_dma_tag_t           mtag;
86         bus_dma_tag_t           rtag;
87         bus_dmamap_t            rmap;
88         bus_dma_tag_t           ttag;
89         bus_dmamap_t            tmap;
90         bus_dma_tag_t           ftag;
91         bus_dmamap_t            fmap;
92         bus_dmamap_t            sparemap;
93
94         struct epic_rx_buffer   rx_buffer[RX_RING_SIZE];
95         struct epic_tx_buffer   tx_buffer[TX_RING_SIZE];
96
97         /* Each element of array MUST be aligned on dword  */
98         /* and bounded on PAGE_SIZE                        */
99         struct epic_rx_desc     *rx_desc;
100         struct epic_tx_desc     *tx_desc;
101         struct epic_frag_list   *tx_flist;
102         u_int32_t               rx_addr;
103         u_int32_t               tx_addr;
104         u_int32_t               frag_addr;
105         u_int32_t               flags;
106         u_int32_t               tx_threshold;
107         u_int32_t               txcon;
108         u_int32_t               miicfg;
109         u_int32_t               cur_tx;
110         u_int32_t               cur_rx;
111         u_int32_t               dirty_tx;
112         u_int32_t               pending_txs;
113         u_int16_t               cardvend;
114         u_int16_t               cardid;
115         struct mii_softc        *physc;
116         u_int32_t               phyid;
117         int                     serinst;
118         void                    *pool;
119 } epic_softc_t;
120
121 struct epic_type {
122         u_int16_t       ven_id;
123         u_int16_t       dev_id;
124         char            *name;
125 };
126
127 #define CSR_WRITE_4(sc, reg, val)                                       \
128         bus_space_write_4((sc)->sc_st, (sc)->sc_sh, (reg), (val))
129 #define CSR_WRITE_2(sc, reg, val)                                       \
130         bus_space_write_2((sc)->sc_st, (sc)->sc_sh, (reg), (val))
131 #define CSR_WRITE_1(sc, reg, val)                                       \
132         bus_space_write_1((sc)->sc_st, (sc)->sc_sh, (reg), (val))
133 #define CSR_READ_4(sc, reg)                                             \
134         bus_space_read_4((sc)->sc_st, (sc)->sc_sh, (reg))
135 #define CSR_READ_2(sc, reg)                                             \
136         bus_space_read_2((sc)->sc_st, (sc)->sc_sh, (reg))
137 #define CSR_READ_1(sc, reg)                                             \
138         bus_space_read_1((sc)->sc_st, (sc)->sc_sh, (reg))
139
140 #define PHY_READ_2(sc, phy, reg)                                        \
141         epic_read_phy_reg((sc), (phy), (reg))
142 #define PHY_WRITE_2(sc, phy, reg, val)                                  \
143         epic_write_phy_reg((sc), (phy), (reg), (val))