Home
last modified time | relevance | path

Searched full:phy_type (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/OK3568_Linux_fs/u-boot/drivers/usb/host/
H A Dehci-fsl.c33 char *phy_type; member
64 prop = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "phy_type", in ehci_fsl_ofdata_to_platdata()
67 priv->phy_type = (char *)prop; in ehci_fsl_ofdata_to_platdata()
68 debug("phy_type %s\n", priv->phy_type); in ehci_fsl_ofdata_to_platdata()
196 const char *phy_type = NULL; in ehci_fsl_init() local
224 if (priv->phy_type) in ehci_fsl_init()
225 phy_type = priv->phy_type; in ehci_fsl_init()
231 if (hwconfig_sub(current_usb_controller, "phy_type")) in ehci_fsl_init()
232 phy_type = hwconfig_subarg(current_usb_controller, in ehci_fsl_init()
233 "phy_type", &len); in ehci_fsl_init()
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/platforms/83xx/
H A Dmpc837x_mds.c29 const void *phy_type, *mode; in mpc837xmds_usb_cfg() local
51 phy_type = of_get_property(np, "phy_type", NULL); in mpc837xmds_usb_cfg()
52 if (phy_type && !strcmp(phy_type, "ulpi")) { in mpc837xmds_usb_cfg()
54 } else if (phy_type && !strcmp(phy_type, "serial")) { in mpc837xmds_usb_cfg()
H A Dusb.c45 prop = of_get_property(np, "phy_type", NULL); in mpc834x_usb_cfg()
115 prop = of_get_property(np, "phy_type", NULL); in mpc831x_usb_cfg()
224 prop = of_get_property(np, "phy_type", NULL); in mpc837x_usb_cfg()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/ssv6xxx/smac/
H A Dssv_rc.c26 .phy_type = WLAN_RC_PHY_CCK,
35 .phy_type = WLAN_RC_PHY_CCK,
44 .phy_type = WLAN_RC_PHY_CCK,
53 .phy_type = WLAN_RC_PHY_CCK,
62 .phy_type = WLAN_RC_PHY_CCK,
71 .phy_type = WLAN_RC_PHY_CCK,
80 .phy_type = WLAN_RC_PHY_CCK,
89 .phy_type = WLAN_RC_PHY_OFDM,
98 .phy_type = WLAN_RC_PHY_OFDM,
107 .phy_type = WLAN_RC_PHY_OFDM,
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/phy/
H A Dnvidia,tegra20-usb-phy.txt14 Present if-and-only-if phy_type == utmi.
15 - phy_type : Should be one of "utmi", "ulpi" or "hsic".
21 - timer: The timeout clock (clk_m). Present if phy_type == utmi.
23 Present if phy_type == utmi.
27 Present if phy_type == ulpi, and ULPI link mode is in use.
33 registers. Required even if phy_type == ulpi.
35 Required properties for phy_type == ulpi:
H A Dallwinner,sun9i-a80-usb-phy.yaml57 phy_type:
79 phy_type:
83 - phy_type
132 phy_type = "hsic";
/OK3568_Linux_fs/kernel/drivers/usb/phy/
H A Dof.c25 * 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()
/OK3568_Linux_fs/u-boot/drivers/usb/common/
H A Dcommon.c79 const char *phy_type; in usb_get_phy_mode() local
82 phy_type = ofnode_get_property(node, "phy_type", NULL); in usb_get_phy_mode()
83 if (!phy_type) in usb_get_phy_mode()
87 if (!strcmp(phy_type, usbphy_modes[i])) in usb_get_phy_mode()
H A Dfsl-dt-fixup.c57 const char *phy_type, int start_offset) in fdt_fixup_usb_mode_phy_type() argument
60 const char *prop_type = "phy_type"; in fdt_fixup_usb_mode_phy_type()
78 if (phy_type) { in fdt_fixup_usb_mode_phy_type()
79 err = fdt_setprop(blob, node_offset, prop_type, phy_type, in fdt_fixup_usb_mode_phy_type()
80 strlen(phy_type) + 1); in fdt_fixup_usb_mode_phy_type()
166 if (hwconfig_subarg_cmp(str, "phy_type", in fsl_fdt_fixup_dr_usb()
/OK3568_Linux_fs/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Drate.c345 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 …]
/OK3568_Linux_fs/kernel/drivers/usb/host/
H A Dfsl-mph-dr-of.c59 static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type) in determine_usb_phy() argument
61 if (!phy_type) in determine_usb_phy()
63 if (!strcasecmp(phy_type, "ulpi")) in determine_usb_phy()
65 if (!strcasecmp(phy_type, "utmi")) in determine_usb_phy()
67 if (!strcasecmp(phy_type, "utmi_wide")) in determine_usb_phy()
69 if (!strcasecmp(phy_type, "utmi_dual")) in determine_usb_phy()
71 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()
/OK3568_Linux_fs/kernel/drivers/phy/rockchip/
H A Dphy-rockchip-inno-combphy.c82 u8 phy_type; member
392 switch (priv->phy_type) { in rockchip_combphy_set_phy_type()
449 if (priv->phy_type == PHY_TYPE_PCIE) { in rockchip_combphy_exit()
469 if (priv->phy_type == PHY_TYPE_USB3) { in rockchip_combphy_power_on()
511 if (priv->phy_type == PHY_TYPE_USB3 || in rockchip_combphy_power_off()
512 priv->phy_type == PHY_TYPE_PCIE) { in rockchip_combphy_power_off()
554 if (priv->phy_type != PHY_TYPE_PCIE) in rockchip_combphy_set_mode()
589 if (priv->phy_type != PHY_NONE && priv->phy_type != args->args[0]) { in rockchip_combphy_xlate()
591 args->args[0], priv->phy_type); in rockchip_combphy_xlate()
595 priv->phy_type = args->args[0]; in rockchip_combphy_xlate()
[all …]
/OK3568_Linux_fs/kernel/drivers/usb/dwc2/
H A Dparams.c64 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_his_params()
121 p->phy_type = DWC2_PHY_TYPE_PARAM_UTMI; in dwc2_set_amlogic_params()
154 p->phy_type = DWC2_PHY_TYPE_PARAM_FS; in dwc2_set_stm32f4x9_fsotg_params()
178 p->phy_type = DWC2_PHY_TYPE_PARAM_FS; in dwc2_set_stm32mp15_fsotg_params()
273 hsotg->params.phy_type = DWC2_PHY_TYPE_PARAM_FS; in dwc2_set_param_phy_type()
275 hsotg->params.phy_type = val; in dwc2_set_param_phy_type()
282 val = hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS ? in dwc2_set_param_speed()
509 switch (hsotg->params.phy_type) { in dwc2_check_param_phy_type()
535 int phy_type = hsotg->params.phy_type; in dwc2_check_param_speed() local
541 (phy_type == DWC2_PHY_TYPE_PARAM_FS)) in dwc2_check_param_speed()
[all …]
H A Dcore.h263 * the attached device and the value of phy_type.
265 * (default when phy_type is UTMI+ or ULPI)
267 * (default when phy_type is Full Speed)
300 * @phy_type: Specifies the type of PHY interface to use. By default,
301 * the driver will automatically detect the phy_type.
307 * is applicable for a phy_type of UTMI+ or ULPI. (For a
308 * ULPI phy_type, this parameter indicates the data width
316 * data rate. This parameter is only applicable if phy_type
327 * speed PHY. This parameter is only applicable if phy_type
350 * (default when phy_type is UTMI+ or ULPI)
[all …]
/OK3568_Linux_fs/kernel/drivers/mmc/host/
H A Dsdhci-xenon-phy.c211 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()
821 priv->phy_type = match_string(phy_types, NR_PHY_TYPES, phy_name); in xenon_add_phy()
822 if (priv->phy_type < 0) { in xenon_add_phy()
826 priv->phy_type = EMMC_5_1_PHY; in xenon_add_phy()
838 const char *phy_type = NULL; in xenon_phy_parse_dt() local
840 if (!of_property_read_string(np, "marvell,xenon-phy-type", &phy_type)) in xenon_phy_parse_dt()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/usb/
H A Dfsl-usb.txt14 - phy_type : For multi port host USB controllers, should be one of
51 phy_type = "ulpi";
78 phy_type = "utmi_wide";
/OK3568_Linux_fs/kernel/drivers/net/ethernet/sun/
H A Dsungem.c1165 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 …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.fsl-hwconfig37 'phy_type'
46 usb1:dr_mode=host,phy_type=utmi;usb2:dr_mode=host'
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/core/
H A Drtw_wnm.c493 cant.nb_rpt.phy_type= *(ptr + 14); in rtw_wnm_process_btm_rsp()
507 " phy_type(0x%02X), preference(0x%02X)\n", in rtw_wnm_process_btm_rsp()
510 cant.nb_rpt.phy_type, cant.preference); in rtw_wnm_process_btm_rsp()
623 &pcandidate->nb_rpt.phy_type, in rtw_wnm_build_btm_req_ies()
969 " phy_type(0x%02X), preference(0x%02X)\n", in rtw_wnm_nb_elem_parsing()
974 pcandidate->nb_rpt.phy_type, in rtw_wnm_nb_elem_parsing()
1058 " ch_num(%d), phy_type(0x%02X)\n", in rtw_wnm_nb_info_update()
1061 pnb->nb_rpt[i].phy_type); in rtw_wnm_nb_info_update()
1245 puser_cant->nb_rpt.phy_type = \ in rtw_wnm_process_btm_query()
1246 pie->phy_type; in rtw_wnm_process_btm_query()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/core/
H A Drtw_wnm.c493 cant.nb_rpt.phy_type= *(ptr + 14); in rtw_wnm_process_btm_rsp()
507 " phy_type(0x%02X), preference(0x%02X)\n", in rtw_wnm_process_btm_rsp()
510 cant.nb_rpt.phy_type, cant.preference); in rtw_wnm_process_btm_rsp()
623 &pcandidate->nb_rpt.phy_type, in rtw_wnm_build_btm_req_ies()
969 " phy_type(0x%02X), preference(0x%02X)\n", in rtw_wnm_nb_elem_parsing()
974 pcandidate->nb_rpt.phy_type, in rtw_wnm_nb_elem_parsing()
1058 " ch_num(%d), phy_type(0x%02X)\n", in rtw_wnm_nb_info_update()
1061 pnb->nb_rpt[i].phy_type); in rtw_wnm_nb_info_update()
1245 puser_cant->nb_rpt.phy_type = \ in rtw_wnm_process_btm_query()
1246 pie->phy_type; in rtw_wnm_process_btm_query()
[all …]
/OK3568_Linux_fs/kernel/drivers/media/platform/omap3isp/
H A Disp.h101 * @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
/OK3568_Linux_fs/kernel/arch/powerpc/boot/dts/fsl/
H A Dmpc8536ds.dtsi186 phy_type = "ulpi";
190 phy_type = "ulpi";
242 phy_type = "ulpi";
/OK3568_Linux_fs/kernel/drivers/net/ethernet/sfc/falcon/
H A Dqt202x_phy.c310 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()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/intel/ixgb/
H A Dixgb_hw.c86 if (hw->phy_type == ixgb_phy_type_txn17401) in ixgb_mac_reset()
202 ixgb_phy_type phy_type; in ixgb_identify_phy() local
211 phy_type = ixgb_phy_type_txn17401; in ixgb_identify_phy()
221 phy_type = ixgb_phy_type_txn17201; in ixgb_identify_phy()
224 phy_type = ixgb_phy_type_g6005; in ixgb_identify_phy()
229 phy_type = ixgb_phy_type_g6104; in ixgb_identify_phy()
236 phy_type = ixgb_phy_type_txn17201; in ixgb_identify_phy()
239 phy_type = ixgb_phy_type_g6005; in ixgb_identify_phy()
244 phy_type = ixgb_phy_type_unknown; in ixgb_identify_phy()
250 phy_type = ixgb_phy_type_bcm; in ixgb_identify_phy()
[all …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dimx6qdl-prti6q.dtsi70 phy_type = "utmi";
79 phy_type = "utmi";

12345678910>>...15