/Linux-v6.6/drivers/usb/phy/ |
D | of.c | 25 * The function gets phy interface string from property 'phy_type', 30 const char *phy_type; in of_usb_get_phy_mode() local 33 err = of_property_read_string(np, "phy_type", &phy_type); in of_usb_get_phy_mode() 38 if (!strcmp(phy_type, usbphy_modes[i])) in of_usb_get_phy_mode()
|
/Linux-v6.6/Documentation/devicetree/bindings/phy/ |
D | allwinner,sun9i-a80-usb-phy.yaml | 54 phy_type: 76 phy_type: 80 - phy_type 129 phy_type = "hsic";
|
D | nvidia,tegra20-usb-phy.yaml | 103 phy_type: 222 - phy_type 229 phy_type: 292 phy_type: 336 phy_type = "utmi"; 364 phy_type = "ulpi";
|
/Linux-v6.6/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
D | rate.c | 345 int phy_type; in brcms_c_compute_rspec() local 348 phy_type = in brcms_c_compute_rspec() 351 if ((phy_type == PHY_TYPE_N) || (phy_type == PHY_TYPE_SSN) || in brcms_c_compute_rspec() 352 (phy_type == PHY_TYPE_LCN) || (phy_type == PHY_TYPE_HT)) { in brcms_c_compute_rspec() 381 if ((phy_type == PHY_TYPE_A) || (rxh->PhyRxStatus_0 & PRXS0_OFDM)) in brcms_c_compute_rspec() 437 /* select rateset for a given phy_type and bandtype and filter it, sort it 443 uint phy_type, int bandtype, bool cck_only, in brcms_c_rateset_default() argument 448 if ((PHYTYPE_IS(phy_type, PHY_TYPE_HT)) || in brcms_c_rateset_default() 449 (PHYTYPE_IS(phy_type, PHY_TYPE_N)) || in brcms_c_rateset_default() 450 (PHYTYPE_IS(phy_type, PHY_TYPE_LCN)) || in brcms_c_rateset_default() [all …]
|
/Linux-v6.6/drivers/usb/host/ |
D | fsl-mph-dr-of.c | 60 static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type) in determine_usb_phy() argument 62 if (!phy_type) in determine_usb_phy() 64 if (!strcasecmp(phy_type, "ulpi")) in determine_usb_phy() 66 if (!strcasecmp(phy_type, "utmi")) in determine_usb_phy() 68 if (!strcasecmp(phy_type, "utmi_wide")) in determine_usb_phy() 70 if (!strcasecmp(phy_type, "utmi_dual")) in determine_usb_phy() 72 if (!strcasecmp(phy_type, "serial")) in determine_usb_phy() 219 prop = of_get_property(np, "phy_type", NULL); in fsl_usb2_mph_dr_of_probe()
|
/Linux-v6.6/drivers/usb/dwc2/ |
D | params.c | 41 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_his_params() 57 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_jz4775_params() 78 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_x1600_params() 94 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_x2000_params() 161 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_amlogic_params() 187 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_amlogic_a1_params() 214 p->phy_type = DWC2_PHY_TYPE_PARAM_FS; in dwc2_set_stm32f4x9_fsotg_params() 240 p->phy_type = DWC2_PHY_TYPE_PARAM_FS; in dwc2_set_stm32mp15_fsotg_params() 370 hsotg->params.phy_type = DWC2_PHY_TYPE_PARAM_FS; in dwc2_set_param_phy_type() 372 hsotg->params.phy_type = val; in dwc2_set_param_phy_type() [all …]
|
D | core.h | 239 * the attached device and the value of phy_type. 241 * (default when phy_type is UTMI+ or ULPI) 243 * (default when phy_type is Full Speed) 276 * @phy_type: Specifies the type of PHY interface to use. By default, 277 * the driver will automatically detect the phy_type. 283 * is applicable for a phy_type of UTMI+ or ULPI. (For a 284 * ULPI phy_type, this parameter indicates the data width 292 * data rate. This parameter is only applicable if phy_type 303 * speed PHY. This parameter is only applicable if phy_type 326 * (default when phy_type is UTMI+ or ULPI) [all …]
|
/Linux-v6.6/drivers/mmc/host/ |
D | sdhci-xenon-phy.c | 211 if (priv->phy_type == EMMC_5_0_PHY) in xenon_alloc_emmc_phy() 351 if (priv->phy_type == EMMC_5_1_PHY) in xenon_emmc_phy_enable_dll() 425 if (priv->phy_type == EMMC_5_0_PHY) { in xenon_emmc_phy_disable_strobe() 468 if (priv->phy_type == EMMC_5_0_PHY) { in xenon_emmc_phy_strobe_delay_adj() 564 if (priv->phy_type == EMMC_5_0_PHY) { in xenon_emmc_phy_set() 825 priv->phy_type = match_string(phy_types, NR_PHY_TYPES, phy_name); in xenon_add_phy() 826 if (priv->phy_type < 0) { in xenon_add_phy() 830 priv->phy_type = EMMC_5_1_PHY; in xenon_add_phy() 842 const char *phy_type = NULL; in xenon_phy_parse_params() local 844 if (!device_property_read_string(dev, "marvell,xenon-phy-type", &phy_type)) in xenon_phy_parse_params() [all …]
|
/Linux-v6.6/Documentation/devicetree/bindings/usb/ |
D | fsl-usb.txt | 14 - phy_type : For multi port host USB controllers, should be one of 51 phy_type = "ulpi"; 78 phy_type = "utmi_wide";
|
D | ci-hdrc-usb2.yaml | 100 phy_type: true 361 phy_type: 364 - phy_type 446 phy_type = "hsic";
|
/Linux-v6.6/drivers/net/ethernet/sun/ |
D | sungem.c | 1165 if (gp->phy_type == phy_serialink) in gem_pcs_reinit_adv() 1198 if (gp->phy_type == phy_serialink || gp->phy_type == phy_serdes) in gem_reset() 1260 if (gp->phy_type != phy_mii_mdio0 && in gem_begin_auto_negotiation() 1261 gp->phy_type != phy_mii_mdio1) in gem_begin_auto_negotiation() 1354 } else if (gp->phy_type == phy_serialink || in gem_set_link_modes() 1355 gp->phy_type == phy_serdes) { in gem_set_link_modes() 1358 if ((pcs_lpa & PCS_MIIADV_FD) || gp->phy_type == phy_serdes) in gem_set_link_modes() 1382 (gp->phy_type == phy_mii_mdio0 || in gem_set_link_modes() 1383 gp->phy_type == phy_mii_mdio1)) { in gem_set_link_modes() 1411 if (gp->phy_type == phy_serialink || in gem_set_link_modes() [all …]
|
/Linux-v6.6/arch/powerpc/boot/dts/fsl/ |
D | mpc8536ds.dtsi | 186 phy_type = "ulpi"; 190 phy_type = "ulpi"; 242 phy_type = "ulpi";
|
D | p1020utm-pc.dtsi | 127 phy_type = "ulpi"; 138 phy_type = "ulpi";
|
D | p1020mbg-pc.dtsi | 138 phy_type = "ulpi"; 149 phy_type = "ulpi";
|
D | p1022rdk.dts | 105 phy_type = "ulpi"; 109 phy_type = "ulpi";
|
/Linux-v6.6/drivers/media/platform/ti/omap3isp/ |
D | isp.h | 101 * @phy_type: ISP_PHY_TYPE_{3430,3630} 106 u32 phy_type; member 147 * @phy_type: ISP_PHY_TYPE_{3430,3630} 186 u32 phy_type; member
|
/Linux-v6.6/arch/arm/boot/dts/nxp/imx/ |
D | imx35-eukrea-mbimxsd35-baseboard.dts | 146 phy_type = "serial"; 152 phy_type = "utmi";
|
D | imx6qdl-prti6q.dtsi | 70 phy_type = "utmi"; 80 phy_type = "utmi";
|
D | imx51-eukrea-mbimxsd51-baseboard.dts | 253 phy_type = "ulpi"; 259 phy_type = "utmi_wide";
|
/Linux-v6.6/drivers/net/ethernet/sfc/falcon/ |
D | qt202x_phy.c | 310 if (efx->phy_type == PHY_TYPE_QT2025C) { in qt202x_reset_phy() 374 if (efx->phy_type == PHY_TYPE_QT2025C) in qt202x_phy_init() 394 if (efx->phy_type == PHY_TYPE_QT2025C) in qt202x_phy_poll() 404 if (efx->phy_type == PHY_TYPE_QT2025C) { in qt202x_phy_reconfigure() 463 if (efx->phy_type == PHY_TYPE_QT2025C) { in qt202x_phy_get_module_eeprom()
|
/Linux-v6.6/drivers/phy/cadence/ |
D | phy-cadence-torrent.c | 343 enum cdns_torrent_phy_type phy_type; member 686 static const char *cdns_torrent_get_phy_type(enum cdns_torrent_phy_type phy_type) in cdns_torrent_get_phy_type() argument 688 switch (phy_type) { in cdns_torrent_get_phy_type() 1652 if (inst->phy_type == TYPE_PCIE || inst->phy_type == TYPE_USB) { in cdns_torrent_phy_on() 2299 enum cdns_torrent_phy_type phy_type = inst->phy_type; in cdns_torrent_phy_init() local 2309 if (phy_type == TYPE_DP) in cdns_torrent_phy_init() 2318 if (phy_type == TYPE_SGMII || phy_type == TYPE_QSGMII || phy_type == TYPE_USXGMII) in cdns_torrent_phy_init() 2324 phy_type, TYPE_NONE, in cdns_torrent_phy_init() 2344 phy_type, TYPE_NONE, in cdns_torrent_phy_init() 2360 phy_type, TYPE_NONE, in cdns_torrent_phy_init() [all …]
|
D | phy-cadence-sierra.c | 344 enum cdns_sierra_phy_type phy_type; member 543 enum cdns_sierra_phy_type phy_type = ins->phy_type; in cdns_sierra_phy_init() local 560 pcs_cmn_vals = init_data->pcs_cmn_vals[phy_type][TYPE_NONE][ssc]; in cdns_sierra_phy_init() 570 phy_pma_ln_vals = init_data->phy_pma_ln_vals[phy_type][TYPE_NONE][ssc]; in cdns_sierra_phy_init() 582 pma_cmn_vals = init_data->pma_cmn_vals[phy_type][TYPE_NONE][ssc]; in cdns_sierra_phy_init() 592 pma_ln_vals = init_data->pma_ln_vals[phy_type][TYPE_NONE][ssc]; in cdns_sierra_phy_init() 630 if (ins->phy_type == TYPE_PCIE || ins->phy_type == TYPE_USB) { in cdns_sierra_phy_on() 940 u32 phy_type; in cdns_sierra_get_optional() local 948 if (of_property_read_u32(child, "cdns,phy-type", &phy_type)) in cdns_sierra_get_optional() 951 switch (phy_type) { in cdns_sierra_get_optional() [all …]
|
/Linux-v6.6/drivers/scsi/mvsas/ |
D | mv_sas.c | 229 && phy->phy_type & PORT_TYPE_SAS) { in mvs_bytes_dmaed() 245 if (phy->phy_type & PORT_TYPE_SAS) { in mvs_bytes_dmaed() 258 } else if (phy->phy_type & PORT_TYPE_SATA) { in mvs_bytes_dmaed() 942 if (phy->phy_type & PORT_TYPE_SAS) { in mvs_is_phy_ready() 947 } else if (phy->phy_type & PORT_TYPE_SATA) in mvs_is_phy_ready() 951 phy->phy_type &= ~(PORT_TYPE_SAS | PORT_TYPE_SATA); in mvs_is_phy_ready() 1012 if (phy->phy_type & PORT_TYPE_SATA) { in mvs_update_phyinfo() 1032 phy->phy_type &= ~PORT_TYPE_SATA; in mvs_update_phyinfo() 1035 } else if (phy->phy_type & PORT_TYPE_SAS in mvs_update_phyinfo() 1094 if (phy->phy_type & PORT_TYPE_SAS) { in mvs_port_notify_formed() [all …]
|
/Linux-v6.6/drivers/net/ethernet/smsc/ |
D | smc91x.c | 871 lp->phy_type = 0; in smc_phy_detect() 892 lp->phy_type = id1 << 16 | id2; in smc_phy_detect() 984 if (lp->phy_type == 0) in smc_phy_powerdown() 1046 * We should not be called if phy_type is zero. in smc_phy_configure() 1048 if (lp->phy_type == 0) in smc_phy_configure() 1142 if (lp->phy_type == 0) in smc_phy_interrupt() 1352 if (lp->phy_type != 0) in smc_timeout() 1479 if (lp->phy_type == 0) in smc_open() 1487 if (lp->phy_type != 0) in smc_open() 1531 if (lp->phy_type != 0) { in smc_ethtool_get_link_ksettings() [all …]
|
/Linux-v6.6/drivers/net/ethernet/intel/e1000/ |
D | e1000_hw.c | 102 hw->phy_type = e1000_phy_m88; in e1000_set_phy_type() 109 hw->phy_type = e1000_phy_igp; in e1000_set_phy_type() 112 hw->phy_type = e1000_phy_8211; in e1000_set_phy_type() 115 hw->phy_type = e1000_phy_8201; in e1000_set_phy_type() 119 hw->phy_type = e1000_phy_undefined; in e1000_set_phy_type() 959 switch (hw->phy_type) { in gbe_dhg_phy_setup() 1084 if (hw->phy_type == e1000_phy_igp) { in e1000_copper_link_igp_setup() 1325 if (hw->phy_type == e1000_phy_8201) in e1000_copper_link_autoneg() 1398 if (hw->phy_type == e1000_phy_igp) { in e1000_copper_link_postconfig() 1426 if (hw->phy_type == e1000_phy_igp) { in e1000_setup_copper_link() [all …]
|