meson_dwmac.c revision 1.6 1 1.6 msaitoh /* $NetBSD: meson_dwmac.c,v 1.6 2019/07/08 03:22:38 msaitoh Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 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 NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 jmcneill * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 jmcneill * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 jmcneill * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 jmcneill * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 jmcneill * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 jmcneill * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 jmcneill * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 jmcneill * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 jmcneill * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 jmcneill * POSSIBILITY OF SUCH DAMAGE.
27 1.1 jmcneill */
28 1.1 jmcneill
29 1.1 jmcneill #include <sys/cdefs.h>
30 1.1 jmcneill
31 1.6 msaitoh __KERNEL_RCSID(0, "$NetBSD: meson_dwmac.c,v 1.6 2019/07/08 03:22:38 msaitoh Exp $");
32 1.1 jmcneill
33 1.1 jmcneill #include <sys/param.h>
34 1.1 jmcneill #include <sys/bus.h>
35 1.1 jmcneill #include <sys/device.h>
36 1.1 jmcneill #include <sys/intr.h>
37 1.1 jmcneill #include <sys/systm.h>
38 1.1 jmcneill #include <sys/gpio.h>
39 1.6 msaitoh #include <sys/rndsource.h>
40 1.1 jmcneill
41 1.1 jmcneill #include <net/if.h>
42 1.1 jmcneill #include <net/if_ether.h>
43 1.1 jmcneill #include <net/if_media.h>
44 1.1 jmcneill
45 1.1 jmcneill #include <dev/mii/miivar.h>
46 1.1 jmcneill
47 1.1 jmcneill #include <dev/ic/dwc_gmac_var.h>
48 1.1 jmcneill #include <dev/ic/dwc_gmac_reg.h>
49 1.1 jmcneill
50 1.1 jmcneill #include <dev/fdt/fdtvar.h>
51 1.1 jmcneill
52 1.4 jmcneill #define PRG_ETHERNET_ADDR0 0x00
53 1.4 jmcneill #define CLKGEN_ENABLE __BIT(12)
54 1.5 jmcneill #define RMII_CLK_I_INVERTED __BIT(11)
55 1.4 jmcneill #define PHY_CLK_ENABLE __BIT(10)
56 1.4 jmcneill #define MP2_CLK_OUT_DIV __BITS(9,7)
57 1.4 jmcneill #define TX_CLK_DELAY __BITS(6,5)
58 1.4 jmcneill #define PHY_INTERFACE_SEL __BIT(0)
59 1.1 jmcneill
60 1.1 jmcneill static const char * compatible[] = {
61 1.1 jmcneill "amlogic,meson8b-dwmac",
62 1.3 jmcneill "amlogic,meson-gx-dwmac",
63 1.1 jmcneill NULL
64 1.1 jmcneill };
65 1.1 jmcneill
66 1.1 jmcneill static int
67 1.1 jmcneill meson_dwmac_reset(const int phandle)
68 1.1 jmcneill {
69 1.1 jmcneill struct fdtbus_gpio_pin *pin_reset;
70 1.1 jmcneill const u_int *reset_delay_us;
71 1.1 jmcneill bool reset_active_low;
72 1.1 jmcneill int len, val;
73 1.1 jmcneill
74 1.1 jmcneill pin_reset = fdtbus_gpio_acquire(phandle, "snps,reset-gpio", GPIO_PIN_OUTPUT);
75 1.1 jmcneill if (pin_reset == NULL)
76 1.1 jmcneill return 0;
77 1.1 jmcneill
78 1.1 jmcneill reset_delay_us = fdtbus_get_prop(phandle, "snps,reset-delays-us", &len);
79 1.1 jmcneill if (reset_delay_us == NULL || len != 12)
80 1.1 jmcneill return ENXIO;
81 1.1 jmcneill
82 1.1 jmcneill reset_active_low = of_hasprop(phandle, "snps,reset-active-low");
83 1.1 jmcneill
84 1.1 jmcneill val = reset_active_low ? 1 : 0;
85 1.1 jmcneill
86 1.1 jmcneill fdtbus_gpio_write(pin_reset, val);
87 1.1 jmcneill delay(be32toh(reset_delay_us[0]));
88 1.1 jmcneill fdtbus_gpio_write(pin_reset, !val);
89 1.1 jmcneill delay(be32toh(reset_delay_us[1]));
90 1.1 jmcneill fdtbus_gpio_write(pin_reset, val);
91 1.1 jmcneill delay(be32toh(reset_delay_us[2]));
92 1.1 jmcneill
93 1.1 jmcneill return 0;
94 1.1 jmcneill }
95 1.1 jmcneill
96 1.4 jmcneill static void
97 1.4 jmcneill meson_dwmac_set_mode_rgmii(int phandle, bus_space_tag_t bst,
98 1.4 jmcneill bus_space_handle_t bsh, struct clk *clkin)
99 1.4 jmcneill {
100 1.4 jmcneill u_int tx_delay;
101 1.4 jmcneill uint32_t val;
102 1.4 jmcneill
103 1.4 jmcneill const u_int div = clk_get_rate(clkin) / 250000000;
104 1.4 jmcneill
105 1.4 jmcneill if (of_getprop_uint32(phandle, "amlogic,tx-delay-ns", &tx_delay) != 0)
106 1.4 jmcneill tx_delay = 2;
107 1.4 jmcneill
108 1.4 jmcneill val = bus_space_read_4(bst, bsh, PRG_ETHERNET_ADDR0);
109 1.4 jmcneill val |= PHY_INTERFACE_SEL;
110 1.4 jmcneill val &= ~TX_CLK_DELAY;
111 1.4 jmcneill val |= __SHIFTIN((tx_delay >> 1), TX_CLK_DELAY);
112 1.4 jmcneill val &= ~MP2_CLK_OUT_DIV;
113 1.4 jmcneill val |= __SHIFTIN(div, MP2_CLK_OUT_DIV);
114 1.4 jmcneill val |= PHY_CLK_ENABLE;
115 1.4 jmcneill val |= CLKGEN_ENABLE;
116 1.4 jmcneill bus_space_write_4(bst, bsh, PRG_ETHERNET_ADDR0, val);
117 1.4 jmcneill }
118 1.4 jmcneill
119 1.5 jmcneill static void
120 1.5 jmcneill meson_dwmac_set_mode_rmii(int phandle, bus_space_tag_t bst,
121 1.5 jmcneill bus_space_handle_t bsh)
122 1.5 jmcneill {
123 1.5 jmcneill uint32_t val;
124 1.5 jmcneill
125 1.5 jmcneill val = bus_space_read_4(bst, bsh, PRG_ETHERNET_ADDR0);
126 1.5 jmcneill val &= ~PHY_INTERFACE_SEL;
127 1.5 jmcneill val |= RMII_CLK_I_INVERTED;
128 1.5 jmcneill val &= ~TX_CLK_DELAY;
129 1.5 jmcneill val |= CLKGEN_ENABLE;
130 1.5 jmcneill bus_space_write_4(bst, bsh, PRG_ETHERNET_ADDR0, val);
131 1.5 jmcneill }
132 1.5 jmcneill
133 1.1 jmcneill static int
134 1.1 jmcneill meson_dwmac_intr(void *arg)
135 1.1 jmcneill {
136 1.1 jmcneill struct dwc_gmac_softc * const sc = arg;
137 1.1 jmcneill
138 1.1 jmcneill return dwc_gmac_intr(sc);
139 1.1 jmcneill }
140 1.1 jmcneill
141 1.1 jmcneill static int
142 1.1 jmcneill meson_dwmac_match(device_t parent, cfdata_t cf, void *aux)
143 1.1 jmcneill {
144 1.1 jmcneill struct fdt_attach_args * const faa = aux;
145 1.1 jmcneill
146 1.1 jmcneill return of_match_compatible(faa->faa_phandle, compatible);
147 1.1 jmcneill }
148 1.1 jmcneill
149 1.1 jmcneill static void
150 1.1 jmcneill meson_dwmac_attach(device_t parent, device_t self, void *aux)
151 1.1 jmcneill {
152 1.1 jmcneill struct dwc_gmac_softc * const sc = device_private(self);
153 1.1 jmcneill struct fdt_attach_args * const faa = aux;
154 1.1 jmcneill const int phandle = faa->faa_phandle;
155 1.4 jmcneill bus_space_handle_t prgeth_bsh;
156 1.1 jmcneill struct fdtbus_reset *rst_gmac;
157 1.4 jmcneill struct clk *clk_gmac, *clk_in[2];
158 1.1 jmcneill const char *phy_mode;
159 1.1 jmcneill char intrstr[128];
160 1.4 jmcneill bus_addr_t addr[2];
161 1.4 jmcneill bus_size_t size[2];
162 1.1 jmcneill
163 1.4 jmcneill if (fdtbus_get_reg(phandle, 0, &addr[0], &size[0]) != 0 ||
164 1.4 jmcneill fdtbus_get_reg(phandle, 1, &addr[1], &size[1]) != 0) {
165 1.1 jmcneill aprint_error(": couldn't get registers\n");
166 1.1 jmcneill return;
167 1.1 jmcneill }
168 1.1 jmcneill
169 1.1 jmcneill sc->sc_dev = self;
170 1.1 jmcneill sc->sc_bst = faa->faa_bst;
171 1.4 jmcneill if (bus_space_map(sc->sc_bst, addr[0], size[0], 0, &sc->sc_bsh) != 0 ||
172 1.4 jmcneill bus_space_map(sc->sc_bst, addr[1], size[1], 0, &prgeth_bsh) != 0) {
173 1.1 jmcneill aprint_error(": couldn't map registers\n");
174 1.1 jmcneill return;
175 1.1 jmcneill }
176 1.1 jmcneill sc->sc_dmat = faa->faa_dmat;
177 1.1 jmcneill
178 1.1 jmcneill if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
179 1.1 jmcneill aprint_error(": failed to decode interrupt\n");
180 1.1 jmcneill return;
181 1.1 jmcneill }
182 1.1 jmcneill
183 1.1 jmcneill clk_gmac = fdtbus_clock_get(phandle, "stmmaceth");
184 1.4 jmcneill clk_in[0] = fdtbus_clock_get(phandle, "clkin0");
185 1.4 jmcneill clk_in[1] = fdtbus_clock_get(phandle, "clkin1");
186 1.4 jmcneill if (clk_gmac == NULL || clk_in[0] == NULL || clk_in[1] == NULL) {
187 1.1 jmcneill aprint_error(": couldn't get clocks\n");
188 1.1 jmcneill return;
189 1.1 jmcneill }
190 1.1 jmcneill
191 1.1 jmcneill rst_gmac = fdtbus_reset_get(phandle, "stmmaceth");
192 1.1 jmcneill
193 1.1 jmcneill phy_mode = fdtbus_get_string(phandle, "phy-mode");
194 1.1 jmcneill if (phy_mode == NULL) {
195 1.1 jmcneill aprint_error(": missing 'phy-mode' property\n");
196 1.1 jmcneill return;
197 1.1 jmcneill }
198 1.4 jmcneill
199 1.4 jmcneill if (strcmp(phy_mode, "rgmii") == 0) {
200 1.4 jmcneill meson_dwmac_set_mode_rgmii(phandle, sc->sc_bst, prgeth_bsh, clk_in[0]);
201 1.5 jmcneill } else if (strcmp(phy_mode, "rmii") == 0) {
202 1.5 jmcneill meson_dwmac_set_mode_rmii(phandle, sc->sc_bst, prgeth_bsh);
203 1.1 jmcneill } else {
204 1.1 jmcneill aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
205 1.1 jmcneill return;
206 1.1 jmcneill }
207 1.1 jmcneill
208 1.1 jmcneill if (clk_enable(clk_gmac) != 0) {
209 1.1 jmcneill aprint_error(": couldn't enable clock\n");
210 1.1 jmcneill return;
211 1.1 jmcneill }
212 1.1 jmcneill
213 1.1 jmcneill if (rst_gmac != NULL && fdtbus_reset_deassert(rst_gmac) != 0) {
214 1.1 jmcneill aprint_error(": couldn't de-assert reset\n");
215 1.1 jmcneill return;
216 1.1 jmcneill }
217 1.1 jmcneill
218 1.1 jmcneill aprint_naive("\n");
219 1.1 jmcneill aprint_normal(": Gigabit Ethernet Controller\n");
220 1.1 jmcneill
221 1.1 jmcneill if (fdtbus_intr_establish(phandle, 0, IPL_NET, 0, meson_dwmac_intr, sc) == NULL) {
222 1.1 jmcneill aprint_error_dev(self, "failed to establish interrupt on %s\n", intrstr);
223 1.1 jmcneill return;
224 1.1 jmcneill }
225 1.1 jmcneill aprint_normal_dev(self, "interrupting on %s\n", intrstr);
226 1.1 jmcneill
227 1.1 jmcneill if (meson_dwmac_reset(phandle) != 0)
228 1.1 jmcneill aprint_error_dev(self, "PHY reset failed\n");
229 1.1 jmcneill
230 1.2 martin dwc_gmac_attach(sc, MII_PHY_ANY, GMAC_MII_CLK_100_150M_DIV62);
231 1.1 jmcneill }
232 1.1 jmcneill
233 1.1 jmcneill CFATTACH_DECL_NEW(meson_dwmac, sizeof(struct dwc_gmac_softc),
234 1.1 jmcneill meson_dwmac_match, meson_dwmac_attach, NULL, NULL);
235