dwc_eqos.c revision 1.33 1 1.33 riastrad /* $NetBSD: dwc_eqos.c,v 1.33 2023/11/02 13:50:14 riastradh Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 2022 Jared McNeill <jmcneill (at) invisible.ca>
5 1.1 jmcneill * All rights reserved.
6 1.1 jmcneill *
7 1.1 jmcneill * Redistribution and use in source and binary forms, with or without
8 1.1 jmcneill * modification, are permitted provided that the following conditions
9 1.1 jmcneill * are met:
10 1.1 jmcneill * 1. Redistributions of source code must retain the above copyright
11 1.1 jmcneill * notice, this list of conditions and the following disclaimer.
12 1.1 jmcneill * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jmcneill * notice, this list of conditions and the following disclaimer in the
14 1.1 jmcneill * documentation and/or other materials provided with the distribution.
15 1.1 jmcneill *
16 1.1 jmcneill * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 jmcneill * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 jmcneill * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 jmcneill * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 jmcneill * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 1.1 jmcneill * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 1.1 jmcneill * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 1.1 jmcneill * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 1.1 jmcneill * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 jmcneill * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 jmcneill * SUCH DAMAGE.
27 1.1 jmcneill */
28 1.1 jmcneill
29 1.1 jmcneill /*
30 1.1 jmcneill * DesignWare Ethernet Quality-of-Service controller
31 1.20 msaitoh *
32 1.20 msaitoh * TODO:
33 1.20 msaitoh * Multiqueue support.
34 1.20 msaitoh * Add watchdog timer.
35 1.20 msaitoh * Add detach function.
36 1.1 jmcneill */
37 1.1 jmcneill
38 1.1 jmcneill #include "opt_net_mpsafe.h"
39 1.1 jmcneill
40 1.1 jmcneill #include <sys/cdefs.h>
41 1.33 riastrad __KERNEL_RCSID(0, "$NetBSD: dwc_eqos.c,v 1.33 2023/11/02 13:50:14 riastradh Exp $");
42 1.1 jmcneill
43 1.1 jmcneill #include <sys/param.h>
44 1.1 jmcneill #include <sys/bus.h>
45 1.1 jmcneill #include <sys/device.h>
46 1.1 jmcneill #include <sys/intr.h>
47 1.1 jmcneill #include <sys/systm.h>
48 1.1 jmcneill #include <sys/kernel.h>
49 1.1 jmcneill #include <sys/mutex.h>
50 1.1 jmcneill #include <sys/callout.h>
51 1.1 jmcneill #include <sys/cprng.h>
52 1.2 mrg #include <sys/evcnt.h>
53 1.25 msaitoh #include <sys/sysctl.h>
54 1.1 jmcneill
55 1.1 jmcneill #include <sys/rndsource.h>
56 1.1 jmcneill
57 1.1 jmcneill #include <net/if.h>
58 1.1 jmcneill #include <net/if_dl.h>
59 1.1 jmcneill #include <net/if_ether.h>
60 1.1 jmcneill #include <net/if_media.h>
61 1.1 jmcneill #include <net/bpf.h>
62 1.1 jmcneill
63 1.1 jmcneill #include <dev/mii/miivar.h>
64 1.1 jmcneill
65 1.1 jmcneill #include <dev/ic/dwc_eqos_reg.h>
66 1.1 jmcneill #include <dev/ic/dwc_eqos_var.h>
67 1.1 jmcneill
68 1.13 ryo #define EQOS_MAX_MTU 9000 /* up to 16364? but not tested */
69 1.13 ryo #define EQOS_TXDMA_SIZE (EQOS_MAX_MTU + ETHER_HDR_LEN + ETHER_CRC_LEN)
70 1.13 ryo #define EQOS_RXDMA_SIZE 2048 /* Fixed value by hardware */
71 1.13 ryo CTASSERT(MCLBYTES >= EQOS_RXDMA_SIZE);
72 1.8 martin
73 1.1 jmcneill #ifdef EQOS_DEBUG
74 1.25 msaitoh #define EDEB_NOTE (1U << 0)
75 1.25 msaitoh #define EDEB_INTR (1U << 1)
76 1.25 msaitoh #define EDEB_RXRING (1U << 2)
77 1.25 msaitoh #define EDEB_TXRING (1U << 3)
78 1.29 msaitoh unsigned int eqos_debug; /* Default value */
79 1.25 msaitoh #define DPRINTF(FLAG, FORMAT, ...) \
80 1.25 msaitoh if (sc->sc_debug & FLAG) \
81 1.8 martin device_printf(sc->sc_dev, "%s: " FORMAT, \
82 1.8 martin __func__, ##__VA_ARGS__)
83 1.1 jmcneill #else
84 1.8 martin #define DPRINTF(FLAG, FORMAT, ...) ((void)0)
85 1.1 jmcneill #endif
86 1.1 jmcneill
87 1.1 jmcneill #ifdef NET_MPSAFE
88 1.1 jmcneill #define EQOS_MPSAFE 1
89 1.1 jmcneill #define CALLOUT_FLAGS CALLOUT_MPSAFE
90 1.1 jmcneill #else
91 1.1 jmcneill #define CALLOUT_FLAGS 0
92 1.1 jmcneill #endif
93 1.1 jmcneill
94 1.21 msaitoh #define DESC_BOUNDARY ((sizeof(bus_size_t) > 4) ? (1ULL << 32) : 0)
95 1.1 jmcneill #define DESC_ALIGN sizeof(struct eqos_dma_desc)
96 1.1 jmcneill #define TX_DESC_COUNT EQOS_DMA_DESC_COUNT
97 1.1 jmcneill #define TX_DESC_SIZE (TX_DESC_COUNT * DESC_ALIGN)
98 1.1 jmcneill #define RX_DESC_COUNT EQOS_DMA_DESC_COUNT
99 1.1 jmcneill #define RX_DESC_SIZE (RX_DESC_COUNT * DESC_ALIGN)
100 1.1 jmcneill #define MII_BUSY_RETRY 1000
101 1.1 jmcneill
102 1.1 jmcneill #define DESC_OFF(n) ((n) * sizeof(struct eqos_dma_desc))
103 1.1 jmcneill #define TX_SKIP(n, o) (((n) + (o)) % TX_DESC_COUNT)
104 1.1 jmcneill #define TX_NEXT(n) TX_SKIP(n, 1)
105 1.1 jmcneill #define RX_NEXT(n) (((n) + 1) % RX_DESC_COUNT)
106 1.1 jmcneill
107 1.1 jmcneill #define TX_MAX_SEGS 128
108 1.1 jmcneill
109 1.1 jmcneill #define EQOS_LOCK(sc) mutex_enter(&(sc)->sc_lock)
110 1.1 jmcneill #define EQOS_UNLOCK(sc) mutex_exit(&(sc)->sc_lock)
111 1.1 jmcneill #define EQOS_ASSERT_LOCKED(sc) KASSERT(mutex_owned(&(sc)->sc_lock))
112 1.1 jmcneill
113 1.1 jmcneill #define EQOS_TXLOCK(sc) mutex_enter(&(sc)->sc_txlock)
114 1.1 jmcneill #define EQOS_TXUNLOCK(sc) mutex_exit(&(sc)->sc_txlock)
115 1.1 jmcneill #define EQOS_ASSERT_TXLOCKED(sc) KASSERT(mutex_owned(&(sc)->sc_txlock))
116 1.1 jmcneill
117 1.1 jmcneill #define EQOS_HW_FEATURE_ADDR64_32BIT(sc) \
118 1.1 jmcneill (((sc)->sc_hw_feature[1] & GMAC_MAC_HW_FEATURE1_ADDR64_MASK) == \
119 1.1 jmcneill GMAC_MAC_HW_FEATURE1_ADDR64_32BIT)
120 1.1 jmcneill
121 1.1 jmcneill
122 1.1 jmcneill #define RD4(sc, reg) \
123 1.1 jmcneill bus_space_read_4((sc)->sc_bst, (sc)->sc_bsh, (reg))
124 1.1 jmcneill #define WR4(sc, reg, val) \
125 1.1 jmcneill bus_space_write_4((sc)->sc_bst, (sc)->sc_bsh, (reg), (val))
126 1.1 jmcneill
127 1.25 msaitoh static void eqos_init_sysctls(struct eqos_softc *);
128 1.25 msaitoh static int eqos_sysctl_tx_cur_handler(SYSCTLFN_PROTO);
129 1.25 msaitoh static int eqos_sysctl_tx_end_handler(SYSCTLFN_PROTO);
130 1.25 msaitoh static int eqos_sysctl_rx_cur_handler(SYSCTLFN_PROTO);
131 1.25 msaitoh static int eqos_sysctl_rx_end_handler(SYSCTLFN_PROTO);
132 1.25 msaitoh #ifdef EQOS_DEBUG
133 1.25 msaitoh static int eqos_sysctl_debug_handler(SYSCTLFN_PROTO);
134 1.25 msaitoh #endif
135 1.25 msaitoh
136 1.1 jmcneill static int
137 1.1 jmcneill eqos_mii_readreg(device_t dev, int phy, int reg, uint16_t *val)
138 1.1 jmcneill {
139 1.15 skrll struct eqos_softc * const sc = device_private(dev);
140 1.1 jmcneill uint32_t addr;
141 1.1 jmcneill int retry;
142 1.1 jmcneill
143 1.1 jmcneill addr = sc->sc_clock_range |
144 1.1 jmcneill (phy << GMAC_MAC_MDIO_ADDRESS_PA_SHIFT) |
145 1.1 jmcneill (reg << GMAC_MAC_MDIO_ADDRESS_RDA_SHIFT) |
146 1.23 msaitoh GMAC_MAC_MDIO_ADDRESS_GOC_READ | GMAC_MAC_MDIO_ADDRESS_GB;
147 1.1 jmcneill WR4(sc, GMAC_MAC_MDIO_ADDRESS, addr);
148 1.1 jmcneill
149 1.1 jmcneill delay(10000);
150 1.1 jmcneill
151 1.1 jmcneill for (retry = MII_BUSY_RETRY; retry > 0; retry--) {
152 1.1 jmcneill addr = RD4(sc, GMAC_MAC_MDIO_ADDRESS);
153 1.1 jmcneill if ((addr & GMAC_MAC_MDIO_ADDRESS_GB) == 0) {
154 1.1 jmcneill *val = RD4(sc, GMAC_MAC_MDIO_DATA) & 0xFFFF;
155 1.1 jmcneill break;
156 1.1 jmcneill }
157 1.1 jmcneill delay(10);
158 1.1 jmcneill }
159 1.1 jmcneill if (retry == 0) {
160 1.1 jmcneill device_printf(dev, "phy read timeout, phy=%d reg=%d\n",
161 1.1 jmcneill phy, reg);
162 1.1 jmcneill return ETIMEDOUT;
163 1.1 jmcneill }
164 1.1 jmcneill
165 1.1 jmcneill return 0;
166 1.1 jmcneill }
167 1.1 jmcneill
168 1.1 jmcneill static int
169 1.1 jmcneill eqos_mii_writereg(device_t dev, int phy, int reg, uint16_t val)
170 1.1 jmcneill {
171 1.15 skrll struct eqos_softc * const sc = device_private(dev);
172 1.1 jmcneill uint32_t addr;
173 1.1 jmcneill int retry;
174 1.1 jmcneill
175 1.1 jmcneill WR4(sc, GMAC_MAC_MDIO_DATA, val);
176 1.1 jmcneill
177 1.1 jmcneill addr = sc->sc_clock_range |
178 1.1 jmcneill (phy << GMAC_MAC_MDIO_ADDRESS_PA_SHIFT) |
179 1.1 jmcneill (reg << GMAC_MAC_MDIO_ADDRESS_RDA_SHIFT) |
180 1.23 msaitoh GMAC_MAC_MDIO_ADDRESS_GOC_WRITE | GMAC_MAC_MDIO_ADDRESS_GB;
181 1.1 jmcneill WR4(sc, GMAC_MAC_MDIO_ADDRESS, addr);
182 1.1 jmcneill
183 1.1 jmcneill delay(10000);
184 1.1 jmcneill
185 1.1 jmcneill for (retry = MII_BUSY_RETRY; retry > 0; retry--) {
186 1.1 jmcneill addr = RD4(sc, GMAC_MAC_MDIO_ADDRESS);
187 1.1 jmcneill if ((addr & GMAC_MAC_MDIO_ADDRESS_GB) == 0) {
188 1.1 jmcneill break;
189 1.1 jmcneill }
190 1.1 jmcneill delay(10);
191 1.1 jmcneill }
192 1.1 jmcneill if (retry == 0) {
193 1.1 jmcneill device_printf(dev, "phy write timeout, phy=%d reg=%d\n",
194 1.1 jmcneill phy, reg);
195 1.1 jmcneill return ETIMEDOUT;
196 1.1 jmcneill }
197 1.1 jmcneill
198 1.1 jmcneill return 0;
199 1.1 jmcneill }
200 1.1 jmcneill
201 1.1 jmcneill static void
202 1.1 jmcneill eqos_update_link(struct eqos_softc *sc)
203 1.1 jmcneill {
204 1.15 skrll struct mii_data * const mii = &sc->sc_mii;
205 1.1 jmcneill uint64_t baudrate;
206 1.28 msaitoh uint32_t conf, flow;
207 1.1 jmcneill
208 1.1 jmcneill baudrate = ifmedia_baudrate(mii->mii_media_active);
209 1.1 jmcneill
210 1.1 jmcneill conf = RD4(sc, GMAC_MAC_CONFIGURATION);
211 1.1 jmcneill switch (baudrate) {
212 1.1 jmcneill case IF_Mbps(10):
213 1.1 jmcneill conf |= GMAC_MAC_CONFIGURATION_PS;
214 1.1 jmcneill conf &= ~GMAC_MAC_CONFIGURATION_FES;
215 1.1 jmcneill break;
216 1.1 jmcneill case IF_Mbps(100):
217 1.1 jmcneill conf |= GMAC_MAC_CONFIGURATION_PS;
218 1.1 jmcneill conf |= GMAC_MAC_CONFIGURATION_FES;
219 1.1 jmcneill break;
220 1.1 jmcneill case IF_Gbps(1):
221 1.1 jmcneill conf &= ~GMAC_MAC_CONFIGURATION_PS;
222 1.1 jmcneill conf &= ~GMAC_MAC_CONFIGURATION_FES;
223 1.1 jmcneill break;
224 1.1 jmcneill case IF_Mbps(2500ULL):
225 1.1 jmcneill conf &= ~GMAC_MAC_CONFIGURATION_PS;
226 1.1 jmcneill conf |= GMAC_MAC_CONFIGURATION_FES;
227 1.1 jmcneill break;
228 1.1 jmcneill }
229 1.1 jmcneill
230 1.28 msaitoh /* Set duplex. */
231 1.1 jmcneill if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0) {
232 1.1 jmcneill conf |= GMAC_MAC_CONFIGURATION_DM;
233 1.1 jmcneill } else {
234 1.1 jmcneill conf &= ~GMAC_MAC_CONFIGURATION_DM;
235 1.1 jmcneill }
236 1.28 msaitoh WR4(sc, GMAC_MAC_CONFIGURATION, conf);
237 1.1 jmcneill
238 1.28 msaitoh /* Set TX flow control. */
239 1.28 msaitoh if (mii->mii_media_active & IFM_ETH_TXPAUSE) {
240 1.28 msaitoh flow = GMAC_MAC_Q0_TX_FLOW_CTRL_TFE;
241 1.28 msaitoh flow |= 0xFFFFU << GMAC_MAC_Q0_TX_FLOW_CTRL_PT_SHIFT;
242 1.28 msaitoh } else
243 1.28 msaitoh flow = 0;
244 1.28 msaitoh WR4(sc, GMAC_MAC_Q0_TX_FLOW_CTRL, flow);
245 1.28 msaitoh
246 1.28 msaitoh /* Set RX flow control. */
247 1.28 msaitoh if (mii->mii_media_active & IFM_ETH_RXPAUSE)
248 1.28 msaitoh flow = GMAC_MAC_RX_FLOW_CTRL_RFE;
249 1.28 msaitoh else
250 1.28 msaitoh flow = 0;
251 1.28 msaitoh WR4(sc, GMAC_MAC_RX_FLOW_CTRL, flow);
252 1.1 jmcneill }
253 1.1 jmcneill
254 1.1 jmcneill static void
255 1.1 jmcneill eqos_mii_statchg(struct ifnet *ifp)
256 1.1 jmcneill {
257 1.1 jmcneill struct eqos_softc * const sc = ifp->if_softc;
258 1.1 jmcneill
259 1.1 jmcneill eqos_update_link(sc);
260 1.1 jmcneill }
261 1.1 jmcneill
262 1.1 jmcneill static void
263 1.1 jmcneill eqos_dma_sync(struct eqos_softc *sc, bus_dmamap_t map,
264 1.1 jmcneill u_int start, u_int end, u_int total, int flags)
265 1.1 jmcneill {
266 1.1 jmcneill if (end > start) {
267 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, map, DESC_OFF(start),
268 1.1 jmcneill DESC_OFF(end) - DESC_OFF(start), flags);
269 1.1 jmcneill } else {
270 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, map, DESC_OFF(start),
271 1.1 jmcneill DESC_OFF(total) - DESC_OFF(start), flags);
272 1.8 martin if (end > 0) {
273 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, map, DESC_OFF(0),
274 1.1 jmcneill DESC_OFF(end) - DESC_OFF(0), flags);
275 1.1 jmcneill }
276 1.1 jmcneill }
277 1.1 jmcneill }
278 1.1 jmcneill
279 1.1 jmcneill static void
280 1.1 jmcneill eqos_setup_txdesc(struct eqos_softc *sc, int index, int flags,
281 1.1 jmcneill bus_addr_t paddr, u_int len, u_int total_len)
282 1.1 jmcneill {
283 1.1 jmcneill uint32_t tdes2, tdes3;
284 1.1 jmcneill
285 1.24 msaitoh DPRINTF(EDEB_TXRING, "preparing desc %u\n", index);
286 1.24 msaitoh
287 1.26 msaitoh EQOS_ASSERT_TXLOCKED(sc);
288 1.26 msaitoh
289 1.1 jmcneill if (paddr == 0 || len == 0) {
290 1.8 martin DPRINTF(EDEB_TXRING,
291 1.8 martin "tx for desc %u done!\n", index);
292 1.1 jmcneill KASSERT(flags == 0);
293 1.1 jmcneill tdes2 = 0;
294 1.1 jmcneill tdes3 = 0;
295 1.1 jmcneill --sc->sc_tx.queued;
296 1.1 jmcneill } else {
297 1.12 ryo tdes2 = (flags & EQOS_TDES3_TX_LD) ? EQOS_TDES2_TX_IOC : 0;
298 1.1 jmcneill tdes3 = flags;
299 1.1 jmcneill ++sc->sc_tx.queued;
300 1.1 jmcneill }
301 1.1 jmcneill
302 1.21 msaitoh KASSERT(!EQOS_HW_FEATURE_ADDR64_32BIT(sc) ||
303 1.21 msaitoh ((uint64_t)paddr >> 32) == 0);
304 1.1 jmcneill
305 1.1 jmcneill sc->sc_tx.desc_ring[index].tdes0 = htole32((uint32_t)paddr);
306 1.21 msaitoh sc->sc_tx.desc_ring[index].tdes1
307 1.21 msaitoh = htole32((uint32_t)((uint64_t)paddr >> 32));
308 1.1 jmcneill sc->sc_tx.desc_ring[index].tdes2 = htole32(tdes2 | len);
309 1.1 jmcneill sc->sc_tx.desc_ring[index].tdes3 = htole32(tdes3 | total_len);
310 1.1 jmcneill }
311 1.1 jmcneill
312 1.1 jmcneill static int
313 1.1 jmcneill eqos_setup_txbuf(struct eqos_softc *sc, int index, struct mbuf *m)
314 1.1 jmcneill {
315 1.1 jmcneill bus_dma_segment_t *segs;
316 1.1 jmcneill int error, nsegs, cur, i;
317 1.1 jmcneill uint32_t flags;
318 1.1 jmcneill bool nospace;
319 1.1 jmcneill
320 1.24 msaitoh DPRINTF(EDEB_TXRING, "preparing desc %u\n", index);
321 1.24 msaitoh
322 1.1 jmcneill /* at least one descriptor free ? */
323 1.1 jmcneill if (sc->sc_tx.queued >= TX_DESC_COUNT - 1)
324 1.1 jmcneill return -1;
325 1.1 jmcneill
326 1.1 jmcneill error = bus_dmamap_load_mbuf(sc->sc_dmat,
327 1.1 jmcneill sc->sc_tx.buf_map[index].map, m, BUS_DMA_WRITE | BUS_DMA_NOWAIT);
328 1.1 jmcneill if (error == EFBIG) {
329 1.1 jmcneill device_printf(sc->sc_dev,
330 1.1 jmcneill "TX packet needs too many DMA segments, dropping...\n");
331 1.1 jmcneill return -2;
332 1.1 jmcneill }
333 1.1 jmcneill if (error != 0) {
334 1.1 jmcneill device_printf(sc->sc_dev,
335 1.1 jmcneill "TX packet cannot be mapped, retried...\n");
336 1.1 jmcneill return 0;
337 1.1 jmcneill }
338 1.1 jmcneill
339 1.1 jmcneill segs = sc->sc_tx.buf_map[index].map->dm_segs;
340 1.1 jmcneill nsegs = sc->sc_tx.buf_map[index].map->dm_nsegs;
341 1.1 jmcneill
342 1.1 jmcneill nospace = sc->sc_tx.queued >= TX_DESC_COUNT - nsegs;
343 1.1 jmcneill if (nospace) {
344 1.1 jmcneill bus_dmamap_unload(sc->sc_dmat,
345 1.1 jmcneill sc->sc_tx.buf_map[index].map);
346 1.1 jmcneill /* XXX coalesce and retry ? */
347 1.1 jmcneill return -1;
348 1.1 jmcneill }
349 1.1 jmcneill
350 1.2 mrg bus_dmamap_sync(sc->sc_dmat, sc->sc_tx.buf_map[index].map,
351 1.5 riastrad 0, sc->sc_tx.buf_map[index].map->dm_mapsize, BUS_DMASYNC_PREWRITE);
352 1.1 jmcneill
353 1.1 jmcneill /* stored in same index as loaded map */
354 1.1 jmcneill sc->sc_tx.buf_map[index].mbuf = m;
355 1.1 jmcneill
356 1.12 ryo flags = EQOS_TDES3_TX_FD;
357 1.1 jmcneill
358 1.1 jmcneill for (cur = index, i = 0; i < nsegs; i++) {
359 1.1 jmcneill if (i == nsegs - 1)
360 1.12 ryo flags |= EQOS_TDES3_TX_LD;
361 1.1 jmcneill
362 1.1 jmcneill eqos_setup_txdesc(sc, cur, flags, segs[i].ds_addr,
363 1.1 jmcneill segs[i].ds_len, m->m_pkthdr.len);
364 1.12 ryo flags &= ~EQOS_TDES3_TX_FD;
365 1.1 jmcneill cur = TX_NEXT(cur);
366 1.1 jmcneill
367 1.12 ryo flags |= EQOS_TDES3_TX_OWN;
368 1.1 jmcneill }
369 1.1 jmcneill
370 1.1 jmcneill /*
371 1.1 jmcneill * Defer setting OWN bit on the first descriptor until all
372 1.4 riastrad * descriptors have been updated. The hardware will not try to
373 1.4 riastrad * process any descriptors past the first one still owned by
374 1.4 riastrad * software (i.e., with the OWN bit clear).
375 1.1 jmcneill */
376 1.4 riastrad bus_dmamap_sync(sc->sc_dmat, sc->sc_tx.desc_map,
377 1.4 riastrad DESC_OFF(index), offsetof(struct eqos_dma_desc, tdes3),
378 1.4 riastrad BUS_DMASYNC_PREWRITE);
379 1.8 martin DPRINTF(EDEB_TXRING, "passing tx desc %u to hardware, cur: %u, "
380 1.8 martin "next: %u, queued: %u\n",
381 1.8 martin index, sc->sc_tx.cur, sc->sc_tx.next, sc->sc_tx.queued);
382 1.12 ryo sc->sc_tx.desc_ring[index].tdes3 |= htole32(EQOS_TDES3_TX_OWN);
383 1.1 jmcneill
384 1.1 jmcneill return nsegs;
385 1.1 jmcneill }
386 1.1 jmcneill
387 1.1 jmcneill static void
388 1.1 jmcneill eqos_setup_rxdesc(struct eqos_softc *sc, int index, bus_addr_t paddr)
389 1.1 jmcneill {
390 1.4 riastrad
391 1.24 msaitoh DPRINTF(EDEB_RXRING, "preparing desc %u\n", index);
392 1.24 msaitoh
393 1.1 jmcneill sc->sc_rx.desc_ring[index].tdes0 = htole32((uint32_t)paddr);
394 1.21 msaitoh sc->sc_rx.desc_ring[index].tdes1 =
395 1.21 msaitoh htole32((uint32_t)((uint64_t)paddr >> 32));
396 1.1 jmcneill sc->sc_rx.desc_ring[index].tdes2 = htole32(0);
397 1.4 riastrad bus_dmamap_sync(sc->sc_dmat, sc->sc_rx.desc_map,
398 1.4 riastrad DESC_OFF(index), offsetof(struct eqos_dma_desc, tdes3),
399 1.4 riastrad BUS_DMASYNC_PREWRITE);
400 1.12 ryo sc->sc_rx.desc_ring[index].tdes3 = htole32(EQOS_TDES3_RX_OWN |
401 1.12 ryo EQOS_TDES3_RX_IOC | EQOS_TDES3_RX_BUF1V);
402 1.1 jmcneill }
403 1.1 jmcneill
404 1.1 jmcneill static int
405 1.1 jmcneill eqos_setup_rxbuf(struct eqos_softc *sc, int index, struct mbuf *m)
406 1.1 jmcneill {
407 1.1 jmcneill int error;
408 1.1 jmcneill
409 1.24 msaitoh DPRINTF(EDEB_RXRING, "preparing desc %u\n", index);
410 1.24 msaitoh
411 1.13 ryo #if MCLBYTES >= (EQOS_RXDMA_SIZE + ETHER_ALIGN)
412 1.13 ryo m_adj(m, ETHER_ALIGN);
413 1.13 ryo #endif
414 1.13 ryo
415 1.1 jmcneill error = bus_dmamap_load_mbuf(sc->sc_dmat,
416 1.1 jmcneill sc->sc_rx.buf_map[index].map, m, BUS_DMA_READ | BUS_DMA_NOWAIT);
417 1.1 jmcneill if (error != 0)
418 1.1 jmcneill return error;
419 1.1 jmcneill
420 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, sc->sc_rx.buf_map[index].map,
421 1.1 jmcneill 0, sc->sc_rx.buf_map[index].map->dm_mapsize,
422 1.1 jmcneill BUS_DMASYNC_PREREAD);
423 1.1 jmcneill
424 1.1 jmcneill sc->sc_rx.buf_map[index].mbuf = m;
425 1.1 jmcneill
426 1.1 jmcneill return 0;
427 1.1 jmcneill }
428 1.1 jmcneill
429 1.1 jmcneill static struct mbuf *
430 1.1 jmcneill eqos_alloc_mbufcl(struct eqos_softc *sc)
431 1.1 jmcneill {
432 1.1 jmcneill struct mbuf *m;
433 1.1 jmcneill
434 1.1 jmcneill m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
435 1.1 jmcneill if (m != NULL)
436 1.1 jmcneill m->m_pkthdr.len = m->m_len = m->m_ext.ext_size;
437 1.1 jmcneill
438 1.1 jmcneill return m;
439 1.1 jmcneill }
440 1.1 jmcneill
441 1.1 jmcneill static void
442 1.1 jmcneill eqos_enable_intr(struct eqos_softc *sc)
443 1.1 jmcneill {
444 1.23 msaitoh
445 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_INTR_ENABLE,
446 1.1 jmcneill GMAC_DMA_CHAN0_INTR_ENABLE_NIE |
447 1.1 jmcneill GMAC_DMA_CHAN0_INTR_ENABLE_AIE |
448 1.1 jmcneill GMAC_DMA_CHAN0_INTR_ENABLE_FBE |
449 1.1 jmcneill GMAC_DMA_CHAN0_INTR_ENABLE_RIE |
450 1.1 jmcneill GMAC_DMA_CHAN0_INTR_ENABLE_TIE);
451 1.1 jmcneill }
452 1.1 jmcneill
453 1.1 jmcneill static void
454 1.1 jmcneill eqos_disable_intr(struct eqos_softc *sc)
455 1.1 jmcneill {
456 1.23 msaitoh
457 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_INTR_ENABLE, 0);
458 1.1 jmcneill }
459 1.1 jmcneill
460 1.1 jmcneill static void
461 1.1 jmcneill eqos_tick(void *softc)
462 1.1 jmcneill {
463 1.15 skrll struct eqos_softc * const sc = softc;
464 1.15 skrll struct mii_data * const mii = &sc->sc_mii;
465 1.1 jmcneill #ifndef EQOS_MPSAFE
466 1.1 jmcneill int s = splnet();
467 1.1 jmcneill #endif
468 1.1 jmcneill
469 1.1 jmcneill EQOS_LOCK(sc);
470 1.1 jmcneill mii_tick(mii);
471 1.30 riastrad if (sc->sc_running)
472 1.30 riastrad callout_schedule(&sc->sc_stat_ch, hz);
473 1.1 jmcneill EQOS_UNLOCK(sc);
474 1.1 jmcneill
475 1.1 jmcneill #ifndef EQOS_MPSAFE
476 1.1 jmcneill splx(s);
477 1.1 jmcneill #endif
478 1.1 jmcneill }
479 1.1 jmcneill
480 1.1 jmcneill static uint32_t
481 1.1 jmcneill eqos_bitrev32(uint32_t x)
482 1.1 jmcneill {
483 1.23 msaitoh
484 1.1 jmcneill x = (((x & 0xaaaaaaaa) >> 1) | ((x & 0x55555555) << 1));
485 1.1 jmcneill x = (((x & 0xcccccccc) >> 2) | ((x & 0x33333333) << 2));
486 1.1 jmcneill x = (((x & 0xf0f0f0f0) >> 4) | ((x & 0x0f0f0f0f) << 4));
487 1.1 jmcneill x = (((x & 0xff00ff00) >> 8) | ((x & 0x00ff00ff) << 8));
488 1.1 jmcneill
489 1.1 jmcneill return (x >> 16) | (x << 16);
490 1.1 jmcneill }
491 1.1 jmcneill
492 1.1 jmcneill static void
493 1.1 jmcneill eqos_setup_rxfilter(struct eqos_softc *sc)
494 1.1 jmcneill {
495 1.1 jmcneill struct ethercom *ec = &sc->sc_ec;
496 1.1 jmcneill struct ifnet *ifp = &ec->ec_if;
497 1.1 jmcneill uint32_t pfil, crc, hashreg, hashbit, hash[2];
498 1.1 jmcneill struct ether_multi *enm;
499 1.1 jmcneill struct ether_multistep step;
500 1.1 jmcneill const uint8_t *eaddr;
501 1.1 jmcneill uint32_t val;
502 1.1 jmcneill
503 1.1 jmcneill EQOS_ASSERT_LOCKED(sc);
504 1.1 jmcneill
505 1.1 jmcneill pfil = RD4(sc, GMAC_MAC_PACKET_FILTER);
506 1.1 jmcneill pfil &= ~(GMAC_MAC_PACKET_FILTER_PR |
507 1.1 jmcneill GMAC_MAC_PACKET_FILTER_PM |
508 1.1 jmcneill GMAC_MAC_PACKET_FILTER_HMC |
509 1.1 jmcneill GMAC_MAC_PACKET_FILTER_PCF_MASK);
510 1.1 jmcneill hash[0] = hash[1] = ~0U;
511 1.1 jmcneill
512 1.33 riastrad ETHER_LOCK(ec);
513 1.32 riastrad if (sc->sc_promisc) {
514 1.33 riastrad ec->ec_flags |= ETHER_F_ALLMULTI;
515 1.1 jmcneill pfil |= GMAC_MAC_PACKET_FILTER_PR |
516 1.1 jmcneill GMAC_MAC_PACKET_FILTER_PCF_ALL;
517 1.1 jmcneill } else {
518 1.33 riastrad pfil |= GMAC_MAC_PACKET_FILTER_HMC;
519 1.1 jmcneill hash[0] = hash[1] = 0;
520 1.33 riastrad ec->ec_flags &= ~ETHER_F_ALLMULTI;
521 1.1 jmcneill ETHER_FIRST_MULTI(step, ec, enm);
522 1.1 jmcneill while (enm != NULL) {
523 1.33 riastrad if (memcmp(enm->enm_addrlo, enm->enm_addrhi,
524 1.33 riastrad ETHER_ADDR_LEN) != 0) {
525 1.33 riastrad ec->ec_flags |= ETHER_F_ALLMULTI;
526 1.33 riastrad pfil &= ~GMAC_MAC_PACKET_FILTER_HMC;
527 1.33 riastrad pfil |= GMAC_MAC_PACKET_FILTER_PM;
528 1.33 riastrad /*
529 1.33 riastrad * Shouldn't matter if we clear HMC but
530 1.33 riastrad * let's avoid using different values.
531 1.33 riastrad */
532 1.33 riastrad hash[0] = hash[1] = 0xffffffff;
533 1.33 riastrad break;
534 1.33 riastrad }
535 1.1 jmcneill crc = ether_crc32_le(enm->enm_addrlo, ETHER_ADDR_LEN);
536 1.1 jmcneill crc &= 0x7f;
537 1.1 jmcneill crc = eqos_bitrev32(~crc) >> 26;
538 1.1 jmcneill hashreg = (crc >> 5);
539 1.1 jmcneill hashbit = (crc & 0x1f);
540 1.1 jmcneill hash[hashreg] |= (1 << hashbit);
541 1.1 jmcneill ETHER_NEXT_MULTI(step, enm);
542 1.1 jmcneill }
543 1.1 jmcneill }
544 1.33 riastrad ETHER_UNLOCK(ec);
545 1.1 jmcneill
546 1.1 jmcneill /* Write our unicast address */
547 1.1 jmcneill eaddr = CLLADDR(ifp->if_sadl);
548 1.1 jmcneill val = eaddr[4] | (eaddr[5] << 8);
549 1.1 jmcneill WR4(sc, GMAC_MAC_ADDRESS0_HIGH, val);
550 1.1 jmcneill val = eaddr[0] | (eaddr[1] << 8) | (eaddr[2] << 16) |
551 1.1 jmcneill (eaddr[3] << 24);
552 1.1 jmcneill WR4(sc, GMAC_MAC_ADDRESS0_LOW, val);
553 1.1 jmcneill
554 1.1 jmcneill /* Multicast hash filters */
555 1.9 martin WR4(sc, GMAC_MAC_HASH_TABLE_REG0, hash[0]);
556 1.9 martin WR4(sc, GMAC_MAC_HASH_TABLE_REG1, hash[1]);
557 1.1 jmcneill
558 1.8 martin DPRINTF(EDEB_NOTE, "writing new packet filter config "
559 1.8 martin "%08x, hash[1]=%08x, hash[0]=%08x\n", pfil, hash[1], hash[0]);
560 1.1 jmcneill /* Packet filter config */
561 1.1 jmcneill WR4(sc, GMAC_MAC_PACKET_FILTER, pfil);
562 1.1 jmcneill }
563 1.1 jmcneill
564 1.1 jmcneill static int
565 1.1 jmcneill eqos_reset(struct eqos_softc *sc)
566 1.1 jmcneill {
567 1.1 jmcneill uint32_t val;
568 1.1 jmcneill int retry;
569 1.1 jmcneill
570 1.1 jmcneill WR4(sc, GMAC_DMA_MODE, GMAC_DMA_MODE_SWR);
571 1.1 jmcneill for (retry = 2000; retry > 0; retry--) {
572 1.1 jmcneill delay(1000);
573 1.1 jmcneill val = RD4(sc, GMAC_DMA_MODE);
574 1.1 jmcneill if ((val & GMAC_DMA_MODE_SWR) == 0) {
575 1.1 jmcneill return 0;
576 1.1 jmcneill }
577 1.1 jmcneill }
578 1.1 jmcneill
579 1.1 jmcneill device_printf(sc->sc_dev, "reset timeout!\n");
580 1.1 jmcneill return ETIMEDOUT;
581 1.1 jmcneill }
582 1.1 jmcneill
583 1.1 jmcneill static void
584 1.1 jmcneill eqos_init_rings(struct eqos_softc *sc, int qid)
585 1.1 jmcneill {
586 1.7 martin sc->sc_tx.cur = sc->sc_tx.next = sc->sc_tx.queued = 0;
587 1.1 jmcneill
588 1.13 ryo sc->sc_rx_discarding = false;
589 1.13 ryo if (sc->sc_rx_receiving_m != NULL)
590 1.13 ryo m_freem(sc->sc_rx_receiving_m);
591 1.13 ryo sc->sc_rx_receiving_m = NULL;
592 1.13 ryo sc->sc_rx_receiving_m_last = NULL;
593 1.13 ryo
594 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_BASE_ADDR_HI,
595 1.21 msaitoh (uint32_t)((uint64_t)sc->sc_tx.desc_ring_paddr >> 32));
596 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_BASE_ADDR,
597 1.1 jmcneill (uint32_t)sc->sc_tx.desc_ring_paddr);
598 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_RING_LEN, TX_DESC_COUNT - 1);
599 1.17 andvar DPRINTF(EDEB_TXRING, "tx ring paddr %lx with %u descriptors\n",
600 1.8 martin sc->sc_tx.desc_ring_paddr, TX_DESC_COUNT);
601 1.1 jmcneill
602 1.8 martin sc->sc_rx.cur = sc->sc_rx.next = sc->sc_rx.queued = 0;
603 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_BASE_ADDR_HI,
604 1.21 msaitoh (uint32_t)((uint64_t)sc->sc_rx.desc_ring_paddr >> 32));
605 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_BASE_ADDR,
606 1.1 jmcneill (uint32_t)sc->sc_rx.desc_ring_paddr);
607 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_RING_LEN, RX_DESC_COUNT - 1);
608 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_END_ADDR,
609 1.1 jmcneill (uint32_t)sc->sc_rx.desc_ring_paddr +
610 1.1 jmcneill DESC_OFF((sc->sc_rx.cur - 1) % RX_DESC_COUNT));
611 1.17 andvar DPRINTF(EDEB_RXRING, "rx ring paddr %lx with %u descriptors\n",
612 1.8 martin sc->sc_rx.desc_ring_paddr, RX_DESC_COUNT);
613 1.1 jmcneill }
614 1.1 jmcneill
615 1.1 jmcneill static int
616 1.1 jmcneill eqos_init_locked(struct eqos_softc *sc)
617 1.1 jmcneill {
618 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
619 1.15 skrll struct mii_data * const mii = &sc->sc_mii;
620 1.10 ryo uint32_t val, tqs, rqs;
621 1.1 jmcneill
622 1.1 jmcneill EQOS_ASSERT_LOCKED(sc);
623 1.1 jmcneill EQOS_ASSERT_TXLOCKED(sc);
624 1.1 jmcneill
625 1.1 jmcneill if ((ifp->if_flags & IFF_RUNNING) != 0)
626 1.1 jmcneill return 0;
627 1.1 jmcneill
628 1.1 jmcneill /* Setup TX/RX rings */
629 1.1 jmcneill eqos_init_rings(sc, 0);
630 1.1 jmcneill
631 1.1 jmcneill /* Setup RX filter */
632 1.32 riastrad sc->sc_promisc = ifp->if_flags & IFF_PROMISC;
633 1.1 jmcneill eqos_setup_rxfilter(sc);
634 1.1 jmcneill
635 1.1 jmcneill WR4(sc, GMAC_MAC_1US_TIC_COUNTER, (sc->sc_csr_clock / 1000000) - 1);
636 1.1 jmcneill
637 1.1 jmcneill /* Enable transmit and receive DMA */
638 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_CONTROL);
639 1.1 jmcneill val &= ~GMAC_DMA_CHAN0_CONTROL_DSL_MASK;
640 1.1 jmcneill val |= ((DESC_ALIGN - 16) / 8) << GMAC_DMA_CHAN0_CONTROL_DSL_SHIFT;
641 1.1 jmcneill val |= GMAC_DMA_CHAN0_CONTROL_PBLX8;
642 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_CONTROL, val);
643 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_TX_CONTROL);
644 1.27 msaitoh val &= ~GMAC_DMA_CHAN0_TX_CONTROL_TXPBL_MASK;
645 1.27 msaitoh val |= (sc->sc_dma_txpbl << GMAC_DMA_CHAN0_TX_CONTROL_TXPBL_SHIFT);
646 1.1 jmcneill val |= GMAC_DMA_CHAN0_TX_CONTROL_OSP;
647 1.1 jmcneill val |= GMAC_DMA_CHAN0_TX_CONTROL_START;
648 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_CONTROL, val);
649 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_RX_CONTROL);
650 1.27 msaitoh val &= ~(GMAC_DMA_CHAN0_RX_CONTROL_RBSZ_MASK |
651 1.27 msaitoh GMAC_DMA_CHAN0_RX_CONTROL_RXPBL_MASK);
652 1.1 jmcneill val |= (MCLBYTES << GMAC_DMA_CHAN0_RX_CONTROL_RBSZ_SHIFT);
653 1.27 msaitoh val |= (sc->sc_dma_rxpbl << GMAC_DMA_CHAN0_RX_CONTROL_RXPBL_SHIFT);
654 1.1 jmcneill val |= GMAC_DMA_CHAN0_RX_CONTROL_START;
655 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_CONTROL, val);
656 1.1 jmcneill
657 1.6 jmcneill /* Disable counters */
658 1.6 jmcneill WR4(sc, GMAC_MMC_CONTROL,
659 1.6 jmcneill GMAC_MMC_CONTROL_CNTFREEZ |
660 1.6 jmcneill GMAC_MMC_CONTROL_CNTPRST |
661 1.6 jmcneill GMAC_MMC_CONTROL_CNTPRSTLVL);
662 1.6 jmcneill
663 1.1 jmcneill /* Configure operation modes */
664 1.1 jmcneill WR4(sc, GMAC_MTL_TXQ0_OPERATION_MODE,
665 1.1 jmcneill GMAC_MTL_TXQ0_OPERATION_MODE_TSF |
666 1.1 jmcneill GMAC_MTL_TXQ0_OPERATION_MODE_TXQEN_EN);
667 1.1 jmcneill WR4(sc, GMAC_MTL_RXQ0_OPERATION_MODE,
668 1.1 jmcneill GMAC_MTL_RXQ0_OPERATION_MODE_RSF |
669 1.1 jmcneill GMAC_MTL_RXQ0_OPERATION_MODE_FEP |
670 1.1 jmcneill GMAC_MTL_RXQ0_OPERATION_MODE_FUP);
671 1.1 jmcneill
672 1.10 ryo /*
673 1.10 ryo * TX/RX fifo size in hw_feature[1] are log2(n/128), and
674 1.10 ryo * TQS/RQS in TXQ0/RXQ0_OPERATION_MODE are n/256-1.
675 1.10 ryo */
676 1.10 ryo tqs = (128 << __SHIFTOUT(sc->sc_hw_feature[1],
677 1.10 ryo GMAC_MAC_HW_FEATURE1_TXFIFOSIZE) / 256) - 1;
678 1.10 ryo val = RD4(sc, GMAC_MTL_TXQ0_OPERATION_MODE);
679 1.10 ryo val &= ~GMAC_MTL_TXQ0_OPERATION_MODE_TQS;
680 1.10 ryo val |= __SHIFTIN(tqs, GMAC_MTL_TXQ0_OPERATION_MODE_TQS);
681 1.10 ryo WR4(sc, GMAC_MTL_TXQ0_OPERATION_MODE, val);
682 1.10 ryo
683 1.10 ryo rqs = (128 << __SHIFTOUT(sc->sc_hw_feature[1],
684 1.10 ryo GMAC_MAC_HW_FEATURE1_RXFIFOSIZE) / 256) - 1;
685 1.10 ryo val = RD4(sc, GMAC_MTL_RXQ0_OPERATION_MODE);
686 1.10 ryo val &= ~GMAC_MTL_RXQ0_OPERATION_MODE_RQS;
687 1.10 ryo val |= __SHIFTIN(rqs, GMAC_MTL_RXQ0_OPERATION_MODE_RQS);
688 1.10 ryo WR4(sc, GMAC_MTL_RXQ0_OPERATION_MODE, val);
689 1.10 ryo
690 1.28 msaitoh /*
691 1.28 msaitoh * Disable flow control.
692 1.28 msaitoh * It'll be configured later from the negotiated result.
693 1.28 msaitoh */
694 1.28 msaitoh WR4(sc, GMAC_MAC_Q0_TX_FLOW_CTRL, 0);
695 1.28 msaitoh WR4(sc, GMAC_MAC_RX_FLOW_CTRL, 0);
696 1.1 jmcneill
697 1.10 ryo /* set RX queue mode. must be in DCB mode. */
698 1.10 ryo val = __SHIFTIN(GMAC_RXQ_CTRL0_EN_DCB, GMAC_RXQ_CTRL0_EN_MASK);
699 1.10 ryo WR4(sc, GMAC_RXQ_CTRL0, val);
700 1.10 ryo
701 1.1 jmcneill /* Enable transmitter and receiver */
702 1.1 jmcneill val = RD4(sc, GMAC_MAC_CONFIGURATION);
703 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_BE;
704 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_JD;
705 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_JE;
706 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_DCRS;
707 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_TE;
708 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_RE;
709 1.1 jmcneill WR4(sc, GMAC_MAC_CONFIGURATION, val);
710 1.1 jmcneill
711 1.1 jmcneill /* Enable interrupts */
712 1.1 jmcneill eqos_enable_intr(sc);
713 1.1 jmcneill
714 1.31 riastrad EQOS_ASSERT_TXLOCKED(sc);
715 1.31 riastrad sc->sc_txrunning = true;
716 1.31 riastrad
717 1.30 riastrad sc->sc_running = true;
718 1.1 jmcneill ifp->if_flags |= IFF_RUNNING;
719 1.1 jmcneill
720 1.1 jmcneill mii_mediachg(mii);
721 1.1 jmcneill callout_schedule(&sc->sc_stat_ch, hz);
722 1.1 jmcneill
723 1.1 jmcneill return 0;
724 1.1 jmcneill }
725 1.1 jmcneill
726 1.1 jmcneill static int
727 1.1 jmcneill eqos_init(struct ifnet *ifp)
728 1.1 jmcneill {
729 1.15 skrll struct eqos_softc * const sc = ifp->if_softc;
730 1.1 jmcneill int error;
731 1.1 jmcneill
732 1.1 jmcneill EQOS_LOCK(sc);
733 1.1 jmcneill EQOS_TXLOCK(sc);
734 1.1 jmcneill error = eqos_init_locked(sc);
735 1.1 jmcneill EQOS_TXUNLOCK(sc);
736 1.1 jmcneill EQOS_UNLOCK(sc);
737 1.1 jmcneill
738 1.1 jmcneill return error;
739 1.1 jmcneill }
740 1.1 jmcneill
741 1.1 jmcneill static void
742 1.1 jmcneill eqos_stop_locked(struct eqos_softc *sc, int disable)
743 1.1 jmcneill {
744 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
745 1.1 jmcneill uint32_t val;
746 1.1 jmcneill int retry;
747 1.1 jmcneill
748 1.1 jmcneill EQOS_ASSERT_LOCKED(sc);
749 1.1 jmcneill
750 1.31 riastrad EQOS_TXLOCK(sc);
751 1.31 riastrad sc->sc_txrunning = false;
752 1.31 riastrad EQOS_TXUNLOCK(sc);
753 1.31 riastrad
754 1.30 riastrad sc->sc_running = false;
755 1.30 riastrad callout_halt(&sc->sc_stat_ch, &sc->sc_lock);
756 1.1 jmcneill
757 1.1 jmcneill mii_down(&sc->sc_mii);
758 1.1 jmcneill
759 1.1 jmcneill /* Disable receiver */
760 1.1 jmcneill val = RD4(sc, GMAC_MAC_CONFIGURATION);
761 1.1 jmcneill val &= ~GMAC_MAC_CONFIGURATION_RE;
762 1.1 jmcneill WR4(sc, GMAC_MAC_CONFIGURATION, val);
763 1.1 jmcneill
764 1.1 jmcneill /* Stop receive DMA */
765 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_RX_CONTROL);
766 1.1 jmcneill val &= ~GMAC_DMA_CHAN0_RX_CONTROL_START;
767 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_CONTROL, val);
768 1.1 jmcneill
769 1.1 jmcneill /* Stop transmit DMA */
770 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_TX_CONTROL);
771 1.1 jmcneill val &= ~GMAC_DMA_CHAN0_TX_CONTROL_START;
772 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_CONTROL, val);
773 1.1 jmcneill
774 1.1 jmcneill if (disable) {
775 1.1 jmcneill /* Flush data in the TX FIFO */
776 1.1 jmcneill val = RD4(sc, GMAC_MTL_TXQ0_OPERATION_MODE);
777 1.1 jmcneill val |= GMAC_MTL_TXQ0_OPERATION_MODE_FTQ;
778 1.1 jmcneill WR4(sc, GMAC_MTL_TXQ0_OPERATION_MODE, val);
779 1.1 jmcneill /* Wait for flush to complete */
780 1.1 jmcneill for (retry = 10000; retry > 0; retry--) {
781 1.1 jmcneill val = RD4(sc, GMAC_MTL_TXQ0_OPERATION_MODE);
782 1.1 jmcneill if ((val & GMAC_MTL_TXQ0_OPERATION_MODE_FTQ) == 0) {
783 1.1 jmcneill break;
784 1.1 jmcneill }
785 1.1 jmcneill delay(1);
786 1.1 jmcneill }
787 1.1 jmcneill if (retry == 0) {
788 1.1 jmcneill device_printf(sc->sc_dev,
789 1.1 jmcneill "timeout flushing TX queue\n");
790 1.1 jmcneill }
791 1.1 jmcneill }
792 1.1 jmcneill
793 1.1 jmcneill /* Disable transmitter */
794 1.1 jmcneill val = RD4(sc, GMAC_MAC_CONFIGURATION);
795 1.1 jmcneill val &= ~GMAC_MAC_CONFIGURATION_TE;
796 1.1 jmcneill WR4(sc, GMAC_MAC_CONFIGURATION, val);
797 1.1 jmcneill
798 1.1 jmcneill /* Disable interrupts */
799 1.1 jmcneill eqos_disable_intr(sc);
800 1.1 jmcneill
801 1.16 thorpej ifp->if_flags &= ~IFF_RUNNING;
802 1.1 jmcneill }
803 1.1 jmcneill
804 1.1 jmcneill static void
805 1.1 jmcneill eqos_stop(struct ifnet *ifp, int disable)
806 1.1 jmcneill {
807 1.1 jmcneill struct eqos_softc * const sc = ifp->if_softc;
808 1.1 jmcneill
809 1.1 jmcneill EQOS_LOCK(sc);
810 1.1 jmcneill eqos_stop_locked(sc, disable);
811 1.1 jmcneill EQOS_UNLOCK(sc);
812 1.1 jmcneill }
813 1.1 jmcneill
814 1.1 jmcneill static void
815 1.1 jmcneill eqos_rxintr(struct eqos_softc *sc, int qid)
816 1.1 jmcneill {
817 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
818 1.13 ryo int error, index, pkts = 0;
819 1.13 ryo struct mbuf *m, *m0, *new_m, *mprev;
820 1.1 jmcneill uint32_t tdes3;
821 1.13 ryo bool discarding;
822 1.13 ryo
823 1.13 ryo /* restore jumboframe context */
824 1.13 ryo discarding = sc->sc_rx_discarding;
825 1.13 ryo m0 = sc->sc_rx_receiving_m;
826 1.13 ryo mprev = sc->sc_rx_receiving_m_last;
827 1.1 jmcneill
828 1.1 jmcneill for (index = sc->sc_rx.cur; ; index = RX_NEXT(index)) {
829 1.1 jmcneill eqos_dma_sync(sc, sc->sc_rx.desc_map,
830 1.1 jmcneill index, index + 1, RX_DESC_COUNT,
831 1.1 jmcneill BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
832 1.1 jmcneill
833 1.1 jmcneill tdes3 = le32toh(sc->sc_rx.desc_ring[index].tdes3);
834 1.12 ryo if ((tdes3 & EQOS_TDES3_RX_OWN) != 0) {
835 1.1 jmcneill break;
836 1.1 jmcneill }
837 1.1 jmcneill
838 1.13 ryo /* now discarding untill the last packet */
839 1.13 ryo if (discarding)
840 1.13 ryo goto rx_next;
841 1.13 ryo
842 1.13 ryo if ((tdes3 & EQOS_TDES3_RX_CTXT) != 0)
843 1.13 ryo goto rx_next; /* ignore receive context descriptor */
844 1.13 ryo
845 1.13 ryo /* error packet? */
846 1.13 ryo if ((tdes3 & (EQOS_TDES3_RX_CE | EQOS_TDES3_RX_RWT |
847 1.13 ryo EQOS_TDES3_RX_OE | EQOS_TDES3_RX_RE |
848 1.13 ryo EQOS_TDES3_RX_DE)) != 0) {
849 1.13 ryo #ifdef EQOS_DEBUG
850 1.13 ryo char buf[128];
851 1.13 ryo snprintb(buf, sizeof(buf),
852 1.13 ryo "\177\020"
853 1.13 ryo "b\x1e" "CTXT\0" /* 30 */
854 1.13 ryo "b\x18" "CE\0" /* 24 */
855 1.13 ryo "b\x17" "GP\0" /* 23 */
856 1.13 ryo "b\x16" "WDT\0" /* 22 */
857 1.13 ryo "b\x15" "OE\0" /* 21 */
858 1.13 ryo "b\x14" "RE\0" /* 20 */
859 1.13 ryo "b\x13" "DE\0" /* 19 */
860 1.13 ryo "b\x0f" "ES\0" /* 15 */
861 1.13 ryo "\0", tdes3);
862 1.23 msaitoh DPRINTF(EDEB_NOTE,
863 1.23 msaitoh "rxdesc[%d].tdes3=%s\n", index, buf);
864 1.13 ryo #endif
865 1.13 ryo if_statinc(ifp, if_ierrors);
866 1.13 ryo if (m0 != NULL) {
867 1.13 ryo m_freem(m0);
868 1.13 ryo m0 = mprev = NULL;
869 1.13 ryo }
870 1.13 ryo discarding = true;
871 1.13 ryo goto rx_next;
872 1.13 ryo }
873 1.13 ryo
874 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, sc->sc_rx.buf_map[index].map,
875 1.1 jmcneill 0, sc->sc_rx.buf_map[index].map->dm_mapsize,
876 1.1 jmcneill BUS_DMASYNC_POSTREAD);
877 1.13 ryo m = sc->sc_rx.buf_map[index].mbuf;
878 1.13 ryo new_m = eqos_alloc_mbufcl(sc);
879 1.13 ryo if (new_m == NULL) {
880 1.13 ryo /*
881 1.13 ryo * cannot allocate new mbuf. discard this received
882 1.13 ryo * packet, and reuse the mbuf for next.
883 1.13 ryo */
884 1.13 ryo if_statinc(ifp, if_ierrors);
885 1.13 ryo if (m0 != NULL) {
886 1.13 ryo /* also discard the halfway jumbo packet */
887 1.13 ryo m_freem(m0);
888 1.13 ryo m0 = mprev = NULL;
889 1.13 ryo }
890 1.13 ryo discarding = true;
891 1.13 ryo goto rx_next;
892 1.13 ryo }
893 1.14 ryo bus_dmamap_unload(sc->sc_dmat,
894 1.14 ryo sc->sc_rx.buf_map[index].map);
895 1.13 ryo error = eqos_setup_rxbuf(sc, index, new_m);
896 1.13 ryo if (error)
897 1.13 ryo panic("%s: %s: unable to load RX mbuf. error=%d",
898 1.13 ryo device_xname(sc->sc_dev), __func__, error);
899 1.1 jmcneill
900 1.13 ryo if (m0 == NULL) {
901 1.13 ryo m0 = m;
902 1.13 ryo } else {
903 1.13 ryo if (m->m_flags & M_PKTHDR)
904 1.13 ryo m_remove_pkthdr(m);
905 1.13 ryo mprev->m_next = m;
906 1.13 ryo }
907 1.13 ryo mprev = m;
908 1.13 ryo
909 1.13 ryo if ((tdes3 & EQOS_TDES3_RX_LD) == 0) {
910 1.13 ryo /* to be continued in the next segment */
911 1.13 ryo m->m_len = EQOS_RXDMA_SIZE;
912 1.13 ryo } else {
913 1.13 ryo /* last segment */
914 1.13 ryo uint32_t totallen = tdes3 & EQOS_TDES3_RX_LENGTH_MASK;
915 1.13 ryo uint32_t mlen = totallen % EQOS_RXDMA_SIZE;
916 1.13 ryo if (mlen == 0)
917 1.13 ryo mlen = EQOS_RXDMA_SIZE;
918 1.13 ryo m->m_len = mlen;
919 1.13 ryo m0->m_pkthdr.len = totallen;
920 1.13 ryo m_set_rcvif(m0, ifp);
921 1.13 ryo m0->m_flags |= M_HASFCS;
922 1.13 ryo m0->m_nextpkt = NULL;
923 1.13 ryo if_percpuq_enqueue(ifp->if_percpuq, m0);
924 1.13 ryo m0 = mprev = NULL;
925 1.1 jmcneill
926 1.1 jmcneill ++pkts;
927 1.1 jmcneill }
928 1.1 jmcneill
929 1.13 ryo rx_next:
930 1.13 ryo if (discarding && (tdes3 & EQOS_TDES3_RX_LD) != 0)
931 1.13 ryo discarding = false;
932 1.13 ryo
933 1.13 ryo eqos_setup_rxdesc(sc, index,
934 1.13 ryo sc->sc_rx.buf_map[index].map->dm_segs[0].ds_addr);
935 1.1 jmcneill eqos_dma_sync(sc, sc->sc_rx.desc_map,
936 1.1 jmcneill index, index + 1, RX_DESC_COUNT,
937 1.1 jmcneill BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
938 1.1 jmcneill
939 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_END_ADDR,
940 1.1 jmcneill (uint32_t)sc->sc_rx.desc_ring_paddr +
941 1.1 jmcneill DESC_OFF(sc->sc_rx.cur));
942 1.1 jmcneill }
943 1.13 ryo /* save jumboframe context */
944 1.13 ryo sc->sc_rx_discarding = discarding;
945 1.13 ryo sc->sc_rx_receiving_m = m0;
946 1.13 ryo sc->sc_rx_receiving_m_last = mprev;
947 1.1 jmcneill
948 1.24 msaitoh DPRINTF(EDEB_RXRING, "sc_rx.cur %u -> %u\n",
949 1.24 msaitoh sc->sc_rx.cur, index);
950 1.1 jmcneill sc->sc_rx.cur = index;
951 1.1 jmcneill
952 1.1 jmcneill if (pkts != 0) {
953 1.1 jmcneill rnd_add_uint32(&sc->sc_rndsource, pkts);
954 1.1 jmcneill }
955 1.1 jmcneill }
956 1.1 jmcneill
957 1.1 jmcneill static void
958 1.1 jmcneill eqos_txintr(struct eqos_softc *sc, int qid)
959 1.1 jmcneill {
960 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
961 1.1 jmcneill struct eqos_bufmap *bmap;
962 1.1 jmcneill struct eqos_dma_desc *desc;
963 1.1 jmcneill uint32_t tdes3;
964 1.1 jmcneill int i, pkts = 0;
965 1.1 jmcneill
966 1.8 martin DPRINTF(EDEB_INTR, "qid: %u\n", qid);
967 1.8 martin
968 1.1 jmcneill EQOS_ASSERT_LOCKED(sc);
969 1.26 msaitoh EQOS_ASSERT_TXLOCKED(sc);
970 1.1 jmcneill
971 1.1 jmcneill for (i = sc->sc_tx.next; sc->sc_tx.queued > 0; i = TX_NEXT(i)) {
972 1.1 jmcneill KASSERT(sc->sc_tx.queued > 0);
973 1.1 jmcneill KASSERT(sc->sc_tx.queued <= TX_DESC_COUNT);
974 1.1 jmcneill eqos_dma_sync(sc, sc->sc_tx.desc_map,
975 1.1 jmcneill i, i + 1, TX_DESC_COUNT,
976 1.1 jmcneill BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
977 1.1 jmcneill desc = &sc->sc_tx.desc_ring[i];
978 1.1 jmcneill tdes3 = le32toh(desc->tdes3);
979 1.12 ryo if ((tdes3 & EQOS_TDES3_TX_OWN) != 0) {
980 1.1 jmcneill break;
981 1.1 jmcneill }
982 1.1 jmcneill bmap = &sc->sc_tx.buf_map[i];
983 1.1 jmcneill if (bmap->mbuf != NULL) {
984 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, bmap->map,
985 1.1 jmcneill 0, bmap->map->dm_mapsize,
986 1.1 jmcneill BUS_DMASYNC_POSTWRITE);
987 1.1 jmcneill bus_dmamap_unload(sc->sc_dmat, bmap->map);
988 1.1 jmcneill m_freem(bmap->mbuf);
989 1.1 jmcneill bmap->mbuf = NULL;
990 1.1 jmcneill ++pkts;
991 1.1 jmcneill }
992 1.1 jmcneill
993 1.1 jmcneill eqos_setup_txdesc(sc, i, 0, 0, 0, 0);
994 1.1 jmcneill eqos_dma_sync(sc, sc->sc_tx.desc_map,
995 1.1 jmcneill i, i + 1, TX_DESC_COUNT,
996 1.1 jmcneill BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
997 1.1 jmcneill
998 1.1 jmcneill /* Last descriptor in a packet contains DMA status */
999 1.12 ryo if ((tdes3 & EQOS_TDES3_TX_LD) != 0) {
1000 1.12 ryo if ((tdes3 & EQOS_TDES3_TX_DE) != 0) {
1001 1.1 jmcneill device_printf(sc->sc_dev,
1002 1.1 jmcneill "TX [%u] desc error: 0x%08x\n",
1003 1.1 jmcneill i, tdes3);
1004 1.1 jmcneill if_statinc(ifp, if_oerrors);
1005 1.12 ryo } else if ((tdes3 & EQOS_TDES3_TX_ES) != 0) {
1006 1.1 jmcneill device_printf(sc->sc_dev,
1007 1.1 jmcneill "TX [%u] tx error: 0x%08x\n",
1008 1.1 jmcneill i, tdes3);
1009 1.1 jmcneill if_statinc(ifp, if_oerrors);
1010 1.1 jmcneill } else {
1011 1.1 jmcneill if_statinc(ifp, if_opackets);
1012 1.1 jmcneill }
1013 1.1 jmcneill }
1014 1.1 jmcneill
1015 1.1 jmcneill }
1016 1.1 jmcneill
1017 1.1 jmcneill sc->sc_tx.next = i;
1018 1.1 jmcneill
1019 1.1 jmcneill if (pkts != 0) {
1020 1.1 jmcneill rnd_add_uint32(&sc->sc_rndsource, pkts);
1021 1.1 jmcneill }
1022 1.1 jmcneill }
1023 1.1 jmcneill
1024 1.1 jmcneill static void
1025 1.1 jmcneill eqos_start_locked(struct eqos_softc *sc)
1026 1.1 jmcneill {
1027 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
1028 1.1 jmcneill struct mbuf *m;
1029 1.1 jmcneill int cnt, nsegs, start;
1030 1.1 jmcneill
1031 1.1 jmcneill EQOS_ASSERT_TXLOCKED(sc);
1032 1.1 jmcneill
1033 1.31 riastrad if (!sc->sc_txrunning)
1034 1.1 jmcneill return;
1035 1.1 jmcneill
1036 1.1 jmcneill for (cnt = 0, start = sc->sc_tx.cur; ; cnt++) {
1037 1.1 jmcneill if (sc->sc_tx.queued >= TX_DESC_COUNT - TX_MAX_SEGS) {
1038 1.8 martin DPRINTF(EDEB_TXRING, "%u sc_tx.queued, ring full\n",
1039 1.8 martin sc->sc_tx.queued);
1040 1.1 jmcneill break;
1041 1.1 jmcneill }
1042 1.1 jmcneill
1043 1.1 jmcneill IFQ_POLL(&ifp->if_snd, m);
1044 1.8 martin if (m == NULL)
1045 1.1 jmcneill break;
1046 1.1 jmcneill
1047 1.1 jmcneill nsegs = eqos_setup_txbuf(sc, sc->sc_tx.cur, m);
1048 1.1 jmcneill if (nsegs <= 0) {
1049 1.8 martin DPRINTF(EDEB_TXRING, "eqos_setup_txbuf failed "
1050 1.8 martin "with %d\n", nsegs);
1051 1.16 thorpej if (nsegs == -2) {
1052 1.1 jmcneill IFQ_DEQUEUE(&ifp->if_snd, m);
1053 1.1 jmcneill m_freem(m);
1054 1.16 thorpej continue;
1055 1.1 jmcneill }
1056 1.1 jmcneill break;
1057 1.1 jmcneill }
1058 1.1 jmcneill
1059 1.1 jmcneill IFQ_DEQUEUE(&ifp->if_snd, m);
1060 1.1 jmcneill bpf_mtap(ifp, m, BPF_D_OUT);
1061 1.1 jmcneill
1062 1.1 jmcneill sc->sc_tx.cur = TX_SKIP(sc->sc_tx.cur, nsegs);
1063 1.1 jmcneill }
1064 1.1 jmcneill
1065 1.8 martin DPRINTF(EDEB_TXRING, "tx loop -> cnt = %u, cur: %u, next: %u, "
1066 1.8 martin "queued: %u\n", cnt, sc->sc_tx.cur, sc->sc_tx.next,
1067 1.8 martin sc->sc_tx.queued);
1068 1.8 martin
1069 1.1 jmcneill if (cnt != 0) {
1070 1.1 jmcneill eqos_dma_sync(sc, sc->sc_tx.desc_map,
1071 1.1 jmcneill start, sc->sc_tx.cur, TX_DESC_COUNT,
1072 1.1 jmcneill BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1073 1.1 jmcneill
1074 1.1 jmcneill /* Start and run TX DMA */
1075 1.8 martin DPRINTF(EDEB_TXRING, "sending desc %u at %lx upto "
1076 1.8 martin "%u-1 at %lx cur tx desc: %x cur tx buf: %x\n", start,
1077 1.8 martin (uint32_t)sc->sc_tx.desc_ring_paddr + DESC_OFF(start),
1078 1.8 martin sc->sc_tx.cur,
1079 1.8 martin (uint32_t)sc->sc_tx.desc_ring_paddr +
1080 1.8 martin DESC_OFF(sc->sc_tx.cur),
1081 1.8 martin RD4(sc, GMAC_DMA_CHAN0_CUR_TX_DESC),
1082 1.8 martin RD4(sc, GMAC_DMA_CHAN0_CUR_TX_BUF_ADDR));
1083 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_END_ADDR,
1084 1.1 jmcneill (uint32_t)sc->sc_tx.desc_ring_paddr +
1085 1.1 jmcneill DESC_OFF(sc->sc_tx.cur));
1086 1.1 jmcneill }
1087 1.1 jmcneill }
1088 1.1 jmcneill
1089 1.1 jmcneill static void
1090 1.1 jmcneill eqos_start(struct ifnet *ifp)
1091 1.1 jmcneill {
1092 1.15 skrll struct eqos_softc * const sc = ifp->if_softc;
1093 1.1 jmcneill
1094 1.1 jmcneill EQOS_TXLOCK(sc);
1095 1.1 jmcneill eqos_start_locked(sc);
1096 1.1 jmcneill EQOS_TXUNLOCK(sc);
1097 1.1 jmcneill }
1098 1.1 jmcneill
1099 1.3 mrg static void
1100 1.3 mrg eqos_intr_mtl(struct eqos_softc *sc, uint32_t mtl_status)
1101 1.3 mrg {
1102 1.3 mrg uint32_t debug_data __unused = 0, ictrl = 0;
1103 1.3 mrg
1104 1.3 mrg if (mtl_status == 0)
1105 1.3 mrg return;
1106 1.3 mrg
1107 1.3 mrg /* Drain the errors reported by MTL_INTERRUPT_STATUS */
1108 1.3 mrg sc->sc_ev_mtl.ev_count++;
1109 1.3 mrg
1110 1.3 mrg if ((mtl_status & GMAC_MTL_INTERRUPT_STATUS_DBGIS) != 0) {
1111 1.3 mrg debug_data = RD4(sc, GMAC_MTL_FIFO_DEBUG_DATA);
1112 1.3 mrg sc->sc_ev_mtl_debugdata.ev_count++;
1113 1.3 mrg }
1114 1.3 mrg if ((mtl_status & GMAC_MTL_INTERRUPT_STATUS_Q0IS) != 0) {
1115 1.3 mrg uint32_t new_status = 0;
1116 1.3 mrg
1117 1.3 mrg ictrl = RD4(sc, GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS);
1118 1.3 mrg if ((ictrl & GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_RXOVFIS) != 0) {
1119 1.3 mrg new_status |= GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_RXOVFIS;
1120 1.3 mrg sc->sc_ev_mtl_rxovfis.ev_count++;
1121 1.3 mrg }
1122 1.3 mrg if ((ictrl & GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_TXUNFIS) != 0) {
1123 1.3 mrg new_status |= GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_TXUNFIS;
1124 1.3 mrg sc->sc_ev_mtl_txovfis.ev_count++;
1125 1.3 mrg }
1126 1.3 mrg if (new_status) {
1127 1.3 mrg new_status |= (ictrl &
1128 1.23 msaitoh (GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_RXOIE |
1129 1.3 mrg GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_TXUIE));
1130 1.3 mrg WR4(sc, GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS, new_status);
1131 1.3 mrg }
1132 1.3 mrg }
1133 1.8 martin DPRINTF(EDEB_INTR,
1134 1.3 mrg "GMAC_MTL_INTERRUPT_STATUS = 0x%08X, "
1135 1.3 mrg "GMAC_MTL_FIFO_DEBUG_DATA = 0x%08X, "
1136 1.3 mrg "GMAC_MTL_INTERRUPT_STATUS_Q0IS = 0x%08X\n",
1137 1.3 mrg mtl_status, debug_data, ictrl);
1138 1.3 mrg }
1139 1.3 mrg
1140 1.1 jmcneill int
1141 1.1 jmcneill eqos_intr(void *arg)
1142 1.1 jmcneill {
1143 1.15 skrll struct eqos_softc * const sc = arg;
1144 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
1145 1.1 jmcneill uint32_t mac_status, mtl_status, dma_status, rx_tx_status;
1146 1.1 jmcneill
1147 1.2 mrg sc->sc_ev_intr.ev_count++;
1148 1.2 mrg
1149 1.1 jmcneill mac_status = RD4(sc, GMAC_MAC_INTERRUPT_STATUS);
1150 1.1 jmcneill mac_status &= RD4(sc, GMAC_MAC_INTERRUPT_ENABLE);
1151 1.1 jmcneill
1152 1.1 jmcneill if (mac_status) {
1153 1.2 mrg sc->sc_ev_mac.ev_count++;
1154 1.8 martin DPRINTF(EDEB_INTR,
1155 1.1 jmcneill "GMAC_MAC_INTERRUPT_STATUS = 0x%08X\n", mac_status);
1156 1.1 jmcneill }
1157 1.1 jmcneill
1158 1.1 jmcneill mtl_status = RD4(sc, GMAC_MTL_INTERRUPT_STATUS);
1159 1.3 mrg eqos_intr_mtl(sc, mtl_status);
1160 1.1 jmcneill
1161 1.1 jmcneill dma_status = RD4(sc, GMAC_DMA_CHAN0_STATUS);
1162 1.1 jmcneill dma_status &= RD4(sc, GMAC_DMA_CHAN0_INTR_ENABLE);
1163 1.1 jmcneill if (dma_status) {
1164 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_STATUS, dma_status);
1165 1.1 jmcneill }
1166 1.1 jmcneill
1167 1.1 jmcneill EQOS_LOCK(sc);
1168 1.1 jmcneill if ((dma_status & GMAC_DMA_CHAN0_STATUS_RI) != 0) {
1169 1.1 jmcneill eqos_rxintr(sc, 0);
1170 1.2 mrg sc->sc_ev_rxintr.ev_count++;
1171 1.1 jmcneill }
1172 1.1 jmcneill
1173 1.1 jmcneill if ((dma_status & GMAC_DMA_CHAN0_STATUS_TI) != 0) {
1174 1.26 msaitoh EQOS_TXLOCK(sc);
1175 1.1 jmcneill eqos_txintr(sc, 0);
1176 1.26 msaitoh EQOS_TXUNLOCK(sc);
1177 1.1 jmcneill if_schedule_deferred_start(ifp);
1178 1.2 mrg sc->sc_ev_txintr.ev_count++;
1179 1.1 jmcneill }
1180 1.1 jmcneill EQOS_UNLOCK(sc);
1181 1.1 jmcneill
1182 1.1 jmcneill if ((mac_status | mtl_status | dma_status) == 0) {
1183 1.8 martin DPRINTF(EDEB_NOTE, "spurious interrupt?!\n");
1184 1.1 jmcneill }
1185 1.1 jmcneill
1186 1.1 jmcneill rx_tx_status = RD4(sc, GMAC_MAC_RX_TX_STATUS);
1187 1.1 jmcneill if (rx_tx_status) {
1188 1.2 mrg sc->sc_ev_status.ev_count++;
1189 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_RWT) != 0)
1190 1.2 mrg sc->sc_ev_rwt.ev_count++;
1191 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_EXCOL) != 0)
1192 1.2 mrg sc->sc_ev_excol.ev_count++;
1193 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_LCOL) != 0)
1194 1.2 mrg sc->sc_ev_lcol.ev_count++;
1195 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_EXDEF) != 0)
1196 1.2 mrg sc->sc_ev_exdef.ev_count++;
1197 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_LCARR) != 0)
1198 1.2 mrg sc->sc_ev_lcarr.ev_count++;
1199 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_NCARR) != 0)
1200 1.2 mrg sc->sc_ev_ncarr.ev_count++;
1201 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_TJT) != 0)
1202 1.2 mrg sc->sc_ev_tjt.ev_count++;
1203 1.8 martin
1204 1.8 martin DPRINTF(EDEB_INTR, "GMAC_MAC_RX_TX_STATUS = 0x%08x\n",
1205 1.1 jmcneill rx_tx_status);
1206 1.1 jmcneill }
1207 1.1 jmcneill
1208 1.1 jmcneill return 1;
1209 1.1 jmcneill }
1210 1.1 jmcneill
1211 1.1 jmcneill static int
1212 1.1 jmcneill eqos_ioctl(struct ifnet *ifp, u_long cmd, void *data)
1213 1.1 jmcneill {
1214 1.15 skrll struct eqos_softc * const sc = ifp->if_softc;
1215 1.15 skrll struct ifreq * const ifr = (struct ifreq *)data;
1216 1.1 jmcneill int error, s;
1217 1.1 jmcneill
1218 1.1 jmcneill #ifndef EQOS_MPSAFE
1219 1.1 jmcneill s = splnet();
1220 1.1 jmcneill #endif
1221 1.1 jmcneill
1222 1.1 jmcneill switch (cmd) {
1223 1.13 ryo case SIOCSIFMTU:
1224 1.13 ryo if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > EQOS_MAX_MTU) {
1225 1.13 ryo error = EINVAL;
1226 1.13 ryo } else {
1227 1.13 ryo ifp->if_mtu = ifr->ifr_mtu;
1228 1.13 ryo error = 0; /* no need ENETRESET */
1229 1.13 ryo }
1230 1.13 ryo break;
1231 1.1 jmcneill default:
1232 1.1 jmcneill #ifdef EQOS_MPSAFE
1233 1.1 jmcneill s = splnet();
1234 1.1 jmcneill #endif
1235 1.1 jmcneill error = ether_ioctl(ifp, cmd, data);
1236 1.1 jmcneill #ifdef EQOS_MPSAFE
1237 1.1 jmcneill splx(s);
1238 1.1 jmcneill #endif
1239 1.1 jmcneill if (error != ENETRESET)
1240 1.1 jmcneill break;
1241 1.1 jmcneill
1242 1.1 jmcneill error = 0;
1243 1.1 jmcneill
1244 1.1 jmcneill if (cmd == SIOCSIFCAP)
1245 1.1 jmcneill error = (*ifp->if_init)(ifp);
1246 1.1 jmcneill else if (cmd != SIOCADDMULTI && cmd != SIOCDELMULTI)
1247 1.1 jmcneill ;
1248 1.32 riastrad else {
1249 1.1 jmcneill EQOS_LOCK(sc);
1250 1.32 riastrad if (sc->sc_running)
1251 1.32 riastrad eqos_setup_rxfilter(sc);
1252 1.1 jmcneill EQOS_UNLOCK(sc);
1253 1.1 jmcneill }
1254 1.1 jmcneill break;
1255 1.1 jmcneill }
1256 1.1 jmcneill
1257 1.1 jmcneill #ifndef EQOS_MPSAFE
1258 1.1 jmcneill splx(s);
1259 1.1 jmcneill #endif
1260 1.1 jmcneill
1261 1.1 jmcneill return error;
1262 1.1 jmcneill }
1263 1.1 jmcneill
1264 1.1 jmcneill static void
1265 1.1 jmcneill eqos_get_eaddr(struct eqos_softc *sc, uint8_t *eaddr)
1266 1.1 jmcneill {
1267 1.1 jmcneill prop_dictionary_t prop = device_properties(sc->sc_dev);
1268 1.1 jmcneill uint32_t maclo, machi;
1269 1.1 jmcneill prop_data_t eaprop;
1270 1.1 jmcneill
1271 1.1 jmcneill eaprop = prop_dictionary_get(prop, "mac-address");
1272 1.1 jmcneill if (eaprop != NULL) {
1273 1.1 jmcneill KASSERT(prop_object_type(eaprop) == PROP_TYPE_DATA);
1274 1.1 jmcneill KASSERT(prop_data_size(eaprop) == ETHER_ADDR_LEN);
1275 1.1 jmcneill memcpy(eaddr, prop_data_value(eaprop),
1276 1.1 jmcneill ETHER_ADDR_LEN);
1277 1.1 jmcneill return;
1278 1.1 jmcneill }
1279 1.1 jmcneill
1280 1.18 msaitoh maclo = RD4(sc, GMAC_MAC_ADDRESS0_LOW);
1281 1.18 msaitoh machi = RD4(sc, GMAC_MAC_ADDRESS0_HIGH) & 0xFFFF;
1282 1.18 msaitoh if ((maclo & 0x00000001) != 0) {
1283 1.18 msaitoh aprint_error_dev(sc->sc_dev,
1284 1.18 msaitoh "Wrong MAC address. Clear the multicast bit.\n");
1285 1.18 msaitoh maclo &= ~0x00000001;
1286 1.18 msaitoh }
1287 1.1 jmcneill
1288 1.1 jmcneill if (maclo == 0xFFFFFFFF && machi == 0xFFFF) {
1289 1.1 jmcneill /* Create one */
1290 1.1 jmcneill maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
1291 1.1 jmcneill machi = cprng_strong32() & 0xffff;
1292 1.1 jmcneill }
1293 1.1 jmcneill
1294 1.1 jmcneill eaddr[0] = maclo & 0xff;
1295 1.1 jmcneill eaddr[1] = (maclo >> 8) & 0xff;
1296 1.1 jmcneill eaddr[2] = (maclo >> 16) & 0xff;
1297 1.1 jmcneill eaddr[3] = (maclo >> 24) & 0xff;
1298 1.1 jmcneill eaddr[4] = machi & 0xff;
1299 1.1 jmcneill eaddr[5] = (machi >> 8) & 0xff;
1300 1.1 jmcneill }
1301 1.1 jmcneill
1302 1.1 jmcneill static void
1303 1.27 msaitoh eqos_get_dma_pbl(struct eqos_softc *sc)
1304 1.27 msaitoh {
1305 1.27 msaitoh prop_dictionary_t prop = device_properties(sc->sc_dev);
1306 1.27 msaitoh uint32_t pbl;
1307 1.27 msaitoh
1308 1.27 msaitoh /* Set default values. */
1309 1.27 msaitoh sc->sc_dma_txpbl = sc->sc_dma_rxpbl = EQOS_DMA_PBL_DEFAULT;
1310 1.27 msaitoh
1311 1.27 msaitoh /* Get values from props. */
1312 1.27 msaitoh if (prop_dictionary_get_uint32(prop, "snps,pbl", &pbl) && pbl)
1313 1.27 msaitoh sc->sc_dma_txpbl = sc->sc_dma_rxpbl = pbl;
1314 1.27 msaitoh if (prop_dictionary_get_uint32(prop, "snps,txpbl", &pbl) && pbl)
1315 1.27 msaitoh sc->sc_dma_txpbl = pbl;
1316 1.27 msaitoh if (prop_dictionary_get_uint32(prop, "snps,rxpbl", &pbl) && pbl)
1317 1.27 msaitoh sc->sc_dma_rxpbl = pbl;
1318 1.27 msaitoh }
1319 1.27 msaitoh
1320 1.27 msaitoh static void
1321 1.1 jmcneill eqos_axi_configure(struct eqos_softc *sc)
1322 1.1 jmcneill {
1323 1.1 jmcneill prop_dictionary_t prop = device_properties(sc->sc_dev);
1324 1.1 jmcneill uint32_t val;
1325 1.1 jmcneill u_int uival;
1326 1.1 jmcneill bool bval;
1327 1.1 jmcneill
1328 1.1 jmcneill val = RD4(sc, GMAC_DMA_SYSBUS_MODE);
1329 1.1 jmcneill if (prop_dictionary_get_bool(prop, "snps,mixed-burst", &bval) && bval) {
1330 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_MB;
1331 1.1 jmcneill }
1332 1.1 jmcneill if (prop_dictionary_get_bool(prop, "snps,fixed-burst", &bval) && bval) {
1333 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_FB;
1334 1.1 jmcneill }
1335 1.1 jmcneill if (prop_dictionary_get_uint(prop, "snps,wr_osr_lmt", &uival)) {
1336 1.1 jmcneill val &= ~GMAC_DMA_SYSBUS_MODE_WR_OSR_LMT_MASK;
1337 1.1 jmcneill val |= uival << GMAC_DMA_SYSBUS_MODE_WR_OSR_LMT_SHIFT;
1338 1.1 jmcneill }
1339 1.1 jmcneill if (prop_dictionary_get_uint(prop, "snps,rd_osr_lmt", &uival)) {
1340 1.1 jmcneill val &= ~GMAC_DMA_SYSBUS_MODE_RD_OSR_LMT_MASK;
1341 1.1 jmcneill val |= uival << GMAC_DMA_SYSBUS_MODE_RD_OSR_LMT_SHIFT;
1342 1.1 jmcneill }
1343 1.1 jmcneill
1344 1.1 jmcneill if (!EQOS_HW_FEATURE_ADDR64_32BIT(sc)) {
1345 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_EAME;
1346 1.1 jmcneill }
1347 1.1 jmcneill
1348 1.1 jmcneill /* XXX */
1349 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_BLEN16;
1350 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_BLEN8;
1351 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_BLEN4;
1352 1.1 jmcneill
1353 1.1 jmcneill WR4(sc, GMAC_DMA_SYSBUS_MODE, val);
1354 1.1 jmcneill }
1355 1.1 jmcneill
1356 1.1 jmcneill static int
1357 1.1 jmcneill eqos_setup_dma(struct eqos_softc *sc, int qid)
1358 1.1 jmcneill {
1359 1.1 jmcneill struct mbuf *m;
1360 1.1 jmcneill int error, nsegs, i;
1361 1.1 jmcneill
1362 1.25 msaitoh /* Set back pointer */
1363 1.25 msaitoh sc->sc_tx.sc = sc;
1364 1.25 msaitoh sc->sc_rx.sc = sc;
1365 1.25 msaitoh
1366 1.1 jmcneill /* Setup TX ring */
1367 1.1 jmcneill error = bus_dmamap_create(sc->sc_dmat, TX_DESC_SIZE, 1, TX_DESC_SIZE,
1368 1.1 jmcneill DESC_BOUNDARY, BUS_DMA_WAITOK, &sc->sc_tx.desc_map);
1369 1.1 jmcneill if (error) {
1370 1.1 jmcneill return error;
1371 1.1 jmcneill }
1372 1.1 jmcneill error = bus_dmamem_alloc(sc->sc_dmat, TX_DESC_SIZE, DESC_ALIGN,
1373 1.1 jmcneill DESC_BOUNDARY, &sc->sc_tx.desc_dmaseg, 1, &nsegs, BUS_DMA_WAITOK);
1374 1.1 jmcneill if (error) {
1375 1.1 jmcneill return error;
1376 1.1 jmcneill }
1377 1.1 jmcneill error = bus_dmamem_map(sc->sc_dmat, &sc->sc_tx.desc_dmaseg, nsegs,
1378 1.1 jmcneill TX_DESC_SIZE, (void *)&sc->sc_tx.desc_ring, BUS_DMA_WAITOK);
1379 1.1 jmcneill if (error) {
1380 1.1 jmcneill return error;
1381 1.1 jmcneill }
1382 1.1 jmcneill error = bus_dmamap_load(sc->sc_dmat, sc->sc_tx.desc_map,
1383 1.1 jmcneill sc->sc_tx.desc_ring, TX_DESC_SIZE, NULL, BUS_DMA_WAITOK);
1384 1.1 jmcneill if (error) {
1385 1.1 jmcneill return error;
1386 1.1 jmcneill }
1387 1.1 jmcneill sc->sc_tx.desc_ring_paddr = sc->sc_tx.desc_map->dm_segs[0].ds_addr;
1388 1.1 jmcneill
1389 1.1 jmcneill memset(sc->sc_tx.desc_ring, 0, TX_DESC_SIZE);
1390 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, sc->sc_tx.desc_map, 0, TX_DESC_SIZE,
1391 1.1 jmcneill BUS_DMASYNC_PREWRITE);
1392 1.1 jmcneill
1393 1.1 jmcneill sc->sc_tx.queued = TX_DESC_COUNT;
1394 1.1 jmcneill for (i = 0; i < TX_DESC_COUNT; i++) {
1395 1.13 ryo error = bus_dmamap_create(sc->sc_dmat, EQOS_TXDMA_SIZE,
1396 1.1 jmcneill TX_MAX_SEGS, MCLBYTES, 0, BUS_DMA_WAITOK,
1397 1.1 jmcneill &sc->sc_tx.buf_map[i].map);
1398 1.1 jmcneill if (error != 0) {
1399 1.1 jmcneill device_printf(sc->sc_dev,
1400 1.1 jmcneill "cannot create TX buffer map\n");
1401 1.1 jmcneill return error;
1402 1.1 jmcneill }
1403 1.26 msaitoh EQOS_TXLOCK(sc);
1404 1.1 jmcneill eqos_setup_txdesc(sc, i, 0, 0, 0, 0);
1405 1.26 msaitoh EQOS_TXUNLOCK(sc);
1406 1.1 jmcneill }
1407 1.1 jmcneill
1408 1.1 jmcneill /* Setup RX ring */
1409 1.1 jmcneill error = bus_dmamap_create(sc->sc_dmat, RX_DESC_SIZE, 1, RX_DESC_SIZE,
1410 1.1 jmcneill DESC_BOUNDARY, BUS_DMA_WAITOK, &sc->sc_rx.desc_map);
1411 1.1 jmcneill if (error) {
1412 1.1 jmcneill return error;
1413 1.1 jmcneill }
1414 1.1 jmcneill error = bus_dmamem_alloc(sc->sc_dmat, RX_DESC_SIZE, DESC_ALIGN,
1415 1.1 jmcneill DESC_BOUNDARY, &sc->sc_rx.desc_dmaseg, 1, &nsegs, BUS_DMA_WAITOK);
1416 1.1 jmcneill if (error) {
1417 1.1 jmcneill return error;
1418 1.1 jmcneill }
1419 1.1 jmcneill error = bus_dmamem_map(sc->sc_dmat, &sc->sc_rx.desc_dmaseg, nsegs,
1420 1.1 jmcneill RX_DESC_SIZE, (void *)&sc->sc_rx.desc_ring, BUS_DMA_WAITOK);
1421 1.1 jmcneill if (error) {
1422 1.1 jmcneill return error;
1423 1.1 jmcneill }
1424 1.1 jmcneill error = bus_dmamap_load(sc->sc_dmat, sc->sc_rx.desc_map,
1425 1.1 jmcneill sc->sc_rx.desc_ring, RX_DESC_SIZE, NULL, BUS_DMA_WAITOK);
1426 1.1 jmcneill if (error) {
1427 1.1 jmcneill return error;
1428 1.1 jmcneill }
1429 1.1 jmcneill sc->sc_rx.desc_ring_paddr = sc->sc_rx.desc_map->dm_segs[0].ds_addr;
1430 1.1 jmcneill
1431 1.1 jmcneill memset(sc->sc_rx.desc_ring, 0, RX_DESC_SIZE);
1432 1.1 jmcneill
1433 1.1 jmcneill for (i = 0; i < RX_DESC_COUNT; i++) {
1434 1.1 jmcneill error = bus_dmamap_create(sc->sc_dmat, MCLBYTES,
1435 1.1 jmcneill RX_DESC_COUNT, MCLBYTES, 0, BUS_DMA_WAITOK,
1436 1.1 jmcneill &sc->sc_rx.buf_map[i].map);
1437 1.1 jmcneill if (error != 0) {
1438 1.1 jmcneill device_printf(sc->sc_dev,
1439 1.1 jmcneill "cannot create RX buffer map\n");
1440 1.1 jmcneill return error;
1441 1.1 jmcneill }
1442 1.1 jmcneill if ((m = eqos_alloc_mbufcl(sc)) == NULL) {
1443 1.1 jmcneill device_printf(sc->sc_dev, "cannot allocate RX mbuf\n");
1444 1.1 jmcneill return ENOMEM;
1445 1.1 jmcneill }
1446 1.1 jmcneill error = eqos_setup_rxbuf(sc, i, m);
1447 1.1 jmcneill if (error != 0) {
1448 1.1 jmcneill device_printf(sc->sc_dev, "cannot create RX buffer\n");
1449 1.1 jmcneill return error;
1450 1.1 jmcneill }
1451 1.13 ryo eqos_setup_rxdesc(sc, i,
1452 1.13 ryo sc->sc_rx.buf_map[i].map->dm_segs[0].ds_addr);
1453 1.1 jmcneill }
1454 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, sc->sc_rx.desc_map,
1455 1.1 jmcneill 0, sc->sc_rx.desc_map->dm_mapsize,
1456 1.1 jmcneill BUS_DMASYNC_PREWRITE);
1457 1.1 jmcneill
1458 1.1 jmcneill aprint_debug_dev(sc->sc_dev, "TX ring @ 0x%lX, RX ring @ 0x%lX\n",
1459 1.1 jmcneill sc->sc_tx.desc_ring_paddr, sc->sc_rx.desc_ring_paddr);
1460 1.1 jmcneill
1461 1.1 jmcneill return 0;
1462 1.1 jmcneill }
1463 1.1 jmcneill
1464 1.1 jmcneill int
1465 1.1 jmcneill eqos_attach(struct eqos_softc *sc)
1466 1.1 jmcneill {
1467 1.15 skrll struct mii_data * const mii = &sc->sc_mii;
1468 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
1469 1.1 jmcneill uint8_t eaddr[ETHER_ADDR_LEN];
1470 1.1 jmcneill u_int userver, snpsver;
1471 1.1 jmcneill int error;
1472 1.1 jmcneill int n;
1473 1.1 jmcneill
1474 1.25 msaitoh #ifdef EQOS_DEBUG
1475 1.25 msaitoh /* Load the default debug flags. */
1476 1.25 msaitoh sc->sc_debug = eqos_debug;
1477 1.25 msaitoh #endif
1478 1.25 msaitoh
1479 1.1 jmcneill const uint32_t ver = RD4(sc, GMAC_MAC_VERSION);
1480 1.1 jmcneill userver = (ver & GMAC_MAC_VERSION_USERVER_MASK) >>
1481 1.1 jmcneill GMAC_MAC_VERSION_USERVER_SHIFT;
1482 1.1 jmcneill snpsver = ver & GMAC_MAC_VERSION_SNPSVER_MASK;
1483 1.1 jmcneill
1484 1.20 msaitoh if ((snpsver < 0x51) || (snpsver > 0x52)) {
1485 1.23 msaitoh aprint_error(": EQOS version 0x%02xx not supported\n",
1486 1.23 msaitoh snpsver);
1487 1.23 msaitoh return ENXIO;
1488 1.23 msaitoh }
1489 1.1 jmcneill
1490 1.1 jmcneill if (sc->sc_csr_clock < 20000000) {
1491 1.1 jmcneill aprint_error(": CSR clock too low\n");
1492 1.1 jmcneill return EINVAL;
1493 1.1 jmcneill } else if (sc->sc_csr_clock < 35000000) {
1494 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_20_35;
1495 1.1 jmcneill } else if (sc->sc_csr_clock < 60000000) {
1496 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_35_60;
1497 1.1 jmcneill } else if (sc->sc_csr_clock < 100000000) {
1498 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_60_100;
1499 1.1 jmcneill } else if (sc->sc_csr_clock < 150000000) {
1500 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_100_150;
1501 1.1 jmcneill } else if (sc->sc_csr_clock < 250000000) {
1502 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_150_250;
1503 1.1 jmcneill } else if (sc->sc_csr_clock < 300000000) {
1504 1.19 msaitoh sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_250_300;
1505 1.19 msaitoh } else if (sc->sc_csr_clock < 500000000) {
1506 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_300_500;
1507 1.1 jmcneill } else if (sc->sc_csr_clock < 800000000) {
1508 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_500_800;
1509 1.1 jmcneill } else {
1510 1.1 jmcneill aprint_error(": CSR clock too high\n");
1511 1.1 jmcneill return EINVAL;
1512 1.1 jmcneill }
1513 1.1 jmcneill
1514 1.1 jmcneill for (n = 0; n < 4; n++) {
1515 1.1 jmcneill sc->sc_hw_feature[n] = RD4(sc, GMAC_MAC_HW_FEATURE(n));
1516 1.1 jmcneill }
1517 1.1 jmcneill
1518 1.1 jmcneill aprint_naive("\n");
1519 1.1 jmcneill aprint_normal(": DesignWare EQOS ver 0x%02x (0x%02x)\n",
1520 1.1 jmcneill snpsver, userver);
1521 1.1 jmcneill aprint_verbose_dev(sc->sc_dev, "hw features %08x %08x %08x %08x\n",
1522 1.1 jmcneill sc->sc_hw_feature[0], sc->sc_hw_feature[1],
1523 1.1 jmcneill sc->sc_hw_feature[2], sc->sc_hw_feature[3]);
1524 1.1 jmcneill
1525 1.1 jmcneill if (EQOS_HW_FEATURE_ADDR64_32BIT(sc)) {
1526 1.1 jmcneill bus_dma_tag_t ntag;
1527 1.1 jmcneill
1528 1.1 jmcneill error = bus_dmatag_subregion(sc->sc_dmat, 0, UINT32_MAX,
1529 1.1 jmcneill &ntag, 0);
1530 1.1 jmcneill if (error) {
1531 1.1 jmcneill aprint_error_dev(sc->sc_dev,
1532 1.1 jmcneill "failed to restrict DMA: %d\n", error);
1533 1.1 jmcneill return error;
1534 1.1 jmcneill }
1535 1.1 jmcneill aprint_verbose_dev(sc->sc_dev, "using 32-bit DMA\n");
1536 1.1 jmcneill sc->sc_dmat = ntag;
1537 1.1 jmcneill }
1538 1.1 jmcneill
1539 1.1 jmcneill mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NET);
1540 1.1 jmcneill mutex_init(&sc->sc_txlock, MUTEX_DEFAULT, IPL_NET);
1541 1.1 jmcneill callout_init(&sc->sc_stat_ch, CALLOUT_FLAGS);
1542 1.1 jmcneill callout_setfunc(&sc->sc_stat_ch, eqos_tick, sc);
1543 1.1 jmcneill
1544 1.1 jmcneill eqos_get_eaddr(sc, eaddr);
1545 1.23 msaitoh aprint_normal_dev(sc->sc_dev,
1546 1.23 msaitoh "Ethernet address %s\n", ether_sprintf(eaddr));
1547 1.1 jmcneill
1548 1.1 jmcneill /* Soft reset EMAC core */
1549 1.1 jmcneill error = eqos_reset(sc);
1550 1.1 jmcneill if (error != 0) {
1551 1.1 jmcneill return error;
1552 1.1 jmcneill }
1553 1.1 jmcneill
1554 1.27 msaitoh /* Get DMA burst length */
1555 1.27 msaitoh eqos_get_dma_pbl(sc);
1556 1.27 msaitoh
1557 1.1 jmcneill /* Configure AXI Bus mode parameters */
1558 1.1 jmcneill eqos_axi_configure(sc);
1559 1.1 jmcneill
1560 1.1 jmcneill /* Setup DMA descriptors */
1561 1.1 jmcneill if (eqos_setup_dma(sc, 0) != 0) {
1562 1.23 msaitoh aprint_error_dev(sc->sc_dev,
1563 1.23 msaitoh "failed to setup DMA descriptors\n");
1564 1.1 jmcneill return EINVAL;
1565 1.1 jmcneill }
1566 1.1 jmcneill
1567 1.1 jmcneill /* Setup ethernet interface */
1568 1.1 jmcneill ifp->if_softc = sc;
1569 1.1 jmcneill snprintf(ifp->if_xname, IFNAMSIZ, "%s", device_xname(sc->sc_dev));
1570 1.1 jmcneill ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1571 1.1 jmcneill #ifdef EQOS_MPSAFE
1572 1.1 jmcneill ifp->if_extflags = IFEF_MPSAFE;
1573 1.1 jmcneill #endif
1574 1.1 jmcneill ifp->if_start = eqos_start;
1575 1.1 jmcneill ifp->if_ioctl = eqos_ioctl;
1576 1.1 jmcneill ifp->if_init = eqos_init;
1577 1.1 jmcneill ifp->if_stop = eqos_stop;
1578 1.1 jmcneill ifp->if_capabilities = 0;
1579 1.1 jmcneill ifp->if_capenable = ifp->if_capabilities;
1580 1.1 jmcneill IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
1581 1.1 jmcneill IFQ_SET_READY(&ifp->if_snd);
1582 1.1 jmcneill
1583 1.13 ryo /* 802.1Q VLAN-sized frames, and jumbo frame are supported */
1584 1.1 jmcneill sc->sc_ec.ec_capabilities |= ETHERCAP_VLAN_MTU;
1585 1.13 ryo sc->sc_ec.ec_capabilities |= ETHERCAP_JUMBO_MTU;
1586 1.1 jmcneill
1587 1.1 jmcneill /* Attach MII driver */
1588 1.1 jmcneill sc->sc_ec.ec_mii = mii;
1589 1.1 jmcneill ifmedia_init(&mii->mii_media, 0, ether_mediachange, ether_mediastatus);
1590 1.1 jmcneill mii->mii_ifp = ifp;
1591 1.1 jmcneill mii->mii_readreg = eqos_mii_readreg;
1592 1.1 jmcneill mii->mii_writereg = eqos_mii_writereg;
1593 1.1 jmcneill mii->mii_statchg = eqos_mii_statchg;
1594 1.1 jmcneill mii_attach(sc->sc_dev, mii, 0xffffffff, sc->sc_phy_id, MII_OFFSET_ANY,
1595 1.28 msaitoh MIIF_DOPAUSE);
1596 1.1 jmcneill
1597 1.1 jmcneill if (LIST_EMPTY(&mii->mii_phys)) {
1598 1.1 jmcneill aprint_error_dev(sc->sc_dev, "no PHY found!\n");
1599 1.1 jmcneill return ENOENT;
1600 1.1 jmcneill }
1601 1.1 jmcneill ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
1602 1.1 jmcneill
1603 1.2 mrg /* Master interrupt evcnt */
1604 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_intr, EVCNT_TYPE_INTR,
1605 1.2 mrg NULL, device_xname(sc->sc_dev), "interrupts");
1606 1.2 mrg
1607 1.2 mrg /* Per-interrupt type, using main interrupt */
1608 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_rxintr, EVCNT_TYPE_INTR,
1609 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "rxintr");
1610 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_txintr, EVCNT_TYPE_INTR,
1611 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "txintr");
1612 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_mac, EVCNT_TYPE_INTR,
1613 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "macstatus");
1614 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl, EVCNT_TYPE_INTR,
1615 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "intrstatus");
1616 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_status, EVCNT_TYPE_INTR,
1617 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "rxtxstatus");
1618 1.2 mrg
1619 1.3 mrg /* MAC Status specific type, using macstatus interrupt */
1620 1.3 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl_debugdata, EVCNT_TYPE_INTR,
1621 1.3 mrg &sc->sc_ev_mtl, device_xname(sc->sc_dev), "debugdata");
1622 1.3 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl_rxovfis, EVCNT_TYPE_INTR,
1623 1.3 mrg &sc->sc_ev_mtl, device_xname(sc->sc_dev), "rxovfis");
1624 1.3 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl_txovfis, EVCNT_TYPE_INTR,
1625 1.3 mrg &sc->sc_ev_mtl, device_xname(sc->sc_dev), "txovfis");
1626 1.3 mrg
1627 1.2 mrg /* RX/TX Status specific type, using rxtxstatus interrupt */
1628 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_rwt, EVCNT_TYPE_INTR,
1629 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "rwt");
1630 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_excol, EVCNT_TYPE_INTR,
1631 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "excol");
1632 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_lcol, EVCNT_TYPE_INTR,
1633 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "lcol");
1634 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_exdef, EVCNT_TYPE_INTR,
1635 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "exdef");
1636 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_lcarr, EVCNT_TYPE_INTR,
1637 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "lcarr");
1638 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_ncarr, EVCNT_TYPE_INTR,
1639 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "ncarr");
1640 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_tjt, EVCNT_TYPE_INTR,
1641 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "tjt");
1642 1.2 mrg
1643 1.1 jmcneill /* Attach interface */
1644 1.1 jmcneill if_attach(ifp);
1645 1.1 jmcneill if_deferred_start_init(ifp, NULL);
1646 1.1 jmcneill
1647 1.1 jmcneill /* Attach ethernet interface */
1648 1.1 jmcneill ether_ifattach(ifp, eaddr);
1649 1.1 jmcneill
1650 1.25 msaitoh eqos_init_sysctls(sc);
1651 1.25 msaitoh
1652 1.1 jmcneill rnd_attach_source(&sc->sc_rndsource, ifp->if_xname, RND_TYPE_NET,
1653 1.1 jmcneill RND_FLAG_DEFAULT);
1654 1.1 jmcneill
1655 1.1 jmcneill return 0;
1656 1.1 jmcneill }
1657 1.25 msaitoh
1658 1.25 msaitoh static void
1659 1.25 msaitoh eqos_init_sysctls(struct eqos_softc *sc)
1660 1.25 msaitoh {
1661 1.25 msaitoh struct sysctllog **log;
1662 1.25 msaitoh const struct sysctlnode *rnode, *qnode, *cnode;
1663 1.25 msaitoh const char *dvname;
1664 1.25 msaitoh int i, rv;
1665 1.25 msaitoh
1666 1.25 msaitoh log = &sc->sc_sysctllog;
1667 1.25 msaitoh dvname = device_xname(sc->sc_dev);
1668 1.25 msaitoh
1669 1.25 msaitoh rv = sysctl_createv(log, 0, NULL, &rnode,
1670 1.25 msaitoh 0, CTLTYPE_NODE, dvname,
1671 1.25 msaitoh SYSCTL_DESCR("eqos information and settings"),
1672 1.25 msaitoh NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
1673 1.25 msaitoh if (rv != 0)
1674 1.25 msaitoh goto err;
1675 1.25 msaitoh
1676 1.25 msaitoh for (i = 0; i < 1; i++) {
1677 1.25 msaitoh struct eqos_ring *txr = &sc->sc_tx;
1678 1.25 msaitoh struct eqos_ring *rxr = &sc->sc_rx;
1679 1.25 msaitoh const unsigned char *name = "q0";
1680 1.25 msaitoh
1681 1.25 msaitoh if (sysctl_createv(log, 0, &rnode, &qnode,
1682 1.25 msaitoh 0, CTLTYPE_NODE,
1683 1.25 msaitoh name, SYSCTL_DESCR("Queue Name"),
1684 1.25 msaitoh NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL) != 0)
1685 1.25 msaitoh break;
1686 1.25 msaitoh
1687 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1688 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1689 1.25 msaitoh "txs_cur", SYSCTL_DESCR("TX cur"),
1690 1.25 msaitoh NULL, 0, &txr->cur,
1691 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1692 1.25 msaitoh break;
1693 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1694 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1695 1.25 msaitoh "txs_next", SYSCTL_DESCR("TX next"),
1696 1.25 msaitoh NULL, 0, &txr->next,
1697 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1698 1.25 msaitoh break;
1699 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1700 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1701 1.25 msaitoh "txs_queued", SYSCTL_DESCR("TX queued"),
1702 1.25 msaitoh NULL, 0, &txr->queued,
1703 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1704 1.25 msaitoh break;
1705 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1706 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1707 1.25 msaitoh "txr_cur", SYSCTL_DESCR("TX descriptor cur"),
1708 1.25 msaitoh eqos_sysctl_tx_cur_handler, 0, (void *)txr,
1709 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1710 1.25 msaitoh break;
1711 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1712 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1713 1.25 msaitoh "txr_end", SYSCTL_DESCR("TX descriptor end"),
1714 1.25 msaitoh eqos_sysctl_tx_end_handler, 0, (void *)txr,
1715 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1716 1.25 msaitoh break;
1717 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1718 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1719 1.25 msaitoh "rxs_cur", SYSCTL_DESCR("RX cur"),
1720 1.25 msaitoh NULL, 0, &rxr->cur,
1721 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1722 1.25 msaitoh break;
1723 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1724 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1725 1.25 msaitoh "rxs_next", SYSCTL_DESCR("RX next"),
1726 1.25 msaitoh NULL, 0, &rxr->next,
1727 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1728 1.25 msaitoh break;
1729 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1730 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1731 1.25 msaitoh "rxs_queued", SYSCTL_DESCR("RX queued"),
1732 1.25 msaitoh NULL, 0, &rxr->queued,
1733 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1734 1.25 msaitoh break;
1735 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1736 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1737 1.25 msaitoh "rxr_cur", SYSCTL_DESCR("RX descriptor cur"),
1738 1.25 msaitoh eqos_sysctl_rx_cur_handler, 0, (void *)rxr,
1739 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1740 1.25 msaitoh break;
1741 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1742 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1743 1.25 msaitoh "rxr_end", SYSCTL_DESCR("RX descriptor end"),
1744 1.25 msaitoh eqos_sysctl_rx_end_handler, 0, (void *)rxr,
1745 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1746 1.25 msaitoh break;
1747 1.25 msaitoh }
1748 1.25 msaitoh
1749 1.25 msaitoh #ifdef EQOS_DEBUG
1750 1.25 msaitoh rv = sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
1751 1.25 msaitoh CTLTYPE_INT, "debug_flags",
1752 1.25 msaitoh SYSCTL_DESCR(
1753 1.25 msaitoh "Debug flags:\n" \
1754 1.25 msaitoh "\t0x01 NOTE\n" \
1755 1.25 msaitoh "\t0x02 INTR\n" \
1756 1.25 msaitoh "\t0x04 RX RING\n" \
1757 1.25 msaitoh "\t0x08 TX RING\n"),
1758 1.25 msaitoh eqos_sysctl_debug_handler, 0, (void *)sc, 0, CTL_CREATE, CTL_EOL);
1759 1.25 msaitoh #endif
1760 1.25 msaitoh
1761 1.25 msaitoh return;
1762 1.25 msaitoh
1763 1.25 msaitoh err:
1764 1.25 msaitoh sc->sc_sysctllog = NULL;
1765 1.25 msaitoh device_printf(sc->sc_dev, "%s: sysctl_createv failed, rv = %d\n",
1766 1.25 msaitoh __func__, rv);
1767 1.25 msaitoh }
1768 1.25 msaitoh
1769 1.25 msaitoh static int
1770 1.25 msaitoh eqos_sysctl_tx_cur_handler(SYSCTLFN_ARGS)
1771 1.25 msaitoh {
1772 1.25 msaitoh struct sysctlnode node = *rnode;
1773 1.25 msaitoh struct eqos_ring *txq = (struct eqos_ring *)node.sysctl_data;
1774 1.25 msaitoh struct eqos_softc *sc = txq->sc;
1775 1.25 msaitoh uint32_t reg, index;
1776 1.25 msaitoh
1777 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_CUR_TX_DESC);
1778 1.25 msaitoh #if 0
1779 1.25 msaitoh printf("head = %08x\n", (uint32_t)sc->sc_tx.desc_ring_paddr);
1780 1.25 msaitoh printf("cdesc = %08x\n", reg);
1781 1.25 msaitoh printf("index = %zu\n",
1782 1.25 msaitoh (reg - (uint32_t)sc->sc_tx.desc_ring_paddr) /
1783 1.25 msaitoh sizeof(struct eqos_dma_desc));
1784 1.25 msaitoh #endif
1785 1.25 msaitoh if (reg == 0)
1786 1.25 msaitoh index = 0;
1787 1.25 msaitoh else {
1788 1.25 msaitoh index = (reg - (uint32_t)sc->sc_tx.desc_ring_paddr) /
1789 1.25 msaitoh sizeof(struct eqos_dma_desc);
1790 1.25 msaitoh }
1791 1.25 msaitoh node.sysctl_data = &index;
1792 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1793 1.25 msaitoh }
1794 1.25 msaitoh
1795 1.25 msaitoh static int
1796 1.25 msaitoh eqos_sysctl_tx_end_handler(SYSCTLFN_ARGS)
1797 1.25 msaitoh {
1798 1.25 msaitoh struct sysctlnode node = *rnode;
1799 1.25 msaitoh struct eqos_ring *txq = (struct eqos_ring *)node.sysctl_data;
1800 1.25 msaitoh struct eqos_softc *sc = txq->sc;
1801 1.25 msaitoh uint32_t reg, index;
1802 1.25 msaitoh
1803 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_TX_END_ADDR);
1804 1.25 msaitoh if (reg == 0)
1805 1.25 msaitoh index = 0;
1806 1.25 msaitoh else {
1807 1.25 msaitoh index = (reg - (uint32_t)sc->sc_tx.desc_ring_paddr) /
1808 1.25 msaitoh sizeof(struct eqos_dma_desc);
1809 1.25 msaitoh }
1810 1.25 msaitoh node.sysctl_data = &index;
1811 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1812 1.25 msaitoh }
1813 1.25 msaitoh
1814 1.25 msaitoh static int
1815 1.25 msaitoh eqos_sysctl_rx_cur_handler(SYSCTLFN_ARGS)
1816 1.25 msaitoh {
1817 1.25 msaitoh struct sysctlnode node = *rnode;
1818 1.25 msaitoh struct eqos_ring *rxq = (struct eqos_ring *)node.sysctl_data;
1819 1.25 msaitoh struct eqos_softc *sc = rxq->sc;
1820 1.25 msaitoh uint32_t reg, index;
1821 1.25 msaitoh
1822 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_CUR_RX_DESC);
1823 1.25 msaitoh if (reg == 0)
1824 1.25 msaitoh index = 0;
1825 1.25 msaitoh else {
1826 1.25 msaitoh index = (reg - (uint32_t)sc->sc_rx.desc_ring_paddr) /
1827 1.25 msaitoh sizeof(struct eqos_dma_desc);
1828 1.25 msaitoh }
1829 1.25 msaitoh node.sysctl_data = &index;
1830 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1831 1.25 msaitoh }
1832 1.25 msaitoh
1833 1.25 msaitoh static int
1834 1.25 msaitoh eqos_sysctl_rx_end_handler(SYSCTLFN_ARGS)
1835 1.25 msaitoh {
1836 1.25 msaitoh struct sysctlnode node = *rnode;
1837 1.25 msaitoh struct eqos_ring *rxq = (struct eqos_ring *)node.sysctl_data;
1838 1.25 msaitoh struct eqos_softc *sc = rxq->sc;
1839 1.25 msaitoh uint32_t reg, index;
1840 1.25 msaitoh
1841 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_RX_END_ADDR);
1842 1.25 msaitoh if (reg == 0)
1843 1.25 msaitoh index = 0;
1844 1.25 msaitoh else {
1845 1.25 msaitoh index = (reg - (uint32_t)sc->sc_rx.desc_ring_paddr) /
1846 1.25 msaitoh sizeof(struct eqos_dma_desc);
1847 1.25 msaitoh }
1848 1.25 msaitoh node.sysctl_data = &index;
1849 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1850 1.25 msaitoh }
1851 1.25 msaitoh
1852 1.25 msaitoh #ifdef EQOS_DEBUG
1853 1.25 msaitoh static int
1854 1.25 msaitoh eqos_sysctl_debug_handler(SYSCTLFN_ARGS)
1855 1.25 msaitoh {
1856 1.25 msaitoh struct sysctlnode node = *rnode;
1857 1.25 msaitoh struct eqos_softc *sc = (struct eqos_softc *)node.sysctl_data;
1858 1.25 msaitoh uint32_t dflags;
1859 1.25 msaitoh int error;
1860 1.25 msaitoh
1861 1.25 msaitoh dflags = sc->sc_debug;
1862 1.25 msaitoh node.sysctl_data = &dflags;
1863 1.25 msaitoh error = sysctl_lookup(SYSCTLFN_CALL(&node));
1864 1.25 msaitoh
1865 1.25 msaitoh if (error || newp == NULL)
1866 1.25 msaitoh return error;
1867 1.25 msaitoh
1868 1.25 msaitoh sc->sc_debug = dflags;
1869 1.25 msaitoh #if 0
1870 1.25 msaitoh /* Addd debug code here if you want. */
1871 1.25 msaitoh #endif
1872 1.25 msaitoh
1873 1.25 msaitoh return 0;
1874 1.25 msaitoh }
1875 1.25 msaitoh #endif
1876