dwc_eqos.c revision 1.30 1 1.30 riastrad /* $NetBSD: dwc_eqos.c,v 1.30 2023/11/02 13:49:37 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.30 riastrad __KERNEL_RCSID(0, "$NetBSD: dwc_eqos.c,v 1.30 2023/11/02 13:49:37 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.1 jmcneill if ((ifp->if_flags & IFF_PROMISC) != 0) {
513 1.1 jmcneill pfil |= GMAC_MAC_PACKET_FILTER_PR |
514 1.1 jmcneill GMAC_MAC_PACKET_FILTER_PCF_ALL;
515 1.1 jmcneill } else if ((ifp->if_flags & IFF_ALLMULTI) != 0) {
516 1.1 jmcneill pfil |= GMAC_MAC_PACKET_FILTER_PM;
517 1.1 jmcneill } else {
518 1.1 jmcneill hash[0] = hash[1] = 0;
519 1.1 jmcneill pfil |= GMAC_MAC_PACKET_FILTER_HMC;
520 1.1 jmcneill ETHER_LOCK(ec);
521 1.1 jmcneill ETHER_FIRST_MULTI(step, ec, enm);
522 1.1 jmcneill while (enm != NULL) {
523 1.1 jmcneill crc = ether_crc32_le(enm->enm_addrlo, ETHER_ADDR_LEN);
524 1.1 jmcneill crc &= 0x7f;
525 1.1 jmcneill crc = eqos_bitrev32(~crc) >> 26;
526 1.1 jmcneill hashreg = (crc >> 5);
527 1.1 jmcneill hashbit = (crc & 0x1f);
528 1.1 jmcneill hash[hashreg] |= (1 << hashbit);
529 1.1 jmcneill ETHER_NEXT_MULTI(step, enm);
530 1.1 jmcneill }
531 1.1 jmcneill ETHER_UNLOCK(ec);
532 1.1 jmcneill }
533 1.1 jmcneill
534 1.1 jmcneill /* Write our unicast address */
535 1.1 jmcneill eaddr = CLLADDR(ifp->if_sadl);
536 1.1 jmcneill val = eaddr[4] | (eaddr[5] << 8);
537 1.1 jmcneill WR4(sc, GMAC_MAC_ADDRESS0_HIGH, val);
538 1.1 jmcneill val = eaddr[0] | (eaddr[1] << 8) | (eaddr[2] << 16) |
539 1.1 jmcneill (eaddr[3] << 24);
540 1.1 jmcneill WR4(sc, GMAC_MAC_ADDRESS0_LOW, val);
541 1.1 jmcneill
542 1.1 jmcneill /* Multicast hash filters */
543 1.9 martin WR4(sc, GMAC_MAC_HASH_TABLE_REG0, hash[0]);
544 1.9 martin WR4(sc, GMAC_MAC_HASH_TABLE_REG1, hash[1]);
545 1.1 jmcneill
546 1.8 martin DPRINTF(EDEB_NOTE, "writing new packet filter config "
547 1.8 martin "%08x, hash[1]=%08x, hash[0]=%08x\n", pfil, hash[1], hash[0]);
548 1.1 jmcneill /* Packet filter config */
549 1.1 jmcneill WR4(sc, GMAC_MAC_PACKET_FILTER, pfil);
550 1.1 jmcneill }
551 1.1 jmcneill
552 1.1 jmcneill static int
553 1.1 jmcneill eqos_reset(struct eqos_softc *sc)
554 1.1 jmcneill {
555 1.1 jmcneill uint32_t val;
556 1.1 jmcneill int retry;
557 1.1 jmcneill
558 1.1 jmcneill WR4(sc, GMAC_DMA_MODE, GMAC_DMA_MODE_SWR);
559 1.1 jmcneill for (retry = 2000; retry > 0; retry--) {
560 1.1 jmcneill delay(1000);
561 1.1 jmcneill val = RD4(sc, GMAC_DMA_MODE);
562 1.1 jmcneill if ((val & GMAC_DMA_MODE_SWR) == 0) {
563 1.1 jmcneill return 0;
564 1.1 jmcneill }
565 1.1 jmcneill }
566 1.1 jmcneill
567 1.1 jmcneill device_printf(sc->sc_dev, "reset timeout!\n");
568 1.1 jmcneill return ETIMEDOUT;
569 1.1 jmcneill }
570 1.1 jmcneill
571 1.1 jmcneill static void
572 1.1 jmcneill eqos_init_rings(struct eqos_softc *sc, int qid)
573 1.1 jmcneill {
574 1.7 martin sc->sc_tx.cur = sc->sc_tx.next = sc->sc_tx.queued = 0;
575 1.1 jmcneill
576 1.13 ryo sc->sc_rx_discarding = false;
577 1.13 ryo if (sc->sc_rx_receiving_m != NULL)
578 1.13 ryo m_freem(sc->sc_rx_receiving_m);
579 1.13 ryo sc->sc_rx_receiving_m = NULL;
580 1.13 ryo sc->sc_rx_receiving_m_last = NULL;
581 1.13 ryo
582 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_BASE_ADDR_HI,
583 1.21 msaitoh (uint32_t)((uint64_t)sc->sc_tx.desc_ring_paddr >> 32));
584 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_BASE_ADDR,
585 1.1 jmcneill (uint32_t)sc->sc_tx.desc_ring_paddr);
586 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_RING_LEN, TX_DESC_COUNT - 1);
587 1.17 andvar DPRINTF(EDEB_TXRING, "tx ring paddr %lx with %u descriptors\n",
588 1.8 martin sc->sc_tx.desc_ring_paddr, TX_DESC_COUNT);
589 1.1 jmcneill
590 1.8 martin sc->sc_rx.cur = sc->sc_rx.next = sc->sc_rx.queued = 0;
591 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_BASE_ADDR_HI,
592 1.21 msaitoh (uint32_t)((uint64_t)sc->sc_rx.desc_ring_paddr >> 32));
593 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_BASE_ADDR,
594 1.1 jmcneill (uint32_t)sc->sc_rx.desc_ring_paddr);
595 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_RING_LEN, RX_DESC_COUNT - 1);
596 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_END_ADDR,
597 1.1 jmcneill (uint32_t)sc->sc_rx.desc_ring_paddr +
598 1.1 jmcneill DESC_OFF((sc->sc_rx.cur - 1) % RX_DESC_COUNT));
599 1.17 andvar DPRINTF(EDEB_RXRING, "rx ring paddr %lx with %u descriptors\n",
600 1.8 martin sc->sc_rx.desc_ring_paddr, RX_DESC_COUNT);
601 1.1 jmcneill }
602 1.1 jmcneill
603 1.1 jmcneill static int
604 1.1 jmcneill eqos_init_locked(struct eqos_softc *sc)
605 1.1 jmcneill {
606 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
607 1.15 skrll struct mii_data * const mii = &sc->sc_mii;
608 1.10 ryo uint32_t val, tqs, rqs;
609 1.1 jmcneill
610 1.1 jmcneill EQOS_ASSERT_LOCKED(sc);
611 1.1 jmcneill EQOS_ASSERT_TXLOCKED(sc);
612 1.1 jmcneill
613 1.1 jmcneill if ((ifp->if_flags & IFF_RUNNING) != 0)
614 1.1 jmcneill return 0;
615 1.1 jmcneill
616 1.1 jmcneill /* Setup TX/RX rings */
617 1.1 jmcneill eqos_init_rings(sc, 0);
618 1.1 jmcneill
619 1.1 jmcneill /* Setup RX filter */
620 1.1 jmcneill eqos_setup_rxfilter(sc);
621 1.1 jmcneill
622 1.1 jmcneill WR4(sc, GMAC_MAC_1US_TIC_COUNTER, (sc->sc_csr_clock / 1000000) - 1);
623 1.1 jmcneill
624 1.1 jmcneill /* Enable transmit and receive DMA */
625 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_CONTROL);
626 1.1 jmcneill val &= ~GMAC_DMA_CHAN0_CONTROL_DSL_MASK;
627 1.1 jmcneill val |= ((DESC_ALIGN - 16) / 8) << GMAC_DMA_CHAN0_CONTROL_DSL_SHIFT;
628 1.1 jmcneill val |= GMAC_DMA_CHAN0_CONTROL_PBLX8;
629 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_CONTROL, val);
630 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_TX_CONTROL);
631 1.27 msaitoh val &= ~GMAC_DMA_CHAN0_TX_CONTROL_TXPBL_MASK;
632 1.27 msaitoh val |= (sc->sc_dma_txpbl << GMAC_DMA_CHAN0_TX_CONTROL_TXPBL_SHIFT);
633 1.1 jmcneill val |= GMAC_DMA_CHAN0_TX_CONTROL_OSP;
634 1.1 jmcneill val |= GMAC_DMA_CHAN0_TX_CONTROL_START;
635 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_CONTROL, val);
636 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_RX_CONTROL);
637 1.27 msaitoh val &= ~(GMAC_DMA_CHAN0_RX_CONTROL_RBSZ_MASK |
638 1.27 msaitoh GMAC_DMA_CHAN0_RX_CONTROL_RXPBL_MASK);
639 1.1 jmcneill val |= (MCLBYTES << GMAC_DMA_CHAN0_RX_CONTROL_RBSZ_SHIFT);
640 1.27 msaitoh val |= (sc->sc_dma_rxpbl << GMAC_DMA_CHAN0_RX_CONTROL_RXPBL_SHIFT);
641 1.1 jmcneill val |= GMAC_DMA_CHAN0_RX_CONTROL_START;
642 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_CONTROL, val);
643 1.1 jmcneill
644 1.6 jmcneill /* Disable counters */
645 1.6 jmcneill WR4(sc, GMAC_MMC_CONTROL,
646 1.6 jmcneill GMAC_MMC_CONTROL_CNTFREEZ |
647 1.6 jmcneill GMAC_MMC_CONTROL_CNTPRST |
648 1.6 jmcneill GMAC_MMC_CONTROL_CNTPRSTLVL);
649 1.6 jmcneill
650 1.1 jmcneill /* Configure operation modes */
651 1.1 jmcneill WR4(sc, GMAC_MTL_TXQ0_OPERATION_MODE,
652 1.1 jmcneill GMAC_MTL_TXQ0_OPERATION_MODE_TSF |
653 1.1 jmcneill GMAC_MTL_TXQ0_OPERATION_MODE_TXQEN_EN);
654 1.1 jmcneill WR4(sc, GMAC_MTL_RXQ0_OPERATION_MODE,
655 1.1 jmcneill GMAC_MTL_RXQ0_OPERATION_MODE_RSF |
656 1.1 jmcneill GMAC_MTL_RXQ0_OPERATION_MODE_FEP |
657 1.1 jmcneill GMAC_MTL_RXQ0_OPERATION_MODE_FUP);
658 1.1 jmcneill
659 1.10 ryo /*
660 1.10 ryo * TX/RX fifo size in hw_feature[1] are log2(n/128), and
661 1.10 ryo * TQS/RQS in TXQ0/RXQ0_OPERATION_MODE are n/256-1.
662 1.10 ryo */
663 1.10 ryo tqs = (128 << __SHIFTOUT(sc->sc_hw_feature[1],
664 1.10 ryo GMAC_MAC_HW_FEATURE1_TXFIFOSIZE) / 256) - 1;
665 1.10 ryo val = RD4(sc, GMAC_MTL_TXQ0_OPERATION_MODE);
666 1.10 ryo val &= ~GMAC_MTL_TXQ0_OPERATION_MODE_TQS;
667 1.10 ryo val |= __SHIFTIN(tqs, GMAC_MTL_TXQ0_OPERATION_MODE_TQS);
668 1.10 ryo WR4(sc, GMAC_MTL_TXQ0_OPERATION_MODE, val);
669 1.10 ryo
670 1.10 ryo rqs = (128 << __SHIFTOUT(sc->sc_hw_feature[1],
671 1.10 ryo GMAC_MAC_HW_FEATURE1_RXFIFOSIZE) / 256) - 1;
672 1.10 ryo val = RD4(sc, GMAC_MTL_RXQ0_OPERATION_MODE);
673 1.10 ryo val &= ~GMAC_MTL_RXQ0_OPERATION_MODE_RQS;
674 1.10 ryo val |= __SHIFTIN(rqs, GMAC_MTL_RXQ0_OPERATION_MODE_RQS);
675 1.10 ryo WR4(sc, GMAC_MTL_RXQ0_OPERATION_MODE, val);
676 1.10 ryo
677 1.28 msaitoh /*
678 1.28 msaitoh * Disable flow control.
679 1.28 msaitoh * It'll be configured later from the negotiated result.
680 1.28 msaitoh */
681 1.28 msaitoh WR4(sc, GMAC_MAC_Q0_TX_FLOW_CTRL, 0);
682 1.28 msaitoh WR4(sc, GMAC_MAC_RX_FLOW_CTRL, 0);
683 1.1 jmcneill
684 1.10 ryo /* set RX queue mode. must be in DCB mode. */
685 1.10 ryo val = __SHIFTIN(GMAC_RXQ_CTRL0_EN_DCB, GMAC_RXQ_CTRL0_EN_MASK);
686 1.10 ryo WR4(sc, GMAC_RXQ_CTRL0, val);
687 1.10 ryo
688 1.1 jmcneill /* Enable transmitter and receiver */
689 1.1 jmcneill val = RD4(sc, GMAC_MAC_CONFIGURATION);
690 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_BE;
691 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_JD;
692 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_JE;
693 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_DCRS;
694 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_TE;
695 1.1 jmcneill val |= GMAC_MAC_CONFIGURATION_RE;
696 1.1 jmcneill WR4(sc, GMAC_MAC_CONFIGURATION, val);
697 1.1 jmcneill
698 1.1 jmcneill /* Enable interrupts */
699 1.1 jmcneill eqos_enable_intr(sc);
700 1.1 jmcneill
701 1.30 riastrad sc->sc_running = true;
702 1.1 jmcneill ifp->if_flags |= IFF_RUNNING;
703 1.1 jmcneill
704 1.1 jmcneill mii_mediachg(mii);
705 1.1 jmcneill callout_schedule(&sc->sc_stat_ch, hz);
706 1.1 jmcneill
707 1.1 jmcneill return 0;
708 1.1 jmcneill }
709 1.1 jmcneill
710 1.1 jmcneill static int
711 1.1 jmcneill eqos_init(struct ifnet *ifp)
712 1.1 jmcneill {
713 1.15 skrll struct eqos_softc * const sc = ifp->if_softc;
714 1.1 jmcneill int error;
715 1.1 jmcneill
716 1.1 jmcneill EQOS_LOCK(sc);
717 1.1 jmcneill EQOS_TXLOCK(sc);
718 1.1 jmcneill error = eqos_init_locked(sc);
719 1.1 jmcneill EQOS_TXUNLOCK(sc);
720 1.1 jmcneill EQOS_UNLOCK(sc);
721 1.1 jmcneill
722 1.1 jmcneill return error;
723 1.1 jmcneill }
724 1.1 jmcneill
725 1.1 jmcneill static void
726 1.1 jmcneill eqos_stop_locked(struct eqos_softc *sc, int disable)
727 1.1 jmcneill {
728 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
729 1.1 jmcneill uint32_t val;
730 1.1 jmcneill int retry;
731 1.1 jmcneill
732 1.1 jmcneill EQOS_ASSERT_LOCKED(sc);
733 1.1 jmcneill
734 1.30 riastrad sc->sc_running = false;
735 1.30 riastrad callout_halt(&sc->sc_stat_ch, &sc->sc_lock);
736 1.1 jmcneill
737 1.1 jmcneill mii_down(&sc->sc_mii);
738 1.1 jmcneill
739 1.1 jmcneill /* Disable receiver */
740 1.1 jmcneill val = RD4(sc, GMAC_MAC_CONFIGURATION);
741 1.1 jmcneill val &= ~GMAC_MAC_CONFIGURATION_RE;
742 1.1 jmcneill WR4(sc, GMAC_MAC_CONFIGURATION, val);
743 1.1 jmcneill
744 1.1 jmcneill /* Stop receive DMA */
745 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_RX_CONTROL);
746 1.1 jmcneill val &= ~GMAC_DMA_CHAN0_RX_CONTROL_START;
747 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_CONTROL, val);
748 1.1 jmcneill
749 1.1 jmcneill /* Stop transmit DMA */
750 1.1 jmcneill val = RD4(sc, GMAC_DMA_CHAN0_TX_CONTROL);
751 1.1 jmcneill val &= ~GMAC_DMA_CHAN0_TX_CONTROL_START;
752 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_CONTROL, val);
753 1.1 jmcneill
754 1.1 jmcneill if (disable) {
755 1.1 jmcneill /* Flush data in the TX FIFO */
756 1.1 jmcneill val = RD4(sc, GMAC_MTL_TXQ0_OPERATION_MODE);
757 1.1 jmcneill val |= GMAC_MTL_TXQ0_OPERATION_MODE_FTQ;
758 1.1 jmcneill WR4(sc, GMAC_MTL_TXQ0_OPERATION_MODE, val);
759 1.1 jmcneill /* Wait for flush to complete */
760 1.1 jmcneill for (retry = 10000; retry > 0; retry--) {
761 1.1 jmcneill val = RD4(sc, GMAC_MTL_TXQ0_OPERATION_MODE);
762 1.1 jmcneill if ((val & GMAC_MTL_TXQ0_OPERATION_MODE_FTQ) == 0) {
763 1.1 jmcneill break;
764 1.1 jmcneill }
765 1.1 jmcneill delay(1);
766 1.1 jmcneill }
767 1.1 jmcneill if (retry == 0) {
768 1.1 jmcneill device_printf(sc->sc_dev,
769 1.1 jmcneill "timeout flushing TX queue\n");
770 1.1 jmcneill }
771 1.1 jmcneill }
772 1.1 jmcneill
773 1.1 jmcneill /* Disable transmitter */
774 1.1 jmcneill val = RD4(sc, GMAC_MAC_CONFIGURATION);
775 1.1 jmcneill val &= ~GMAC_MAC_CONFIGURATION_TE;
776 1.1 jmcneill WR4(sc, GMAC_MAC_CONFIGURATION, val);
777 1.1 jmcneill
778 1.1 jmcneill /* Disable interrupts */
779 1.1 jmcneill eqos_disable_intr(sc);
780 1.1 jmcneill
781 1.16 thorpej ifp->if_flags &= ~IFF_RUNNING;
782 1.1 jmcneill }
783 1.1 jmcneill
784 1.1 jmcneill static void
785 1.1 jmcneill eqos_stop(struct ifnet *ifp, int disable)
786 1.1 jmcneill {
787 1.1 jmcneill struct eqos_softc * const sc = ifp->if_softc;
788 1.1 jmcneill
789 1.1 jmcneill EQOS_LOCK(sc);
790 1.1 jmcneill eqos_stop_locked(sc, disable);
791 1.1 jmcneill EQOS_UNLOCK(sc);
792 1.1 jmcneill }
793 1.1 jmcneill
794 1.1 jmcneill static void
795 1.1 jmcneill eqos_rxintr(struct eqos_softc *sc, int qid)
796 1.1 jmcneill {
797 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
798 1.13 ryo int error, index, pkts = 0;
799 1.13 ryo struct mbuf *m, *m0, *new_m, *mprev;
800 1.1 jmcneill uint32_t tdes3;
801 1.13 ryo bool discarding;
802 1.13 ryo
803 1.13 ryo /* restore jumboframe context */
804 1.13 ryo discarding = sc->sc_rx_discarding;
805 1.13 ryo m0 = sc->sc_rx_receiving_m;
806 1.13 ryo mprev = sc->sc_rx_receiving_m_last;
807 1.1 jmcneill
808 1.1 jmcneill for (index = sc->sc_rx.cur; ; index = RX_NEXT(index)) {
809 1.1 jmcneill eqos_dma_sync(sc, sc->sc_rx.desc_map,
810 1.1 jmcneill index, index + 1, RX_DESC_COUNT,
811 1.1 jmcneill BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
812 1.1 jmcneill
813 1.1 jmcneill tdes3 = le32toh(sc->sc_rx.desc_ring[index].tdes3);
814 1.12 ryo if ((tdes3 & EQOS_TDES3_RX_OWN) != 0) {
815 1.1 jmcneill break;
816 1.1 jmcneill }
817 1.1 jmcneill
818 1.13 ryo /* now discarding untill the last packet */
819 1.13 ryo if (discarding)
820 1.13 ryo goto rx_next;
821 1.13 ryo
822 1.13 ryo if ((tdes3 & EQOS_TDES3_RX_CTXT) != 0)
823 1.13 ryo goto rx_next; /* ignore receive context descriptor */
824 1.13 ryo
825 1.13 ryo /* error packet? */
826 1.13 ryo if ((tdes3 & (EQOS_TDES3_RX_CE | EQOS_TDES3_RX_RWT |
827 1.13 ryo EQOS_TDES3_RX_OE | EQOS_TDES3_RX_RE |
828 1.13 ryo EQOS_TDES3_RX_DE)) != 0) {
829 1.13 ryo #ifdef EQOS_DEBUG
830 1.13 ryo char buf[128];
831 1.13 ryo snprintb(buf, sizeof(buf),
832 1.13 ryo "\177\020"
833 1.13 ryo "b\x1e" "CTXT\0" /* 30 */
834 1.13 ryo "b\x18" "CE\0" /* 24 */
835 1.13 ryo "b\x17" "GP\0" /* 23 */
836 1.13 ryo "b\x16" "WDT\0" /* 22 */
837 1.13 ryo "b\x15" "OE\0" /* 21 */
838 1.13 ryo "b\x14" "RE\0" /* 20 */
839 1.13 ryo "b\x13" "DE\0" /* 19 */
840 1.13 ryo "b\x0f" "ES\0" /* 15 */
841 1.13 ryo "\0", tdes3);
842 1.23 msaitoh DPRINTF(EDEB_NOTE,
843 1.23 msaitoh "rxdesc[%d].tdes3=%s\n", index, buf);
844 1.13 ryo #endif
845 1.13 ryo if_statinc(ifp, if_ierrors);
846 1.13 ryo if (m0 != NULL) {
847 1.13 ryo m_freem(m0);
848 1.13 ryo m0 = mprev = NULL;
849 1.13 ryo }
850 1.13 ryo discarding = true;
851 1.13 ryo goto rx_next;
852 1.13 ryo }
853 1.13 ryo
854 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, sc->sc_rx.buf_map[index].map,
855 1.1 jmcneill 0, sc->sc_rx.buf_map[index].map->dm_mapsize,
856 1.1 jmcneill BUS_DMASYNC_POSTREAD);
857 1.13 ryo m = sc->sc_rx.buf_map[index].mbuf;
858 1.13 ryo new_m = eqos_alloc_mbufcl(sc);
859 1.13 ryo if (new_m == NULL) {
860 1.13 ryo /*
861 1.13 ryo * cannot allocate new mbuf. discard this received
862 1.13 ryo * packet, and reuse the mbuf for next.
863 1.13 ryo */
864 1.13 ryo if_statinc(ifp, if_ierrors);
865 1.13 ryo if (m0 != NULL) {
866 1.13 ryo /* also discard the halfway jumbo packet */
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.14 ryo bus_dmamap_unload(sc->sc_dmat,
874 1.14 ryo sc->sc_rx.buf_map[index].map);
875 1.13 ryo error = eqos_setup_rxbuf(sc, index, new_m);
876 1.13 ryo if (error)
877 1.13 ryo panic("%s: %s: unable to load RX mbuf. error=%d",
878 1.13 ryo device_xname(sc->sc_dev), __func__, error);
879 1.1 jmcneill
880 1.13 ryo if (m0 == NULL) {
881 1.13 ryo m0 = m;
882 1.13 ryo } else {
883 1.13 ryo if (m->m_flags & M_PKTHDR)
884 1.13 ryo m_remove_pkthdr(m);
885 1.13 ryo mprev->m_next = m;
886 1.13 ryo }
887 1.13 ryo mprev = m;
888 1.13 ryo
889 1.13 ryo if ((tdes3 & EQOS_TDES3_RX_LD) == 0) {
890 1.13 ryo /* to be continued in the next segment */
891 1.13 ryo m->m_len = EQOS_RXDMA_SIZE;
892 1.13 ryo } else {
893 1.13 ryo /* last segment */
894 1.13 ryo uint32_t totallen = tdes3 & EQOS_TDES3_RX_LENGTH_MASK;
895 1.13 ryo uint32_t mlen = totallen % EQOS_RXDMA_SIZE;
896 1.13 ryo if (mlen == 0)
897 1.13 ryo mlen = EQOS_RXDMA_SIZE;
898 1.13 ryo m->m_len = mlen;
899 1.13 ryo m0->m_pkthdr.len = totallen;
900 1.13 ryo m_set_rcvif(m0, ifp);
901 1.13 ryo m0->m_flags |= M_HASFCS;
902 1.13 ryo m0->m_nextpkt = NULL;
903 1.13 ryo if_percpuq_enqueue(ifp->if_percpuq, m0);
904 1.13 ryo m0 = mprev = NULL;
905 1.1 jmcneill
906 1.1 jmcneill ++pkts;
907 1.1 jmcneill }
908 1.1 jmcneill
909 1.13 ryo rx_next:
910 1.13 ryo if (discarding && (tdes3 & EQOS_TDES3_RX_LD) != 0)
911 1.13 ryo discarding = false;
912 1.13 ryo
913 1.13 ryo eqos_setup_rxdesc(sc, index,
914 1.13 ryo sc->sc_rx.buf_map[index].map->dm_segs[0].ds_addr);
915 1.1 jmcneill eqos_dma_sync(sc, sc->sc_rx.desc_map,
916 1.1 jmcneill index, index + 1, RX_DESC_COUNT,
917 1.1 jmcneill BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
918 1.1 jmcneill
919 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_RX_END_ADDR,
920 1.1 jmcneill (uint32_t)sc->sc_rx.desc_ring_paddr +
921 1.1 jmcneill DESC_OFF(sc->sc_rx.cur));
922 1.1 jmcneill }
923 1.13 ryo /* save jumboframe context */
924 1.13 ryo sc->sc_rx_discarding = discarding;
925 1.13 ryo sc->sc_rx_receiving_m = m0;
926 1.13 ryo sc->sc_rx_receiving_m_last = mprev;
927 1.1 jmcneill
928 1.24 msaitoh DPRINTF(EDEB_RXRING, "sc_rx.cur %u -> %u\n",
929 1.24 msaitoh sc->sc_rx.cur, index);
930 1.1 jmcneill sc->sc_rx.cur = index;
931 1.1 jmcneill
932 1.1 jmcneill if (pkts != 0) {
933 1.1 jmcneill rnd_add_uint32(&sc->sc_rndsource, pkts);
934 1.1 jmcneill }
935 1.1 jmcneill }
936 1.1 jmcneill
937 1.1 jmcneill static void
938 1.1 jmcneill eqos_txintr(struct eqos_softc *sc, int qid)
939 1.1 jmcneill {
940 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
941 1.1 jmcneill struct eqos_bufmap *bmap;
942 1.1 jmcneill struct eqos_dma_desc *desc;
943 1.1 jmcneill uint32_t tdes3;
944 1.1 jmcneill int i, pkts = 0;
945 1.1 jmcneill
946 1.8 martin DPRINTF(EDEB_INTR, "qid: %u\n", qid);
947 1.8 martin
948 1.1 jmcneill EQOS_ASSERT_LOCKED(sc);
949 1.26 msaitoh EQOS_ASSERT_TXLOCKED(sc);
950 1.1 jmcneill
951 1.1 jmcneill for (i = sc->sc_tx.next; sc->sc_tx.queued > 0; i = TX_NEXT(i)) {
952 1.1 jmcneill KASSERT(sc->sc_tx.queued > 0);
953 1.1 jmcneill KASSERT(sc->sc_tx.queued <= TX_DESC_COUNT);
954 1.1 jmcneill eqos_dma_sync(sc, sc->sc_tx.desc_map,
955 1.1 jmcneill i, i + 1, TX_DESC_COUNT,
956 1.1 jmcneill BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
957 1.1 jmcneill desc = &sc->sc_tx.desc_ring[i];
958 1.1 jmcneill tdes3 = le32toh(desc->tdes3);
959 1.12 ryo if ((tdes3 & EQOS_TDES3_TX_OWN) != 0) {
960 1.1 jmcneill break;
961 1.1 jmcneill }
962 1.1 jmcneill bmap = &sc->sc_tx.buf_map[i];
963 1.1 jmcneill if (bmap->mbuf != NULL) {
964 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, bmap->map,
965 1.1 jmcneill 0, bmap->map->dm_mapsize,
966 1.1 jmcneill BUS_DMASYNC_POSTWRITE);
967 1.1 jmcneill bus_dmamap_unload(sc->sc_dmat, bmap->map);
968 1.1 jmcneill m_freem(bmap->mbuf);
969 1.1 jmcneill bmap->mbuf = NULL;
970 1.1 jmcneill ++pkts;
971 1.1 jmcneill }
972 1.1 jmcneill
973 1.1 jmcneill eqos_setup_txdesc(sc, i, 0, 0, 0, 0);
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_PREREAD | BUS_DMASYNC_PREWRITE);
977 1.1 jmcneill
978 1.1 jmcneill /* Last descriptor in a packet contains DMA status */
979 1.12 ryo if ((tdes3 & EQOS_TDES3_TX_LD) != 0) {
980 1.12 ryo if ((tdes3 & EQOS_TDES3_TX_DE) != 0) {
981 1.1 jmcneill device_printf(sc->sc_dev,
982 1.1 jmcneill "TX [%u] desc error: 0x%08x\n",
983 1.1 jmcneill i, tdes3);
984 1.1 jmcneill if_statinc(ifp, if_oerrors);
985 1.12 ryo } else if ((tdes3 & EQOS_TDES3_TX_ES) != 0) {
986 1.1 jmcneill device_printf(sc->sc_dev,
987 1.1 jmcneill "TX [%u] tx error: 0x%08x\n",
988 1.1 jmcneill i, tdes3);
989 1.1 jmcneill if_statinc(ifp, if_oerrors);
990 1.1 jmcneill } else {
991 1.1 jmcneill if_statinc(ifp, if_opackets);
992 1.1 jmcneill }
993 1.1 jmcneill }
994 1.1 jmcneill
995 1.1 jmcneill }
996 1.1 jmcneill
997 1.1 jmcneill sc->sc_tx.next = i;
998 1.1 jmcneill
999 1.1 jmcneill if (pkts != 0) {
1000 1.1 jmcneill rnd_add_uint32(&sc->sc_rndsource, pkts);
1001 1.1 jmcneill }
1002 1.1 jmcneill }
1003 1.1 jmcneill
1004 1.1 jmcneill static void
1005 1.1 jmcneill eqos_start_locked(struct eqos_softc *sc)
1006 1.1 jmcneill {
1007 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
1008 1.1 jmcneill struct mbuf *m;
1009 1.1 jmcneill int cnt, nsegs, start;
1010 1.1 jmcneill
1011 1.1 jmcneill EQOS_ASSERT_TXLOCKED(sc);
1012 1.1 jmcneill
1013 1.16 thorpej if ((ifp->if_flags & IFF_RUNNING) == 0)
1014 1.1 jmcneill return;
1015 1.1 jmcneill
1016 1.1 jmcneill for (cnt = 0, start = sc->sc_tx.cur; ; cnt++) {
1017 1.1 jmcneill if (sc->sc_tx.queued >= TX_DESC_COUNT - TX_MAX_SEGS) {
1018 1.8 martin DPRINTF(EDEB_TXRING, "%u sc_tx.queued, ring full\n",
1019 1.8 martin sc->sc_tx.queued);
1020 1.1 jmcneill break;
1021 1.1 jmcneill }
1022 1.1 jmcneill
1023 1.1 jmcneill IFQ_POLL(&ifp->if_snd, m);
1024 1.8 martin if (m == NULL)
1025 1.1 jmcneill break;
1026 1.1 jmcneill
1027 1.1 jmcneill nsegs = eqos_setup_txbuf(sc, sc->sc_tx.cur, m);
1028 1.1 jmcneill if (nsegs <= 0) {
1029 1.8 martin DPRINTF(EDEB_TXRING, "eqos_setup_txbuf failed "
1030 1.8 martin "with %d\n", nsegs);
1031 1.16 thorpej if (nsegs == -2) {
1032 1.1 jmcneill IFQ_DEQUEUE(&ifp->if_snd, m);
1033 1.1 jmcneill m_freem(m);
1034 1.16 thorpej continue;
1035 1.1 jmcneill }
1036 1.1 jmcneill break;
1037 1.1 jmcneill }
1038 1.1 jmcneill
1039 1.1 jmcneill IFQ_DEQUEUE(&ifp->if_snd, m);
1040 1.1 jmcneill bpf_mtap(ifp, m, BPF_D_OUT);
1041 1.1 jmcneill
1042 1.1 jmcneill sc->sc_tx.cur = TX_SKIP(sc->sc_tx.cur, nsegs);
1043 1.1 jmcneill }
1044 1.1 jmcneill
1045 1.8 martin DPRINTF(EDEB_TXRING, "tx loop -> cnt = %u, cur: %u, next: %u, "
1046 1.8 martin "queued: %u\n", cnt, sc->sc_tx.cur, sc->sc_tx.next,
1047 1.8 martin sc->sc_tx.queued);
1048 1.8 martin
1049 1.1 jmcneill if (cnt != 0) {
1050 1.1 jmcneill eqos_dma_sync(sc, sc->sc_tx.desc_map,
1051 1.1 jmcneill start, sc->sc_tx.cur, TX_DESC_COUNT,
1052 1.1 jmcneill BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1053 1.1 jmcneill
1054 1.1 jmcneill /* Start and run TX DMA */
1055 1.8 martin DPRINTF(EDEB_TXRING, "sending desc %u at %lx upto "
1056 1.8 martin "%u-1 at %lx cur tx desc: %x cur tx buf: %x\n", start,
1057 1.8 martin (uint32_t)sc->sc_tx.desc_ring_paddr + DESC_OFF(start),
1058 1.8 martin sc->sc_tx.cur,
1059 1.8 martin (uint32_t)sc->sc_tx.desc_ring_paddr +
1060 1.8 martin DESC_OFF(sc->sc_tx.cur),
1061 1.8 martin RD4(sc, GMAC_DMA_CHAN0_CUR_TX_DESC),
1062 1.8 martin RD4(sc, GMAC_DMA_CHAN0_CUR_TX_BUF_ADDR));
1063 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_TX_END_ADDR,
1064 1.1 jmcneill (uint32_t)sc->sc_tx.desc_ring_paddr +
1065 1.1 jmcneill DESC_OFF(sc->sc_tx.cur));
1066 1.1 jmcneill }
1067 1.1 jmcneill }
1068 1.1 jmcneill
1069 1.1 jmcneill static void
1070 1.1 jmcneill eqos_start(struct ifnet *ifp)
1071 1.1 jmcneill {
1072 1.15 skrll struct eqos_softc * const sc = ifp->if_softc;
1073 1.1 jmcneill
1074 1.1 jmcneill EQOS_TXLOCK(sc);
1075 1.1 jmcneill eqos_start_locked(sc);
1076 1.1 jmcneill EQOS_TXUNLOCK(sc);
1077 1.1 jmcneill }
1078 1.1 jmcneill
1079 1.3 mrg static void
1080 1.3 mrg eqos_intr_mtl(struct eqos_softc *sc, uint32_t mtl_status)
1081 1.3 mrg {
1082 1.3 mrg uint32_t debug_data __unused = 0, ictrl = 0;
1083 1.3 mrg
1084 1.3 mrg if (mtl_status == 0)
1085 1.3 mrg return;
1086 1.3 mrg
1087 1.3 mrg /* Drain the errors reported by MTL_INTERRUPT_STATUS */
1088 1.3 mrg sc->sc_ev_mtl.ev_count++;
1089 1.3 mrg
1090 1.3 mrg if ((mtl_status & GMAC_MTL_INTERRUPT_STATUS_DBGIS) != 0) {
1091 1.3 mrg debug_data = RD4(sc, GMAC_MTL_FIFO_DEBUG_DATA);
1092 1.3 mrg sc->sc_ev_mtl_debugdata.ev_count++;
1093 1.3 mrg }
1094 1.3 mrg if ((mtl_status & GMAC_MTL_INTERRUPT_STATUS_Q0IS) != 0) {
1095 1.3 mrg uint32_t new_status = 0;
1096 1.3 mrg
1097 1.3 mrg ictrl = RD4(sc, GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS);
1098 1.3 mrg if ((ictrl & GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_RXOVFIS) != 0) {
1099 1.3 mrg new_status |= GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_RXOVFIS;
1100 1.3 mrg sc->sc_ev_mtl_rxovfis.ev_count++;
1101 1.3 mrg }
1102 1.3 mrg if ((ictrl & GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_TXUNFIS) != 0) {
1103 1.3 mrg new_status |= GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_TXUNFIS;
1104 1.3 mrg sc->sc_ev_mtl_txovfis.ev_count++;
1105 1.3 mrg }
1106 1.3 mrg if (new_status) {
1107 1.3 mrg new_status |= (ictrl &
1108 1.23 msaitoh (GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_RXOIE |
1109 1.3 mrg GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS_TXUIE));
1110 1.3 mrg WR4(sc, GMAC_MTL_Q0_INTERRUPT_CTRL_STATUS, new_status);
1111 1.3 mrg }
1112 1.3 mrg }
1113 1.8 martin DPRINTF(EDEB_INTR,
1114 1.3 mrg "GMAC_MTL_INTERRUPT_STATUS = 0x%08X, "
1115 1.3 mrg "GMAC_MTL_FIFO_DEBUG_DATA = 0x%08X, "
1116 1.3 mrg "GMAC_MTL_INTERRUPT_STATUS_Q0IS = 0x%08X\n",
1117 1.3 mrg mtl_status, debug_data, ictrl);
1118 1.3 mrg }
1119 1.3 mrg
1120 1.1 jmcneill int
1121 1.1 jmcneill eqos_intr(void *arg)
1122 1.1 jmcneill {
1123 1.15 skrll struct eqos_softc * const sc = arg;
1124 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
1125 1.1 jmcneill uint32_t mac_status, mtl_status, dma_status, rx_tx_status;
1126 1.1 jmcneill
1127 1.2 mrg sc->sc_ev_intr.ev_count++;
1128 1.2 mrg
1129 1.1 jmcneill mac_status = RD4(sc, GMAC_MAC_INTERRUPT_STATUS);
1130 1.1 jmcneill mac_status &= RD4(sc, GMAC_MAC_INTERRUPT_ENABLE);
1131 1.1 jmcneill
1132 1.1 jmcneill if (mac_status) {
1133 1.2 mrg sc->sc_ev_mac.ev_count++;
1134 1.8 martin DPRINTF(EDEB_INTR,
1135 1.1 jmcneill "GMAC_MAC_INTERRUPT_STATUS = 0x%08X\n", mac_status);
1136 1.1 jmcneill }
1137 1.1 jmcneill
1138 1.1 jmcneill mtl_status = RD4(sc, GMAC_MTL_INTERRUPT_STATUS);
1139 1.3 mrg eqos_intr_mtl(sc, mtl_status);
1140 1.1 jmcneill
1141 1.1 jmcneill dma_status = RD4(sc, GMAC_DMA_CHAN0_STATUS);
1142 1.1 jmcneill dma_status &= RD4(sc, GMAC_DMA_CHAN0_INTR_ENABLE);
1143 1.1 jmcneill if (dma_status) {
1144 1.1 jmcneill WR4(sc, GMAC_DMA_CHAN0_STATUS, dma_status);
1145 1.1 jmcneill }
1146 1.1 jmcneill
1147 1.1 jmcneill EQOS_LOCK(sc);
1148 1.1 jmcneill if ((dma_status & GMAC_DMA_CHAN0_STATUS_RI) != 0) {
1149 1.1 jmcneill eqos_rxintr(sc, 0);
1150 1.2 mrg sc->sc_ev_rxintr.ev_count++;
1151 1.1 jmcneill }
1152 1.1 jmcneill
1153 1.1 jmcneill if ((dma_status & GMAC_DMA_CHAN0_STATUS_TI) != 0) {
1154 1.26 msaitoh EQOS_TXLOCK(sc);
1155 1.1 jmcneill eqos_txintr(sc, 0);
1156 1.26 msaitoh EQOS_TXUNLOCK(sc);
1157 1.1 jmcneill if_schedule_deferred_start(ifp);
1158 1.2 mrg sc->sc_ev_txintr.ev_count++;
1159 1.1 jmcneill }
1160 1.1 jmcneill EQOS_UNLOCK(sc);
1161 1.1 jmcneill
1162 1.1 jmcneill if ((mac_status | mtl_status | dma_status) == 0) {
1163 1.8 martin DPRINTF(EDEB_NOTE, "spurious interrupt?!\n");
1164 1.1 jmcneill }
1165 1.1 jmcneill
1166 1.1 jmcneill rx_tx_status = RD4(sc, GMAC_MAC_RX_TX_STATUS);
1167 1.1 jmcneill if (rx_tx_status) {
1168 1.2 mrg sc->sc_ev_status.ev_count++;
1169 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_RWT) != 0)
1170 1.2 mrg sc->sc_ev_rwt.ev_count++;
1171 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_EXCOL) != 0)
1172 1.2 mrg sc->sc_ev_excol.ev_count++;
1173 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_LCOL) != 0)
1174 1.2 mrg sc->sc_ev_lcol.ev_count++;
1175 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_EXDEF) != 0)
1176 1.2 mrg sc->sc_ev_exdef.ev_count++;
1177 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_LCARR) != 0)
1178 1.2 mrg sc->sc_ev_lcarr.ev_count++;
1179 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_NCARR) != 0)
1180 1.2 mrg sc->sc_ev_ncarr.ev_count++;
1181 1.2 mrg if ((rx_tx_status & GMAC_MAC_RX_TX_STATUS_TJT) != 0)
1182 1.2 mrg sc->sc_ev_tjt.ev_count++;
1183 1.8 martin
1184 1.8 martin DPRINTF(EDEB_INTR, "GMAC_MAC_RX_TX_STATUS = 0x%08x\n",
1185 1.1 jmcneill rx_tx_status);
1186 1.1 jmcneill }
1187 1.1 jmcneill
1188 1.1 jmcneill return 1;
1189 1.1 jmcneill }
1190 1.1 jmcneill
1191 1.1 jmcneill static int
1192 1.1 jmcneill eqos_ioctl(struct ifnet *ifp, u_long cmd, void *data)
1193 1.1 jmcneill {
1194 1.15 skrll struct eqos_softc * const sc = ifp->if_softc;
1195 1.15 skrll struct ifreq * const ifr = (struct ifreq *)data;
1196 1.1 jmcneill int error, s;
1197 1.1 jmcneill
1198 1.1 jmcneill #ifndef EQOS_MPSAFE
1199 1.1 jmcneill s = splnet();
1200 1.1 jmcneill #endif
1201 1.1 jmcneill
1202 1.1 jmcneill switch (cmd) {
1203 1.13 ryo case SIOCSIFMTU:
1204 1.13 ryo if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > EQOS_MAX_MTU) {
1205 1.13 ryo error = EINVAL;
1206 1.13 ryo } else {
1207 1.13 ryo ifp->if_mtu = ifr->ifr_mtu;
1208 1.13 ryo error = 0; /* no need ENETRESET */
1209 1.13 ryo }
1210 1.13 ryo break;
1211 1.1 jmcneill default:
1212 1.1 jmcneill #ifdef EQOS_MPSAFE
1213 1.1 jmcneill s = splnet();
1214 1.1 jmcneill #endif
1215 1.1 jmcneill error = ether_ioctl(ifp, cmd, data);
1216 1.1 jmcneill #ifdef EQOS_MPSAFE
1217 1.1 jmcneill splx(s);
1218 1.1 jmcneill #endif
1219 1.1 jmcneill if (error != ENETRESET)
1220 1.1 jmcneill break;
1221 1.1 jmcneill
1222 1.1 jmcneill error = 0;
1223 1.1 jmcneill
1224 1.1 jmcneill if (cmd == SIOCSIFCAP)
1225 1.1 jmcneill error = (*ifp->if_init)(ifp);
1226 1.1 jmcneill else if (cmd != SIOCADDMULTI && cmd != SIOCDELMULTI)
1227 1.1 jmcneill ;
1228 1.1 jmcneill else if ((ifp->if_flags & IFF_RUNNING) != 0) {
1229 1.1 jmcneill EQOS_LOCK(sc);
1230 1.1 jmcneill eqos_setup_rxfilter(sc);
1231 1.1 jmcneill EQOS_UNLOCK(sc);
1232 1.1 jmcneill }
1233 1.1 jmcneill break;
1234 1.1 jmcneill }
1235 1.1 jmcneill
1236 1.1 jmcneill #ifndef EQOS_MPSAFE
1237 1.1 jmcneill splx(s);
1238 1.1 jmcneill #endif
1239 1.1 jmcneill
1240 1.1 jmcneill return error;
1241 1.1 jmcneill }
1242 1.1 jmcneill
1243 1.1 jmcneill static void
1244 1.1 jmcneill eqos_get_eaddr(struct eqos_softc *sc, uint8_t *eaddr)
1245 1.1 jmcneill {
1246 1.1 jmcneill prop_dictionary_t prop = device_properties(sc->sc_dev);
1247 1.1 jmcneill uint32_t maclo, machi;
1248 1.1 jmcneill prop_data_t eaprop;
1249 1.1 jmcneill
1250 1.1 jmcneill eaprop = prop_dictionary_get(prop, "mac-address");
1251 1.1 jmcneill if (eaprop != NULL) {
1252 1.1 jmcneill KASSERT(prop_object_type(eaprop) == PROP_TYPE_DATA);
1253 1.1 jmcneill KASSERT(prop_data_size(eaprop) == ETHER_ADDR_LEN);
1254 1.1 jmcneill memcpy(eaddr, prop_data_value(eaprop),
1255 1.1 jmcneill ETHER_ADDR_LEN);
1256 1.1 jmcneill return;
1257 1.1 jmcneill }
1258 1.1 jmcneill
1259 1.18 msaitoh maclo = RD4(sc, GMAC_MAC_ADDRESS0_LOW);
1260 1.18 msaitoh machi = RD4(sc, GMAC_MAC_ADDRESS0_HIGH) & 0xFFFF;
1261 1.18 msaitoh if ((maclo & 0x00000001) != 0) {
1262 1.18 msaitoh aprint_error_dev(sc->sc_dev,
1263 1.18 msaitoh "Wrong MAC address. Clear the multicast bit.\n");
1264 1.18 msaitoh maclo &= ~0x00000001;
1265 1.18 msaitoh }
1266 1.1 jmcneill
1267 1.1 jmcneill if (maclo == 0xFFFFFFFF && machi == 0xFFFF) {
1268 1.1 jmcneill /* Create one */
1269 1.1 jmcneill maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
1270 1.1 jmcneill machi = cprng_strong32() & 0xffff;
1271 1.1 jmcneill }
1272 1.1 jmcneill
1273 1.1 jmcneill eaddr[0] = maclo & 0xff;
1274 1.1 jmcneill eaddr[1] = (maclo >> 8) & 0xff;
1275 1.1 jmcneill eaddr[2] = (maclo >> 16) & 0xff;
1276 1.1 jmcneill eaddr[3] = (maclo >> 24) & 0xff;
1277 1.1 jmcneill eaddr[4] = machi & 0xff;
1278 1.1 jmcneill eaddr[5] = (machi >> 8) & 0xff;
1279 1.1 jmcneill }
1280 1.1 jmcneill
1281 1.1 jmcneill static void
1282 1.27 msaitoh eqos_get_dma_pbl(struct eqos_softc *sc)
1283 1.27 msaitoh {
1284 1.27 msaitoh prop_dictionary_t prop = device_properties(sc->sc_dev);
1285 1.27 msaitoh uint32_t pbl;
1286 1.27 msaitoh
1287 1.27 msaitoh /* Set default values. */
1288 1.27 msaitoh sc->sc_dma_txpbl = sc->sc_dma_rxpbl = EQOS_DMA_PBL_DEFAULT;
1289 1.27 msaitoh
1290 1.27 msaitoh /* Get values from props. */
1291 1.27 msaitoh if (prop_dictionary_get_uint32(prop, "snps,pbl", &pbl) && pbl)
1292 1.27 msaitoh sc->sc_dma_txpbl = sc->sc_dma_rxpbl = pbl;
1293 1.27 msaitoh if (prop_dictionary_get_uint32(prop, "snps,txpbl", &pbl) && pbl)
1294 1.27 msaitoh sc->sc_dma_txpbl = pbl;
1295 1.27 msaitoh if (prop_dictionary_get_uint32(prop, "snps,rxpbl", &pbl) && pbl)
1296 1.27 msaitoh sc->sc_dma_rxpbl = pbl;
1297 1.27 msaitoh }
1298 1.27 msaitoh
1299 1.27 msaitoh static void
1300 1.1 jmcneill eqos_axi_configure(struct eqos_softc *sc)
1301 1.1 jmcneill {
1302 1.1 jmcneill prop_dictionary_t prop = device_properties(sc->sc_dev);
1303 1.1 jmcneill uint32_t val;
1304 1.1 jmcneill u_int uival;
1305 1.1 jmcneill bool bval;
1306 1.1 jmcneill
1307 1.1 jmcneill val = RD4(sc, GMAC_DMA_SYSBUS_MODE);
1308 1.1 jmcneill if (prop_dictionary_get_bool(prop, "snps,mixed-burst", &bval) && bval) {
1309 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_MB;
1310 1.1 jmcneill }
1311 1.1 jmcneill if (prop_dictionary_get_bool(prop, "snps,fixed-burst", &bval) && bval) {
1312 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_FB;
1313 1.1 jmcneill }
1314 1.1 jmcneill if (prop_dictionary_get_uint(prop, "snps,wr_osr_lmt", &uival)) {
1315 1.1 jmcneill val &= ~GMAC_DMA_SYSBUS_MODE_WR_OSR_LMT_MASK;
1316 1.1 jmcneill val |= uival << GMAC_DMA_SYSBUS_MODE_WR_OSR_LMT_SHIFT;
1317 1.1 jmcneill }
1318 1.1 jmcneill if (prop_dictionary_get_uint(prop, "snps,rd_osr_lmt", &uival)) {
1319 1.1 jmcneill val &= ~GMAC_DMA_SYSBUS_MODE_RD_OSR_LMT_MASK;
1320 1.1 jmcneill val |= uival << GMAC_DMA_SYSBUS_MODE_RD_OSR_LMT_SHIFT;
1321 1.1 jmcneill }
1322 1.1 jmcneill
1323 1.1 jmcneill if (!EQOS_HW_FEATURE_ADDR64_32BIT(sc)) {
1324 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_EAME;
1325 1.1 jmcneill }
1326 1.1 jmcneill
1327 1.1 jmcneill /* XXX */
1328 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_BLEN16;
1329 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_BLEN8;
1330 1.1 jmcneill val |= GMAC_DMA_SYSBUS_MODE_BLEN4;
1331 1.1 jmcneill
1332 1.1 jmcneill WR4(sc, GMAC_DMA_SYSBUS_MODE, val);
1333 1.1 jmcneill }
1334 1.1 jmcneill
1335 1.1 jmcneill static int
1336 1.1 jmcneill eqos_setup_dma(struct eqos_softc *sc, int qid)
1337 1.1 jmcneill {
1338 1.1 jmcneill struct mbuf *m;
1339 1.1 jmcneill int error, nsegs, i;
1340 1.1 jmcneill
1341 1.25 msaitoh /* Set back pointer */
1342 1.25 msaitoh sc->sc_tx.sc = sc;
1343 1.25 msaitoh sc->sc_rx.sc = sc;
1344 1.25 msaitoh
1345 1.1 jmcneill /* Setup TX ring */
1346 1.1 jmcneill error = bus_dmamap_create(sc->sc_dmat, TX_DESC_SIZE, 1, TX_DESC_SIZE,
1347 1.1 jmcneill DESC_BOUNDARY, BUS_DMA_WAITOK, &sc->sc_tx.desc_map);
1348 1.1 jmcneill if (error) {
1349 1.1 jmcneill return error;
1350 1.1 jmcneill }
1351 1.1 jmcneill error = bus_dmamem_alloc(sc->sc_dmat, TX_DESC_SIZE, DESC_ALIGN,
1352 1.1 jmcneill DESC_BOUNDARY, &sc->sc_tx.desc_dmaseg, 1, &nsegs, BUS_DMA_WAITOK);
1353 1.1 jmcneill if (error) {
1354 1.1 jmcneill return error;
1355 1.1 jmcneill }
1356 1.1 jmcneill error = bus_dmamem_map(sc->sc_dmat, &sc->sc_tx.desc_dmaseg, nsegs,
1357 1.1 jmcneill TX_DESC_SIZE, (void *)&sc->sc_tx.desc_ring, BUS_DMA_WAITOK);
1358 1.1 jmcneill if (error) {
1359 1.1 jmcneill return error;
1360 1.1 jmcneill }
1361 1.1 jmcneill error = bus_dmamap_load(sc->sc_dmat, sc->sc_tx.desc_map,
1362 1.1 jmcneill sc->sc_tx.desc_ring, TX_DESC_SIZE, NULL, BUS_DMA_WAITOK);
1363 1.1 jmcneill if (error) {
1364 1.1 jmcneill return error;
1365 1.1 jmcneill }
1366 1.1 jmcneill sc->sc_tx.desc_ring_paddr = sc->sc_tx.desc_map->dm_segs[0].ds_addr;
1367 1.1 jmcneill
1368 1.1 jmcneill memset(sc->sc_tx.desc_ring, 0, TX_DESC_SIZE);
1369 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, sc->sc_tx.desc_map, 0, TX_DESC_SIZE,
1370 1.1 jmcneill BUS_DMASYNC_PREWRITE);
1371 1.1 jmcneill
1372 1.1 jmcneill sc->sc_tx.queued = TX_DESC_COUNT;
1373 1.1 jmcneill for (i = 0; i < TX_DESC_COUNT; i++) {
1374 1.13 ryo error = bus_dmamap_create(sc->sc_dmat, EQOS_TXDMA_SIZE,
1375 1.1 jmcneill TX_MAX_SEGS, MCLBYTES, 0, BUS_DMA_WAITOK,
1376 1.1 jmcneill &sc->sc_tx.buf_map[i].map);
1377 1.1 jmcneill if (error != 0) {
1378 1.1 jmcneill device_printf(sc->sc_dev,
1379 1.1 jmcneill "cannot create TX buffer map\n");
1380 1.1 jmcneill return error;
1381 1.1 jmcneill }
1382 1.26 msaitoh EQOS_TXLOCK(sc);
1383 1.1 jmcneill eqos_setup_txdesc(sc, i, 0, 0, 0, 0);
1384 1.26 msaitoh EQOS_TXUNLOCK(sc);
1385 1.1 jmcneill }
1386 1.1 jmcneill
1387 1.1 jmcneill /* Setup RX ring */
1388 1.1 jmcneill error = bus_dmamap_create(sc->sc_dmat, RX_DESC_SIZE, 1, RX_DESC_SIZE,
1389 1.1 jmcneill DESC_BOUNDARY, BUS_DMA_WAITOK, &sc->sc_rx.desc_map);
1390 1.1 jmcneill if (error) {
1391 1.1 jmcneill return error;
1392 1.1 jmcneill }
1393 1.1 jmcneill error = bus_dmamem_alloc(sc->sc_dmat, RX_DESC_SIZE, DESC_ALIGN,
1394 1.1 jmcneill DESC_BOUNDARY, &sc->sc_rx.desc_dmaseg, 1, &nsegs, BUS_DMA_WAITOK);
1395 1.1 jmcneill if (error) {
1396 1.1 jmcneill return error;
1397 1.1 jmcneill }
1398 1.1 jmcneill error = bus_dmamem_map(sc->sc_dmat, &sc->sc_rx.desc_dmaseg, nsegs,
1399 1.1 jmcneill RX_DESC_SIZE, (void *)&sc->sc_rx.desc_ring, BUS_DMA_WAITOK);
1400 1.1 jmcneill if (error) {
1401 1.1 jmcneill return error;
1402 1.1 jmcneill }
1403 1.1 jmcneill error = bus_dmamap_load(sc->sc_dmat, sc->sc_rx.desc_map,
1404 1.1 jmcneill sc->sc_rx.desc_ring, RX_DESC_SIZE, NULL, BUS_DMA_WAITOK);
1405 1.1 jmcneill if (error) {
1406 1.1 jmcneill return error;
1407 1.1 jmcneill }
1408 1.1 jmcneill sc->sc_rx.desc_ring_paddr = sc->sc_rx.desc_map->dm_segs[0].ds_addr;
1409 1.1 jmcneill
1410 1.1 jmcneill memset(sc->sc_rx.desc_ring, 0, RX_DESC_SIZE);
1411 1.1 jmcneill
1412 1.1 jmcneill for (i = 0; i < RX_DESC_COUNT; i++) {
1413 1.1 jmcneill error = bus_dmamap_create(sc->sc_dmat, MCLBYTES,
1414 1.1 jmcneill RX_DESC_COUNT, MCLBYTES, 0, BUS_DMA_WAITOK,
1415 1.1 jmcneill &sc->sc_rx.buf_map[i].map);
1416 1.1 jmcneill if (error != 0) {
1417 1.1 jmcneill device_printf(sc->sc_dev,
1418 1.1 jmcneill "cannot create RX buffer map\n");
1419 1.1 jmcneill return error;
1420 1.1 jmcneill }
1421 1.1 jmcneill if ((m = eqos_alloc_mbufcl(sc)) == NULL) {
1422 1.1 jmcneill device_printf(sc->sc_dev, "cannot allocate RX mbuf\n");
1423 1.1 jmcneill return ENOMEM;
1424 1.1 jmcneill }
1425 1.1 jmcneill error = eqos_setup_rxbuf(sc, i, m);
1426 1.1 jmcneill if (error != 0) {
1427 1.1 jmcneill device_printf(sc->sc_dev, "cannot create RX buffer\n");
1428 1.1 jmcneill return error;
1429 1.1 jmcneill }
1430 1.13 ryo eqos_setup_rxdesc(sc, i,
1431 1.13 ryo sc->sc_rx.buf_map[i].map->dm_segs[0].ds_addr);
1432 1.1 jmcneill }
1433 1.1 jmcneill bus_dmamap_sync(sc->sc_dmat, sc->sc_rx.desc_map,
1434 1.1 jmcneill 0, sc->sc_rx.desc_map->dm_mapsize,
1435 1.1 jmcneill BUS_DMASYNC_PREWRITE);
1436 1.1 jmcneill
1437 1.1 jmcneill aprint_debug_dev(sc->sc_dev, "TX ring @ 0x%lX, RX ring @ 0x%lX\n",
1438 1.1 jmcneill sc->sc_tx.desc_ring_paddr, sc->sc_rx.desc_ring_paddr);
1439 1.1 jmcneill
1440 1.1 jmcneill return 0;
1441 1.1 jmcneill }
1442 1.1 jmcneill
1443 1.1 jmcneill int
1444 1.1 jmcneill eqos_attach(struct eqos_softc *sc)
1445 1.1 jmcneill {
1446 1.15 skrll struct mii_data * const mii = &sc->sc_mii;
1447 1.15 skrll struct ifnet * const ifp = &sc->sc_ec.ec_if;
1448 1.1 jmcneill uint8_t eaddr[ETHER_ADDR_LEN];
1449 1.1 jmcneill u_int userver, snpsver;
1450 1.1 jmcneill int error;
1451 1.1 jmcneill int n;
1452 1.1 jmcneill
1453 1.25 msaitoh #ifdef EQOS_DEBUG
1454 1.25 msaitoh /* Load the default debug flags. */
1455 1.25 msaitoh sc->sc_debug = eqos_debug;
1456 1.25 msaitoh #endif
1457 1.25 msaitoh
1458 1.1 jmcneill const uint32_t ver = RD4(sc, GMAC_MAC_VERSION);
1459 1.1 jmcneill userver = (ver & GMAC_MAC_VERSION_USERVER_MASK) >>
1460 1.1 jmcneill GMAC_MAC_VERSION_USERVER_SHIFT;
1461 1.1 jmcneill snpsver = ver & GMAC_MAC_VERSION_SNPSVER_MASK;
1462 1.1 jmcneill
1463 1.20 msaitoh if ((snpsver < 0x51) || (snpsver > 0x52)) {
1464 1.23 msaitoh aprint_error(": EQOS version 0x%02xx not supported\n",
1465 1.23 msaitoh snpsver);
1466 1.23 msaitoh return ENXIO;
1467 1.23 msaitoh }
1468 1.1 jmcneill
1469 1.1 jmcneill if (sc->sc_csr_clock < 20000000) {
1470 1.1 jmcneill aprint_error(": CSR clock too low\n");
1471 1.1 jmcneill return EINVAL;
1472 1.1 jmcneill } else if (sc->sc_csr_clock < 35000000) {
1473 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_20_35;
1474 1.1 jmcneill } else if (sc->sc_csr_clock < 60000000) {
1475 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_35_60;
1476 1.1 jmcneill } else if (sc->sc_csr_clock < 100000000) {
1477 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_60_100;
1478 1.1 jmcneill } else if (sc->sc_csr_clock < 150000000) {
1479 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_100_150;
1480 1.1 jmcneill } else if (sc->sc_csr_clock < 250000000) {
1481 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_150_250;
1482 1.1 jmcneill } else if (sc->sc_csr_clock < 300000000) {
1483 1.19 msaitoh sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_250_300;
1484 1.19 msaitoh } else if (sc->sc_csr_clock < 500000000) {
1485 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_300_500;
1486 1.1 jmcneill } else if (sc->sc_csr_clock < 800000000) {
1487 1.1 jmcneill sc->sc_clock_range = GMAC_MAC_MDIO_ADDRESS_CR_500_800;
1488 1.1 jmcneill } else {
1489 1.1 jmcneill aprint_error(": CSR clock too high\n");
1490 1.1 jmcneill return EINVAL;
1491 1.1 jmcneill }
1492 1.1 jmcneill
1493 1.1 jmcneill for (n = 0; n < 4; n++) {
1494 1.1 jmcneill sc->sc_hw_feature[n] = RD4(sc, GMAC_MAC_HW_FEATURE(n));
1495 1.1 jmcneill }
1496 1.1 jmcneill
1497 1.1 jmcneill aprint_naive("\n");
1498 1.1 jmcneill aprint_normal(": DesignWare EQOS ver 0x%02x (0x%02x)\n",
1499 1.1 jmcneill snpsver, userver);
1500 1.1 jmcneill aprint_verbose_dev(sc->sc_dev, "hw features %08x %08x %08x %08x\n",
1501 1.1 jmcneill sc->sc_hw_feature[0], sc->sc_hw_feature[1],
1502 1.1 jmcneill sc->sc_hw_feature[2], sc->sc_hw_feature[3]);
1503 1.1 jmcneill
1504 1.1 jmcneill if (EQOS_HW_FEATURE_ADDR64_32BIT(sc)) {
1505 1.1 jmcneill bus_dma_tag_t ntag;
1506 1.1 jmcneill
1507 1.1 jmcneill error = bus_dmatag_subregion(sc->sc_dmat, 0, UINT32_MAX,
1508 1.1 jmcneill &ntag, 0);
1509 1.1 jmcneill if (error) {
1510 1.1 jmcneill aprint_error_dev(sc->sc_dev,
1511 1.1 jmcneill "failed to restrict DMA: %d\n", error);
1512 1.1 jmcneill return error;
1513 1.1 jmcneill }
1514 1.1 jmcneill aprint_verbose_dev(sc->sc_dev, "using 32-bit DMA\n");
1515 1.1 jmcneill sc->sc_dmat = ntag;
1516 1.1 jmcneill }
1517 1.1 jmcneill
1518 1.1 jmcneill mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NET);
1519 1.1 jmcneill mutex_init(&sc->sc_txlock, MUTEX_DEFAULT, IPL_NET);
1520 1.1 jmcneill callout_init(&sc->sc_stat_ch, CALLOUT_FLAGS);
1521 1.1 jmcneill callout_setfunc(&sc->sc_stat_ch, eqos_tick, sc);
1522 1.1 jmcneill
1523 1.1 jmcneill eqos_get_eaddr(sc, eaddr);
1524 1.23 msaitoh aprint_normal_dev(sc->sc_dev,
1525 1.23 msaitoh "Ethernet address %s\n", ether_sprintf(eaddr));
1526 1.1 jmcneill
1527 1.1 jmcneill /* Soft reset EMAC core */
1528 1.1 jmcneill error = eqos_reset(sc);
1529 1.1 jmcneill if (error != 0) {
1530 1.1 jmcneill return error;
1531 1.1 jmcneill }
1532 1.1 jmcneill
1533 1.27 msaitoh /* Get DMA burst length */
1534 1.27 msaitoh eqos_get_dma_pbl(sc);
1535 1.27 msaitoh
1536 1.1 jmcneill /* Configure AXI Bus mode parameters */
1537 1.1 jmcneill eqos_axi_configure(sc);
1538 1.1 jmcneill
1539 1.1 jmcneill /* Setup DMA descriptors */
1540 1.1 jmcneill if (eqos_setup_dma(sc, 0) != 0) {
1541 1.23 msaitoh aprint_error_dev(sc->sc_dev,
1542 1.23 msaitoh "failed to setup DMA descriptors\n");
1543 1.1 jmcneill return EINVAL;
1544 1.1 jmcneill }
1545 1.1 jmcneill
1546 1.1 jmcneill /* Setup ethernet interface */
1547 1.1 jmcneill ifp->if_softc = sc;
1548 1.1 jmcneill snprintf(ifp->if_xname, IFNAMSIZ, "%s", device_xname(sc->sc_dev));
1549 1.1 jmcneill ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1550 1.1 jmcneill #ifdef EQOS_MPSAFE
1551 1.1 jmcneill ifp->if_extflags = IFEF_MPSAFE;
1552 1.1 jmcneill #endif
1553 1.1 jmcneill ifp->if_start = eqos_start;
1554 1.1 jmcneill ifp->if_ioctl = eqos_ioctl;
1555 1.1 jmcneill ifp->if_init = eqos_init;
1556 1.1 jmcneill ifp->if_stop = eqos_stop;
1557 1.1 jmcneill ifp->if_capabilities = 0;
1558 1.1 jmcneill ifp->if_capenable = ifp->if_capabilities;
1559 1.1 jmcneill IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
1560 1.1 jmcneill IFQ_SET_READY(&ifp->if_snd);
1561 1.1 jmcneill
1562 1.13 ryo /* 802.1Q VLAN-sized frames, and jumbo frame are supported */
1563 1.1 jmcneill sc->sc_ec.ec_capabilities |= ETHERCAP_VLAN_MTU;
1564 1.13 ryo sc->sc_ec.ec_capabilities |= ETHERCAP_JUMBO_MTU;
1565 1.1 jmcneill
1566 1.1 jmcneill /* Attach MII driver */
1567 1.1 jmcneill sc->sc_ec.ec_mii = mii;
1568 1.1 jmcneill ifmedia_init(&mii->mii_media, 0, ether_mediachange, ether_mediastatus);
1569 1.1 jmcneill mii->mii_ifp = ifp;
1570 1.1 jmcneill mii->mii_readreg = eqos_mii_readreg;
1571 1.1 jmcneill mii->mii_writereg = eqos_mii_writereg;
1572 1.1 jmcneill mii->mii_statchg = eqos_mii_statchg;
1573 1.1 jmcneill mii_attach(sc->sc_dev, mii, 0xffffffff, sc->sc_phy_id, MII_OFFSET_ANY,
1574 1.28 msaitoh MIIF_DOPAUSE);
1575 1.1 jmcneill
1576 1.1 jmcneill if (LIST_EMPTY(&mii->mii_phys)) {
1577 1.1 jmcneill aprint_error_dev(sc->sc_dev, "no PHY found!\n");
1578 1.1 jmcneill return ENOENT;
1579 1.1 jmcneill }
1580 1.1 jmcneill ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
1581 1.1 jmcneill
1582 1.2 mrg /* Master interrupt evcnt */
1583 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_intr, EVCNT_TYPE_INTR,
1584 1.2 mrg NULL, device_xname(sc->sc_dev), "interrupts");
1585 1.2 mrg
1586 1.2 mrg /* Per-interrupt type, using main interrupt */
1587 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_rxintr, EVCNT_TYPE_INTR,
1588 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "rxintr");
1589 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_txintr, EVCNT_TYPE_INTR,
1590 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "txintr");
1591 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_mac, EVCNT_TYPE_INTR,
1592 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "macstatus");
1593 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl, EVCNT_TYPE_INTR,
1594 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "intrstatus");
1595 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_status, EVCNT_TYPE_INTR,
1596 1.2 mrg &sc->sc_ev_intr, device_xname(sc->sc_dev), "rxtxstatus");
1597 1.2 mrg
1598 1.3 mrg /* MAC Status specific type, using macstatus interrupt */
1599 1.3 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl_debugdata, EVCNT_TYPE_INTR,
1600 1.3 mrg &sc->sc_ev_mtl, device_xname(sc->sc_dev), "debugdata");
1601 1.3 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl_rxovfis, EVCNT_TYPE_INTR,
1602 1.3 mrg &sc->sc_ev_mtl, device_xname(sc->sc_dev), "rxovfis");
1603 1.3 mrg evcnt_attach_dynamic(&sc->sc_ev_mtl_txovfis, EVCNT_TYPE_INTR,
1604 1.3 mrg &sc->sc_ev_mtl, device_xname(sc->sc_dev), "txovfis");
1605 1.3 mrg
1606 1.2 mrg /* RX/TX Status specific type, using rxtxstatus interrupt */
1607 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_rwt, EVCNT_TYPE_INTR,
1608 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "rwt");
1609 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_excol, EVCNT_TYPE_INTR,
1610 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "excol");
1611 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_lcol, EVCNT_TYPE_INTR,
1612 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "lcol");
1613 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_exdef, EVCNT_TYPE_INTR,
1614 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "exdef");
1615 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_lcarr, EVCNT_TYPE_INTR,
1616 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "lcarr");
1617 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_ncarr, EVCNT_TYPE_INTR,
1618 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "ncarr");
1619 1.2 mrg evcnt_attach_dynamic(&sc->sc_ev_tjt, EVCNT_TYPE_INTR,
1620 1.2 mrg &sc->sc_ev_status, device_xname(sc->sc_dev), "tjt");
1621 1.2 mrg
1622 1.1 jmcneill /* Attach interface */
1623 1.1 jmcneill if_attach(ifp);
1624 1.1 jmcneill if_deferred_start_init(ifp, NULL);
1625 1.1 jmcneill
1626 1.1 jmcneill /* Attach ethernet interface */
1627 1.1 jmcneill ether_ifattach(ifp, eaddr);
1628 1.1 jmcneill
1629 1.25 msaitoh eqos_init_sysctls(sc);
1630 1.25 msaitoh
1631 1.1 jmcneill rnd_attach_source(&sc->sc_rndsource, ifp->if_xname, RND_TYPE_NET,
1632 1.1 jmcneill RND_FLAG_DEFAULT);
1633 1.1 jmcneill
1634 1.1 jmcneill return 0;
1635 1.1 jmcneill }
1636 1.25 msaitoh
1637 1.25 msaitoh static void
1638 1.25 msaitoh eqos_init_sysctls(struct eqos_softc *sc)
1639 1.25 msaitoh {
1640 1.25 msaitoh struct sysctllog **log;
1641 1.25 msaitoh const struct sysctlnode *rnode, *qnode, *cnode;
1642 1.25 msaitoh const char *dvname;
1643 1.25 msaitoh int i, rv;
1644 1.25 msaitoh
1645 1.25 msaitoh log = &sc->sc_sysctllog;
1646 1.25 msaitoh dvname = device_xname(sc->sc_dev);
1647 1.25 msaitoh
1648 1.25 msaitoh rv = sysctl_createv(log, 0, NULL, &rnode,
1649 1.25 msaitoh 0, CTLTYPE_NODE, dvname,
1650 1.25 msaitoh SYSCTL_DESCR("eqos information and settings"),
1651 1.25 msaitoh NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
1652 1.25 msaitoh if (rv != 0)
1653 1.25 msaitoh goto err;
1654 1.25 msaitoh
1655 1.25 msaitoh for (i = 0; i < 1; i++) {
1656 1.25 msaitoh struct eqos_ring *txr = &sc->sc_tx;
1657 1.25 msaitoh struct eqos_ring *rxr = &sc->sc_rx;
1658 1.25 msaitoh const unsigned char *name = "q0";
1659 1.25 msaitoh
1660 1.25 msaitoh if (sysctl_createv(log, 0, &rnode, &qnode,
1661 1.25 msaitoh 0, CTLTYPE_NODE,
1662 1.25 msaitoh name, SYSCTL_DESCR("Queue Name"),
1663 1.25 msaitoh NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL) != 0)
1664 1.25 msaitoh break;
1665 1.25 msaitoh
1666 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1667 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1668 1.25 msaitoh "txs_cur", SYSCTL_DESCR("TX cur"),
1669 1.25 msaitoh NULL, 0, &txr->cur,
1670 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1671 1.25 msaitoh break;
1672 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1673 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1674 1.25 msaitoh "txs_next", SYSCTL_DESCR("TX next"),
1675 1.25 msaitoh NULL, 0, &txr->next,
1676 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1677 1.25 msaitoh break;
1678 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1679 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1680 1.25 msaitoh "txs_queued", SYSCTL_DESCR("TX queued"),
1681 1.25 msaitoh NULL, 0, &txr->queued,
1682 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1683 1.25 msaitoh break;
1684 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1685 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1686 1.25 msaitoh "txr_cur", SYSCTL_DESCR("TX descriptor cur"),
1687 1.25 msaitoh eqos_sysctl_tx_cur_handler, 0, (void *)txr,
1688 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1689 1.25 msaitoh break;
1690 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1691 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1692 1.25 msaitoh "txr_end", SYSCTL_DESCR("TX descriptor end"),
1693 1.25 msaitoh eqos_sysctl_tx_end_handler, 0, (void *)txr,
1694 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1695 1.25 msaitoh break;
1696 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1697 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1698 1.25 msaitoh "rxs_cur", SYSCTL_DESCR("RX cur"),
1699 1.25 msaitoh NULL, 0, &rxr->cur,
1700 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1701 1.25 msaitoh break;
1702 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1703 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1704 1.25 msaitoh "rxs_next", SYSCTL_DESCR("RX next"),
1705 1.25 msaitoh NULL, 0, &rxr->next,
1706 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1707 1.25 msaitoh break;
1708 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1709 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1710 1.25 msaitoh "rxs_queued", SYSCTL_DESCR("RX queued"),
1711 1.25 msaitoh NULL, 0, &rxr->queued,
1712 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1713 1.25 msaitoh break;
1714 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1715 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1716 1.25 msaitoh "rxr_cur", SYSCTL_DESCR("RX descriptor cur"),
1717 1.25 msaitoh eqos_sysctl_rx_cur_handler, 0, (void *)rxr,
1718 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1719 1.25 msaitoh break;
1720 1.25 msaitoh if (sysctl_createv(log, 0, &qnode, &cnode,
1721 1.25 msaitoh CTLFLAG_READONLY, CTLTYPE_INT,
1722 1.25 msaitoh "rxr_end", SYSCTL_DESCR("RX descriptor end"),
1723 1.25 msaitoh eqos_sysctl_rx_end_handler, 0, (void *)rxr,
1724 1.25 msaitoh 0, CTL_CREATE, CTL_EOL) != 0)
1725 1.25 msaitoh break;
1726 1.25 msaitoh }
1727 1.25 msaitoh
1728 1.25 msaitoh #ifdef EQOS_DEBUG
1729 1.25 msaitoh rv = sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
1730 1.25 msaitoh CTLTYPE_INT, "debug_flags",
1731 1.25 msaitoh SYSCTL_DESCR(
1732 1.25 msaitoh "Debug flags:\n" \
1733 1.25 msaitoh "\t0x01 NOTE\n" \
1734 1.25 msaitoh "\t0x02 INTR\n" \
1735 1.25 msaitoh "\t0x04 RX RING\n" \
1736 1.25 msaitoh "\t0x08 TX RING\n"),
1737 1.25 msaitoh eqos_sysctl_debug_handler, 0, (void *)sc, 0, CTL_CREATE, CTL_EOL);
1738 1.25 msaitoh #endif
1739 1.25 msaitoh
1740 1.25 msaitoh return;
1741 1.25 msaitoh
1742 1.25 msaitoh err:
1743 1.25 msaitoh sc->sc_sysctllog = NULL;
1744 1.25 msaitoh device_printf(sc->sc_dev, "%s: sysctl_createv failed, rv = %d\n",
1745 1.25 msaitoh __func__, rv);
1746 1.25 msaitoh }
1747 1.25 msaitoh
1748 1.25 msaitoh static int
1749 1.25 msaitoh eqos_sysctl_tx_cur_handler(SYSCTLFN_ARGS)
1750 1.25 msaitoh {
1751 1.25 msaitoh struct sysctlnode node = *rnode;
1752 1.25 msaitoh struct eqos_ring *txq = (struct eqos_ring *)node.sysctl_data;
1753 1.25 msaitoh struct eqos_softc *sc = txq->sc;
1754 1.25 msaitoh uint32_t reg, index;
1755 1.25 msaitoh
1756 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_CUR_TX_DESC);
1757 1.25 msaitoh #if 0
1758 1.25 msaitoh printf("head = %08x\n", (uint32_t)sc->sc_tx.desc_ring_paddr);
1759 1.25 msaitoh printf("cdesc = %08x\n", reg);
1760 1.25 msaitoh printf("index = %zu\n",
1761 1.25 msaitoh (reg - (uint32_t)sc->sc_tx.desc_ring_paddr) /
1762 1.25 msaitoh sizeof(struct eqos_dma_desc));
1763 1.25 msaitoh #endif
1764 1.25 msaitoh if (reg == 0)
1765 1.25 msaitoh index = 0;
1766 1.25 msaitoh else {
1767 1.25 msaitoh index = (reg - (uint32_t)sc->sc_tx.desc_ring_paddr) /
1768 1.25 msaitoh sizeof(struct eqos_dma_desc);
1769 1.25 msaitoh }
1770 1.25 msaitoh node.sysctl_data = &index;
1771 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1772 1.25 msaitoh }
1773 1.25 msaitoh
1774 1.25 msaitoh static int
1775 1.25 msaitoh eqos_sysctl_tx_end_handler(SYSCTLFN_ARGS)
1776 1.25 msaitoh {
1777 1.25 msaitoh struct sysctlnode node = *rnode;
1778 1.25 msaitoh struct eqos_ring *txq = (struct eqos_ring *)node.sysctl_data;
1779 1.25 msaitoh struct eqos_softc *sc = txq->sc;
1780 1.25 msaitoh uint32_t reg, index;
1781 1.25 msaitoh
1782 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_TX_END_ADDR);
1783 1.25 msaitoh if (reg == 0)
1784 1.25 msaitoh index = 0;
1785 1.25 msaitoh else {
1786 1.25 msaitoh index = (reg - (uint32_t)sc->sc_tx.desc_ring_paddr) /
1787 1.25 msaitoh sizeof(struct eqos_dma_desc);
1788 1.25 msaitoh }
1789 1.25 msaitoh node.sysctl_data = &index;
1790 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1791 1.25 msaitoh }
1792 1.25 msaitoh
1793 1.25 msaitoh static int
1794 1.25 msaitoh eqos_sysctl_rx_cur_handler(SYSCTLFN_ARGS)
1795 1.25 msaitoh {
1796 1.25 msaitoh struct sysctlnode node = *rnode;
1797 1.25 msaitoh struct eqos_ring *rxq = (struct eqos_ring *)node.sysctl_data;
1798 1.25 msaitoh struct eqos_softc *sc = rxq->sc;
1799 1.25 msaitoh uint32_t reg, index;
1800 1.25 msaitoh
1801 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_CUR_RX_DESC);
1802 1.25 msaitoh if (reg == 0)
1803 1.25 msaitoh index = 0;
1804 1.25 msaitoh else {
1805 1.25 msaitoh index = (reg - (uint32_t)sc->sc_rx.desc_ring_paddr) /
1806 1.25 msaitoh sizeof(struct eqos_dma_desc);
1807 1.25 msaitoh }
1808 1.25 msaitoh node.sysctl_data = &index;
1809 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1810 1.25 msaitoh }
1811 1.25 msaitoh
1812 1.25 msaitoh static int
1813 1.25 msaitoh eqos_sysctl_rx_end_handler(SYSCTLFN_ARGS)
1814 1.25 msaitoh {
1815 1.25 msaitoh struct sysctlnode node = *rnode;
1816 1.25 msaitoh struct eqos_ring *rxq = (struct eqos_ring *)node.sysctl_data;
1817 1.25 msaitoh struct eqos_softc *sc = rxq->sc;
1818 1.25 msaitoh uint32_t reg, index;
1819 1.25 msaitoh
1820 1.25 msaitoh reg = RD4(sc, GMAC_DMA_CHAN0_RX_END_ADDR);
1821 1.25 msaitoh if (reg == 0)
1822 1.25 msaitoh index = 0;
1823 1.25 msaitoh else {
1824 1.25 msaitoh index = (reg - (uint32_t)sc->sc_rx.desc_ring_paddr) /
1825 1.25 msaitoh sizeof(struct eqos_dma_desc);
1826 1.25 msaitoh }
1827 1.25 msaitoh node.sysctl_data = &index;
1828 1.25 msaitoh return sysctl_lookup(SYSCTLFN_CALL(&node));
1829 1.25 msaitoh }
1830 1.25 msaitoh
1831 1.25 msaitoh #ifdef EQOS_DEBUG
1832 1.25 msaitoh static int
1833 1.25 msaitoh eqos_sysctl_debug_handler(SYSCTLFN_ARGS)
1834 1.25 msaitoh {
1835 1.25 msaitoh struct sysctlnode node = *rnode;
1836 1.25 msaitoh struct eqos_softc *sc = (struct eqos_softc *)node.sysctl_data;
1837 1.25 msaitoh uint32_t dflags;
1838 1.25 msaitoh int error;
1839 1.25 msaitoh
1840 1.25 msaitoh dflags = sc->sc_debug;
1841 1.25 msaitoh node.sysctl_data = &dflags;
1842 1.25 msaitoh error = sysctl_lookup(SYSCTLFN_CALL(&node));
1843 1.25 msaitoh
1844 1.25 msaitoh if (error || newp == NULL)
1845 1.25 msaitoh return error;
1846 1.25 msaitoh
1847 1.25 msaitoh sc->sc_debug = dflags;
1848 1.25 msaitoh #if 0
1849 1.25 msaitoh /* Addd debug code here if you want. */
1850 1.25 msaitoh #endif
1851 1.25 msaitoh
1852 1.25 msaitoh return 0;
1853 1.25 msaitoh }
1854 1.25 msaitoh #endif
1855