Home | History | Annotate | Line # | Download | only in sunxi
      1  1.11     skrll /* $NetBSD: sunxi_gmac.c,v 1.11 2024/08/10 12:16:47 skrll 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.11     skrll __KERNEL_RCSID(0, "$NetBSD: sunxi_gmac.c,v 1.11 2024/08/10 12:16:47 skrll 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.2  jmcneill #include <sys/gpio.h>
     39   1.5   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.1  jmcneill #define	GMAC_TX_RATE_MII		25000000
     53   1.1  jmcneill #define	GMAC_TX_RATE_RGMII		125000000
     54   1.1  jmcneill 
     55   1.9   thorpej static const struct device_compatible_entry compat_data[] = {
     56   1.9   thorpej 	{ .compat = "allwinner,sun7i-a20-gmac" },
     57   1.9   thorpej 	DEVICE_COMPAT_EOL
     58   1.1  jmcneill };
     59   1.1  jmcneill 
     60   1.1  jmcneill static int
     61   1.2  jmcneill sunxi_gmac_reset(const int phandle)
     62   1.2  jmcneill {
     63   1.2  jmcneill 	struct fdtbus_gpio_pin *pin_reset;
     64   1.2  jmcneill 	const u_int *reset_delay_us;
     65   1.2  jmcneill 	bool reset_active_low;
     66   1.2  jmcneill 	int len, val;
     67   1.2  jmcneill 
     68   1.2  jmcneill 	pin_reset = fdtbus_gpio_acquire(phandle, "snps,reset-gpio", GPIO_PIN_OUTPUT);
     69   1.2  jmcneill 	if (pin_reset == NULL)
     70   1.2  jmcneill 		return 0;
     71   1.2  jmcneill 
     72   1.2  jmcneill 	reset_delay_us = fdtbus_get_prop(phandle, "snps,reset-delays-us", &len);
     73   1.2  jmcneill 	if (reset_delay_us == NULL || len != 12)
     74   1.2  jmcneill 		return ENXIO;
     75   1.2  jmcneill 
     76   1.2  jmcneill 	reset_active_low = of_hasprop(phandle, "snps,reset-active-low");
     77   1.2  jmcneill 
     78   1.2  jmcneill 	val = reset_active_low ? 1 : 0;
     79   1.2  jmcneill 
     80   1.2  jmcneill 	fdtbus_gpio_write(pin_reset, val);
     81   1.2  jmcneill 	delay(be32toh(reset_delay_us[0]));
     82   1.2  jmcneill 	fdtbus_gpio_write(pin_reset, !val);
     83   1.2  jmcneill 	delay(be32toh(reset_delay_us[1]));
     84   1.2  jmcneill 	fdtbus_gpio_write(pin_reset, val);
     85   1.2  jmcneill 	delay(be32toh(reset_delay_us[2]));
     86   1.2  jmcneill 
     87   1.2  jmcneill 	return 0;
     88   1.2  jmcneill }
     89   1.2  jmcneill 
     90   1.2  jmcneill static int
     91   1.1  jmcneill sunxi_gmac_intr(void *arg)
     92   1.1  jmcneill {
     93   1.1  jmcneill 	return dwc_gmac_intr(arg);
     94   1.1  jmcneill }
     95   1.1  jmcneill 
     96   1.1  jmcneill static int
     97   1.7       bad sunxi_gmac_get_phyid(int phandle)
     98   1.7       bad {
     99   1.7       bad 	bus_addr_t addr;
    100   1.7       bad 	int phy_phandle;
    101   1.7       bad 
    102   1.7       bad 	phy_phandle = fdtbus_get_phandle(phandle, "phy");
    103   1.7       bad 	if (phy_phandle == -1)
    104   1.7       bad 		phy_phandle = fdtbus_get_phandle(phandle, "phy-handle");
    105   1.7       bad 	if (phy_phandle == -1)
    106   1.7       bad 		return MII_PHY_ANY;
    107   1.7       bad 
    108   1.7       bad 	if (fdtbus_get_reg(phy_phandle, 0, &addr, NULL) != 0)
    109   1.7       bad 		return MII_PHY_ANY;
    110   1.7       bad 
    111   1.7       bad 	return (int)addr;
    112   1.7       bad }
    113   1.7       bad 
    114   1.7       bad static int
    115   1.1  jmcneill sunxi_gmac_match(device_t parent, cfdata_t cf, void *aux)
    116   1.1  jmcneill {
    117   1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    118   1.1  jmcneill 
    119   1.9   thorpej 	return of_compatible_match(faa->faa_phandle, compat_data);
    120   1.1  jmcneill }
    121   1.1  jmcneill 
    122   1.1  jmcneill static void
    123   1.1  jmcneill sunxi_gmac_attach(device_t parent, device_t self, void *aux)
    124   1.1  jmcneill {
    125   1.1  jmcneill 	struct dwc_gmac_softc * const sc = device_private(self);
    126   1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    127   1.1  jmcneill 	const int phandle = faa->faa_phandle;
    128   1.1  jmcneill 	struct clk *clk_gmac, *clk_gmac_tx;
    129   1.2  jmcneill 	struct fdtbus_reset *rst_gmac;
    130   1.4  jmcneill 	struct fdtbus_regulator *reg_phy;
    131   1.1  jmcneill 	const char *phy_mode;
    132   1.1  jmcneill 	char intrstr[128];
    133   1.1  jmcneill 	bus_addr_t addr;
    134   1.1  jmcneill 	bus_size_t size;
    135   1.1  jmcneill 
    136   1.1  jmcneill 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    137   1.1  jmcneill 		aprint_error(": couldn't get registers\n");
    138   1.1  jmcneill 		return;
    139   1.1  jmcneill 	}
    140   1.1  jmcneill 
    141   1.1  jmcneill 	sc->sc_dev = self;
    142   1.1  jmcneill 	sc->sc_bst = faa->faa_bst;
    143   1.1  jmcneill 	if (bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh) != 0) {
    144   1.1  jmcneill 		aprint_error(": couldn't map registers\n");
    145   1.1  jmcneill 		return;
    146   1.1  jmcneill 	}
    147   1.1  jmcneill 	sc->sc_dmat = faa->faa_dmat;
    148   1.1  jmcneill 
    149   1.1  jmcneill 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
    150   1.1  jmcneill 		aprint_error(": failed to decode interrupt\n");
    151   1.1  jmcneill 		return;
    152   1.1  jmcneill 	}
    153   1.1  jmcneill 
    154   1.1  jmcneill 	clk_gmac = fdtbus_clock_get(phandle, "stmmaceth");
    155   1.1  jmcneill 	clk_gmac_tx = fdtbus_clock_get(phandle, "allwinner_gmac_tx");
    156   1.1  jmcneill 	if (clk_gmac == NULL || clk_gmac_tx == NULL) {
    157   1.1  jmcneill 		aprint_error(": couldn't get clocks\n");
    158   1.1  jmcneill 		return;
    159   1.1  jmcneill 	}
    160   1.1  jmcneill 
    161   1.2  jmcneill 	rst_gmac = fdtbus_reset_get(phandle, "stmmaceth");
    162   1.2  jmcneill 
    163   1.1  jmcneill 	phy_mode = fdtbus_get_string(phandle, "phy-mode");
    164   1.1  jmcneill 	if (phy_mode == NULL) {
    165   1.1  jmcneill 		aprint_error(": missing 'phy-mode' property\n");
    166   1.1  jmcneill 		return;
    167   1.1  jmcneill 	}
    168   1.4  jmcneill 
    169   1.4  jmcneill 	reg_phy = fdtbus_regulator_acquire(phandle, "phy-supply");
    170   1.4  jmcneill 	if (reg_phy != NULL && fdtbus_regulator_enable(reg_phy) != 0) {
    171   1.4  jmcneill 		aprint_error(": couldn't enable PHY regualtor\n");
    172   1.4  jmcneill 		return;
    173   1.4  jmcneill 	}
    174   1.4  jmcneill 
    175   1.1  jmcneill 	if (strcmp(phy_mode, "mii") == 0) {
    176   1.1  jmcneill 		if (clk_set_rate(clk_gmac_tx, GMAC_TX_RATE_MII) != 0) {
    177   1.1  jmcneill 			aprint_error(": failed to set TX clock rate (MII)\n");
    178   1.1  jmcneill 			return;
    179   1.1  jmcneill 		}
    180  1.10  jmcneill 	} else if (strncmp(phy_mode, "rgmii", 5) == 0) {
    181   1.1  jmcneill 		if (clk_set_rate(clk_gmac_tx, GMAC_TX_RATE_RGMII) != 0) {
    182   1.1  jmcneill 			aprint_error(": failed to set TX clock rate (RGMII)\n");
    183   1.1  jmcneill 			return;
    184   1.1  jmcneill 		}
    185   1.1  jmcneill 	} else {
    186   1.1  jmcneill 		aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
    187   1.1  jmcneill 		return;
    188   1.1  jmcneill 	}
    189   1.1  jmcneill 
    190   1.1  jmcneill 	if (clk_enable(clk_gmac_tx) != 0 || clk_enable(clk_gmac) != 0) {
    191   1.1  jmcneill 		aprint_error(": couldn't enable clocks\n");
    192   1.1  jmcneill 		return;
    193   1.1  jmcneill 	}
    194   1.1  jmcneill 
    195   1.2  jmcneill 	if (rst_gmac != NULL && fdtbus_reset_deassert(rst_gmac) != 0) {
    196   1.2  jmcneill 		aprint_error(": couldn't de-assert reset\n");
    197   1.2  jmcneill 		return;
    198   1.2  jmcneill 	}
    199   1.2  jmcneill 
    200   1.1  jmcneill 	aprint_naive("\n");
    201   1.1  jmcneill 	aprint_normal(": GMAC\n");
    202   1.1  jmcneill 
    203   1.8  jmcneill 	if (fdtbus_intr_establish_xname(phandle, 0, IPL_NET,
    204  1.11     skrll 	    FDT_INTR_MPSAFE, sunxi_gmac_intr, sc,
    205   1.8  jmcneill 	    device_xname(self)) == NULL) {
    206   1.1  jmcneill 		aprint_error_dev(self, "failed to establish interrupt on %s\n", intrstr);
    207   1.1  jmcneill 		return;
    208   1.1  jmcneill 	}
    209   1.1  jmcneill 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
    210   1.1  jmcneill 
    211   1.2  jmcneill 	if (sunxi_gmac_reset(phandle) != 0)
    212   1.2  jmcneill 		aprint_error_dev(self, "PHY reset failed\n");
    213   1.2  jmcneill 
    214   1.7       bad 	dwc_gmac_attach(sc, sunxi_gmac_get_phyid(phandle),
    215   1.7       bad 	    GMAC_MII_CLK_150_250M_DIV102);
    216   1.1  jmcneill }
    217   1.1  jmcneill 
    218   1.1  jmcneill CFATTACH_DECL_NEW(sunxi_gmac, sizeof(struct dwc_gmac_softc),
    219   1.1  jmcneill 	sunxi_gmac_match, sunxi_gmac_attach, NULL, NULL);
    220