HomeSort by: relevance | last modified time | path
    Searched defs:phy_mode (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/arch/arm/altera/
cycv_gmac.c 81 const char *phy_mode; local in function:cycv_gmac_attach
116 phy_mode = fdtbus_get_string(phandle, "phy-mode");
117 if (phy_mode == NULL) {
  /src/sys/dev/acpi/
genet_acpi.c 80 char *phy_mode; local in function:genet_acpi_attach
115 rv = acpi_dsd_string(handle, "phy-mode", &phy_mode);
121 if (strcmp(phy_mode, "rgmii-rxid") == 0)
123 else if (strcmp(phy_mode, "rgmii-txid") == 0)
125 else if (strcmp(phy_mode, "rgmii-id") == 0)
127 else if (strcmp(phy_mode, "rgmii") == 0)
130 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
  /src/sys/dev/fdt/
genet_fdt.c 96 const char *phy_mode = fdtbus_get_string(phandle, "phy-mode"); local in function:genet_fdt_attach
97 if (phy_mode == NULL) {
102 if (strcmp(phy_mode, "rgmii-rxid") == 0)
104 else if (strcmp(phy_mode, "rgmii-txid") == 0)
106 else if (strcmp(phy_mode, "rgmii-id") == 0)
108 else if (strcmp(phy_mode, "rgmii") == 0)
111 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
  /src/sys/arch/arm/nxp/
if_enet_imx.c 134 const char *phy_mode = fdtbus_get_string(phandle, "phy-mode"); local in function:enet_attach
135 if (phy_mode == NULL) {
140 if (strcmp(phy_mode, "rgmii-txid") == 0) {
143 } else if (strcmp(phy_mode, "rgmii-rxid") == 0) {
146 } else if (strcmp(phy_mode, "rgmii-id") == 0) {
150 } else if (strcmp(phy_mode, "rgmii") == 0) {
  /src/sys/arch/arm/sunxi/
sunxi_gmac.c 131 const char *phy_mode; local in function:sunxi_gmac_attach
163 phy_mode = fdtbus_get_string(phandle, "phy-mode");
164 if (phy_mode == NULL) {
175 if (strcmp(phy_mode, "mii") == 0) {
180 } else if (strncmp(phy_mode, "rgmii", 5) == 0) {
186 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
  /src/sys/arch/riscv/starfive/
jh71x0_eth.c 149 const char *phy_mode = fdtbus_get_string(phandle, "phy-mode"); local in function:jh71x0_eth_attach
150 if (phy_mode == NULL)
151 phy_mode = "rgmii-id"; /* default: RGMII */
159 if (strncmp(phy_mode, "rgmii-id", 8) == 0) {
162 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
  /src/sys/arch/arm/amlogic/
meson_dwmac.c 199 const char *phy_mode; local in function:meson_dwmac_attach
234 phy_mode = fdtbus_get_string(phandle, "phy-mode");
235 if (phy_mode == NULL) {
246 if (strncmp(phy_mode, "rgmii", 5) == 0) {
248 } else if (strcmp(phy_mode, "rmii") == 0) {
251 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
  /src/sys/arch/arm/rockchip/
rk_eqos.c 297 const char *phy_mode; local in function:rk_eqos_attach
368 phy_mode = fdtbus_get_string(phandle, "phy-mode");
369 if (phy_mode == NULL)
370 phy_mode = "rgmii"; /* default: RGMII */
372 if (strncmp(phy_mode, "rgmii", 5) == 0) {
382 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
rk_gmac.c 444 const char *phy_mode; local in function:rk_gmac_attach
505 phy_mode = fdtbus_get_string(phandle, "phy-mode");
506 if (phy_mode == NULL) {
513 if (strncmp(phy_mode, "rgmii", 5) == 0) {
519 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
524 if (strncmp(phy_mode, "rgmii", 5) == 0) {
530 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
535 if (strncmp(phy_mode, "rgmii", 5) == 0) {
541 aprint_error(": unsupported phy-mode '%s'\n", phy_mode);
  /src/sys/arch/arm/sociox/
if_scx.c 698 const char *phy_mode; local in function:scx_fdt_attach
717 phy_mode = fdtbus_get_string(phandle, "phy-mode");
718 if (phy_mode == NULL)
732 phy_mode, (int)phy_id, ref_clk);
  /src/sys/dev/ic/
bwivar.h 347 enum ieee80211_phymode phy_mode; member in struct:bwi_phy

Completed in 19 milliseconds