1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
|
/* $OpenBSD: if_dwqe_fdt.c,v 1.7 2023/04/07 06:33:49 dlg Exp $ */
/*
* Copyright (c) 2008, 2019 Mark Kettenis <kettenis@openbsd.org>
* Copyright (c) 2017, 2022 Patrick Wildt <patrick@blueri.se>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Driver for the Synopsys Designware ethernet controller.
*/
#include "bpfilter.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/queue.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/timeout.h>
#include <sys/task.h>
#include <machine/bus.h>
#include <machine/fdt.h>
#include <net/if.h>
#include <net/if_media.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/ofw_clock.h>
#include <dev/ofw/ofw_gpio.h>
#include <dev/ofw/ofw_misc.h>
#include <dev/ofw/ofw_pinctrl.h>
#include <dev/ofw/ofw_regulator.h>
#include <dev/ofw/fdt.h>
#include <dev/mii/mii.h>
#include <dev/mii/miivar.h>
#if NBPFILTER > 0
#include <net/bpf.h>
#endif
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <dev/ic/dwqevar.h>
#include <dev/ic/dwqereg.h>
int dwqe_fdt_match(struct device *, void *, void *);
void dwqe_fdt_attach(struct device *, struct device *, void *);
void dwqe_setup_rk3568(struct dwqe_softc *);
void dwqe_mii_statchg_rk3568(struct device *);
void dwqe_mii_statchg_rk3588(struct device *);
const struct cfattach dwqe_fdt_ca = {
sizeof(struct dwqe_softc), dwqe_fdt_match, dwqe_fdt_attach
};
void dwqe_reset_phy(struct dwqe_softc *, uint32_t);
int
dwqe_fdt_match(struct device *parent, void *cfdata, void *aux)
{
struct fdt_attach_args *faa = aux;
return OF_is_compatible(faa->fa_node, "snps,dwmac-4.20a");
}
void
dwqe_fdt_attach(struct device *parent, struct device *self, void *aux)
{
struct dwqe_softc *sc = (void *)self;
struct fdt_attach_args *faa = aux;
uint32_t phy, phy_supply;
uint32_t axi_config;
struct ifnet *ifp;
int i, node;
sc->sc_node = faa->fa_node;
sc->sc_iot = faa->fa_iot;
if (bus_space_map(sc->sc_iot, faa->fa_reg[0].addr,
faa->fa_reg[0].size, 0, &sc->sc_ioh)) {
printf(": cannot map registers\n");
return;
}
sc->sc_dmat = faa->fa_dmat;
/* Decide GMAC id through address */
switch (faa->fa_reg[0].addr) {
case 0xfe2a0000:
sc->sc_gmac_id = 0;
break;
case 0xfe010000:
sc->sc_gmac_id = 1;
break;
default:
printf(": unknown controller\n");
return;
}
/* Lookup PHY. */
phy = OF_getpropint(faa->fa_node, "phy", 0);
if (phy == 0)
phy = OF_getpropint(faa->fa_node, "phy-handle", 0);
node = OF_getnodebyphandle(phy);
if (node)
sc->sc_phyloc = OF_getpropint(node, "reg", MII_PHY_ANY);
else
sc->sc_phyloc = MII_PHY_ANY;
pinctrl_byname(faa->fa_node, "default");
/* Enable clocks. */
clock_set_assigned(faa->fa_node);
clock_enable(faa->fa_node, "stmmaceth");
reset_deassert(faa->fa_node, "stmmaceth");
if (OF_is_compatible(faa->fa_node, "rockchip,rk3568-gmac")) {
clock_enable(faa->fa_node, "mac_clk_rx");
clock_enable(faa->fa_node, "mac_clk_tx");
clock_enable(faa->fa_node, "aclk_mac");
clock_enable(faa->fa_node, "pclk_mac");
}
delay(5000);
/* Do hardware specific initializations. */
if (OF_is_compatible(faa->fa_node, "rockchip,rk3568-gmac"))
dwqe_setup_rk3568(sc);
/* Power up PHY. */
phy_supply = OF_getpropint(faa->fa_node, "phy-supply", 0);
if (phy_supply)
regulator_enable(phy_supply);
/* Reset PHY */
dwqe_reset_phy(sc, phy);
sc->sc_clk = clock_get_frequency(faa->fa_node, "stmmaceth");
if (sc->sc_clk > 500000000)
sc->sc_clk = GMAC_MAC_MDIO_ADDR_CR_500_800;
else if (sc->sc_clk > 300000000)
sc->sc_clk = GMAC_MAC_MDIO_ADDR_CR_300_500;
else if (sc->sc_clk > 150000000)
sc->sc_clk = GMAC_MAC_MDIO_ADDR_CR_150_250;
else if (sc->sc_clk > 100000000)
sc->sc_clk = GMAC_MAC_MDIO_ADDR_CR_100_150;
else if (sc->sc_clk > 60000000)
sc->sc_clk = GMAC_MAC_MDIO_ADDR_CR_60_100;
else if (sc->sc_clk > 35000000)
sc->sc_clk = GMAC_MAC_MDIO_ADDR_CR_35_60;
else
sc->sc_clk = GMAC_MAC_MDIO_ADDR_CR_20_35;
for (i = 0; i < 4; i++)
sc->sc_hw_feature[i] = dwqe_read(sc, GMAC_MAC_HW_FEATURE(i));
if (OF_getprop(faa->fa_node, "local-mac-address",
&sc->sc_lladdr, ETHER_ADDR_LEN) != ETHER_ADDR_LEN)
dwqe_lladdr_read(sc, sc->sc_lladdr);
sc->sc_force_thresh_dma_mode =
OF_getpropbool(faa->fa_node, "snps,force_thresh_dma_mode");
dwqe_reset(sc);
sc->sc_fixed_burst = OF_getpropbool(faa->fa_node, "snps,fixed-burst");
sc->sc_mixed_burst = OF_getpropbool(faa->fa_node, "snps,mixed-burst");
sc->sc_aal = OF_getpropbool(faa->fa_node, "snps,aal");
sc->sc_8xpbl = !OF_getpropbool(faa->fa_node, "snps,no-pbl-x8");
sc->sc_pbl = OF_getpropint(faa->fa_node, "snps,pbl", 8);
sc->sc_txpbl = OF_getpropint(faa->fa_node, "snps,txpbl", sc->sc_pbl);
sc->sc_rxpbl = OF_getpropint(faa->fa_node, "snps,rxpbl", sc->sc_pbl);
/* Configure AXI master. */
axi_config = OF_getpropint(faa->fa_node, "snps,axi-config", 0);
node = OF_getnodebyphandle(axi_config);
if (node) {
sc->sc_axi_config = 1;
sc->sc_lpi_en = OF_getpropbool(node, "snps,lpi_en");
sc->sc_xit_frm = OF_getpropbool(node, "snps,xit_frm");
sc->sc_wr_osr_lmt = OF_getpropint(node, "snps,wr_osr_lmt", 1);
sc->sc_rd_osr_lmt = OF_getpropint(node, "snps,rd_osr_lmt", 1);
OF_getpropintarray(node, "snps,blen", sc->sc_blen, sizeof(sc->sc_blen));
}
if (dwqe_attach(sc) != 0)
return;
if (OF_is_compatible(faa->fa_node, "rockchip,rk3568-gmac"))
sc->sc_mii.mii_statchg = dwqe_mii_statchg_rk3568;
else if (OF_is_compatible(faa->fa_node, "rockchip,rk3588-gmac"))
sc->sc_mii.mii_statchg = dwqe_mii_statchg_rk3588;
sc->sc_ih = fdt_intr_establish(faa->fa_node, IPL_NET | IPL_MPSAFE,
dwqe_intr, sc, sc->sc_dev.dv_xname);
if (sc->sc_ih == NULL)
printf("%s: can't establish interrupt\n", sc->sc_dev.dv_xname);
ifp = &sc->sc_ac.ac_if;
sc->sc_ifd.if_node = faa->fa_node;
sc->sc_ifd.if_ifp = ifp;
if_register(&sc->sc_ifd);
}
void
dwqe_reset_phy(struct dwqe_softc *sc, uint32_t phy)
{
uint32_t *gpio;
uint32_t delays[3];
int active = 1;
int node, len;
node = OF_getnodebyphandle(phy);
if (node && OF_getproplen(node, "reset-gpios") > 0) {
len = OF_getproplen(node, "reset-gpios");
gpio = malloc(len, M_TEMP, M_WAITOK);
/* Gather information. */
OF_getpropintarray(node, "reset-gpios", gpio, len);
delays[0] = OF_getpropint(node, "reset-deassert-us", 0);
delays[1] = OF_getpropint(node, "reset-assert-us", 0);
delays[2] = OF_getpropint(node, "reset-deassert-us", 0);
} else {
len = OF_getproplen(sc->sc_node, "snps,reset-gpio");
if (len <= 0)
return;
gpio = malloc(len, M_TEMP, M_WAITOK);
/* Gather information. */
OF_getpropintarray(sc->sc_node, "snps,reset-gpio", gpio, len);
if (OF_getpropbool(sc->sc_node, "snps-reset-active-low"))
active = 0;
delays[0] = delays[1] = delays[2] = 0;
OF_getpropintarray(sc->sc_node, "snps,reset-delays-us", delays,
sizeof(delays));
}
/* Perform reset sequence. */
gpio_controller_config_pin(gpio, GPIO_CONFIG_OUTPUT);
gpio_controller_set_pin(gpio, !active);
delay(delays[0]);
gpio_controller_set_pin(gpio, active);
delay(delays[1]);
gpio_controller_set_pin(gpio, !active);
delay(delays[2]);
free(gpio, M_TEMP, len);
}
/* RK3568 registers */
#define RK3568_GRF_GMACx_CON0(x) (0x0380 + (x) * 0x8)
#define RK3568_GMAC_CLK_RX_DL_CFG(val) ((0x7f << 8) << 16 | ((val) << 8))
#define RK3568_GMAC_CLK_TX_DL_CFG(val) ((0x7f << 0) << 16 | ((val) << 0))
#define RK3568_GRF_GMACx_CON1(x) (0x0384 + (x) * 0x8)
#define RK3568_GMAC_PHY_INTF_SEL_RGMII ((0x7 << 4) << 16 | (0x1 << 4))
#define RK3568_GMAC_PHY_INTF_SEL_RMII ((0x7 << 4) << 16 | (0x4 << 4))
#define RK3568_GMAC_TXCLK_DLY_SET(_v) ((1 << 0) << 16 | ((_v) << 0))
#define RK3568_GMAC_RXCLK_DLY_SET(_v) ((1 << 1) << 16 | ((_v) << 1))
void dwqe_mii_statchg_rk3568_task(void *);
void
dwqe_setup_rk3568(struct dwqe_softc *sc)
{
char phy_mode[32];
struct regmap *rm;
uint32_t grf;
int tx_delay, rx_delay;
uint32_t iface;
grf = OF_getpropint(sc->sc_node, "rockchip,grf", 0);
rm = regmap_byphandle(grf);
if (rm == NULL)
return;
if (OF_getprop(sc->sc_node, "phy-mode",
phy_mode, sizeof(phy_mode)) <= 0)
return;
tx_delay = OF_getpropint(sc->sc_node, "tx_delay", 0x30);
rx_delay = OF_getpropint(sc->sc_node, "rx_delay", 0x10);
if (strcmp(phy_mode, "rgmii") == 0) {
iface = RK3568_GMAC_PHY_INTF_SEL_RGMII;
} else if (strcmp(phy_mode, "rgmii-id") == 0) {
iface = RK3568_GMAC_PHY_INTF_SEL_RGMII;
/* id is "internal delay" */
tx_delay = rx_delay = 0;
} else if (strcmp(phy_mode, "rgmii-rxid") == 0) {
iface = RK3568_GMAC_PHY_INTF_SEL_RGMII;
rx_delay = 0;
} else if (strcmp(phy_mode, "rgmii-txid") == 0) {
iface = RK3568_GMAC_PHY_INTF_SEL_RGMII;
tx_delay = 0;
} else if (strcmp(phy_mode, "rmii") == 0) {
iface = RK3568_GMAC_PHY_INTF_SEL_RMII;
tx_delay = rx_delay = 0;
} else
return;
/* Program clock delay lines. */
regmap_write_4(rm, RK3568_GRF_GMACx_CON0(sc->sc_gmac_id),
RK3568_GMAC_CLK_TX_DL_CFG(tx_delay) |
RK3568_GMAC_CLK_RX_DL_CFG(rx_delay));
/* Set interface and enable/disable clock delay. */
regmap_write_4(rm, RK3568_GRF_GMACx_CON1(sc->sc_gmac_id), iface |
RK3568_GMAC_TXCLK_DLY_SET(tx_delay > 0 ? 1 : 0) |
RK3568_GMAC_RXCLK_DLY_SET(rx_delay > 0 ? 1 : 0));
task_set(&sc->sc_statchg_task,
dwqe_mii_statchg_rk3568_task, sc);
}
void
dwqe_mii_statchg_rk3568_task(void *arg)
{
struct dwqe_softc *sc = arg;
dwqe_mii_statchg(&sc->sc_dev);
switch (IFM_SUBTYPE(sc->sc_mii.mii_media_active)) {
case IFM_10_T:
clock_set_frequency(sc->sc_node, "clk_mac_speed", 2500000);
break;
case IFM_100_TX:
clock_set_frequency(sc->sc_node, "clk_mac_speed", 25000000);
break;
case IFM_1000_T:
clock_set_frequency(sc->sc_node, "clk_mac_speed", 125000000);
break;
}
}
void
dwqe_mii_statchg_rk3568(struct device *self)
{
struct dwqe_softc *sc = (void *)self;
task_add(systq, &sc->sc_statchg_task);
}
void
dwqe_mii_statchg_rk3588(struct device *self)
{
struct dwqe_softc *sc = (void *)self;
struct regmap *rm;
uint32_t grf;
uint32_t gmac_clk_sel = 0;
dwqe_mii_statchg(self);
grf = OF_getpropint(sc->sc_node, "rockchip,grf", 0);
rm = regmap_byphandle(grf);
if (rm == NULL)
return;
switch (IFM_SUBTYPE(sc->sc_mii.mii_media_active)) {
case IFM_10_T:
gmac_clk_sel = sc->sc_clk_sel_2_5;
break;
case IFM_100_TX:
gmac_clk_sel = sc->sc_clk_sel_25;
break;
case IFM_1000_T:
gmac_clk_sel = sc->sc_clk_sel_125;
break;
}
regmap_write_4(rm, sc->sc_clk_sel, gmac_clk_sel);
}
|