Home | History | Annotate | Line # | Download | only in rockchip
rk_gmac.c revision 1.9
      1  1.9    martin /* $NetBSD: rk_gmac.c,v 1.9 2019/02/23 17:18:38 martin Exp $ */
      2  1.1  jmcneill 
      3  1.1  jmcneill /*-
      4  1.1  jmcneill  * Copyright (c) 2018 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.9    martin __KERNEL_RCSID(0, "$NetBSD: rk_gmac.c,v 1.9 2019/02/23 17:18:38 martin 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.1  jmcneill 
     40  1.1  jmcneill #include <net/if.h>
     41  1.1  jmcneill #include <net/if_ether.h>
     42  1.1  jmcneill #include <net/if_media.h>
     43  1.1  jmcneill 
     44  1.1  jmcneill #include <dev/mii/miivar.h>
     45  1.1  jmcneill 
     46  1.1  jmcneill #include <dev/ic/dwc_gmac_var.h>
     47  1.1  jmcneill #include <dev/ic/dwc_gmac_reg.h>
     48  1.1  jmcneill 
     49  1.1  jmcneill #include <dev/fdt/fdtvar.h>
     50  1.5  jmcneill #include <dev/fdt/syscon.h>
     51  1.1  jmcneill 
     52  1.8  jmcneill #define	RK_GMAC_TXDLY_DEFAULT	0x30
     53  1.8  jmcneill #define	RK_GMAC_RXDLY_DEFAULT	0x10
     54  1.8  jmcneill 
     55  1.8  jmcneill enum rk_gmac_type {
     56  1.8  jmcneill 	GMAC_RK3328 = 1,
     57  1.8  jmcneill 	GMAC_RK3399
     58  1.8  jmcneill };
     59  1.8  jmcneill 
     60  1.8  jmcneill static const struct of_compat_data compat_data[] = {
     61  1.8  jmcneill 	{ "rockchip,rk3328-gmac",	GMAC_RK3328 },
     62  1.8  jmcneill 	{ "rockchip,rk3399-gmac",	GMAC_RK3399 },
     63  1.8  jmcneill 	{ NULL }
     64  1.8  jmcneill };
     65  1.8  jmcneill 
     66  1.8  jmcneill struct rk_gmac_softc {
     67  1.8  jmcneill 	struct dwc_gmac_softc	sc_base;
     68  1.8  jmcneill 	struct syscon		*sc_syscon;
     69  1.8  jmcneill 	enum rk_gmac_type	sc_type;
     70  1.8  jmcneill };
     71  1.8  jmcneill 
     72  1.8  jmcneill /*
     73  1.8  jmcneill  * RK3328 specific
     74  1.8  jmcneill  */
     75  1.8  jmcneill 
     76  1.1  jmcneill #define	RK3328_GRF_MAC_CON0	0x0900
     77  1.1  jmcneill #define	 RK3328_GRF_MAC_CON0_RXDLY	__BITS(13,7)
     78  1.1  jmcneill #define	 RK3328_GRF_MAC_CON0_TXDLY	__BITS(6,0)
     79  1.1  jmcneill 
     80  1.1  jmcneill #define	RK3328_GRF_MAC_CON1	0x0904
     81  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_CLKSEL	__BITS(12,11)
     82  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_CLKSEL_125M	0
     83  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_CLKSEL_2_5M	2
     84  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_CLKSEL_25M	3
     85  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_MODE	__BIT(9)
     86  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_SEL	__BITS(6,4)
     87  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_SEL_RGMII	1
     88  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_RXDLY_EN	__BIT(1)
     89  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_TXDLY_EN	__BIT(0)
     90  1.1  jmcneill 
     91  1.1  jmcneill static void
     92  1.1  jmcneill rk3328_gmac_set_mode_rgmii(struct dwc_gmac_softc *sc, u_int tx_delay, u_int rx_delay)
     93  1.1  jmcneill {
     94  1.1  jmcneill 	struct rk_gmac_softc * const rk_sc = (struct rk_gmac_softc *)sc;
     95  1.3  jmcneill 	uint32_t write_mask, write_val;
     96  1.1  jmcneill 
     97  1.5  jmcneill 	syscon_lock(rk_sc->sc_syscon);
     98  1.5  jmcneill 
     99  1.3  jmcneill 	write_mask = (RK3328_GRF_MAC_CON1_MODE | RK3328_GRF_MAC_CON1_SEL) << 16;
    100  1.3  jmcneill 	write_val = __SHIFTIN(RK3328_GRF_MAC_CON1_SEL_RGMII, RK3328_GRF_MAC_CON1_SEL);
    101  1.5  jmcneill 	syscon_write_4(rk_sc->sc_syscon, RK3328_GRF_MAC_CON1, write_mask | write_val);
    102  1.1  jmcneill 
    103  1.3  jmcneill #if notyet
    104  1.3  jmcneill 	write_mask = (RK3328_GRF_MAC_CON0_TXDLY | RK3328_GRF_MAC_CON0_RXDLY) << 16;
    105  1.3  jmcneill 	write_val = __SHIFTIN(tx_delay, RK3328_GRF_MAC_CON0_TXDLY) |
    106  1.3  jmcneill 		    __SHIFTIN(rx_delay, RK3328_GRF_MAC_CON0_RXDLY);
    107  1.5  jmcneill 	syscon_write_4(rk_sc->sc_syscon, RK3328_GRF_MAC_CON0, write_mask | write_val);
    108  1.3  jmcneill 
    109  1.3  jmcneill 	write_mask = (RK3328_GRF_MAC_CON1_RXDLY_EN | RK3328_GRF_MAC_CON1_TXDLY_EN) << 16;
    110  1.3  jmcneill 	write_val = RK3328_GRF_MAC_CON1_RXDLY_EN | RK3328_GRF_MAC_CON1_TXDLY_EN;
    111  1.5  jmcneill 	syscon_write_4(rk_sc->sc_syscon, RK3328_GRF_MAC_CON1, write_mask | write_val);
    112  1.3  jmcneill #endif
    113  1.5  jmcneill 
    114  1.5  jmcneill 	syscon_unlock(rk_sc->sc_syscon);
    115  1.1  jmcneill }
    116  1.1  jmcneill 
    117  1.1  jmcneill static void
    118  1.1  jmcneill rk3328_gmac_set_speed_rgmii(struct dwc_gmac_softc *sc, int speed)
    119  1.1  jmcneill {
    120  1.1  jmcneill 	struct rk_gmac_softc * const rk_sc = (struct rk_gmac_softc *)sc;
    121  1.7  christos #if 0
    122  1.1  jmcneill 	u_int clksel;
    123  1.1  jmcneill 
    124  1.1  jmcneill 	switch (speed) {
    125  1.1  jmcneill 	case IFM_10_T:
    126  1.1  jmcneill 		clksel = RK3328_GRF_MAC_CON1_CLKSEL_2_5M;
    127  1.1  jmcneill 		break;
    128  1.1  jmcneill 	case IFM_100_TX:
    129  1.1  jmcneill 		clksel = RK3328_GRF_MAC_CON1_CLKSEL_25M;
    130  1.1  jmcneill 		break;
    131  1.1  jmcneill 	default:
    132  1.1  jmcneill 		clksel = RK3328_GRF_MAC_CON1_CLKSEL_125M;
    133  1.1  jmcneill 		break;
    134  1.1  jmcneill 	}
    135  1.7  christos #endif
    136  1.1  jmcneill 
    137  1.5  jmcneill 	syscon_lock(rk_sc->sc_syscon);
    138  1.5  jmcneill 	syscon_write_4(rk_sc->sc_syscon, RK3328_GRF_MAC_CON1,
    139  1.1  jmcneill 	    (RK3328_GRF_MAC_CON1_CLKSEL << 16) |
    140  1.1  jmcneill 	    __SHIFTIN(RK3328_GRF_MAC_CON1_CLKSEL_125M, RK3328_GRF_MAC_CON1_CLKSEL));
    141  1.5  jmcneill 	syscon_unlock(rk_sc->sc_syscon);
    142  1.1  jmcneill }
    143  1.1  jmcneill 
    144  1.8  jmcneill /*
    145  1.8  jmcneill  * RK3399 specific
    146  1.8  jmcneill  */
    147  1.8  jmcneill 
    148  1.8  jmcneill #define	RK3399_GRF_SOC_CON5		0x0c214
    149  1.8  jmcneill #define	 RK3399_GRF_SOC_CON5_GMAC_PHY_INTF_SEL	__BITS(11,9)
    150  1.8  jmcneill #define	 RK3399_GRF_SOC_CON5_GMAC_FLOWCTRL	__BIT(8)
    151  1.8  jmcneill #define	 RK3399_GRF_SOC_CON5_GMAC_SPEED		__BIT(7)
    152  1.8  jmcneill #define	 RK3399_GRF_SOC_CON5_RMII_MODE		__BIT(6)
    153  1.8  jmcneill #define	 RK3399_GRF_SOC_CON5_GMAC_CLK_SEL	__BITS(5,4)
    154  1.8  jmcneill #define	  RK3399_GRF_SOC_CON5_GMAC_CLK_SEL_125M	0
    155  1.8  jmcneill #define	  RK3399_GRF_SOC_CON5_GMAC_CLK_SEL_25M	1
    156  1.8  jmcneill #define	  RK3399_GRF_SOC_CON5_GMAC_CLK_SEL_2_5M	2
    157  1.8  jmcneill #define	 RK3399_GRF_SOC_CON5_RMII_CLK_SEL	__BIT(3)
    158  1.8  jmcneill #define	RK3399_GRF_SOC_CON6		0x0c218
    159  1.8  jmcneill #define	 RK3399_GRF_SOC_CON6_GMAC_RXCLK_DLY_ENA	__BIT(15)
    160  1.8  jmcneill #define	 RK3399_GRF_SOC_CON6_GMAC_CLK_RX_DL_CFG	__BITS(14,8)
    161  1.8  jmcneill #define	 RK3399_GRF_SOC_CON6_GMAC_TXCLK_DLY_ENA	__BIT(7)
    162  1.8  jmcneill #define	 RK3399_GRF_SOC_CON6_GMAC_CLK_TX_DL_CFG	__BITS(6,0)
    163  1.8  jmcneill 
    164  1.8  jmcneill static void
    165  1.8  jmcneill rk3399_gmac_set_mode_rgmii(struct dwc_gmac_softc *sc, u_int tx_delay, u_int rx_delay)
    166  1.8  jmcneill {
    167  1.8  jmcneill 	struct rk_gmac_softc * const rk_sc = (struct rk_gmac_softc *)sc;
    168  1.8  jmcneill 
    169  1.8  jmcneill 	const uint32_t con5_mask =
    170  1.8  jmcneill 	    (RK3399_GRF_SOC_CON5_RMII_MODE | RK3399_GRF_SOC_CON5_GMAC_PHY_INTF_SEL) << 16;
    171  1.8  jmcneill 	const uint32_t con5 = __SHIFTIN(1, RK3399_GRF_SOC_CON5_GMAC_PHY_INTF_SEL);
    172  1.8  jmcneill 
    173  1.8  jmcneill 	const uint32_t con6_mask =
    174  1.8  jmcneill 	    (RK3399_GRF_SOC_CON6_GMAC_CLK_RX_DL_CFG | RK3399_GRF_SOC_CON6_GMAC_CLK_TX_DL_CFG) << 16;
    175  1.8  jmcneill 	const uint32_t con6 =
    176  1.8  jmcneill 	    __SHIFTIN(rx_delay, RK3399_GRF_SOC_CON6_GMAC_CLK_RX_DL_CFG) |
    177  1.8  jmcneill 	    __SHIFTIN(tx_delay, RK3399_GRF_SOC_CON6_GMAC_CLK_TX_DL_CFG);
    178  1.8  jmcneill 
    179  1.8  jmcneill 	syscon_lock(rk_sc->sc_syscon);
    180  1.8  jmcneill 	syscon_write_4(rk_sc->sc_syscon, RK3399_GRF_SOC_CON5, con5 | con5_mask);
    181  1.8  jmcneill 	syscon_write_4(rk_sc->sc_syscon, RK3399_GRF_SOC_CON6, con6 | con6_mask);
    182  1.8  jmcneill 	syscon_unlock(rk_sc->sc_syscon);
    183  1.8  jmcneill }
    184  1.8  jmcneill 
    185  1.8  jmcneill static void
    186  1.8  jmcneill rk3399_gmac_set_speed_rgmii(struct dwc_gmac_softc *sc, int speed)
    187  1.8  jmcneill {
    188  1.8  jmcneill 	struct rk_gmac_softc * const rk_sc = (struct rk_gmac_softc *)sc;
    189  1.8  jmcneill 	u_int clksel;
    190  1.8  jmcneill 
    191  1.8  jmcneill 	switch (speed) {
    192  1.8  jmcneill 	case IFM_10_T:
    193  1.8  jmcneill 		clksel = RK3399_GRF_SOC_CON5_GMAC_CLK_SEL_2_5M;
    194  1.8  jmcneill 		break;
    195  1.8  jmcneill 	case IFM_100_TX:
    196  1.8  jmcneill 		clksel = RK3399_GRF_SOC_CON5_GMAC_CLK_SEL_25M;
    197  1.8  jmcneill 		break;
    198  1.8  jmcneill 	default:
    199  1.8  jmcneill 		clksel = RK3399_GRF_SOC_CON5_GMAC_CLK_SEL_125M;
    200  1.8  jmcneill 		break;
    201  1.8  jmcneill 	}
    202  1.8  jmcneill 
    203  1.8  jmcneill 	const uint32_t con5_mask =
    204  1.8  jmcneill 	    RK3399_GRF_SOC_CON5_GMAC_CLK_SEL << 16;
    205  1.8  jmcneill 	const uint32_t con5 =
    206  1.8  jmcneill 	    __SHIFTIN(clksel, RK3399_GRF_SOC_CON5_GMAC_CLK_SEL);
    207  1.8  jmcneill 
    208  1.8  jmcneill 	syscon_lock(rk_sc->sc_syscon);
    209  1.8  jmcneill 	syscon_write_4(rk_sc->sc_syscon, RK3399_GRF_SOC_CON5, con5 | con5_mask);
    210  1.8  jmcneill 	syscon_unlock(rk_sc->sc_syscon);
    211  1.8  jmcneill }
    212  1.8  jmcneill 
    213  1.8  jmcneill static int
    214  1.8  jmcneill rk_gmac_reset(const int phandle)
    215  1.8  jmcneill {
    216  1.8  jmcneill 	struct fdtbus_gpio_pin *pin_reset;
    217  1.8  jmcneill 	const u_int *reset_delay_us;
    218  1.8  jmcneill 	bool reset_active_low;
    219  1.8  jmcneill 	int len;
    220  1.8  jmcneill 
    221  1.8  jmcneill 	if (!of_hasprop(phandle, "snps,reset-gpio"))
    222  1.8  jmcneill 		return 0;
    223  1.8  jmcneill 
    224  1.8  jmcneill 	pin_reset = fdtbus_gpio_acquire(phandle, "snps,reset-gpio", GPIO_PIN_OUTPUT);
    225  1.8  jmcneill 	if (pin_reset == NULL)
    226  1.8  jmcneill 		return ENOENT;
    227  1.8  jmcneill 
    228  1.8  jmcneill 	reset_delay_us = fdtbus_get_prop(phandle, "snps,reset-delays-us", &len);
    229  1.8  jmcneill 	if (reset_delay_us == NULL || len != 12)
    230  1.8  jmcneill 		return ENXIO;
    231  1.8  jmcneill 
    232  1.8  jmcneill 	reset_active_low = of_hasprop(phandle, "snps,reset-active-low");
    233  1.8  jmcneill 
    234  1.8  jmcneill 	fdtbus_gpio_write_raw(pin_reset, reset_active_low ? 1 : 0);
    235  1.8  jmcneill 	delay(be32toh(reset_delay_us[0]));
    236  1.8  jmcneill 	fdtbus_gpio_write_raw(pin_reset, reset_active_low ? 0 : 1);
    237  1.8  jmcneill 	delay(be32toh(reset_delay_us[1]));
    238  1.8  jmcneill 	fdtbus_gpio_write_raw(pin_reset, reset_active_low ? 1 : 0);
    239  1.8  jmcneill 	delay(be32toh(reset_delay_us[2]));
    240  1.8  jmcneill 
    241  1.8  jmcneill 	return 0;
    242  1.8  jmcneill }
    243  1.8  jmcneill 
    244  1.8  jmcneill static int
    245  1.8  jmcneill rk_gmac_intr(void *arg)
    246  1.8  jmcneill {
    247  1.8  jmcneill 	return dwc_gmac_intr(arg);
    248  1.8  jmcneill }
    249  1.8  jmcneill 
    250  1.1  jmcneill static int
    251  1.1  jmcneill rk_gmac_setup_clocks(int phandle)
    252  1.1  jmcneill {
    253  1.1  jmcneill 	static const char * const clknames[] = {
    254  1.1  jmcneill #if 0
    255  1.1  jmcneill 		"stmmaceth",
    256  1.1  jmcneill 		"mac_clk_rx",
    257  1.1  jmcneill 		"mac_clk_tx",
    258  1.1  jmcneill 		"clk_mac_ref",
    259  1.1  jmcneill 		"clk_mac_refout",
    260  1.1  jmcneill 		"aclk_mac",
    261  1.1  jmcneill 		"pclk_mac"
    262  1.1  jmcneill #else
    263  1.1  jmcneill 		"stmmaceth",
    264  1.1  jmcneill 		"aclk_mac",
    265  1.1  jmcneill 		"pclk_mac",
    266  1.1  jmcneill 		"mac_clk_tx",
    267  1.3  jmcneill 		"mac_clk_rx"
    268  1.1  jmcneill #endif
    269  1.1  jmcneill 	};
    270  1.1  jmcneill 	static const char * const rstnames[] = {
    271  1.1  jmcneill 		"stmmaceth"
    272  1.1  jmcneill 	};
    273  1.1  jmcneill 	struct fdtbus_reset *rst;
    274  1.1  jmcneill 	struct clk *clk;
    275  1.1  jmcneill 	int error, n;
    276  1.1  jmcneill 
    277  1.1  jmcneill 	fdtbus_clock_assign(phandle);
    278  1.1  jmcneill 
    279  1.1  jmcneill 	for (n = 0; n < __arraycount(clknames); n++) {
    280  1.1  jmcneill 		clk = fdtbus_clock_get(phandle, clknames[n]);
    281  1.1  jmcneill 		if (clk == NULL) {
    282  1.1  jmcneill 			aprint_error(": couldn't get %s clock\n", clknames[n]);
    283  1.1  jmcneill 			return ENXIO;
    284  1.1  jmcneill 		}
    285  1.1  jmcneill 		error = clk_enable(clk);
    286  1.1  jmcneill 		if (error != 0) {
    287  1.1  jmcneill 			aprint_error(": couldn't enable %s clock: %d\n",
    288  1.1  jmcneill 			    clknames[n], error);
    289  1.1  jmcneill 			return error;
    290  1.1  jmcneill 		}
    291  1.1  jmcneill 	}
    292  1.1  jmcneill 
    293  1.1  jmcneill 	for (n = 0; n < __arraycount(rstnames); n++) {
    294  1.1  jmcneill 		rst = fdtbus_reset_get(phandle, rstnames[n]);
    295  1.1  jmcneill 		if (rst == NULL) {
    296  1.1  jmcneill 			aprint_error(": couldn't get %s reset\n", rstnames[n]);
    297  1.1  jmcneill 			return ENXIO;
    298  1.1  jmcneill 		}
    299  1.1  jmcneill 		error = fdtbus_reset_deassert(rst);
    300  1.1  jmcneill 		if (error != 0) {
    301  1.1  jmcneill 			aprint_error(": couldn't de-assert %s reset: %d\n",
    302  1.1  jmcneill 			    rstnames[n], error);
    303  1.1  jmcneill 			return error;
    304  1.1  jmcneill 		}
    305  1.1  jmcneill 	}
    306  1.1  jmcneill 
    307  1.1  jmcneill 	delay(5000);
    308  1.1  jmcneill 
    309  1.1  jmcneill 	return 0;
    310  1.1  jmcneill }
    311  1.1  jmcneill 
    312  1.1  jmcneill static int
    313  1.1  jmcneill rk_gmac_match(device_t parent, cfdata_t cf, void *aux)
    314  1.1  jmcneill {
    315  1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    316  1.1  jmcneill 
    317  1.8  jmcneill 	return of_match_compat_data(faa->faa_phandle, compat_data);
    318  1.1  jmcneill }
    319  1.1  jmcneill 
    320  1.1  jmcneill static void
    321  1.1  jmcneill rk_gmac_attach(device_t parent, device_t self, void *aux)
    322  1.1  jmcneill {
    323  1.1  jmcneill 	struct rk_gmac_softc * const rk_sc = device_private(self);
    324  1.1  jmcneill 	struct dwc_gmac_softc * const sc = &rk_sc->sc_base;
    325  1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    326  1.1  jmcneill 	const int phandle = faa->faa_phandle;
    327  1.1  jmcneill 	const char *phy_mode;
    328  1.1  jmcneill 	char intrstr[128];
    329  1.5  jmcneill 	bus_addr_t addr;
    330  1.5  jmcneill 	bus_size_t size;
    331  1.1  jmcneill 	u_int tx_delay, rx_delay;
    332  1.1  jmcneill 
    333  1.1  jmcneill 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    334  1.1  jmcneill 		aprint_error(": couldn't get registers\n");
    335  1.1  jmcneill 		return;
    336  1.1  jmcneill 	}
    337  1.1  jmcneill 
    338  1.8  jmcneill 	rk_sc->sc_type = of_search_compatible(phandle, compat_data)->data;
    339  1.8  jmcneill 
    340  1.5  jmcneill 	rk_sc->sc_syscon = fdtbus_syscon_acquire(phandle, "rockchip,grf");
    341  1.5  jmcneill 	if (rk_sc->sc_syscon == NULL) {
    342  1.5  jmcneill 		aprint_error(": couldn't get grf syscon\n");
    343  1.1  jmcneill 		return;
    344  1.1  jmcneill 	}
    345  1.1  jmcneill 
    346  1.1  jmcneill 	if (of_getprop_uint32(phandle, "tx_delay", &tx_delay) != 0)
    347  1.1  jmcneill 		tx_delay = RK_GMAC_TXDLY_DEFAULT;
    348  1.1  jmcneill 
    349  1.1  jmcneill 	if (of_getprop_uint32(phandle, "rx_delay", &rx_delay) != 0)
    350  1.1  jmcneill 		rx_delay = RK_GMAC_RXDLY_DEFAULT;
    351  1.1  jmcneill 
    352  1.1  jmcneill 	sc->sc_dev = self;
    353  1.1  jmcneill 	sc->sc_bst = faa->faa_bst;
    354  1.1  jmcneill 	if (bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh) != 0) {
    355  1.1  jmcneill 		aprint_error(": couldn't map registers\n");
    356  1.1  jmcneill 		return;
    357  1.1  jmcneill 	}
    358  1.1  jmcneill 	sc->sc_dmat = faa->faa_dmat;
    359  1.1  jmcneill 
    360  1.1  jmcneill 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
    361  1.1  jmcneill 		aprint_error(": failed to decode interrupt\n");
    362  1.1  jmcneill 		return;
    363  1.1  jmcneill 	}
    364  1.1  jmcneill 
    365  1.1  jmcneill 	if (rk_gmac_setup_clocks(phandle) != 0)
    366  1.1  jmcneill 		return;
    367  1.1  jmcneill 
    368  1.1  jmcneill 	if (rk_gmac_reset(phandle) != 0)
    369  1.1  jmcneill 		aprint_error_dev(self, "PHY reset failed\n");
    370  1.1  jmcneill 
    371  1.6  jmcneill 	/* Rock64 seems to need more time for the reset to complete */
    372  1.6  jmcneill 	delay(100000);
    373  1.6  jmcneill 
    374  1.3  jmcneill #if notyet
    375  1.1  jmcneill 	if (of_hasprop(phandle, "snps,force_thresh_dma_mode"))
    376  1.1  jmcneill 		sc->sc_flags |= DWC_GMAC_FORCE_THRESH_DMA_MODE;
    377  1.3  jmcneill #endif
    378  1.1  jmcneill 
    379  1.1  jmcneill 	phy_mode = fdtbus_get_string(phandle, "phy-mode");
    380  1.1  jmcneill 	if (phy_mode == NULL) {
    381  1.1  jmcneill 		aprint_error(": missing 'phy-mode' property\n");
    382  1.1  jmcneill 		return;
    383  1.1  jmcneill 	}
    384  1.1  jmcneill 
    385  1.8  jmcneill 	switch (rk_sc->sc_type) {
    386  1.8  jmcneill 	case GMAC_RK3328:
    387  1.8  jmcneill 		if (strcmp(phy_mode, "rgmii") == 0) {
    388  1.8  jmcneill 			rk3328_gmac_set_mode_rgmii(sc, tx_delay, rx_delay);
    389  1.8  jmcneill 
    390  1.8  jmcneill 			sc->sc_set_speed = rk3328_gmac_set_speed_rgmii;
    391  1.8  jmcneill 		} else {
    392  1.8  jmcneill 			aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
    393  1.8  jmcneill 			return;
    394  1.8  jmcneill 		}
    395  1.8  jmcneill 		break;
    396  1.8  jmcneill 	case GMAC_RK3399:
    397  1.8  jmcneill 		if (strcmp(phy_mode, "rgmii") == 0) {
    398  1.8  jmcneill 			rk3399_gmac_set_mode_rgmii(sc, tx_delay, rx_delay);
    399  1.8  jmcneill 
    400  1.8  jmcneill 			sc->sc_set_speed = rk3399_gmac_set_speed_rgmii;
    401  1.8  jmcneill 		} else {
    402  1.8  jmcneill 			aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
    403  1.8  jmcneill 			return;
    404  1.8  jmcneill 		}
    405  1.8  jmcneill 		break;
    406  1.1  jmcneill 	}
    407  1.1  jmcneill 
    408  1.1  jmcneill 	aprint_naive("\n");
    409  1.1  jmcneill 	aprint_normal(": GMAC\n");
    410  1.1  jmcneill 
    411  1.9    martin 	if (dwc_gmac_attach(sc, MII_PHY_ANY, GMAC_MII_CLK_150_250M_DIV102) != 0)
    412  1.4  jmcneill 		return;
    413  1.4  jmcneill 
    414  1.1  jmcneill 	if (fdtbus_intr_establish(phandle, 0, IPL_NET, 0, rk_gmac_intr, sc) == NULL) {
    415  1.1  jmcneill 		aprint_error_dev(self, "failed to establish interrupt on %s\n", intrstr);
    416  1.1  jmcneill 		return;
    417  1.1  jmcneill 	}
    418  1.1  jmcneill 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
    419  1.1  jmcneill }
    420  1.1  jmcneill 
    421  1.1  jmcneill CFATTACH_DECL_NEW(rk_gmac, sizeof(struct rk_gmac_softc),
    422  1.1  jmcneill 	rk_gmac_match, rk_gmac_attach, NULL, NULL);
    423