xref: /openbsd-src/sys/dev/pci/if_mskvar.h (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
1 /*	$OpenBSD: if_mskvar.h,v 1.11 2014/07/08 05:35:18 dlg Exp $	*/
2 /*	$NetBSD: if_skvar.h,v 1.6 2005/05/30 04:35:22 christos Exp $	*/
3 
4 /*-
5  * Copyright (c) 2003 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 /*	$OpenBSD: if_mskvar.h,v 1.11 2014/07/08 05:35:18 dlg Exp $	*/
30 
31 /*
32  * Copyright (c) 1997, 1998, 1999, 2000
33  *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
34  *
35  * Redistribution and use in source and binary forms, with or without
36  * modification, are permitted provided that the following conditions
37  * are met:
38  * 1. Redistributions of source code must retain the above copyright
39  *    notice, this list of conditions and the following disclaimer.
40  * 2. Redistributions in binary form must reproduce the above copyright
41  *    notice, this list of conditions and the following disclaimer in the
42  *    documentation and/or other materials provided with the distribution.
43  * 3. All advertising materials mentioning features or use of this software
44  *    must display the following acknowledgement:
45  *	This product includes software developed by Bill Paul.
46  * 4. Neither the name of the author nor the names of any co-contributors
47  *    may be used to endorse or promote products derived from this software
48  *    without specific prior written permission.
49  *
50  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
51  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
54  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
55  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
56  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
57  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
58  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
59  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
60  * THE POSSIBILITY OF SUCH DAMAGE.
61  *
62  * $FreeBSD: /c/ncvs/src/sys/pci/if_skreg.h,v 1.9 2000/04/22 02:16:37 wpaul Exp $
63  */
64 
65 /*
66  * Copyright (c) 2003 Nathan L. Binkert <binkertn@umich.edu>
67  *
68  * Permission to use, copy, modify, and distribute this software for any
69  * purpose with or without fee is hereby granted, provided that the above
70  * copyright notice and this permission notice appear in all copies.
71  *
72  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
73  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
74  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
75  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
76  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
77  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
78  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
79  */
80 
81 #ifndef _DEV_PCI_IF_MSKVAR_H_
82 #define _DEV_PCI_IF_MSKVAR_H_
83 
84 struct sk_chain {
85 	void			*sk_le;
86 	struct mbuf		*sk_mbuf;
87 	struct sk_chain		*sk_next;
88 };
89 
90 /*
91  * Number of DMA segments in a TxCB. Note that this is carefully
92  * chosen to make the total struct size an even power of two. It's
93  * critical that no TxCB be split across a page boundary since
94  * no attempt is made to allocate physically contiguous memory.
95  *
96  */
97 #define SK_NTXSEG      30
98 
99 #define SK_NRXSEG      4
100 
101 struct sk_txmap_entry {
102 	bus_dmamap_t			dmamap;
103 	SIMPLEQ_ENTRY(sk_txmap_entry)	link;
104 };
105 
106 struct msk_chain_data {
107 	struct if_rxring	sk_rx_ring;
108 	struct sk_chain		sk_tx_chain[MSK_TX_RING_CNT];
109 	struct sk_chain		sk_rx_chain[MSK_RX_RING_CNT];
110 	struct sk_txmap_entry	*sk_tx_map[MSK_TX_RING_CNT];
111 	bus_dmamap_t		sk_rx_map[MSK_RX_RING_CNT];
112 	int			sk_tx_prod;
113 	int			sk_tx_cons;
114 	int			sk_tx_cnt;
115 	int			sk_rx_prod;
116 	int			sk_rx_cons;
117 };
118 
119 struct msk_ring_data {
120 	struct msk_tx_desc	sk_tx_ring[MSK_TX_RING_CNT];
121 	struct msk_rx_desc	sk_rx_ring[MSK_RX_RING_CNT];
122 };
123 
124 #define MSK_TX_RING_ADDR(sc, i) \
125     ((sc)->sk_ring_map->dm_segs[0].ds_addr + \
126      offsetof(struct msk_ring_data, sk_tx_ring[(i)]))
127 
128 #define MSK_RX_RING_ADDR(sc, i) \
129     ((sc)->sk_ring_map->dm_segs[0].ds_addr + \
130      offsetof(struct msk_ring_data, sk_rx_ring[(i)]))
131 
132 #define MSK_CDOFF(x)	offsetof(struct msk_ring_data, x)
133 #define MSK_CDTXOFF(x)	MSK_CDOFF(sk_tx_ring[(x)])
134 #define MSK_CDRXOFF(x)	MSK_CDOFF(sk_rx_ring[(x)])
135 #define MSK_CDSTOFF(x)	((x) * sizeof(struct msk_status_desc))
136 
137 #define MSK_CDTXSYNC(sc, x, n, ops)					\
138 do {									\
139 	int __x, __n;							\
140 									\
141 	__x = (x);							\
142 	__n = (n);							\
143 									\
144 	/* If it will wrap around, sync to the end of the ring. */	\
145 	if ((__x + __n) > MSK_TX_RING_CNT) {				\
146 		bus_dmamap_sync((sc)->sk_softc->sc_dmatag,		\
147 		    (sc)->sk_ring_map, MSK_CDTXOFF(__x),		\
148 		    sizeof(struct msk_tx_desc) * (MSK_TX_RING_CNT - __x), \
149 		    (ops));						\
150 		__n -= (MSK_TX_RING_CNT - __x);				\
151 		__x = 0;						\
152 	}								\
153 									\
154 	/* Now sync whatever is left. */				\
155 	bus_dmamap_sync((sc)->sk_softc->sc_dmatag, (sc)->sk_ring_map,	\
156 	    MSK_CDTXOFF((__x)), sizeof(struct msk_tx_desc) * __n, (ops)); \
157 } while (/*CONSTCOND*/0)
158 
159 #define MSK_CDRXSYNC(sc, x, ops)					\
160 do {									\
161 	bus_dmamap_sync((sc)->sk_softc->sc_dmatag, (sc)->sk_ring_map,	\
162 	    MSK_CDRXOFF((x)), sizeof(struct msk_rx_desc), (ops));	\
163 } while (/*CONSTCOND*/0)
164 
165 #define MSK_CDSTSYNC(sc, x, ops)					\
166 do {									\
167 	bus_dmamap_sync((sc)->sc_dmatag, (sc)->sk_status_map,		\
168 	    MSK_CDSTOFF((x)), sizeof(struct msk_status_desc), (ops));	\
169 } while (/*CONSTCOND*/0)
170 
171 #define SK_INC(x, y)	(x) = (x + 1) % y
172 
173 /* Forward decl. */
174 struct sk_if_softc;
175 
176 /* Softc for the Yukon-II controller. */
177 struct sk_softc {
178 	struct device		sk_dev;		/* generic device */
179 	bus_space_handle_t	sk_bhandle;	/* bus space handle */
180 	bus_space_tag_t		sk_btag;	/* bus space tag */
181 	bus_size_t		sk_bsize;	/* bus space size */
182 	void			*sk_intrhand;	/* irq handler handle */
183 	pci_chipset_tag_t	sk_pc;
184 	u_int8_t		sk_fibertype;
185 	u_int8_t		sk_type;
186 	u_int8_t		sk_rev;
187 	u_int8_t		sk_macs;	/* # of MACs */
188 	char			*sk_name;
189 	u_int32_t		sk_ramsize;	/* amount of RAM on NIC */
190 	u_int32_t		sk_intrmask;
191 	bus_dma_tag_t		sc_dmatag;
192 	struct sk_if_softc	*sk_if[2];
193 	struct msk_status_desc	*sk_status_ring;
194 	bus_dmamap_t		sk_status_map;
195 	bus_dma_segment_t	sk_status_seg;
196 	int			sk_status_nseg;
197 	int			sk_status_idx;
198 };
199 
200 /* Softc for each logical interface */
201 struct sk_if_softc {
202 	struct device		sk_dev;		/* generic device */
203 	struct arpcom		arpcom;		/* interface info */
204 	struct mii_data		sk_mii;
205 	u_int8_t		sk_port;	/* port # on controller */
206 	u_int8_t		sk_xmac_rev;	/* XMAC chip rev (B2 or C1) */
207 	u_int32_t		sk_rx_ramstart;
208 	u_int32_t		sk_rx_ramend;
209 	u_int32_t		sk_tx_ramstart;
210 	u_int32_t		sk_tx_ramend;
211 	int			sk_pktlen;
212 	int			sk_link;
213 	struct timeout		sk_tick_ch;
214 	struct msk_chain_data	sk_cdata;
215 	struct msk_ring_data	*sk_rdata;
216 	bus_dmamap_t		sk_ring_map;
217 	bus_dma_segment_t	sk_ring_seg;
218 	int			sk_ring_nseg;
219 	int			sk_status_idx;
220 	struct sk_softc		*sk_softc;	/* parent controller */
221 	int			sk_tx_bmu;	/* TX BMU register */
222 	SIMPLEQ_HEAD(__sk_txmaphead, sk_txmap_entry)	sk_txmap_head;
223 };
224 
225 struct skc_attach_args {
226 	u_int16_t	skc_port;
227 	u_int8_t	skc_type;
228 	u_int8_t	skc_rev;
229 };
230 
231 #endif /* _DEV_PCI_IF_MSKVAR_H_ */
232