Searched refs:phy_type (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-11.0-release/sbin/atm/atmconfig/
H A Ddiag.h38 u_int phy_type; member in struct:diagif
H A Ddiag.c296 if (phy_fetch(d->ifname, "type", &d->phy_type,
297 sizeof(d->phy_type), 0) == 0) {
561 printf("%-5u%-25s0x%-9x", aif->phy_type,
724 if (asprintf(&str, "hw.atm.%s.phy_type", argv[0]) == -1)
/freebsd-11.0-release/sys/dev/dpaa/
H A Dif_dtsec_fdt.c114 char phy_type[6]; local
164 if (OF_getprop(enet_node, "phy-connection-type", (void *)phy_type,
165 sizeof(phy_type)) <= 0)
168 if (!strcmp(phy_type, "sgmii"))
170 else if (!strcmp(phy_type, "rgmii"))
172 else if (!strcmp(phy_type, "xgmii"))
/freebsd-11.0-release/sys/arm/allwinner/
H A Daw_if_dwc.c66 char *phy_type; local
75 if (OF_getprop_alloc(node, "phy-mode", 1, (void **)&phy_type)) {
82 if (strcmp(phy_type, "rgmii") == 0)
H A Dif_awg.c919 char *phy_type; local
931 phy_type = NULL;
946 if (OF_getprop_alloc(node, "phy-mode", 1, (void **)&phy_type)) {
948 device_printf(dev, "PHY type: %s\n", phy_type);
950 if (strcmp(phy_type, "rgmii") == 0)
954 OF_prop_free(phy_type);
1037 OF_prop_free(phy_type);
/freebsd-11.0-release/contrib/wpa/wpa_supplicant/
H A Dwnm_sta.h29 u8 phy_type; member in struct:neighbor_report
H A Dwnm_sta.c459 rep->phy_type = *(pos + 12);
726 nei->channel_number, nei->phy_type,
/freebsd-11.0-release/sys/dev/ixgb/
H A Dixgb_hw.c92 if (hw->phy_type == ixgb_phy_type_txn17401) {
217 ixgb_phy_type phy_type; local
226 phy_type = ixgb_phy_type_txn17401;
236 phy_type = ixgb_phy_type_txn17201;
240 phy_type = ixgb_phy_type_g6005;
247 phy_type = ixgb_phy_type_unknown;
251 return (phy_type);
306 hw->phy_type = ixgb_identify_phy(hw);
955 if (hw->phy_type == ixgb_phy_type_txn17401) {
1205 if (hw->phy_type
[all...]
H A Dixgb_hw.h702 ixgb_phy_type phy_type; /* Transceiver/phy identifier */ member in struct:ixgb_hw
/freebsd-11.0-release/sys/dev/usb/controller/
H A Dehci_fsl.c169 char *phy_type; local
171 phy_type = NULL;
176 (OF_getprop_alloc(node, "phy_type", 1, (void **)&phy_type) > 0)) {
177 if (strncasecmp(phy_type, "utmi", strlen("utmi")) == 0)
179 OF_prop_free(phy_type);
/freebsd-11.0-release/sys/dev/e1000/
H A De1000_phy.c2991 enum e1000_phy_type phy_type = e1000_phy_unknown; local
3003 phy_type = e1000_phy_m88;
3006 phy_type = e1000_phy_igp_2;
3009 phy_type = e1000_phy_gg82563;
3012 phy_type = e1000_phy_igp_3;
3017 phy_type = e1000_phy_ife;
3021 phy_type = e1000_phy_bm;
3024 phy_type = e1000_phy_82578;
3027 phy_type = e1000_phy_82577;
3030 phy_type
3060 enum e1000_phy_type phy_type = e1000_phy_unknown; local
[all...]
/freebsd-11.0-release/sys/dev/ixl/
H A Dixl_pf_main.c1700 ixl_add_ifmedia(struct ixl_vsi *vsi, u32 phy_type) argument
1703 if (phy_type & (1 << I40E_PHY_TYPE_100BASE_TX))
1706 if (phy_type & (1 << I40E_PHY_TYPE_1000BASE_T))
1708 if (phy_type & (1 << I40E_PHY_TYPE_1000BASE_SX))
1710 if (phy_type & (1 << I40E_PHY_TYPE_1000BASE_LX))
1713 if (phy_type & (1 << I40E_PHY_TYPE_XAUI) ||
1714 phy_type & (1 << I40E_PHY_TYPE_XFI) ||
1715 phy_type & (1 << I40E_PHY_TYPE_10GBASE_SFPP_CU))
1718 if (phy_type & (1 << I40E_PHY_TYPE_10GBASE_SR))
1720 if (phy_type
[all...]
H A Di40e_adminq_cmd.h1751 __le32 phy_type; /* bitmap using the above enum for offsets */ member in struct:i40e_aq_get_phy_abilities_resp
1788 __le32 phy_type; member in struct:i40e_aq_set_phy_config
1853 u8 phy_type; /* i40e_aq_phy_type */ member in struct:i40e_aqc_get_link_status
H A Di40e_common.c1220 switch (hw->phy.link_info.phy_type) {
1634 hw->phy.phy_types = LE32_TO_CPU(abilities->phy_type);
1727 config.phy_type = abilities.phy_type;
1886 hw_link_info->phy_type = (enum i40e_aq_phy_type)resp->phy_type;
1919 hw->aq.fw_min_ver < 40)) && hw_link_info->phy_type == 0xE)
1920 hw_link_info->phy_type = I40E_PHY_TYPE_10GBASE_SFPP_CU;
H A Di40e_type.h250 enum i40e_aq_phy_type phy_type; member in struct:i40e_link_status
/freebsd-11.0-release/sys/dev/isci/scil/
H A Dscic_sds_phy.h261 } phy_type; member in struct:SCIC_SDS_PHY
H A Dscic_sds_phy.c656 memset(&this_phy->phy_type, 0, sizeof(this_phy->phy_type));
887 = this_phy->phy_type.sas.identify_address_frame_buffer.sas_address.high;
889 = this_phy->phy_type.sas.identify_address_frame_buffer.sas_address.low;
964 this_phy->phy_type.sas.identify_address_frame_buffer.protocols.u.all;
1177 &this_phy->phy_type.sas.identify_address_frame_buffer,
1211 &this_phy->phy_type.sata.signature_fis_buffer,
3219 &this_phy->phy_type.sas.identify_address_frame_buffer,
3317 &this_phy->phy_type.sata.signature_fis_buffer,
H A Dscic_sds_controller.c1918 current_requester_phy->phy_type.sas.identify_address_frame_buffer.sas_address.high
1919 == the_phy->phy_type.sas.identify_address_frame_buffer.sas_address.high &&
1920 current_requester_phy->phy_type.sas.identify_address_frame_buffer.sas_address.low
1921 == the_phy->phy_type.sas.identify_address_frame_buffer.sas_address.low)
1979 current_phy->phy_type.sas.identify_address_frame_buffer.sas_address.high
1980 == the_phy->phy_type.sas.identify_address_frame_buffer.sas_address.high &&
1981 current_phy->phy_type.sas.identify_address_frame_buffer.sas_address.low
1982 == the_phy->phy_type.sas.identify_address_frame_buffer.sas_address.low)
/freebsd-11.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-helper-board.c183 cvmx_phy_type_t phy_type; member in struct:cvmx_phy_info
215 phy_info.phy_type = (cvmx_phy_type_t) -1;
266 phy_info.phy_type = MARVELL_GENERIC_PHY;
270 phy_info.phy_type = BROADCOM_GENERIC_PHY;
274 phy_info.phy_type = -1;
942 // phy_info.phy_addr, phy_info.direct_connect, phy_info.phy_type);
947 switch(phy_info.phy_type)
/freebsd-11.0-release/sys/dev/ixgbe/
H A Dixgbe_phy.c503 enum ixgbe_phy_type phy_type; local
509 phy_type = ixgbe_phy_tn;
515 phy_type = ixgbe_phy_aq;
518 phy_type = ixgbe_phy_qt;
521 phy_type = ixgbe_phy_nl;
524 phy_type = ixgbe_phy_x550em_ext_t;
527 phy_type = ixgbe_phy_unknown;
531 DEBUGOUT1("phy type found is %d\n", phy_type);
532 return phy_type;
/freebsd-11.0-release/sys/dev/bxe/
H A Dbxe_elink.h212 #define ELINK_FW_PARAM_SET(phy_addr, phy_type, mdio_access) \
213 (phy_addr | phy_type | mdio_access << ELINK_FW_PARAM_MDIO_CTRL_OFFSET)
/freebsd-11.0-release/sys/dev/pdq/
H A Dpdq.c212 pdq_phy_types[rsp->status_chars_get.phy_type[0]],
217 pdq_phy_types[rsp->status_chars_get.phy_type[1]],
H A Dpdqreg.h879 pdq_phy_type_t phy_type[2]; member in struct:__anon11467::__anon11468
/freebsd-11.0-release/sys/arm/cavium/cns11xx/
H A Dif_ece.c164 static int configure_lan_port(struct ece_softc *sc, int phy_type);
1106 configure_lan_port(struct ece_softc *sc, int phy_type) argument
/freebsd-11.0-release/sys/dev/oce/
H A Doce_mbox.c1595 phy_info->phy_type = HOST_16(fwcmd->params.rsp.phy_info.phy_type);

Completed in 293 milliseconds

12