Home | History | Annotate | Line # | Download | only in rockchip
rk_gmac.c revision 1.1
      1  1.1  jmcneill /* $NetBSD: rk_gmac.c,v 1.1 2018/06/16 00:19:04 jmcneill 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.1  jmcneill __KERNEL_RCSID(0, "$NetBSD: rk_gmac.c,v 1.1 2018/06/16 00:19:04 jmcneill 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.1  jmcneill 
     51  1.1  jmcneill #define	RK3328_GRF_MAC_CON0	0x0900
     52  1.1  jmcneill #define	 RK3328_GRF_MAC_CON0_RXDLY	__BITS(13,7)
     53  1.1  jmcneill #define	 RK3328_GRF_MAC_CON0_TXDLY	__BITS(6,0)
     54  1.1  jmcneill 
     55  1.1  jmcneill #define	RK3328_GRF_MAC_CON1	0x0904
     56  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_CLKSEL	__BITS(12,11)
     57  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_CLKSEL_125M	0
     58  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_CLKSEL_2_5M	2
     59  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_CLKSEL_25M	3
     60  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_MODE	__BIT(9)
     61  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_SEL	__BITS(6,4)
     62  1.1  jmcneill #define	  RK3328_GRF_MAC_CON1_SEL_RGMII	1
     63  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_RXDLY_EN	__BIT(1)
     64  1.1  jmcneill #define	 RK3328_GRF_MAC_CON1_TXDLY_EN	__BIT(0)
     65  1.1  jmcneill 
     66  1.1  jmcneill #define	RK_GMAC_TXDLY_DEFAULT	0x30
     67  1.1  jmcneill #define	RK_GMAC_RXDLY_DEFAULT	0x10
     68  1.1  jmcneill 
     69  1.1  jmcneill static const char * compatible[] = {
     70  1.1  jmcneill 	"rockchip,rk3328-gmac",
     71  1.1  jmcneill 	NULL
     72  1.1  jmcneill };
     73  1.1  jmcneill 
     74  1.1  jmcneill struct rk_gmac_softc {
     75  1.1  jmcneill 	struct dwc_gmac_softc	sc_base;
     76  1.1  jmcneill 	bus_space_handle_t	sc_grf_bsh;
     77  1.1  jmcneill };
     78  1.1  jmcneill 
     79  1.1  jmcneill static int
     80  1.1  jmcneill rk_gmac_reset(const int phandle)
     81  1.1  jmcneill {
     82  1.1  jmcneill #if notyet
     83  1.1  jmcneill 	struct fdtbus_gpio_pin *pin_reset;
     84  1.1  jmcneill 	const u_int *reset_delay_us;
     85  1.1  jmcneill 	bool reset_active_low;
     86  1.1  jmcneill 	int len, val;
     87  1.1  jmcneill 
     88  1.1  jmcneill 	if (!of_hasprop(phandle, "snps,reset-gpio"))
     89  1.1  jmcneill 		return 0;
     90  1.1  jmcneill 
     91  1.1  jmcneill 	pin_reset = fdtbus_gpio_acquire(phandle, "snps,reset-gpio", GPIO_PIN_OUTPUT);
     92  1.1  jmcneill 	if (pin_reset == NULL)
     93  1.1  jmcneill 		return ENOENT;
     94  1.1  jmcneill 
     95  1.1  jmcneill 	reset_delay_us = fdtbus_get_prop(phandle, "snps,reset-delays-us", &len);
     96  1.1  jmcneill 	if (reset_delay_us == NULL || len != 12)
     97  1.1  jmcneill 		return ENXIO;
     98  1.1  jmcneill 
     99  1.1  jmcneill 	reset_active_low = of_hasprop(phandle, "snps,reset-active-low");
    100  1.1  jmcneill 
    101  1.1  jmcneill 	val = reset_active_low ? 1 : 0;
    102  1.1  jmcneill 
    103  1.1  jmcneill 	fdtbus_gpio_write(pin_reset, val);
    104  1.1  jmcneill 	if (be32toh(reset_delay_us[0]) > 0)
    105  1.1  jmcneill 		delay(be32toh(reset_delay_us[0]));
    106  1.1  jmcneill 	fdtbus_gpio_write(pin_reset, !val);
    107  1.1  jmcneill 	if (be32toh(reset_delay_us[1]) > 0)
    108  1.1  jmcneill 		delay(be32toh(reset_delay_us[1]));
    109  1.1  jmcneill 	fdtbus_gpio_write(pin_reset, val);
    110  1.1  jmcneill 	if (be32toh(reset_delay_us[2]) > 0)
    111  1.1  jmcneill 		delay(be32toh(reset_delay_us[2]));
    112  1.1  jmcneill #endif
    113  1.1  jmcneill 
    114  1.1  jmcneill 	return 0;
    115  1.1  jmcneill }
    116  1.1  jmcneill 
    117  1.1  jmcneill static int
    118  1.1  jmcneill rk_gmac_intr(void *arg)
    119  1.1  jmcneill {
    120  1.1  jmcneill 	return dwc_gmac_intr(arg);
    121  1.1  jmcneill }
    122  1.1  jmcneill 
    123  1.1  jmcneill static void
    124  1.1  jmcneill rk3328_gmac_set_mode_rgmii(struct dwc_gmac_softc *sc, u_int tx_delay, u_int rx_delay)
    125  1.1  jmcneill {
    126  1.1  jmcneill 	struct rk_gmac_softc * const rk_sc = (struct rk_gmac_softc *)sc;
    127  1.1  jmcneill 
    128  1.1  jmcneill 	const uint32_t write_mask =
    129  1.1  jmcneill 	    (RK3328_GRF_MAC_CON1_MODE | RK3328_GRF_MAC_CON1_SEL |
    130  1.1  jmcneill 	     RK3328_GRF_MAC_CON1_RXDLY_EN | RK3328_GRF_MAC_CON1_TXDLY_EN) << 16;
    131  1.1  jmcneill 	const uint32_t write_val =
    132  1.1  jmcneill 	    __SHIFTIN(RK3328_GRF_MAC_CON1_SEL_RGMII, RK3328_GRF_MAC_CON1_SEL) |
    133  1.1  jmcneill 	    RK3328_GRF_MAC_CON1_RXDLY_EN | RK3328_GRF_MAC_CON1_TXDLY_EN;
    134  1.1  jmcneill 
    135  1.1  jmcneill 	bus_space_write_4(sc->sc_bst, rk_sc->sc_grf_bsh, RK3328_GRF_MAC_CON1, write_mask | write_val);
    136  1.1  jmcneill 	bus_space_write_4(sc->sc_bst, rk_sc->sc_grf_bsh, RK3328_GRF_MAC_CON0,
    137  1.1  jmcneill 	    (RK3328_GRF_MAC_CON0_TXDLY << 16) |
    138  1.1  jmcneill 	    (RK3328_GRF_MAC_CON0_RXDLY << 16) |
    139  1.1  jmcneill 	    __SHIFTIN(tx_delay, RK3328_GRF_MAC_CON0_TXDLY) |
    140  1.1  jmcneill 	    __SHIFTIN(rx_delay, RK3328_GRF_MAC_CON0_RXDLY));
    141  1.1  jmcneill }
    142  1.1  jmcneill 
    143  1.1  jmcneill static void
    144  1.1  jmcneill rk3328_gmac_set_speed_rgmii(struct dwc_gmac_softc *sc, int speed)
    145  1.1  jmcneill {
    146  1.1  jmcneill 	struct rk_gmac_softc * const rk_sc = (struct rk_gmac_softc *)sc;
    147  1.1  jmcneill 	u_int clksel;
    148  1.1  jmcneill 
    149  1.1  jmcneill 	switch (speed) {
    150  1.1  jmcneill 	case IFM_10_T:
    151  1.1  jmcneill 		clksel = RK3328_GRF_MAC_CON1_CLKSEL_2_5M;
    152  1.1  jmcneill 		break;
    153  1.1  jmcneill 	case IFM_100_TX:
    154  1.1  jmcneill 		clksel = RK3328_GRF_MAC_CON1_CLKSEL_25M;
    155  1.1  jmcneill 		break;
    156  1.1  jmcneill 	default:
    157  1.1  jmcneill 		clksel = RK3328_GRF_MAC_CON1_CLKSEL_125M;
    158  1.1  jmcneill 		break;
    159  1.1  jmcneill 	}
    160  1.1  jmcneill 
    161  1.1  jmcneill 	bus_space_write_4(sc->sc_bst, rk_sc->sc_grf_bsh, RK3328_GRF_MAC_CON1,
    162  1.1  jmcneill 	    (RK3328_GRF_MAC_CON1_CLKSEL << 16) |
    163  1.1  jmcneill 	    __SHIFTIN(RK3328_GRF_MAC_CON1_CLKSEL_125M, RK3328_GRF_MAC_CON1_CLKSEL));
    164  1.1  jmcneill }
    165  1.1  jmcneill 
    166  1.1  jmcneill static int
    167  1.1  jmcneill rk_gmac_setup_clocks(int phandle)
    168  1.1  jmcneill {
    169  1.1  jmcneill 	static const char * const clknames[] = {
    170  1.1  jmcneill #if 0
    171  1.1  jmcneill 		"stmmaceth",
    172  1.1  jmcneill 		"mac_clk_rx",
    173  1.1  jmcneill 		"mac_clk_tx",
    174  1.1  jmcneill 		"clk_mac_ref",
    175  1.1  jmcneill 		"clk_mac_refout",
    176  1.1  jmcneill 		"aclk_mac",
    177  1.1  jmcneill 		"pclk_mac"
    178  1.1  jmcneill #else
    179  1.1  jmcneill 		"stmmaceth",
    180  1.1  jmcneill 		"aclk_mac",
    181  1.1  jmcneill 		"pclk_mac",
    182  1.1  jmcneill 		"mac_clk_tx",
    183  1.1  jmcneill #endif
    184  1.1  jmcneill 	};
    185  1.1  jmcneill 	static const char * const rstnames[] = {
    186  1.1  jmcneill 		"stmmaceth"
    187  1.1  jmcneill 	};
    188  1.1  jmcneill 	struct fdtbus_reset *rst;
    189  1.1  jmcneill 	struct clk *clk;
    190  1.1  jmcneill 	int error, n;
    191  1.1  jmcneill 
    192  1.1  jmcneill 	fdtbus_clock_assign(phandle);
    193  1.1  jmcneill 
    194  1.1  jmcneill 	for (n = 0; n < __arraycount(clknames); n++) {
    195  1.1  jmcneill 		clk = fdtbus_clock_get(phandle, clknames[n]);
    196  1.1  jmcneill 		if (clk == NULL) {
    197  1.1  jmcneill 			aprint_error(": couldn't get %s clock\n", clknames[n]);
    198  1.1  jmcneill 			return ENXIO;
    199  1.1  jmcneill 		}
    200  1.1  jmcneill 		error = clk_enable(clk);
    201  1.1  jmcneill 		if (error != 0) {
    202  1.1  jmcneill 			aprint_error(": couldn't enable %s clock: %d\n",
    203  1.1  jmcneill 			    clknames[n], error);
    204  1.1  jmcneill 			return error;
    205  1.1  jmcneill 		}
    206  1.1  jmcneill 	}
    207  1.1  jmcneill 
    208  1.1  jmcneill 	for (n = 0; n < __arraycount(rstnames); n++) {
    209  1.1  jmcneill 		rst = fdtbus_reset_get(phandle, rstnames[n]);
    210  1.1  jmcneill 		if (rst == NULL) {
    211  1.1  jmcneill 			aprint_error(": couldn't get %s reset\n", rstnames[n]);
    212  1.1  jmcneill 			return ENXIO;
    213  1.1  jmcneill 		}
    214  1.1  jmcneill 		error = fdtbus_reset_deassert(rst);
    215  1.1  jmcneill 		if (error != 0) {
    216  1.1  jmcneill 			aprint_error(": couldn't de-assert %s reset: %d\n",
    217  1.1  jmcneill 			    rstnames[n], error);
    218  1.1  jmcneill 			return error;
    219  1.1  jmcneill 		}
    220  1.1  jmcneill 	}
    221  1.1  jmcneill 
    222  1.1  jmcneill 	delay(5000);
    223  1.1  jmcneill 
    224  1.1  jmcneill 	return 0;
    225  1.1  jmcneill }
    226  1.1  jmcneill 
    227  1.1  jmcneill static int
    228  1.1  jmcneill rk_gmac_match(device_t parent, cfdata_t cf, void *aux)
    229  1.1  jmcneill {
    230  1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    231  1.1  jmcneill 
    232  1.1  jmcneill 	return of_match_compatible(faa->faa_phandle, compatible);
    233  1.1  jmcneill }
    234  1.1  jmcneill 
    235  1.1  jmcneill static void
    236  1.1  jmcneill rk_gmac_attach(device_t parent, device_t self, void *aux)
    237  1.1  jmcneill {
    238  1.1  jmcneill 	struct rk_gmac_softc * const rk_sc = device_private(self);
    239  1.1  jmcneill 	struct dwc_gmac_softc * const sc = &rk_sc->sc_base;
    240  1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    241  1.1  jmcneill 	const int phandle = faa->faa_phandle;
    242  1.1  jmcneill 	const char *phy_mode;
    243  1.1  jmcneill 	char intrstr[128];
    244  1.1  jmcneill 	bus_addr_t addr, grf_addr;
    245  1.1  jmcneill 	bus_size_t size, grf_size;
    246  1.1  jmcneill 	u_int tx_delay, rx_delay;
    247  1.1  jmcneill 
    248  1.1  jmcneill 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    249  1.1  jmcneill 		aprint_error(": couldn't get registers\n");
    250  1.1  jmcneill 		return;
    251  1.1  jmcneill 	}
    252  1.1  jmcneill 
    253  1.1  jmcneill 	const int grf_phandle = fdtbus_get_phandle(phandle, "rockchip,grf");
    254  1.1  jmcneill 	if (grf_phandle == -1) {
    255  1.1  jmcneill 		aprint_error(": couldn't get grf phandle\n");
    256  1.1  jmcneill 		return;
    257  1.1  jmcneill 	}
    258  1.1  jmcneill 	if (fdtbus_get_reg(grf_phandle, 0, &grf_addr, &grf_size) != 0) {
    259  1.1  jmcneill 		aprint_error(": couldn't get grf registers\n");
    260  1.1  jmcneill 		return;
    261  1.1  jmcneill 	}
    262  1.1  jmcneill 	if (bus_space_map(faa->faa_bst, grf_addr, grf_size, 0, &rk_sc->sc_grf_bsh) != 0) {
    263  1.1  jmcneill 		aprint_error(": couldn't map grf registers\n");
    264  1.1  jmcneill 		return;
    265  1.1  jmcneill 	}
    266  1.1  jmcneill 
    267  1.1  jmcneill 	if (of_getprop_uint32(phandle, "tx_delay", &tx_delay) != 0)
    268  1.1  jmcneill 		tx_delay = RK_GMAC_TXDLY_DEFAULT;
    269  1.1  jmcneill 
    270  1.1  jmcneill 	if (of_getprop_uint32(phandle, "rx_delay", &rx_delay) != 0)
    271  1.1  jmcneill 		rx_delay = RK_GMAC_RXDLY_DEFAULT;
    272  1.1  jmcneill 
    273  1.1  jmcneill 	sc->sc_dev = self;
    274  1.1  jmcneill 	sc->sc_bst = faa->faa_bst;
    275  1.1  jmcneill 	if (bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh) != 0) {
    276  1.1  jmcneill 		aprint_error(": couldn't map registers\n");
    277  1.1  jmcneill 		return;
    278  1.1  jmcneill 	}
    279  1.1  jmcneill 	sc->sc_dmat = faa->faa_dmat;
    280  1.1  jmcneill 
    281  1.1  jmcneill 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
    282  1.1  jmcneill 		aprint_error(": failed to decode interrupt\n");
    283  1.1  jmcneill 		return;
    284  1.1  jmcneill 	}
    285  1.1  jmcneill 
    286  1.1  jmcneill 	if (rk_gmac_setup_clocks(phandle) != 0)
    287  1.1  jmcneill 		return;
    288  1.1  jmcneill 
    289  1.1  jmcneill 	if (rk_gmac_reset(phandle) != 0)
    290  1.1  jmcneill 		aprint_error_dev(self, "PHY reset failed\n");
    291  1.1  jmcneill 
    292  1.1  jmcneill 	if (of_hasprop(phandle, "snps,force_thresh_dma_mode"))
    293  1.1  jmcneill 		sc->sc_flags |= DWC_GMAC_FORCE_THRESH_DMA_MODE;
    294  1.1  jmcneill 
    295  1.1  jmcneill 	phy_mode = fdtbus_get_string(phandle, "phy-mode");
    296  1.1  jmcneill 	if (phy_mode == NULL) {
    297  1.1  jmcneill 		aprint_error(": missing 'phy-mode' property\n");
    298  1.1  jmcneill 		return;
    299  1.1  jmcneill 	}
    300  1.1  jmcneill 
    301  1.1  jmcneill 	if (strcmp(phy_mode, "rgmii") == 0) {
    302  1.1  jmcneill 		rk3328_gmac_set_mode_rgmii(sc, tx_delay, rx_delay);
    303  1.1  jmcneill 
    304  1.1  jmcneill 		sc->sc_set_speed = rk3328_gmac_set_speed_rgmii;
    305  1.1  jmcneill 	} else {
    306  1.1  jmcneill 		aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
    307  1.1  jmcneill 		return;
    308  1.1  jmcneill 	}
    309  1.1  jmcneill 
    310  1.1  jmcneill 	aprint_naive("\n");
    311  1.1  jmcneill 	aprint_normal(": GMAC\n");
    312  1.1  jmcneill 
    313  1.1  jmcneill 	if (fdtbus_intr_establish(phandle, 0, IPL_NET, 0, rk_gmac_intr, sc) == NULL) {
    314  1.1  jmcneill 		aprint_error_dev(self, "failed to establish interrupt on %s\n", intrstr);
    315  1.1  jmcneill 		return;
    316  1.1  jmcneill 	}
    317  1.1  jmcneill 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
    318  1.1  jmcneill 
    319  1.1  jmcneill 	dwc_gmac_attach(sc, GMAC_MII_CLK_150_250M_DIV102);
    320  1.1  jmcneill }
    321  1.1  jmcneill 
    322  1.1  jmcneill CFATTACH_DECL_NEW(rk_gmac, sizeof(struct rk_gmac_softc),
    323  1.1  jmcneill 	rk_gmac_match, rk_gmac_attach, NULL, NULL);
    324