sunxi_emac.c revision 1.13 1 1.13 jmcneill /* $NetBSD: sunxi_emac.c,v 1.13 2018/02/19 20:22:48 jmcneill Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 2016-2017 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 * Allwinner Gigabit Ethernet MAC (EMAC) controller
31 1.1 jmcneill */
32 1.1 jmcneill
33 1.1 jmcneill #include "opt_net_mpsafe.h"
34 1.1 jmcneill
35 1.1 jmcneill #include <sys/cdefs.h>
36 1.13 jmcneill __KERNEL_RCSID(0, "$NetBSD: sunxi_emac.c,v 1.13 2018/02/19 20:22:48 jmcneill Exp $");
37 1.1 jmcneill
38 1.1 jmcneill #include <sys/param.h>
39 1.1 jmcneill #include <sys/bus.h>
40 1.1 jmcneill #include <sys/device.h>
41 1.1 jmcneill #include <sys/intr.h>
42 1.1 jmcneill #include <sys/systm.h>
43 1.1 jmcneill #include <sys/kernel.h>
44 1.1 jmcneill #include <sys/mutex.h>
45 1.1 jmcneill #include <sys/callout.h>
46 1.1 jmcneill #include <sys/gpio.h>
47 1.1 jmcneill #include <sys/cprng.h>
48 1.1 jmcneill
49 1.1 jmcneill #include <net/if.h>
50 1.1 jmcneill #include <net/if_dl.h>
51 1.1 jmcneill #include <net/if_ether.h>
52 1.1 jmcneill #include <net/if_media.h>
53 1.1 jmcneill #include <net/bpf.h>
54 1.1 jmcneill
55 1.1 jmcneill #include <dev/mii/miivar.h>
56 1.1 jmcneill
57 1.1 jmcneill #include <dev/fdt/fdtvar.h>
58 1.1 jmcneill
59 1.1 jmcneill #include <arm/sunxi/sunxi_emac.h>
60 1.1 jmcneill
61 1.1 jmcneill #ifdef NET_MPSAFE
62 1.1 jmcneill #define EMAC_MPSAFE 1
63 1.1 jmcneill #define CALLOUT_FLAGS CALLOUT_MPSAFE
64 1.1 jmcneill #define FDT_INTR_FLAGS FDT_INTR_MPSAFE
65 1.1 jmcneill #else
66 1.1 jmcneill #define CALLOUT_FLAGS 0
67 1.1 jmcneill #define FDT_INTR_FLAGS 0
68 1.1 jmcneill #endif
69 1.1 jmcneill
70 1.1 jmcneill #define EMAC_IFNAME "emac%d"
71 1.1 jmcneill
72 1.1 jmcneill #define ETHER_ALIGN 2
73 1.1 jmcneill
74 1.1 jmcneill #define EMAC_LOCK(sc) mutex_enter(&(sc)->mtx)
75 1.1 jmcneill #define EMAC_UNLOCK(sc) mutex_exit(&(sc)->mtx)
76 1.1 jmcneill #define EMAC_ASSERT_LOCKED(sc) KASSERT(mutex_owned(&(sc)->mtx))
77 1.1 jmcneill
78 1.2 jmcneill #define DESC_ALIGN sizeof(struct sunxi_emac_desc)
79 1.1 jmcneill #define TX_DESC_COUNT 1024
80 1.1 jmcneill #define TX_DESC_SIZE (sizeof(struct sunxi_emac_desc) * TX_DESC_COUNT)
81 1.1 jmcneill #define RX_DESC_COUNT 256
82 1.1 jmcneill #define RX_DESC_SIZE (sizeof(struct sunxi_emac_desc) * RX_DESC_COUNT)
83 1.1 jmcneill
84 1.1 jmcneill #define DESC_OFF(n) ((n) * sizeof(struct sunxi_emac_desc))
85 1.1 jmcneill #define TX_NEXT(n) (((n) + 1) & (TX_DESC_COUNT - 1))
86 1.1 jmcneill #define TX_SKIP(n, o) (((n) + (o)) & (TX_DESC_COUNT - 1))
87 1.1 jmcneill #define RX_NEXT(n) (((n) + 1) & (RX_DESC_COUNT - 1))
88 1.1 jmcneill
89 1.1 jmcneill #define TX_MAX_SEGS 128
90 1.1 jmcneill
91 1.1 jmcneill #define SOFT_RST_RETRY 1000
92 1.1 jmcneill #define MII_BUSY_RETRY 1000
93 1.1 jmcneill #define MDIO_FREQ 2500000
94 1.1 jmcneill
95 1.1 jmcneill #define BURST_LEN_DEFAULT 8
96 1.1 jmcneill #define RX_TX_PRI_DEFAULT 0
97 1.1 jmcneill #define PAUSE_TIME_DEFAULT 0x400
98 1.1 jmcneill
99 1.1 jmcneill /* syscon EMAC clock register */
100 1.10 jmcneill #define EMAC_CLK_REG 0x30
101 1.10 jmcneill #define EMAC_CLK_EPHY_ADDR (0x1f << 20) /* H3 */
102 1.10 jmcneill #define EMAC_CLK_EPHY_ADDR_SHIFT 20
103 1.10 jmcneill #define EMAC_CLK_EPHY_LED_POL (1 << 17) /* H3 */
104 1.10 jmcneill #define EMAC_CLK_EPHY_SHUTDOWN (1 << 16) /* H3 */
105 1.10 jmcneill #define EMAC_CLK_EPHY_SELECT (1 << 15) /* H3 */
106 1.10 jmcneill #define EMAC_CLK_RMII_EN (1 << 13)
107 1.10 jmcneill #define EMAC_CLK_ETXDC (0x7 << 10)
108 1.10 jmcneill #define EMAC_CLK_ETXDC_SHIFT 10
109 1.10 jmcneill #define EMAC_CLK_ERXDC (0x1f << 5)
110 1.10 jmcneill #define EMAC_CLK_ERXDC_SHIFT 5
111 1.10 jmcneill #define EMAC_CLK_PIT (0x1 << 2)
112 1.10 jmcneill #define EMAC_CLK_PIT_MII (0 << 2)
113 1.10 jmcneill #define EMAC_CLK_PIT_RGMII (1 << 2)
114 1.10 jmcneill #define EMAC_CLK_SRC (0x3 << 0)
115 1.10 jmcneill #define EMAC_CLK_SRC_MII (0 << 0)
116 1.10 jmcneill #define EMAC_CLK_SRC_EXT_RGMII (1 << 0)
117 1.10 jmcneill #define EMAC_CLK_SRC_RGMII (2 << 0)
118 1.1 jmcneill
119 1.1 jmcneill /* Burst length of RX and TX DMA transfers */
120 1.1 jmcneill static int sunxi_emac_burst_len = BURST_LEN_DEFAULT;
121 1.1 jmcneill
122 1.1 jmcneill /* RX / TX DMA priority. If 1, RX DMA has priority over TX DMA. */
123 1.1 jmcneill static int sunxi_emac_rx_tx_pri = RX_TX_PRI_DEFAULT;
124 1.1 jmcneill
125 1.1 jmcneill /* Pause time field in the transmitted control frame */
126 1.1 jmcneill static int sunxi_emac_pause_time = PAUSE_TIME_DEFAULT;
127 1.1 jmcneill
128 1.1 jmcneill enum sunxi_emac_type {
129 1.13 jmcneill EMAC_A64 = 1,
130 1.13 jmcneill EMAC_A83T,
131 1.1 jmcneill EMAC_H3,
132 1.13 jmcneill EMAC_H6,
133 1.1 jmcneill };
134 1.1 jmcneill
135 1.1 jmcneill static const struct of_compat_data compat_data[] = {
136 1.1 jmcneill { "allwinner,sun8i-a83t-emac", EMAC_A83T },
137 1.1 jmcneill { "allwinner,sun8i-h3-emac", EMAC_H3 },
138 1.5 jmcneill { "allwinner,sun50i-a64-emac", EMAC_A64 },
139 1.13 jmcneill { "allwinner,sun50i-h6-emac", EMAC_H6 },
140 1.1 jmcneill { NULL }
141 1.1 jmcneill };
142 1.1 jmcneill
143 1.1 jmcneill struct sunxi_emac_bufmap {
144 1.1 jmcneill bus_dmamap_t map;
145 1.1 jmcneill struct mbuf *mbuf;
146 1.1 jmcneill };
147 1.1 jmcneill
148 1.1 jmcneill struct sunxi_emac_txring {
149 1.1 jmcneill bus_dma_tag_t desc_tag;
150 1.1 jmcneill bus_dmamap_t desc_map;
151 1.1 jmcneill bus_dma_segment_t desc_dmaseg;
152 1.1 jmcneill struct sunxi_emac_desc *desc_ring;
153 1.1 jmcneill bus_addr_t desc_ring_paddr;
154 1.1 jmcneill bus_dma_tag_t buf_tag;
155 1.1 jmcneill struct sunxi_emac_bufmap buf_map[TX_DESC_COUNT];
156 1.1 jmcneill u_int cur, next, queued;
157 1.1 jmcneill };
158 1.1 jmcneill
159 1.1 jmcneill struct sunxi_emac_rxring {
160 1.1 jmcneill bus_dma_tag_t desc_tag;
161 1.1 jmcneill bus_dmamap_t desc_map;
162 1.1 jmcneill bus_dma_segment_t desc_dmaseg;
163 1.1 jmcneill struct sunxi_emac_desc *desc_ring;
164 1.1 jmcneill bus_addr_t desc_ring_paddr;
165 1.1 jmcneill bus_dma_tag_t buf_tag;
166 1.1 jmcneill struct sunxi_emac_bufmap buf_map[RX_DESC_COUNT];
167 1.1 jmcneill u_int cur;
168 1.1 jmcneill };
169 1.1 jmcneill
170 1.1 jmcneill enum {
171 1.1 jmcneill _RES_EMAC,
172 1.1 jmcneill _RES_SYSCON,
173 1.1 jmcneill _RES_NITEMS
174 1.1 jmcneill };
175 1.1 jmcneill
176 1.1 jmcneill struct sunxi_emac_softc {
177 1.1 jmcneill device_t dev;
178 1.1 jmcneill int phandle;
179 1.1 jmcneill enum sunxi_emac_type type;
180 1.1 jmcneill bus_space_tag_t bst;
181 1.1 jmcneill bus_dma_tag_t dmat;
182 1.1 jmcneill
183 1.1 jmcneill bus_space_handle_t bsh[_RES_NITEMS];
184 1.1 jmcneill struct clk *clk_ahb;
185 1.1 jmcneill struct clk *clk_ephy;
186 1.1 jmcneill struct fdtbus_reset *rst_ahb;
187 1.1 jmcneill struct fdtbus_reset *rst_ephy;
188 1.1 jmcneill struct fdtbus_regulator *reg_phy;
189 1.1 jmcneill struct fdtbus_gpio_pin *pin_reset;
190 1.1 jmcneill
191 1.7 jmcneill int phy_id;
192 1.7 jmcneill
193 1.1 jmcneill kmutex_t mtx;
194 1.1 jmcneill struct ethercom ec;
195 1.1 jmcneill struct mii_data mii;
196 1.1 jmcneill callout_t stat_ch;
197 1.1 jmcneill void *ih;
198 1.1 jmcneill u_int mdc_div_ratio_m;
199 1.1 jmcneill
200 1.1 jmcneill struct sunxi_emac_txring tx;
201 1.1 jmcneill struct sunxi_emac_rxring rx;
202 1.1 jmcneill };
203 1.1 jmcneill
204 1.1 jmcneill #define RD4(sc, reg) \
205 1.1 jmcneill bus_space_read_4((sc)->bst, (sc)->bsh[_RES_EMAC], (reg))
206 1.1 jmcneill #define WR4(sc, reg, val) \
207 1.1 jmcneill bus_space_write_4((sc)->bst, (sc)->bsh[_RES_EMAC], (reg), (val))
208 1.1 jmcneill
209 1.1 jmcneill #define SYSCONRD4(sc, reg) \
210 1.1 jmcneill bus_space_read_4((sc)->bst, (sc)->bsh[_RES_SYSCON], (reg))
211 1.1 jmcneill #define SYSCONWR4(sc, reg, val) \
212 1.1 jmcneill bus_space_write_4((sc)->bst, (sc)->bsh[_RES_SYSCON], (reg), (val))
213 1.1 jmcneill
214 1.1 jmcneill static int
215 1.1 jmcneill sunxi_emac_mii_readreg(device_t dev, int phy, int reg)
216 1.1 jmcneill {
217 1.1 jmcneill struct sunxi_emac_softc *sc = device_private(dev);
218 1.1 jmcneill int retry, val;
219 1.1 jmcneill
220 1.1 jmcneill val = 0;
221 1.1 jmcneill
222 1.1 jmcneill WR4(sc, EMAC_MII_CMD,
223 1.1 jmcneill (sc->mdc_div_ratio_m << MDC_DIV_RATIO_M_SHIFT) |
224 1.1 jmcneill (phy << PHY_ADDR_SHIFT) |
225 1.1 jmcneill (reg << PHY_REG_ADDR_SHIFT) |
226 1.1 jmcneill MII_BUSY);
227 1.1 jmcneill for (retry = MII_BUSY_RETRY; retry > 0; retry--) {
228 1.1 jmcneill if ((RD4(sc, EMAC_MII_CMD) & MII_BUSY) == 0) {
229 1.1 jmcneill val = RD4(sc, EMAC_MII_DATA);
230 1.1 jmcneill break;
231 1.1 jmcneill }
232 1.1 jmcneill delay(10);
233 1.1 jmcneill }
234 1.1 jmcneill
235 1.1 jmcneill if (retry == 0)
236 1.1 jmcneill device_printf(dev, "phy read timeout, phy=%d reg=%d\n",
237 1.1 jmcneill phy, reg);
238 1.1 jmcneill
239 1.1 jmcneill return val;
240 1.1 jmcneill }
241 1.1 jmcneill
242 1.1 jmcneill static void
243 1.1 jmcneill sunxi_emac_mii_writereg(device_t dev, int phy, int reg, int val)
244 1.1 jmcneill {
245 1.1 jmcneill struct sunxi_emac_softc *sc = device_private(dev);
246 1.1 jmcneill int retry;
247 1.1 jmcneill
248 1.1 jmcneill WR4(sc, EMAC_MII_DATA, val);
249 1.1 jmcneill WR4(sc, EMAC_MII_CMD,
250 1.1 jmcneill (sc->mdc_div_ratio_m << MDC_DIV_RATIO_M_SHIFT) |
251 1.1 jmcneill (phy << PHY_ADDR_SHIFT) |
252 1.1 jmcneill (reg << PHY_REG_ADDR_SHIFT) |
253 1.1 jmcneill MII_WR | MII_BUSY);
254 1.1 jmcneill for (retry = MII_BUSY_RETRY; retry > 0; retry--) {
255 1.1 jmcneill if ((RD4(sc, EMAC_MII_CMD) & MII_BUSY) == 0)
256 1.1 jmcneill break;
257 1.1 jmcneill delay(10);
258 1.1 jmcneill }
259 1.1 jmcneill
260 1.1 jmcneill if (retry == 0)
261 1.1 jmcneill device_printf(dev, "phy write timeout, phy=%d reg=%d\n",
262 1.1 jmcneill phy, reg);
263 1.1 jmcneill }
264 1.1 jmcneill
265 1.1 jmcneill static void
266 1.1 jmcneill sunxi_emac_update_link(struct sunxi_emac_softc *sc)
267 1.1 jmcneill {
268 1.1 jmcneill struct mii_data *mii = &sc->mii;
269 1.1 jmcneill uint32_t val;
270 1.1 jmcneill
271 1.1 jmcneill val = RD4(sc, EMAC_BASIC_CTL_0);
272 1.1 jmcneill val &= ~(BASIC_CTL_SPEED | BASIC_CTL_DUPLEX);
273 1.1 jmcneill
274 1.1 jmcneill if (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T ||
275 1.1 jmcneill IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_SX)
276 1.1 jmcneill val |= BASIC_CTL_SPEED_1000 << BASIC_CTL_SPEED_SHIFT;
277 1.1 jmcneill else if (IFM_SUBTYPE(mii->mii_media_active) == IFM_100_TX)
278 1.1 jmcneill val |= BASIC_CTL_SPEED_100 << BASIC_CTL_SPEED_SHIFT;
279 1.1 jmcneill else
280 1.1 jmcneill val |= BASIC_CTL_SPEED_10 << BASIC_CTL_SPEED_SHIFT;
281 1.1 jmcneill
282 1.1 jmcneill if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0)
283 1.1 jmcneill val |= BASIC_CTL_DUPLEX;
284 1.1 jmcneill
285 1.1 jmcneill WR4(sc, EMAC_BASIC_CTL_0, val);
286 1.1 jmcneill
287 1.1 jmcneill val = RD4(sc, EMAC_RX_CTL_0);
288 1.1 jmcneill val &= ~RX_FLOW_CTL_EN;
289 1.1 jmcneill if ((IFM_OPTIONS(mii->mii_media_active) & IFM_ETH_RXPAUSE) != 0)
290 1.1 jmcneill val |= RX_FLOW_CTL_EN;
291 1.1 jmcneill WR4(sc, EMAC_RX_CTL_0, val);
292 1.1 jmcneill
293 1.1 jmcneill val = RD4(sc, EMAC_TX_FLOW_CTL);
294 1.1 jmcneill val &= ~(PAUSE_TIME|TX_FLOW_CTL_EN);
295 1.1 jmcneill if ((IFM_OPTIONS(mii->mii_media_active) & IFM_ETH_TXPAUSE) != 0)
296 1.1 jmcneill val |= TX_FLOW_CTL_EN;
297 1.1 jmcneill if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0)
298 1.1 jmcneill val |= sunxi_emac_pause_time << PAUSE_TIME_SHIFT;
299 1.1 jmcneill WR4(sc, EMAC_TX_FLOW_CTL, val);
300 1.1 jmcneill }
301 1.1 jmcneill
302 1.1 jmcneill static void
303 1.1 jmcneill sunxi_emac_mii_statchg(struct ifnet *ifp)
304 1.1 jmcneill {
305 1.1 jmcneill struct sunxi_emac_softc * const sc = ifp->if_softc;
306 1.1 jmcneill
307 1.1 jmcneill sunxi_emac_update_link(sc);
308 1.1 jmcneill }
309 1.1 jmcneill
310 1.1 jmcneill static void
311 1.1 jmcneill sunxi_emac_dma_sync(struct sunxi_emac_softc *sc, bus_dma_tag_t dmat,
312 1.1 jmcneill bus_dmamap_t map, int start, int end, int total, int flags)
313 1.1 jmcneill {
314 1.1 jmcneill if (end > start) {
315 1.1 jmcneill bus_dmamap_sync(dmat, map, DESC_OFF(start),
316 1.1 jmcneill DESC_OFF(end) - DESC_OFF(start), flags);
317 1.1 jmcneill } else {
318 1.1 jmcneill bus_dmamap_sync(dmat, map, DESC_OFF(start),
319 1.1 jmcneill DESC_OFF(total) - DESC_OFF(start), flags);
320 1.2 jmcneill if (DESC_OFF(end) - DESC_OFF(0) > 0)
321 1.2 jmcneill bus_dmamap_sync(dmat, map, DESC_OFF(0),
322 1.2 jmcneill DESC_OFF(end) - DESC_OFF(0), flags);
323 1.1 jmcneill }
324 1.1 jmcneill }
325 1.1 jmcneill
326 1.1 jmcneill static void
327 1.1 jmcneill sunxi_emac_setup_txdesc(struct sunxi_emac_softc *sc, int index, int flags,
328 1.1 jmcneill bus_addr_t paddr, u_int len)
329 1.1 jmcneill {
330 1.1 jmcneill uint32_t status, size;
331 1.1 jmcneill
332 1.1 jmcneill if (paddr == 0 || len == 0) {
333 1.1 jmcneill status = 0;
334 1.1 jmcneill size = 0;
335 1.1 jmcneill --sc->tx.queued;
336 1.1 jmcneill } else {
337 1.1 jmcneill status = TX_DESC_CTL;
338 1.1 jmcneill size = flags | len;
339 1.1 jmcneill ++sc->tx.queued;
340 1.1 jmcneill }
341 1.1 jmcneill
342 1.1 jmcneill sc->tx.desc_ring[index].addr = htole32((uint32_t)paddr);
343 1.1 jmcneill sc->tx.desc_ring[index].size = htole32(size);
344 1.1 jmcneill sc->tx.desc_ring[index].status = htole32(status);
345 1.1 jmcneill }
346 1.1 jmcneill
347 1.1 jmcneill static int
348 1.1 jmcneill sunxi_emac_setup_txbuf(struct sunxi_emac_softc *sc, int index, struct mbuf *m)
349 1.1 jmcneill {
350 1.1 jmcneill bus_dma_segment_t *segs;
351 1.1 jmcneill int error, nsegs, cur, i, flags;
352 1.1 jmcneill u_int csum_flags;
353 1.1 jmcneill
354 1.1 jmcneill error = bus_dmamap_load_mbuf(sc->tx.buf_tag,
355 1.1 jmcneill sc->tx.buf_map[index].map, m, BUS_DMA_WRITE|BUS_DMA_NOWAIT);
356 1.1 jmcneill if (error == EFBIG) {
357 1.1 jmcneill device_printf(sc->dev,
358 1.1 jmcneill "TX packet needs too many DMA segments, dropping...\n");
359 1.1 jmcneill m_freem(m);
360 1.1 jmcneill return 0;
361 1.1 jmcneill }
362 1.1 jmcneill if (error != 0)
363 1.1 jmcneill return 0;
364 1.1 jmcneill
365 1.1 jmcneill segs = sc->tx.buf_map[index].map->dm_segs;
366 1.1 jmcneill nsegs = sc->tx.buf_map[index].map->dm_nsegs;
367 1.1 jmcneill
368 1.1 jmcneill flags = TX_FIR_DESC;
369 1.1 jmcneill if ((m->m_pkthdr.csum_flags & M_CSUM_IPv4) != 0) {
370 1.1 jmcneill if ((m->m_pkthdr.csum_flags & (M_CSUM_TCPv4|M_CSUM_UDPv4)) != 0)
371 1.1 jmcneill csum_flags = TX_CHECKSUM_CTL_FULL;
372 1.1 jmcneill else
373 1.1 jmcneill csum_flags = TX_CHECKSUM_CTL_IP;
374 1.1 jmcneill flags |= (csum_flags << TX_CHECKSUM_CTL_SHIFT);
375 1.1 jmcneill }
376 1.1 jmcneill
377 1.1 jmcneill for (cur = index, i = 0; i < nsegs; i++) {
378 1.1 jmcneill sc->tx.buf_map[cur].mbuf = (i == 0 ? m : NULL);
379 1.1 jmcneill if (i == nsegs - 1)
380 1.8 jmcneill flags |= TX_LAST_DESC | TX_INT_CTL;
381 1.1 jmcneill
382 1.1 jmcneill sunxi_emac_setup_txdesc(sc, cur, flags, segs[i].ds_addr,
383 1.1 jmcneill segs[i].ds_len);
384 1.1 jmcneill flags &= ~TX_FIR_DESC;
385 1.1 jmcneill cur = TX_NEXT(cur);
386 1.1 jmcneill }
387 1.1 jmcneill
388 1.2 jmcneill bus_dmamap_sync(sc->tx.buf_tag, sc->tx.buf_map[index].map,
389 1.2 jmcneill 0, sc->tx.buf_map[index].map->dm_mapsize, BUS_DMASYNC_PREWRITE);
390 1.2 jmcneill
391 1.1 jmcneill return nsegs;
392 1.1 jmcneill }
393 1.1 jmcneill
394 1.1 jmcneill static void
395 1.1 jmcneill sunxi_emac_setup_rxdesc(struct sunxi_emac_softc *sc, int index,
396 1.1 jmcneill bus_addr_t paddr)
397 1.1 jmcneill {
398 1.1 jmcneill uint32_t status, size;
399 1.1 jmcneill
400 1.1 jmcneill status = RX_DESC_CTL;
401 1.1 jmcneill size = MCLBYTES - 1;
402 1.1 jmcneill
403 1.1 jmcneill sc->rx.desc_ring[index].addr = htole32((uint32_t)paddr);
404 1.1 jmcneill sc->rx.desc_ring[index].size = htole32(size);
405 1.1 jmcneill sc->rx.desc_ring[index].next =
406 1.1 jmcneill htole32(sc->rx.desc_ring_paddr + DESC_OFF(RX_NEXT(index)));
407 1.1 jmcneill sc->rx.desc_ring[index].status = htole32(status);
408 1.1 jmcneill }
409 1.1 jmcneill
410 1.1 jmcneill static int
411 1.1 jmcneill sunxi_emac_setup_rxbuf(struct sunxi_emac_softc *sc, int index, struct mbuf *m)
412 1.1 jmcneill {
413 1.1 jmcneill int error;
414 1.1 jmcneill
415 1.1 jmcneill m_adj(m, ETHER_ALIGN);
416 1.1 jmcneill
417 1.1 jmcneill error = bus_dmamap_load_mbuf(sc->rx.buf_tag,
418 1.1 jmcneill sc->rx.buf_map[index].map, m, BUS_DMA_READ|BUS_DMA_NOWAIT);
419 1.1 jmcneill if (error != 0)
420 1.1 jmcneill return error;
421 1.1 jmcneill
422 1.1 jmcneill bus_dmamap_sync(sc->rx.buf_tag, sc->rx.buf_map[index].map,
423 1.1 jmcneill 0, sc->rx.buf_map[index].map->dm_mapsize,
424 1.1 jmcneill BUS_DMASYNC_PREREAD);
425 1.1 jmcneill
426 1.1 jmcneill sc->rx.buf_map[index].mbuf = m;
427 1.1 jmcneill sunxi_emac_setup_rxdesc(sc, index,
428 1.1 jmcneill sc->rx.buf_map[index].map->dm_segs[0].ds_addr);
429 1.1 jmcneill
430 1.1 jmcneill return 0;
431 1.1 jmcneill }
432 1.1 jmcneill
433 1.1 jmcneill static struct mbuf *
434 1.1 jmcneill sunxi_emac_alloc_mbufcl(struct sunxi_emac_softc *sc)
435 1.1 jmcneill {
436 1.1 jmcneill struct mbuf *m;
437 1.1 jmcneill
438 1.1 jmcneill m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
439 1.1 jmcneill if (m != NULL)
440 1.1 jmcneill m->m_pkthdr.len = m->m_len = m->m_ext.ext_size;
441 1.1 jmcneill
442 1.1 jmcneill return m;
443 1.1 jmcneill }
444 1.1 jmcneill
445 1.1 jmcneill static void
446 1.1 jmcneill sunxi_emac_start_locked(struct sunxi_emac_softc *sc)
447 1.1 jmcneill {
448 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
449 1.1 jmcneill struct mbuf *m;
450 1.1 jmcneill uint32_t val;
451 1.1 jmcneill int cnt, nsegs, start;
452 1.1 jmcneill
453 1.1 jmcneill EMAC_ASSERT_LOCKED(sc);
454 1.1 jmcneill
455 1.1 jmcneill if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
456 1.1 jmcneill return;
457 1.1 jmcneill
458 1.1 jmcneill for (cnt = 0, start = sc->tx.cur; ; cnt++) {
459 1.1 jmcneill if (sc->tx.queued >= TX_DESC_COUNT - TX_MAX_SEGS) {
460 1.1 jmcneill ifp->if_flags |= IFF_OACTIVE;
461 1.1 jmcneill break;
462 1.1 jmcneill }
463 1.1 jmcneill
464 1.1 jmcneill IFQ_POLL(&ifp->if_snd, m);
465 1.1 jmcneill if (m == NULL)
466 1.1 jmcneill break;
467 1.1 jmcneill
468 1.1 jmcneill nsegs = sunxi_emac_setup_txbuf(sc, sc->tx.cur, m);
469 1.1 jmcneill if (nsegs == 0) {
470 1.1 jmcneill ifp->if_flags |= IFF_OACTIVE;
471 1.1 jmcneill break;
472 1.1 jmcneill }
473 1.1 jmcneill IFQ_DEQUEUE(&ifp->if_snd, m);
474 1.1 jmcneill bpf_mtap(ifp, m);
475 1.1 jmcneill
476 1.1 jmcneill sc->tx.cur = TX_SKIP(sc->tx.cur, nsegs);
477 1.1 jmcneill }
478 1.1 jmcneill
479 1.1 jmcneill if (cnt != 0) {
480 1.1 jmcneill sunxi_emac_dma_sync(sc, sc->tx.desc_tag, sc->tx.desc_map,
481 1.1 jmcneill start, sc->tx.cur, TX_DESC_COUNT,
482 1.1 jmcneill BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
483 1.1 jmcneill
484 1.1 jmcneill /* Start and run TX DMA */
485 1.1 jmcneill val = RD4(sc, EMAC_TX_CTL_1);
486 1.1 jmcneill WR4(sc, EMAC_TX_CTL_1, val | TX_DMA_START);
487 1.1 jmcneill }
488 1.1 jmcneill }
489 1.1 jmcneill
490 1.1 jmcneill static void
491 1.1 jmcneill sunxi_emac_start(struct ifnet *ifp)
492 1.1 jmcneill {
493 1.1 jmcneill struct sunxi_emac_softc *sc = ifp->if_softc;
494 1.1 jmcneill
495 1.1 jmcneill EMAC_LOCK(sc);
496 1.1 jmcneill sunxi_emac_start_locked(sc);
497 1.1 jmcneill EMAC_UNLOCK(sc);
498 1.1 jmcneill }
499 1.1 jmcneill
500 1.1 jmcneill static void
501 1.1 jmcneill sunxi_emac_tick(void *softc)
502 1.1 jmcneill {
503 1.1 jmcneill struct sunxi_emac_softc *sc = softc;
504 1.1 jmcneill struct mii_data *mii = &sc->mii;
505 1.1 jmcneill #ifndef EMAC_MPSAFE
506 1.1 jmcneill int s = splnet();
507 1.1 jmcneill #endif
508 1.1 jmcneill
509 1.1 jmcneill EMAC_LOCK(sc);
510 1.1 jmcneill mii_tick(mii);
511 1.1 jmcneill callout_schedule(&sc->stat_ch, hz);
512 1.1 jmcneill EMAC_UNLOCK(sc);
513 1.1 jmcneill
514 1.1 jmcneill #ifndef EMAC_MPSAFE
515 1.1 jmcneill splx(s);
516 1.1 jmcneill #endif
517 1.1 jmcneill }
518 1.1 jmcneill
519 1.1 jmcneill /* Bit Reversal - http://aggregate.org/MAGIC/#Bit%20Reversal */
520 1.1 jmcneill static uint32_t
521 1.1 jmcneill bitrev32(uint32_t x)
522 1.1 jmcneill {
523 1.1 jmcneill x = (((x & 0xaaaaaaaa) >> 1) | ((x & 0x55555555) << 1));
524 1.1 jmcneill x = (((x & 0xcccccccc) >> 2) | ((x & 0x33333333) << 2));
525 1.1 jmcneill x = (((x & 0xf0f0f0f0) >> 4) | ((x & 0x0f0f0f0f) << 4));
526 1.1 jmcneill x = (((x & 0xff00ff00) >> 8) | ((x & 0x00ff00ff) << 8));
527 1.1 jmcneill
528 1.1 jmcneill return (x >> 16) | (x << 16);
529 1.1 jmcneill }
530 1.1 jmcneill
531 1.1 jmcneill static void
532 1.1 jmcneill sunxi_emac_setup_rxfilter(struct sunxi_emac_softc *sc)
533 1.1 jmcneill {
534 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
535 1.1 jmcneill uint32_t val, crc, hashreg, hashbit, hash[2], machi, maclo;
536 1.1 jmcneill struct ether_multi *enm;
537 1.1 jmcneill struct ether_multistep step;
538 1.1 jmcneill const uint8_t *eaddr;
539 1.1 jmcneill
540 1.1 jmcneill EMAC_ASSERT_LOCKED(sc);
541 1.1 jmcneill
542 1.1 jmcneill val = 0;
543 1.1 jmcneill hash[0] = hash[1] = 0;
544 1.1 jmcneill
545 1.1 jmcneill if ((ifp->if_flags & IFF_PROMISC) != 0)
546 1.1 jmcneill val |= DIS_ADDR_FILTER;
547 1.1 jmcneill else if ((ifp->if_flags & IFF_ALLMULTI) != 0) {
548 1.1 jmcneill val |= RX_ALL_MULTICAST;
549 1.1 jmcneill hash[0] = hash[1] = ~0;
550 1.1 jmcneill } else {
551 1.1 jmcneill val |= HASH_MULTICAST;
552 1.1 jmcneill ETHER_FIRST_MULTI(step, &sc->ec, enm);
553 1.1 jmcneill while (enm != NULL) {
554 1.1 jmcneill crc = ether_crc32_le(enm->enm_addrlo, ETHER_ADDR_LEN);
555 1.1 jmcneill crc &= 0x7f;
556 1.1 jmcneill crc = bitrev32(~crc) >> 26;
557 1.1 jmcneill hashreg = (crc >> 5);
558 1.1 jmcneill hashbit = (crc & 0x1f);
559 1.1 jmcneill hash[hashreg] |= (1 << hashbit);
560 1.1 jmcneill ETHER_NEXT_MULTI(step, enm);
561 1.1 jmcneill }
562 1.1 jmcneill }
563 1.1 jmcneill
564 1.1 jmcneill /* Write our unicast address */
565 1.1 jmcneill eaddr = CLLADDR(ifp->if_sadl);
566 1.1 jmcneill machi = (eaddr[5] << 8) | eaddr[4];
567 1.1 jmcneill maclo = (eaddr[3] << 24) | (eaddr[2] << 16) | (eaddr[1] << 8) |
568 1.1 jmcneill (eaddr[0] << 0);
569 1.1 jmcneill WR4(sc, EMAC_ADDR_HIGH(0), machi);
570 1.1 jmcneill WR4(sc, EMAC_ADDR_LOW(0), maclo);
571 1.1 jmcneill
572 1.1 jmcneill /* Multicast hash filters */
573 1.1 jmcneill WR4(sc, EMAC_RX_HASH_0, hash[1]);
574 1.1 jmcneill WR4(sc, EMAC_RX_HASH_1, hash[0]);
575 1.1 jmcneill
576 1.1 jmcneill /* RX frame filter config */
577 1.1 jmcneill WR4(sc, EMAC_RX_FRM_FLT, val);
578 1.1 jmcneill }
579 1.1 jmcneill
580 1.1 jmcneill static void
581 1.1 jmcneill sunxi_emac_enable_intr(struct sunxi_emac_softc *sc)
582 1.1 jmcneill {
583 1.1 jmcneill /* Enable interrupts */
584 1.1 jmcneill WR4(sc, EMAC_INT_EN, RX_INT_EN | TX_INT_EN | TX_BUF_UA_INT_EN);
585 1.1 jmcneill }
586 1.1 jmcneill
587 1.1 jmcneill static void
588 1.1 jmcneill sunxi_emac_disable_intr(struct sunxi_emac_softc *sc)
589 1.1 jmcneill {
590 1.1 jmcneill /* Disable interrupts */
591 1.1 jmcneill WR4(sc, EMAC_INT_EN, 0);
592 1.1 jmcneill }
593 1.1 jmcneill
594 1.1 jmcneill static int
595 1.1 jmcneill sunxi_emac_init_locked(struct sunxi_emac_softc *sc)
596 1.1 jmcneill {
597 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
598 1.1 jmcneill struct mii_data *mii = &sc->mii;
599 1.1 jmcneill uint32_t val;
600 1.1 jmcneill
601 1.1 jmcneill EMAC_ASSERT_LOCKED(sc);
602 1.1 jmcneill
603 1.1 jmcneill if ((ifp->if_flags & IFF_RUNNING) != 0)
604 1.1 jmcneill return 0;
605 1.1 jmcneill
606 1.1 jmcneill sunxi_emac_setup_rxfilter(sc);
607 1.1 jmcneill
608 1.1 jmcneill /* Configure DMA burst length and priorities */
609 1.1 jmcneill val = sunxi_emac_burst_len << BASIC_CTL_BURST_LEN_SHIFT;
610 1.1 jmcneill if (sunxi_emac_rx_tx_pri)
611 1.1 jmcneill val |= BASIC_CTL_RX_TX_PRI;
612 1.1 jmcneill WR4(sc, EMAC_BASIC_CTL_1, val);
613 1.1 jmcneill
614 1.1 jmcneill /* Enable interrupts */
615 1.1 jmcneill sunxi_emac_enable_intr(sc);
616 1.1 jmcneill
617 1.1 jmcneill /* Enable transmit DMA */
618 1.1 jmcneill val = RD4(sc, EMAC_TX_CTL_1);
619 1.1 jmcneill WR4(sc, EMAC_TX_CTL_1, val | TX_DMA_EN | TX_MD | TX_NEXT_FRAME);
620 1.1 jmcneill
621 1.1 jmcneill /* Enable receive DMA */
622 1.1 jmcneill val = RD4(sc, EMAC_RX_CTL_1);
623 1.1 jmcneill WR4(sc, EMAC_RX_CTL_1, val | RX_DMA_EN | RX_MD);
624 1.1 jmcneill
625 1.1 jmcneill /* Enable transmitter */
626 1.1 jmcneill val = RD4(sc, EMAC_TX_CTL_0);
627 1.1 jmcneill WR4(sc, EMAC_TX_CTL_0, val | TX_EN);
628 1.1 jmcneill
629 1.1 jmcneill /* Enable receiver */
630 1.1 jmcneill val = RD4(sc, EMAC_RX_CTL_0);
631 1.1 jmcneill WR4(sc, EMAC_RX_CTL_0, val | RX_EN | CHECK_CRC);
632 1.1 jmcneill
633 1.1 jmcneill ifp->if_flags |= IFF_RUNNING;
634 1.1 jmcneill ifp->if_flags &= ~IFF_OACTIVE;
635 1.1 jmcneill
636 1.1 jmcneill mii_mediachg(mii);
637 1.1 jmcneill callout_schedule(&sc->stat_ch, hz);
638 1.1 jmcneill
639 1.1 jmcneill return 0;
640 1.1 jmcneill }
641 1.1 jmcneill
642 1.1 jmcneill static int
643 1.1 jmcneill sunxi_emac_init(struct ifnet *ifp)
644 1.1 jmcneill {
645 1.1 jmcneill struct sunxi_emac_softc *sc = ifp->if_softc;
646 1.1 jmcneill int error;
647 1.1 jmcneill
648 1.1 jmcneill EMAC_LOCK(sc);
649 1.1 jmcneill error = sunxi_emac_init_locked(sc);
650 1.1 jmcneill EMAC_UNLOCK(sc);
651 1.1 jmcneill
652 1.1 jmcneill return error;
653 1.1 jmcneill }
654 1.1 jmcneill
655 1.1 jmcneill static void
656 1.1 jmcneill sunxi_emac_stop_locked(struct sunxi_emac_softc *sc, int disable)
657 1.1 jmcneill {
658 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
659 1.1 jmcneill uint32_t val;
660 1.1 jmcneill
661 1.1 jmcneill EMAC_ASSERT_LOCKED(sc);
662 1.1 jmcneill
663 1.1 jmcneill callout_stop(&sc->stat_ch);
664 1.1 jmcneill
665 1.1 jmcneill mii_down(&sc->mii);
666 1.1 jmcneill
667 1.1 jmcneill /* Stop transmit DMA and flush data in the TX FIFO */
668 1.1 jmcneill val = RD4(sc, EMAC_TX_CTL_1);
669 1.1 jmcneill val &= ~TX_DMA_EN;
670 1.1 jmcneill val |= FLUSH_TX_FIFO;
671 1.1 jmcneill WR4(sc, EMAC_TX_CTL_1, val);
672 1.1 jmcneill
673 1.1 jmcneill /* Disable transmitter */
674 1.1 jmcneill val = RD4(sc, EMAC_TX_CTL_0);
675 1.1 jmcneill WR4(sc, EMAC_TX_CTL_0, val & ~TX_EN);
676 1.1 jmcneill
677 1.1 jmcneill /* Disable receiver */
678 1.1 jmcneill val = RD4(sc, EMAC_RX_CTL_0);
679 1.1 jmcneill WR4(sc, EMAC_RX_CTL_0, val & ~RX_EN);
680 1.1 jmcneill
681 1.1 jmcneill /* Disable interrupts */
682 1.1 jmcneill sunxi_emac_disable_intr(sc);
683 1.1 jmcneill
684 1.1 jmcneill /* Disable transmit DMA */
685 1.1 jmcneill val = RD4(sc, EMAC_TX_CTL_1);
686 1.1 jmcneill WR4(sc, EMAC_TX_CTL_1, val & ~TX_DMA_EN);
687 1.1 jmcneill
688 1.1 jmcneill /* Disable receive DMA */
689 1.1 jmcneill val = RD4(sc, EMAC_RX_CTL_1);
690 1.1 jmcneill WR4(sc, EMAC_RX_CTL_1, val & ~RX_DMA_EN);
691 1.1 jmcneill
692 1.1 jmcneill ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
693 1.1 jmcneill }
694 1.1 jmcneill
695 1.1 jmcneill static void
696 1.1 jmcneill sunxi_emac_stop(struct ifnet *ifp, int disable)
697 1.1 jmcneill {
698 1.1 jmcneill struct sunxi_emac_softc * const sc = ifp->if_softc;
699 1.1 jmcneill
700 1.1 jmcneill EMAC_LOCK(sc);
701 1.1 jmcneill sunxi_emac_stop_locked(sc, disable);
702 1.1 jmcneill EMAC_UNLOCK(sc);
703 1.1 jmcneill }
704 1.1 jmcneill
705 1.1 jmcneill static int
706 1.1 jmcneill sunxi_emac_rxintr(struct sunxi_emac_softc *sc)
707 1.1 jmcneill {
708 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
709 1.4 jmcneill int error, index, len, npkt;
710 1.4 jmcneill struct mbuf *m, *m0;
711 1.1 jmcneill uint32_t status;
712 1.1 jmcneill
713 1.1 jmcneill npkt = 0;
714 1.1 jmcneill
715 1.1 jmcneill for (index = sc->rx.cur; ; index = RX_NEXT(index)) {
716 1.1 jmcneill sunxi_emac_dma_sync(sc, sc->rx.desc_tag, sc->rx.desc_map,
717 1.1 jmcneill index, index + 1,
718 1.1 jmcneill RX_DESC_COUNT, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
719 1.1 jmcneill
720 1.1 jmcneill status = le32toh(sc->rx.desc_ring[index].status);
721 1.1 jmcneill if ((status & RX_DESC_CTL) != 0)
722 1.1 jmcneill break;
723 1.1 jmcneill
724 1.1 jmcneill bus_dmamap_sync(sc->rx.buf_tag, sc->rx.buf_map[index].map,
725 1.1 jmcneill 0, sc->rx.buf_map[index].map->dm_mapsize,
726 1.1 jmcneill BUS_DMASYNC_POSTREAD);
727 1.1 jmcneill bus_dmamap_unload(sc->rx.buf_tag, sc->rx.buf_map[index].map);
728 1.1 jmcneill
729 1.1 jmcneill len = (status & RX_FRM_LEN) >> RX_FRM_LEN_SHIFT;
730 1.1 jmcneill if (len != 0) {
731 1.1 jmcneill m = sc->rx.buf_map[index].mbuf;
732 1.1 jmcneill m_set_rcvif(m, ifp);
733 1.1 jmcneill m->m_flags |= M_HASFCS;
734 1.1 jmcneill m->m_pkthdr.len = len;
735 1.1 jmcneill m->m_len = len;
736 1.4 jmcneill m->m_nextpkt = NULL;
737 1.1 jmcneill
738 1.1 jmcneill if ((ifp->if_capenable & IFCAP_CSUM_IPv4_Rx) != 0 &&
739 1.1 jmcneill (status & RX_FRM_TYPE) != 0) {
740 1.8 jmcneill m->m_pkthdr.csum_flags = M_CSUM_IPv4 |
741 1.8 jmcneill M_CSUM_TCPv4 | M_CSUM_UDPv4;
742 1.1 jmcneill if ((status & RX_HEADER_ERR) != 0)
743 1.1 jmcneill m->m_pkthdr.csum_flags |=
744 1.1 jmcneill M_CSUM_IPv4_BAD;
745 1.8 jmcneill if ((status & RX_PAYLOAD_ERR) != 0)
746 1.1 jmcneill m->m_pkthdr.csum_flags |=
747 1.8 jmcneill M_CSUM_TCP_UDP_BAD;
748 1.1 jmcneill }
749 1.1 jmcneill
750 1.1 jmcneill ++npkt;
751 1.1 jmcneill
752 1.4 jmcneill if_percpuq_enqueue(ifp->if_percpuq, m);
753 1.1 jmcneill }
754 1.1 jmcneill
755 1.1 jmcneill if ((m0 = sunxi_emac_alloc_mbufcl(sc)) != NULL) {
756 1.1 jmcneill error = sunxi_emac_setup_rxbuf(sc, index, m0);
757 1.1 jmcneill if (error != 0) {
758 1.1 jmcneill /* XXX hole in RX ring */
759 1.1 jmcneill }
760 1.1 jmcneill } else
761 1.1 jmcneill ifp->if_ierrors++;
762 1.1 jmcneill
763 1.1 jmcneill sunxi_emac_dma_sync(sc, sc->rx.desc_tag, sc->rx.desc_map,
764 1.1 jmcneill index, index + 1,
765 1.2 jmcneill RX_DESC_COUNT, BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
766 1.1 jmcneill }
767 1.1 jmcneill
768 1.2 jmcneill sc->rx.cur = index;
769 1.2 jmcneill
770 1.1 jmcneill return npkt;
771 1.1 jmcneill }
772 1.1 jmcneill
773 1.1 jmcneill static void
774 1.1 jmcneill sunxi_emac_txintr(struct sunxi_emac_softc *sc)
775 1.1 jmcneill {
776 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
777 1.1 jmcneill struct sunxi_emac_bufmap *bmap;
778 1.1 jmcneill struct sunxi_emac_desc *desc;
779 1.1 jmcneill uint32_t status;
780 1.1 jmcneill int i;
781 1.1 jmcneill
782 1.1 jmcneill EMAC_ASSERT_LOCKED(sc);
783 1.1 jmcneill
784 1.1 jmcneill for (i = sc->tx.next; sc->tx.queued > 0; i = TX_NEXT(i)) {
785 1.1 jmcneill KASSERT(sc->tx.queued > 0 && sc->tx.queued <= TX_DESC_COUNT);
786 1.1 jmcneill sunxi_emac_dma_sync(sc, sc->tx.desc_tag, sc->tx.desc_map,
787 1.1 jmcneill i, i + 1, TX_DESC_COUNT,
788 1.1 jmcneill BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
789 1.1 jmcneill desc = &sc->tx.desc_ring[i];
790 1.1 jmcneill status = le32toh(desc->status);
791 1.1 jmcneill if ((status & TX_DESC_CTL) != 0)
792 1.1 jmcneill break;
793 1.1 jmcneill bmap = &sc->tx.buf_map[i];
794 1.1 jmcneill if (bmap->mbuf != NULL) {
795 1.1 jmcneill bus_dmamap_sync(sc->tx.buf_tag, bmap->map,
796 1.1 jmcneill 0, bmap->map->dm_mapsize,
797 1.1 jmcneill BUS_DMASYNC_POSTWRITE);
798 1.1 jmcneill bus_dmamap_unload(sc->tx.buf_tag, bmap->map);
799 1.1 jmcneill m_freem(bmap->mbuf);
800 1.1 jmcneill bmap->mbuf = NULL;
801 1.1 jmcneill }
802 1.1 jmcneill
803 1.1 jmcneill sunxi_emac_setup_txdesc(sc, i, 0, 0, 0);
804 1.2 jmcneill sunxi_emac_dma_sync(sc, sc->tx.desc_tag, sc->tx.desc_map,
805 1.2 jmcneill i, i + 1, TX_DESC_COUNT,
806 1.2 jmcneill BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
807 1.1 jmcneill
808 1.1 jmcneill ifp->if_flags &= ~IFF_OACTIVE;
809 1.1 jmcneill ifp->if_opackets++;
810 1.1 jmcneill }
811 1.1 jmcneill
812 1.1 jmcneill sc->tx.next = i;
813 1.1 jmcneill }
814 1.1 jmcneill
815 1.1 jmcneill static int
816 1.1 jmcneill sunxi_emac_intr(void *arg)
817 1.1 jmcneill {
818 1.1 jmcneill struct sunxi_emac_softc *sc = arg;
819 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
820 1.1 jmcneill uint32_t val;
821 1.1 jmcneill
822 1.1 jmcneill EMAC_LOCK(sc);
823 1.1 jmcneill
824 1.1 jmcneill val = RD4(sc, EMAC_INT_STA);
825 1.1 jmcneill WR4(sc, EMAC_INT_STA, val);
826 1.1 jmcneill
827 1.1 jmcneill if (val & RX_INT)
828 1.1 jmcneill sunxi_emac_rxintr(sc);
829 1.1 jmcneill
830 1.1 jmcneill if (val & (TX_INT|TX_BUF_UA_INT)) {
831 1.1 jmcneill sunxi_emac_txintr(sc);
832 1.1 jmcneill if_schedule_deferred_start(ifp);
833 1.1 jmcneill }
834 1.1 jmcneill
835 1.1 jmcneill EMAC_UNLOCK(sc);
836 1.1 jmcneill
837 1.1 jmcneill return 1;
838 1.1 jmcneill }
839 1.1 jmcneill
840 1.1 jmcneill static int
841 1.1 jmcneill sunxi_emac_ioctl(struct ifnet *ifp, u_long cmd, void *data)
842 1.1 jmcneill {
843 1.1 jmcneill struct sunxi_emac_softc *sc = ifp->if_softc;
844 1.1 jmcneill struct mii_data *mii = &sc->mii;
845 1.1 jmcneill struct ifreq *ifr = data;
846 1.1 jmcneill int error, s;
847 1.1 jmcneill
848 1.1 jmcneill #ifndef EMAC_MPSAFE
849 1.1 jmcneill s = splnet();
850 1.1 jmcneill #endif
851 1.1 jmcneill
852 1.1 jmcneill switch (cmd) {
853 1.1 jmcneill case SIOCSIFMEDIA:
854 1.1 jmcneill case SIOCGIFMEDIA:
855 1.1 jmcneill #ifdef EMAC_MPSAFE
856 1.1 jmcneill s = splnet();
857 1.1 jmcneill #endif
858 1.1 jmcneill error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, cmd);
859 1.1 jmcneill #ifdef EMAC_MPSAFE
860 1.1 jmcneill splx(s);
861 1.1 jmcneill #endif
862 1.1 jmcneill break;
863 1.1 jmcneill default:
864 1.1 jmcneill #ifdef EMAC_MPSAFE
865 1.1 jmcneill s = splnet();
866 1.1 jmcneill #endif
867 1.1 jmcneill error = ether_ioctl(ifp, cmd, data);
868 1.1 jmcneill #ifdef EMAC_MPSAFE
869 1.1 jmcneill splx(s);
870 1.1 jmcneill #endif
871 1.1 jmcneill if (error != ENETRESET)
872 1.1 jmcneill break;
873 1.1 jmcneill
874 1.1 jmcneill error = 0;
875 1.1 jmcneill
876 1.1 jmcneill if (cmd == SIOCSIFCAP)
877 1.1 jmcneill error = (*ifp->if_init)(ifp);
878 1.1 jmcneill else if (cmd != SIOCADDMULTI && cmd != SIOCDELMULTI)
879 1.1 jmcneill ;
880 1.1 jmcneill else if ((ifp->if_flags & IFF_RUNNING) != 0) {
881 1.1 jmcneill EMAC_LOCK(sc);
882 1.1 jmcneill sunxi_emac_setup_rxfilter(sc);
883 1.1 jmcneill EMAC_UNLOCK(sc);
884 1.1 jmcneill }
885 1.1 jmcneill break;
886 1.1 jmcneill }
887 1.1 jmcneill
888 1.1 jmcneill #ifndef EMAC_MPSAFE
889 1.1 jmcneill splx(s);
890 1.1 jmcneill #endif
891 1.1 jmcneill
892 1.1 jmcneill return error;
893 1.1 jmcneill }
894 1.1 jmcneill
895 1.10 jmcneill static bool
896 1.10 jmcneill sunxi_emac_has_internal_phy(struct sunxi_emac_softc *sc)
897 1.10 jmcneill {
898 1.10 jmcneill const char * mdio_internal_compat[] = {
899 1.10 jmcneill "allwinner,sun8i-h3-mdio-internal",
900 1.10 jmcneill NULL
901 1.10 jmcneill };
902 1.10 jmcneill int phy;
903 1.10 jmcneill
904 1.10 jmcneill /* Non-standard property, for compatible with old dts files */
905 1.10 jmcneill if (of_hasprop(sc->phandle, "allwinner,use-internal-phy"))
906 1.10 jmcneill return true;
907 1.10 jmcneill
908 1.10 jmcneill phy = fdtbus_get_phandle(sc->phandle, "phy-handle");
909 1.10 jmcneill if (phy == -1)
910 1.10 jmcneill return false;
911 1.10 jmcneill
912 1.10 jmcneill /* For internal PHY, check compatible string of parent node */
913 1.10 jmcneill return of_compatible(OF_parent(phy), mdio_internal_compat) >= 0;
914 1.10 jmcneill }
915 1.10 jmcneill
916 1.1 jmcneill static int
917 1.1 jmcneill sunxi_emac_setup_phy(struct sunxi_emac_softc *sc)
918 1.1 jmcneill {
919 1.1 jmcneill uint32_t reg, tx_delay, rx_delay;
920 1.1 jmcneill const char *phy_type;
921 1.1 jmcneill
922 1.1 jmcneill phy_type = fdtbus_get_string(sc->phandle, "phy-mode");
923 1.1 jmcneill if (phy_type == NULL)
924 1.1 jmcneill return 0;
925 1.1 jmcneill
926 1.1 jmcneill aprint_debug_dev(sc->dev, "PHY type: %s\n", phy_type);
927 1.1 jmcneill
928 1.1 jmcneill reg = SYSCONRD4(sc, 0);
929 1.1 jmcneill
930 1.1 jmcneill reg &= ~(EMAC_CLK_PIT | EMAC_CLK_SRC | EMAC_CLK_RMII_EN);
931 1.1 jmcneill if (strcmp(phy_type, "rgmii") == 0)
932 1.1 jmcneill reg |= EMAC_CLK_PIT_RGMII | EMAC_CLK_SRC_RGMII;
933 1.1 jmcneill else if (strcmp(phy_type, "rmii") == 0)
934 1.1 jmcneill reg |= EMAC_CLK_RMII_EN;
935 1.1 jmcneill else
936 1.1 jmcneill reg |= EMAC_CLK_PIT_MII | EMAC_CLK_SRC_MII;
937 1.1 jmcneill
938 1.13 jmcneill if (of_getprop_uint32(sc->phandle, "allwinner,tx-delay-ps",
939 1.13 jmcneill &tx_delay) == 0) {
940 1.13 jmcneill reg &= ~EMAC_CLK_ETXDC;
941 1.13 jmcneill reg |= ((tx_delay / 100) << EMAC_CLK_ETXDC_SHIFT);
942 1.13 jmcneill } else if (of_getprop_uint32(sc->phandle, "tx-delay", &tx_delay) == 0) {
943 1.1 jmcneill reg &= ~EMAC_CLK_ETXDC;
944 1.1 jmcneill reg |= (tx_delay << EMAC_CLK_ETXDC_SHIFT);
945 1.1 jmcneill }
946 1.13 jmcneill if (of_getprop_uint32(sc->phandle, "allwinner,rx-delay-ps",
947 1.13 jmcneill &rx_delay) == 0) {
948 1.13 jmcneill reg &= ~EMAC_CLK_ERXDC;
949 1.13 jmcneill reg |= ((rx_delay / 100) << EMAC_CLK_ERXDC_SHIFT);
950 1.13 jmcneill } else if (of_getprop_uint32(sc->phandle, "rx-delay", &rx_delay) == 0) {
951 1.1 jmcneill reg &= ~EMAC_CLK_ERXDC;
952 1.1 jmcneill reg |= (rx_delay << EMAC_CLK_ERXDC_SHIFT);
953 1.1 jmcneill }
954 1.1 jmcneill
955 1.1 jmcneill if (sc->type == EMAC_H3) {
956 1.10 jmcneill if (sunxi_emac_has_internal_phy(sc)) {
957 1.1 jmcneill reg |= EMAC_CLK_EPHY_SELECT;
958 1.1 jmcneill reg &= ~EMAC_CLK_EPHY_SHUTDOWN;
959 1.1 jmcneill if (of_hasprop(sc->phandle,
960 1.1 jmcneill "allwinner,leds-active-low"))
961 1.1 jmcneill reg |= EMAC_CLK_EPHY_LED_POL;
962 1.1 jmcneill else
963 1.1 jmcneill reg &= ~EMAC_CLK_EPHY_LED_POL;
964 1.1 jmcneill
965 1.1 jmcneill /* Set internal PHY addr to 1 */
966 1.1 jmcneill reg &= ~EMAC_CLK_EPHY_ADDR;
967 1.1 jmcneill reg |= (1 << EMAC_CLK_EPHY_ADDR_SHIFT);
968 1.1 jmcneill } else {
969 1.1 jmcneill reg &= ~EMAC_CLK_EPHY_SELECT;
970 1.1 jmcneill }
971 1.1 jmcneill }
972 1.1 jmcneill
973 1.1 jmcneill aprint_debug_dev(sc->dev, "EMAC clock: 0x%08x\n", reg);
974 1.1 jmcneill
975 1.1 jmcneill SYSCONWR4(sc, 0, reg);
976 1.1 jmcneill
977 1.1 jmcneill return 0;
978 1.1 jmcneill }
979 1.1 jmcneill
980 1.1 jmcneill static int
981 1.1 jmcneill sunxi_emac_setup_resources(struct sunxi_emac_softc *sc)
982 1.1 jmcneill {
983 1.1 jmcneill u_int freq;
984 1.1 jmcneill int error, div;
985 1.1 jmcneill
986 1.1 jmcneill /* Configure PHY for MII or RGMII mode */
987 1.1 jmcneill if (sunxi_emac_setup_phy(sc) != 0)
988 1.1 jmcneill return ENXIO;
989 1.1 jmcneill
990 1.1 jmcneill /* Enable clocks */
991 1.1 jmcneill error = clk_enable(sc->clk_ahb);
992 1.1 jmcneill if (error != 0) {
993 1.1 jmcneill aprint_error_dev(sc->dev, "cannot enable ahb clock\n");
994 1.1 jmcneill return error;
995 1.1 jmcneill }
996 1.1 jmcneill
997 1.1 jmcneill if (sc->clk_ephy != NULL) {
998 1.1 jmcneill error = clk_enable(sc->clk_ephy);
999 1.1 jmcneill if (error != 0) {
1000 1.1 jmcneill aprint_error_dev(sc->dev, "cannot enable ephy clock\n");
1001 1.1 jmcneill return error;
1002 1.1 jmcneill }
1003 1.1 jmcneill }
1004 1.1 jmcneill
1005 1.1 jmcneill /* De-assert reset */
1006 1.1 jmcneill error = fdtbus_reset_deassert(sc->rst_ahb);
1007 1.1 jmcneill if (error != 0) {
1008 1.1 jmcneill aprint_error_dev(sc->dev, "cannot de-assert ahb reset\n");
1009 1.1 jmcneill return error;
1010 1.1 jmcneill }
1011 1.1 jmcneill if (sc->rst_ephy != NULL) {
1012 1.1 jmcneill error = fdtbus_reset_deassert(sc->rst_ephy);
1013 1.1 jmcneill if (error != 0) {
1014 1.1 jmcneill aprint_error_dev(sc->dev,
1015 1.1 jmcneill "cannot de-assert ephy reset\n");
1016 1.1 jmcneill return error;
1017 1.1 jmcneill }
1018 1.1 jmcneill }
1019 1.1 jmcneill
1020 1.1 jmcneill /* Enable PHY regulator if applicable */
1021 1.1 jmcneill if (sc->reg_phy != NULL) {
1022 1.1 jmcneill error = fdtbus_regulator_enable(sc->reg_phy);
1023 1.1 jmcneill if (error != 0) {
1024 1.1 jmcneill aprint_error_dev(sc->dev,
1025 1.1 jmcneill "cannot enable PHY regulator\n");
1026 1.1 jmcneill return error;
1027 1.1 jmcneill }
1028 1.1 jmcneill }
1029 1.1 jmcneill
1030 1.1 jmcneill /* Determine MDC clock divide ratio based on AHB clock */
1031 1.1 jmcneill freq = clk_get_rate(sc->clk_ahb);
1032 1.1 jmcneill if (freq == 0) {
1033 1.1 jmcneill aprint_error_dev(sc->dev, "cannot get AHB clock frequency\n");
1034 1.1 jmcneill return ENXIO;
1035 1.1 jmcneill }
1036 1.1 jmcneill div = freq / MDIO_FREQ;
1037 1.1 jmcneill if (div <= 16)
1038 1.1 jmcneill sc->mdc_div_ratio_m = MDC_DIV_RATIO_M_16;
1039 1.1 jmcneill else if (div <= 32)
1040 1.1 jmcneill sc->mdc_div_ratio_m = MDC_DIV_RATIO_M_32;
1041 1.1 jmcneill else if (div <= 64)
1042 1.1 jmcneill sc->mdc_div_ratio_m = MDC_DIV_RATIO_M_64;
1043 1.1 jmcneill else if (div <= 128)
1044 1.1 jmcneill sc->mdc_div_ratio_m = MDC_DIV_RATIO_M_128;
1045 1.1 jmcneill else {
1046 1.1 jmcneill aprint_error_dev(sc->dev,
1047 1.1 jmcneill "cannot determine MDC clock divide ratio\n");
1048 1.1 jmcneill return ENXIO;
1049 1.1 jmcneill }
1050 1.1 jmcneill
1051 1.1 jmcneill aprint_debug_dev(sc->dev, "AHB frequency %u Hz, MDC div: 0x%x\n",
1052 1.1 jmcneill freq, sc->mdc_div_ratio_m);
1053 1.1 jmcneill
1054 1.1 jmcneill return 0;
1055 1.1 jmcneill }
1056 1.1 jmcneill
1057 1.1 jmcneill static void
1058 1.1 jmcneill sunxi_emac_get_eaddr(struct sunxi_emac_softc *sc, uint8_t *eaddr)
1059 1.1 jmcneill {
1060 1.1 jmcneill uint32_t maclo, machi;
1061 1.1 jmcneill #if notyet
1062 1.1 jmcneill u_char rootkey[16];
1063 1.1 jmcneill #endif
1064 1.1 jmcneill
1065 1.1 jmcneill machi = RD4(sc, EMAC_ADDR_HIGH(0)) & 0xffff;
1066 1.1 jmcneill maclo = RD4(sc, EMAC_ADDR_LOW(0));
1067 1.1 jmcneill
1068 1.1 jmcneill if (maclo == 0xffffffff && machi == 0xffff) {
1069 1.1 jmcneill #if notyet
1070 1.1 jmcneill /* MAC address in hardware is invalid, create one */
1071 1.1 jmcneill if (aw_sid_get_rootkey(rootkey) == 0 &&
1072 1.1 jmcneill (rootkey[3] | rootkey[12] | rootkey[13] | rootkey[14] |
1073 1.1 jmcneill rootkey[15]) != 0) {
1074 1.1 jmcneill /* MAC address is derived from the root key in SID */
1075 1.1 jmcneill maclo = (rootkey[13] << 24) | (rootkey[12] << 16) |
1076 1.1 jmcneill (rootkey[3] << 8) | 0x02;
1077 1.1 jmcneill machi = (rootkey[15] << 8) | rootkey[14];
1078 1.1 jmcneill } else {
1079 1.1 jmcneill #endif
1080 1.1 jmcneill /* Create one */
1081 1.1 jmcneill maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
1082 1.1 jmcneill machi = cprng_strong32() & 0xffff;
1083 1.1 jmcneill #if notyet
1084 1.1 jmcneill }
1085 1.1 jmcneill #endif
1086 1.1 jmcneill }
1087 1.1 jmcneill
1088 1.1 jmcneill eaddr[0] = maclo & 0xff;
1089 1.1 jmcneill eaddr[1] = (maclo >> 8) & 0xff;
1090 1.1 jmcneill eaddr[2] = (maclo >> 16) & 0xff;
1091 1.1 jmcneill eaddr[3] = (maclo >> 24) & 0xff;
1092 1.1 jmcneill eaddr[4] = machi & 0xff;
1093 1.1 jmcneill eaddr[5] = (machi >> 8) & 0xff;
1094 1.1 jmcneill }
1095 1.1 jmcneill
1096 1.1 jmcneill #ifdef SUNXI_EMAC_DEBUG
1097 1.1 jmcneill static void
1098 1.1 jmcneill sunxi_emac_dump_regs(struct sunxi_emac_softc *sc)
1099 1.1 jmcneill {
1100 1.1 jmcneill static const struct {
1101 1.1 jmcneill const char *name;
1102 1.1 jmcneill u_int reg;
1103 1.1 jmcneill } regs[] = {
1104 1.1 jmcneill { "BASIC_CTL_0", EMAC_BASIC_CTL_0 },
1105 1.1 jmcneill { "BASIC_CTL_1", EMAC_BASIC_CTL_1 },
1106 1.1 jmcneill { "INT_STA", EMAC_INT_STA },
1107 1.1 jmcneill { "INT_EN", EMAC_INT_EN },
1108 1.1 jmcneill { "TX_CTL_0", EMAC_TX_CTL_0 },
1109 1.1 jmcneill { "TX_CTL_1", EMAC_TX_CTL_1 },
1110 1.1 jmcneill { "TX_FLOW_CTL", EMAC_TX_FLOW_CTL },
1111 1.1 jmcneill { "TX_DMA_LIST", EMAC_TX_DMA_LIST },
1112 1.1 jmcneill { "RX_CTL_0", EMAC_RX_CTL_0 },
1113 1.1 jmcneill { "RX_CTL_1", EMAC_RX_CTL_1 },
1114 1.1 jmcneill { "RX_DMA_LIST", EMAC_RX_DMA_LIST },
1115 1.1 jmcneill { "RX_FRM_FLT", EMAC_RX_FRM_FLT },
1116 1.1 jmcneill { "RX_HASH_0", EMAC_RX_HASH_0 },
1117 1.1 jmcneill { "RX_HASH_1", EMAC_RX_HASH_1 },
1118 1.1 jmcneill { "MII_CMD", EMAC_MII_CMD },
1119 1.1 jmcneill { "ADDR_HIGH0", EMAC_ADDR_HIGH(0) },
1120 1.1 jmcneill { "ADDR_LOW0", EMAC_ADDR_LOW(0) },
1121 1.1 jmcneill { "TX_DMA_STA", EMAC_TX_DMA_STA },
1122 1.1 jmcneill { "TX_DMA_CUR_DESC", EMAC_TX_DMA_CUR_DESC },
1123 1.1 jmcneill { "TX_DMA_CUR_BUF", EMAC_TX_DMA_CUR_BUF },
1124 1.1 jmcneill { "RX_DMA_STA", EMAC_RX_DMA_STA },
1125 1.1 jmcneill { "RX_DMA_CUR_DESC", EMAC_RX_DMA_CUR_DESC },
1126 1.1 jmcneill { "RX_DMA_CUR_BUF", EMAC_RX_DMA_CUR_BUF },
1127 1.1 jmcneill { "RGMII_STA", EMAC_RGMII_STA },
1128 1.1 jmcneill };
1129 1.1 jmcneill u_int n;
1130 1.1 jmcneill
1131 1.1 jmcneill for (n = 0; n < __arraycount(regs); n++)
1132 1.1 jmcneill device_printf(dev, " %-20s %08x\n", regs[n].name,
1133 1.1 jmcneill RD4(sc, regs[n].reg));
1134 1.1 jmcneill }
1135 1.1 jmcneill #endif
1136 1.1 jmcneill
1137 1.1 jmcneill static int
1138 1.1 jmcneill sunxi_emac_phy_reset(struct sunxi_emac_softc *sc)
1139 1.1 jmcneill {
1140 1.1 jmcneill uint32_t delay_prop[3];
1141 1.1 jmcneill int pin_value;
1142 1.1 jmcneill
1143 1.1 jmcneill if (sc->pin_reset == NULL)
1144 1.1 jmcneill return 0;
1145 1.1 jmcneill
1146 1.1 jmcneill if (OF_getprop(sc->phandle, "allwinner,reset-delays-us", delay_prop,
1147 1.1 jmcneill sizeof(delay_prop)) <= 0)
1148 1.1 jmcneill return ENXIO;
1149 1.1 jmcneill
1150 1.1 jmcneill pin_value = of_hasprop(sc->phandle, "allwinner,reset-active-low");
1151 1.1 jmcneill
1152 1.1 jmcneill fdtbus_gpio_write(sc->pin_reset, pin_value);
1153 1.1 jmcneill delay(htole32(delay_prop[0]));
1154 1.1 jmcneill fdtbus_gpio_write(sc->pin_reset, !pin_value);
1155 1.1 jmcneill delay(htole32(delay_prop[1]));
1156 1.1 jmcneill fdtbus_gpio_write(sc->pin_reset, pin_value);
1157 1.1 jmcneill delay(htole32(delay_prop[2]));
1158 1.1 jmcneill
1159 1.1 jmcneill return 0;
1160 1.1 jmcneill }
1161 1.1 jmcneill
1162 1.1 jmcneill static int
1163 1.1 jmcneill sunxi_emac_reset(struct sunxi_emac_softc *sc)
1164 1.1 jmcneill {
1165 1.1 jmcneill int retry;
1166 1.1 jmcneill
1167 1.1 jmcneill /* Reset PHY if necessary */
1168 1.1 jmcneill if (sunxi_emac_phy_reset(sc) != 0) {
1169 1.1 jmcneill aprint_error_dev(sc->dev, "failed to reset PHY\n");
1170 1.1 jmcneill return ENXIO;
1171 1.1 jmcneill }
1172 1.1 jmcneill
1173 1.1 jmcneill /* Soft reset all registers and logic */
1174 1.1 jmcneill WR4(sc, EMAC_BASIC_CTL_1, BASIC_CTL_SOFT_RST);
1175 1.1 jmcneill
1176 1.1 jmcneill /* Wait for soft reset bit to self-clear */
1177 1.1 jmcneill for (retry = SOFT_RST_RETRY; retry > 0; retry--) {
1178 1.1 jmcneill if ((RD4(sc, EMAC_BASIC_CTL_1) & BASIC_CTL_SOFT_RST) == 0)
1179 1.1 jmcneill break;
1180 1.1 jmcneill delay(10);
1181 1.1 jmcneill }
1182 1.1 jmcneill if (retry == 0) {
1183 1.1 jmcneill aprint_error_dev(sc->dev, "soft reset timed out\n");
1184 1.1 jmcneill #ifdef SUNXI_EMAC_DEBUG
1185 1.1 jmcneill sunxi_emac_dump_regs(sc);
1186 1.1 jmcneill #endif
1187 1.1 jmcneill return ETIMEDOUT;
1188 1.1 jmcneill }
1189 1.1 jmcneill
1190 1.1 jmcneill return 0;
1191 1.1 jmcneill }
1192 1.1 jmcneill
1193 1.1 jmcneill static int
1194 1.1 jmcneill sunxi_emac_setup_dma(struct sunxi_emac_softc *sc)
1195 1.1 jmcneill {
1196 1.1 jmcneill struct mbuf *m;
1197 1.1 jmcneill int error, nsegs, i;
1198 1.1 jmcneill
1199 1.1 jmcneill /* Setup TX ring */
1200 1.1 jmcneill sc->tx.buf_tag = sc->tx.desc_tag = sc->dmat;
1201 1.1 jmcneill error = bus_dmamap_create(sc->dmat, TX_DESC_SIZE, 1, TX_DESC_SIZE, 0,
1202 1.1 jmcneill BUS_DMA_WAITOK, &sc->tx.desc_map);
1203 1.1 jmcneill if (error)
1204 1.1 jmcneill return error;
1205 1.1 jmcneill error = bus_dmamem_alloc(sc->dmat, TX_DESC_SIZE, DESC_ALIGN, 0,
1206 1.1 jmcneill &sc->tx.desc_dmaseg, 1, &nsegs, BUS_DMA_WAITOK);
1207 1.1 jmcneill if (error)
1208 1.1 jmcneill return error;
1209 1.1 jmcneill error = bus_dmamem_map(sc->dmat, &sc->tx.desc_dmaseg, nsegs,
1210 1.1 jmcneill TX_DESC_SIZE, (void *)&sc->tx.desc_ring,
1211 1.2 jmcneill BUS_DMA_WAITOK);
1212 1.1 jmcneill if (error)
1213 1.1 jmcneill return error;
1214 1.1 jmcneill error = bus_dmamap_load(sc->dmat, sc->tx.desc_map, sc->tx.desc_ring,
1215 1.1 jmcneill TX_DESC_SIZE, NULL, BUS_DMA_WAITOK);
1216 1.1 jmcneill if (error)
1217 1.1 jmcneill return error;
1218 1.1 jmcneill sc->tx.desc_ring_paddr = sc->tx.desc_map->dm_segs[0].ds_addr;
1219 1.1 jmcneill
1220 1.1 jmcneill memset(sc->tx.desc_ring, 0, TX_DESC_SIZE);
1221 1.1 jmcneill bus_dmamap_sync(sc->dmat, sc->tx.desc_map, 0, TX_DESC_SIZE,
1222 1.2 jmcneill BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1223 1.1 jmcneill
1224 1.1 jmcneill for (i = 0; i < TX_DESC_COUNT; i++)
1225 1.1 jmcneill sc->tx.desc_ring[i].next =
1226 1.1 jmcneill htole32(sc->tx.desc_ring_paddr + DESC_OFF(TX_NEXT(i)));
1227 1.1 jmcneill
1228 1.1 jmcneill sc->tx.queued = TX_DESC_COUNT;
1229 1.1 jmcneill for (i = 0; i < TX_DESC_COUNT; i++) {
1230 1.1 jmcneill error = bus_dmamap_create(sc->tx.buf_tag, MCLBYTES,
1231 1.1 jmcneill TX_MAX_SEGS, MCLBYTES, 0, BUS_DMA_WAITOK,
1232 1.1 jmcneill &sc->tx.buf_map[i].map);
1233 1.1 jmcneill if (error != 0) {
1234 1.1 jmcneill device_printf(sc->dev, "cannot create TX buffer map\n");
1235 1.1 jmcneill return error;
1236 1.1 jmcneill }
1237 1.1 jmcneill sunxi_emac_setup_txdesc(sc, i, 0, 0, 0);
1238 1.1 jmcneill }
1239 1.1 jmcneill
1240 1.1 jmcneill /* Setup RX ring */
1241 1.1 jmcneill sc->rx.buf_tag = sc->rx.desc_tag = sc->dmat;
1242 1.1 jmcneill error = bus_dmamap_create(sc->dmat, RX_DESC_SIZE, 1, RX_DESC_SIZE, 0,
1243 1.1 jmcneill BUS_DMA_WAITOK, &sc->rx.desc_map);
1244 1.1 jmcneill if (error)
1245 1.1 jmcneill return error;
1246 1.1 jmcneill error = bus_dmamem_alloc(sc->dmat, RX_DESC_SIZE, DESC_ALIGN, 0,
1247 1.1 jmcneill &sc->rx.desc_dmaseg, 1, &nsegs, BUS_DMA_WAITOK);
1248 1.1 jmcneill if (error)
1249 1.1 jmcneill return error;
1250 1.1 jmcneill error = bus_dmamem_map(sc->dmat, &sc->rx.desc_dmaseg, nsegs,
1251 1.1 jmcneill RX_DESC_SIZE, (void *)&sc->rx.desc_ring,
1252 1.2 jmcneill BUS_DMA_WAITOK);
1253 1.1 jmcneill if (error)
1254 1.1 jmcneill return error;
1255 1.1 jmcneill error = bus_dmamap_load(sc->dmat, sc->rx.desc_map, sc->rx.desc_ring,
1256 1.1 jmcneill RX_DESC_SIZE, NULL, BUS_DMA_WAITOK);
1257 1.1 jmcneill if (error)
1258 1.1 jmcneill return error;
1259 1.1 jmcneill sc->rx.desc_ring_paddr = sc->rx.desc_map->dm_segs[0].ds_addr;
1260 1.1 jmcneill
1261 1.1 jmcneill memset(sc->rx.desc_ring, 0, RX_DESC_SIZE);
1262 1.1 jmcneill
1263 1.1 jmcneill for (i = 0; i < RX_DESC_COUNT; i++) {
1264 1.1 jmcneill error = bus_dmamap_create(sc->rx.buf_tag, MCLBYTES,
1265 1.1 jmcneill RX_DESC_COUNT, MCLBYTES, 0, BUS_DMA_WAITOK,
1266 1.1 jmcneill &sc->rx.buf_map[i].map);
1267 1.1 jmcneill if (error != 0) {
1268 1.1 jmcneill device_printf(sc->dev, "cannot create RX buffer map\n");
1269 1.1 jmcneill return error;
1270 1.1 jmcneill }
1271 1.1 jmcneill if ((m = sunxi_emac_alloc_mbufcl(sc)) == NULL) {
1272 1.1 jmcneill device_printf(sc->dev, "cannot allocate RX mbuf\n");
1273 1.1 jmcneill return ENOMEM;
1274 1.1 jmcneill }
1275 1.1 jmcneill error = sunxi_emac_setup_rxbuf(sc, i, m);
1276 1.1 jmcneill if (error != 0) {
1277 1.1 jmcneill device_printf(sc->dev, "cannot create RX buffer\n");
1278 1.1 jmcneill return error;
1279 1.1 jmcneill }
1280 1.1 jmcneill }
1281 1.1 jmcneill bus_dmamap_sync(sc->rx.desc_tag, sc->rx.desc_map,
1282 1.1 jmcneill 0, sc->rx.desc_map->dm_mapsize,
1283 1.2 jmcneill BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1284 1.1 jmcneill
1285 1.1 jmcneill /* Write transmit and receive descriptor base address registers */
1286 1.1 jmcneill WR4(sc, EMAC_TX_DMA_LIST, sc->tx.desc_ring_paddr);
1287 1.1 jmcneill WR4(sc, EMAC_RX_DMA_LIST, sc->rx.desc_ring_paddr);
1288 1.1 jmcneill
1289 1.1 jmcneill return 0;
1290 1.1 jmcneill }
1291 1.1 jmcneill
1292 1.1 jmcneill static int
1293 1.1 jmcneill sunxi_emac_get_resources(struct sunxi_emac_softc *sc)
1294 1.1 jmcneill {
1295 1.1 jmcneill const int phandle = sc->phandle;
1296 1.1 jmcneill bus_addr_t addr, size;
1297 1.1 jmcneill
1298 1.10 jmcneill /* Map EMAC registers */
1299 1.10 jmcneill if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0)
1300 1.10 jmcneill return ENXIO;
1301 1.10 jmcneill if (bus_space_map(sc->bst, addr, size, 0, &sc->bsh[_RES_EMAC]) != 0)
1302 1.10 jmcneill return ENXIO;
1303 1.10 jmcneill
1304 1.10 jmcneill /* Map SYSCON registers */
1305 1.10 jmcneill if (of_hasprop(phandle, "syscon")) {
1306 1.10 jmcneill const int syscon_phandle = fdtbus_get_phandle(phandle,
1307 1.10 jmcneill "syscon");
1308 1.10 jmcneill if (syscon_phandle == -1)
1309 1.10 jmcneill return ENXIO;
1310 1.10 jmcneill if (fdtbus_get_reg(syscon_phandle, 0, &addr, &size) != 0)
1311 1.1 jmcneill return ENXIO;
1312 1.10 jmcneill if (size < EMAC_CLK_REG + 4)
1313 1.10 jmcneill return ENXIO;
1314 1.10 jmcneill addr += EMAC_CLK_REG;
1315 1.10 jmcneill size -= EMAC_CLK_REG;
1316 1.10 jmcneill } else {
1317 1.10 jmcneill if (fdtbus_get_reg(phandle, 1, &addr, &size) != 0)
1318 1.1 jmcneill return ENXIO;
1319 1.1 jmcneill }
1320 1.10 jmcneill if (bus_space_map(sc->bst, addr, size, 0, &sc->bsh[_RES_SYSCON]) != 0)
1321 1.10 jmcneill return ENXIO;
1322 1.1 jmcneill
1323 1.11 jmcneill /* The "ahb"/"stmmaceth" clock and reset is required */
1324 1.11 jmcneill if ((sc->clk_ahb = fdtbus_clock_get(phandle, "ahb")) == NULL &&
1325 1.11 jmcneill (sc->clk_ahb = fdtbus_clock_get(phandle, "stmmaceth")) == NULL)
1326 1.11 jmcneill return ENXIO;
1327 1.11 jmcneill if ((sc->rst_ahb = fdtbus_reset_get(phandle, "ahb")) == NULL &&
1328 1.11 jmcneill (sc->rst_ahb = fdtbus_reset_get(phandle, "stmmaceth")) == NULL)
1329 1.11 jmcneill return ENXIO;
1330 1.1 jmcneill
1331 1.11 jmcneill /* Internal PHY clock and reset are optional properties. */
1332 1.1 jmcneill sc->clk_ephy = fdtbus_clock_get(phandle, "ephy");
1333 1.11 jmcneill if (sc->clk_ephy == NULL) {
1334 1.11 jmcneill int phy_phandle = fdtbus_get_phandle(phandle, "phy-handle");
1335 1.11 jmcneill if (phy_phandle != -1)
1336 1.11 jmcneill sc->clk_ephy = fdtbus_clock_get_index(phy_phandle, 0);
1337 1.11 jmcneill }
1338 1.6 jmcneill sc->rst_ephy = fdtbus_reset_get(phandle, "ephy");
1339 1.11 jmcneill if (sc->rst_ephy == NULL) {
1340 1.12 jmcneill int phy_phandle = fdtbus_get_phandle(phandle, "phy-handle");
1341 1.11 jmcneill if (phy_phandle != -1)
1342 1.11 jmcneill sc->rst_ephy = fdtbus_reset_get_index(phy_phandle, 0);
1343 1.11 jmcneill }
1344 1.1 jmcneill
1345 1.1 jmcneill /* Regulator is optional */
1346 1.1 jmcneill sc->reg_phy = fdtbus_regulator_acquire(phandle, "phy-supply");
1347 1.1 jmcneill
1348 1.1 jmcneill /* Reset GPIO is optional */
1349 1.1 jmcneill sc->pin_reset = fdtbus_gpio_acquire(sc->phandle,
1350 1.1 jmcneill "allwinner,reset-gpio", GPIO_PIN_OUTPUT);
1351 1.1 jmcneill
1352 1.1 jmcneill return 0;
1353 1.1 jmcneill }
1354 1.1 jmcneill
1355 1.1 jmcneill static int
1356 1.7 jmcneill sunxi_emac_get_phyid(struct sunxi_emac_softc *sc)
1357 1.7 jmcneill {
1358 1.7 jmcneill bus_addr_t addr;
1359 1.11 jmcneill int phy_phandle;
1360 1.7 jmcneill
1361 1.11 jmcneill phy_phandle = fdtbus_get_phandle(sc->phandle, "phy");
1362 1.11 jmcneill if (phy_phandle == -1)
1363 1.11 jmcneill phy_phandle = fdtbus_get_phandle(sc->phandle, "phy-handle");
1364 1.7 jmcneill if (phy_phandle == -1)
1365 1.7 jmcneill return MII_PHY_ANY;
1366 1.7 jmcneill
1367 1.7 jmcneill if (fdtbus_get_reg(phy_phandle, 0, &addr, NULL) != 0)
1368 1.7 jmcneill return MII_PHY_ANY;
1369 1.7 jmcneill
1370 1.7 jmcneill return (int)addr;
1371 1.7 jmcneill }
1372 1.7 jmcneill
1373 1.7 jmcneill static int
1374 1.1 jmcneill sunxi_emac_match(device_t parent, cfdata_t cf, void *aux)
1375 1.1 jmcneill {
1376 1.1 jmcneill struct fdt_attach_args * const faa = aux;
1377 1.1 jmcneill
1378 1.1 jmcneill return of_match_compat_data(faa->faa_phandle, compat_data);
1379 1.1 jmcneill }
1380 1.1 jmcneill
1381 1.1 jmcneill static void
1382 1.1 jmcneill sunxi_emac_attach(device_t parent, device_t self, void *aux)
1383 1.1 jmcneill {
1384 1.1 jmcneill struct fdt_attach_args * const faa = aux;
1385 1.1 jmcneill struct sunxi_emac_softc * const sc = device_private(self);
1386 1.1 jmcneill const int phandle = faa->faa_phandle;
1387 1.1 jmcneill struct mii_data *mii = &sc->mii;
1388 1.1 jmcneill struct ifnet *ifp = &sc->ec.ec_if;
1389 1.1 jmcneill uint8_t eaddr[ETHER_ADDR_LEN];
1390 1.1 jmcneill char intrstr[128];
1391 1.1 jmcneill
1392 1.1 jmcneill sc->dev = self;
1393 1.1 jmcneill sc->phandle = phandle;
1394 1.1 jmcneill sc->bst = faa->faa_bst;
1395 1.1 jmcneill sc->dmat = faa->faa_dmat;
1396 1.1 jmcneill sc->type = of_search_compatible(phandle, compat_data)->data;
1397 1.7 jmcneill sc->phy_id = sunxi_emac_get_phyid(sc);
1398 1.1 jmcneill
1399 1.1 jmcneill if (sunxi_emac_get_resources(sc) != 0) {
1400 1.1 jmcneill aprint_error(": cannot allocate resources for device\n");
1401 1.1 jmcneill return;
1402 1.1 jmcneill }
1403 1.1 jmcneill if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
1404 1.1 jmcneill aprint_error(": cannot decode interrupt\n");
1405 1.1 jmcneill return;
1406 1.1 jmcneill }
1407 1.1 jmcneill
1408 1.1 jmcneill mutex_init(&sc->mtx, MUTEX_DEFAULT, IPL_NET);
1409 1.1 jmcneill callout_init(&sc->stat_ch, CALLOUT_FLAGS);
1410 1.1 jmcneill callout_setfunc(&sc->stat_ch, sunxi_emac_tick, sc);
1411 1.1 jmcneill
1412 1.1 jmcneill aprint_naive("\n");
1413 1.1 jmcneill aprint_normal(": EMAC\n");
1414 1.1 jmcneill
1415 1.1 jmcneill /* Setup clocks and regulators */
1416 1.1 jmcneill if (sunxi_emac_setup_resources(sc) != 0)
1417 1.1 jmcneill return;
1418 1.1 jmcneill
1419 1.1 jmcneill /* Read MAC address before resetting the chip */
1420 1.1 jmcneill sunxi_emac_get_eaddr(sc, eaddr);
1421 1.1 jmcneill
1422 1.1 jmcneill /* Soft reset EMAC core */
1423 1.1 jmcneill if (sunxi_emac_reset(sc) != 0)
1424 1.1 jmcneill return;
1425 1.1 jmcneill
1426 1.1 jmcneill /* Setup DMA descriptors */
1427 1.1 jmcneill if (sunxi_emac_setup_dma(sc) != 0) {
1428 1.1 jmcneill aprint_error_dev(self, "failed to setup DMA descriptors\n");
1429 1.1 jmcneill return;
1430 1.1 jmcneill }
1431 1.1 jmcneill
1432 1.1 jmcneill /* Install interrupt handler */
1433 1.1 jmcneill sc->ih = fdtbus_intr_establish(phandle, 0, IPL_NET,
1434 1.1 jmcneill FDT_INTR_FLAGS, sunxi_emac_intr, sc);
1435 1.1 jmcneill if (sc->ih == NULL) {
1436 1.1 jmcneill aprint_error_dev(self, "failed to establish interrupt on %s\n",
1437 1.1 jmcneill intrstr);
1438 1.1 jmcneill return;
1439 1.1 jmcneill }
1440 1.1 jmcneill aprint_normal_dev(self, "interrupting on %s\n", intrstr);
1441 1.1 jmcneill
1442 1.1 jmcneill /* Setup ethernet interface */
1443 1.1 jmcneill ifp->if_softc = sc;
1444 1.1 jmcneill snprintf(ifp->if_xname, IFNAMSIZ, EMAC_IFNAME, device_unit(self));
1445 1.1 jmcneill ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1446 1.1 jmcneill #ifdef EMAC_MPSAFE
1447 1.9 ozaki ifp->if_extflags = IFEF_MPSAFE;
1448 1.1 jmcneill #endif
1449 1.1 jmcneill ifp->if_start = sunxi_emac_start;
1450 1.1 jmcneill ifp->if_ioctl = sunxi_emac_ioctl;
1451 1.1 jmcneill ifp->if_init = sunxi_emac_init;
1452 1.1 jmcneill ifp->if_stop = sunxi_emac_stop;
1453 1.1 jmcneill ifp->if_capabilities = IFCAP_CSUM_IPv4_Rx |
1454 1.1 jmcneill IFCAP_CSUM_IPv4_Tx |
1455 1.1 jmcneill IFCAP_CSUM_TCPv4_Rx |
1456 1.1 jmcneill IFCAP_CSUM_TCPv4_Tx |
1457 1.1 jmcneill IFCAP_CSUM_UDPv4_Rx |
1458 1.1 jmcneill IFCAP_CSUM_UDPv4_Tx;
1459 1.1 jmcneill IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
1460 1.1 jmcneill IFQ_SET_READY(&ifp->if_snd);
1461 1.1 jmcneill
1462 1.1 jmcneill /* 802.1Q VLAN-sized frames are supported */
1463 1.1 jmcneill sc->ec.ec_capabilities |= ETHERCAP_VLAN_MTU;
1464 1.1 jmcneill
1465 1.1 jmcneill /* Attach MII driver */
1466 1.1 jmcneill sc->ec.ec_mii = mii;
1467 1.1 jmcneill ifmedia_init(&mii->mii_media, 0, ether_mediachange, ether_mediastatus);
1468 1.1 jmcneill mii->mii_ifp = ifp;
1469 1.1 jmcneill mii->mii_readreg = sunxi_emac_mii_readreg;
1470 1.1 jmcneill mii->mii_writereg = sunxi_emac_mii_writereg;
1471 1.1 jmcneill mii->mii_statchg = sunxi_emac_mii_statchg;
1472 1.7 jmcneill mii_attach(self, mii, 0xffffffff, sc->phy_id, MII_OFFSET_ANY,
1473 1.1 jmcneill MIIF_DOPAUSE);
1474 1.1 jmcneill
1475 1.1 jmcneill if (LIST_EMPTY(&mii->mii_phys)) {
1476 1.1 jmcneill aprint_error_dev(self, "no PHY found!\n");
1477 1.1 jmcneill return;
1478 1.1 jmcneill }
1479 1.1 jmcneill ifmedia_set(&mii->mii_media, IFM_ETHER|IFM_AUTO);
1480 1.1 jmcneill
1481 1.1 jmcneill /* Attach interface */
1482 1.1 jmcneill if_attach(ifp);
1483 1.1 jmcneill if_deferred_start_init(ifp, NULL);
1484 1.1 jmcneill
1485 1.1 jmcneill /* Attach ethernet interface */
1486 1.1 jmcneill ether_ifattach(ifp, eaddr);
1487 1.1 jmcneill }
1488 1.1 jmcneill
1489 1.1 jmcneill CFATTACH_DECL_NEW(sunxi_emac, sizeof(struct sunxi_emac_softc),
1490 1.1 jmcneill sunxi_emac_match, sunxi_emac_attach, NULL, NULL);
1491