/openbmc/linux/drivers/net/ |
H A D | sungem_phy.c | 310 static int genmii_setup_aneg(struct mii_phy *phy, u32 advertise) in genmii_setup_aneg() argument 318 phy->advertising = advertise; in genmii_setup_aneg() 320 /* Setup standard advertise */ in genmii_setup_aneg() 323 if (advertise & ADVERTISED_10baseT_Half) in genmii_setup_aneg() 325 if (advertise & ADVERTISED_10baseT_Full) in genmii_setup_aneg() 327 if (advertise & ADVERTISED_100baseT_Half) in genmii_setup_aneg() 329 if (advertise & ADVERTISED_100baseT_Full) in genmii_setup_aneg() 466 static int bcm54xx_setup_aneg(struct mii_phy *phy, u32 advertise) in bcm54xx_setup_aneg() argument 474 phy->advertising = advertise; in bcm54xx_setup_aneg() 476 /* Setup standard advertise */ in bcm54xx_setup_aneg() [all …]
|
H A D | mii.c | 271 /* advertise only what has been requested */ in mii_ethtool_sset() 367 /* advertise only what has been requested */ in mii_ethtool_set_link_ksettings() 507 int advertise, lpa, media, duplex; in mii_check_media() local 539 /* get MII advertise and LPA values */ in mii_check_media() 541 advertise = mii->advertising; in mii_check_media() 543 advertise = mii->mdio_read(mii->dev, mii->phy_id, MII_ADVERTISE); in mii_check_media() 544 mii->advertising = advertise; in mii_check_media() 550 /* figure out media and duplex from advertise and LPA values */ in mii_check_media() 551 media = mii_nway_result(lpa & advertise); in mii_check_media()
|
/openbmc/linux/tools/testing/selftests/net/forwarding/ |
H A D | ethtool.sh | 188 ethtool_set $h1 advertise $speed_1_to_advertise 191 log_test "advertise subset of speeds" 204 ethtool_set $h2 advertise $speed_2_to_advertise 211 log_test "advertise subset of speeds" 230 ethtool_set $h1 advertise $speed_to_advertise 252 check_err $? "h1 advertise $speed_to_advertise, h2 sync to speed $chosen_speed" 262 # Test that when we configure links to advertise different speeds, 273 ethtool_set $h1 advertise $speed1 274 ethtool_set $h2 advertise $speed2 283 log_test "advertise different speeds autoneg on"
|
/openbmc/linux/drivers/net/ethernet/intel/igc/ |
H A D | igc_phy.c | 256 * autoneg_advertised software override. Since we can advertise in igc_phy_setup_autoneg() 273 /* Do we want to advertise 10 Mb Half Duplex? */ in igc_phy_setup_autoneg() 275 hw_dbg("Advertise 10mb Half duplex\n"); in igc_phy_setup_autoneg() 279 /* Do we want to advertise 10 Mb Full Duplex? */ in igc_phy_setup_autoneg() 281 hw_dbg("Advertise 10mb Full duplex\n"); in igc_phy_setup_autoneg() 285 /* Do we want to advertise 100 Mb Half Duplex? */ in igc_phy_setup_autoneg() 287 hw_dbg("Advertise 100mb Half duplex\n"); in igc_phy_setup_autoneg() 291 /* Do we want to advertise 100 Mb Full Duplex? */ in igc_phy_setup_autoneg() 293 hw_dbg("Advertise 100mb Full duplex\n"); in igc_phy_setup_autoneg() 297 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */ in igc_phy_setup_autoneg() [all …]
|
/openbmc/linux/drivers/net/ethernet/ibm/emac/ |
H A D | phy.c | 110 static int genmii_setup_aneg(struct mii_phy *phy, u32 advertise) in genmii_setup_aneg() argument 118 phy->advertising = advertise; in genmii_setup_aneg() 128 /* Setup standard advertise */ in genmii_setup_aneg() 134 if (advertise & ADVERTISED_10baseT_Half) in genmii_setup_aneg() 136 if (advertise & ADVERTISED_10baseT_Full) in genmii_setup_aneg() 138 if (advertise & ADVERTISED_100baseT_Half) in genmii_setup_aneg() 140 if (advertise & ADVERTISED_100baseT_Full) in genmii_setup_aneg() 142 if (advertise & ADVERTISED_Pause) in genmii_setup_aneg() 144 if (advertise & ADVERTISED_Asym_Pause) in genmii_setup_aneg() 154 if (advertise & ADVERTISED_1000baseT_Full) in genmii_setup_aneg() [all …]
|
/openbmc/linux/drivers/net/ethernet/dec/tulip/ |
H A D | pnic2.c | 31 * Bit 9 - Full Duplex mode (Advertise 10BaseT-FD is CSR14<7> is set) 38 * Bit 18 - Advertise T4 39 * Bit 17 - Advertise 100baseTx-FD 40 * Bit 16 - Advertise 100baseTx-HD 43 * Bit 6 - HDE - Advertise 10baseT-HD 103 /* set up what to advertise during the negotiation */ in pnic2_start_nway() 113 /* bit 16 - advertise 100baseTx-HD */ in pnic2_start_nway() 116 /* bit 6 - advertise 10baseT-HD */ in pnic2_start_nway() 145 /* advertise 10baseT-FD for the negotiation (bit 9) */ in pnic2_start_nway()
|
/openbmc/u-boot/drivers/net/phy/ |
H A D | phy.c | 27 * genphy_config_advert - sanitize and advertise auto-negotiation parameters 31 * after sanitizing the values to make sure we only advertise 37 u32 advertise; in genphy_config_advert() local 43 advertise = phydev->advertising; in genphy_config_advert() 54 if (advertise & ADVERTISED_10baseT_Half) in genphy_config_advert() 56 if (advertise & ADVERTISED_10baseT_Full) in genphy_config_advert() 58 if (advertise & ADVERTISED_100baseT_Half) in genphy_config_advert() 60 if (advertise & ADVERTISED_100baseT_Full) in genphy_config_advert() 62 if (advertise & ADVERTISED_Pause) in genphy_config_advert() 64 if (advertise & ADVERTISED_Asym_Pause) in genphy_config_advert() [all …]
|
/openbmc/u-boot/drivers/qe/ |
H A D | uec_phy.c | 228 * sanitizing advertise to make sure only supported features 233 u32 advertise; in config_genmii_advert() local 238 advertise = mii_info->advertising; in config_genmii_advert() 243 if (advertise & ADVERTISED_10baseT_Half) in config_genmii_advert() 245 if (advertise & ADVERTISED_10baseT_Full) in config_genmii_advert() 247 if (advertise & ADVERTISED_100baseT_Half) in config_genmii_advert() 249 if (advertise & ADVERTISED_100baseT_Full) in config_genmii_advert() 305 u32 advertise; in gbit_config_aneg() local 308 /* Configure the ADVERTISE register */ in gbit_config_aneg() 310 advertise = mii_info->advertising; in gbit_config_aneg() [all …]
|
/openbmc/linux/drivers/net/pcs/ |
H A D | pcs-mtk-lynxi.c | 113 int advertise, link_timer; in mtk_pcs_lynxi_config() local 115 advertise = phylink_mii_c22_pcs_encode_advertisement(interface, in mtk_pcs_lynxi_config() 117 if (advertise < 0) in mtk_pcs_lynxi_config() 118 return advertise; in mtk_pcs_lynxi_config() 177 SGMII_ADVERTISE, advertise, &changed); in mtk_pcs_lynxi_config()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/etcd/etcd/ |
H A D | etcd-existing.conf | 22 # List of this member's peer URLs to advertise to the rest of the cluster. 26 # List of this member's client URLs to advertise to the public.
|
/openbmc/openbmc/meta-phosphor/recipes-extended/etcd/etcd/ |
H A D | etcd-new.conf.sample | 22 # List of this member's peer URLs to advertise to the rest of the cluster. 26 # List of this member's client URLs to advertise to the public.
|
/openbmc/linux/drivers/net/ethernet/sfc/siena/ |
H A D | tx.h | 22 /* we only advertise features for IPv4 and IPv6 checksums on in efx_tx_csum_type_skb() 35 /* similarly, we only advertise features for IPv4 and IPv6 checksums, in efx_tx_csum_type_skb()
|
/openbmc/linux/drivers/net/ethernet/sfc/ |
H A D | tx.h | 29 /* we only advertise features for IPv4 and IPv6 checksums on in efx_tx_csum_type_skb() 42 /* similarly, we only advertise features for IPv4 and IPv6 checksums, in efx_tx_csum_type_skb()
|
/openbmc/u-boot/include/linux/ |
H A D | mii.h | 93 #define LPA_SLCT 0x001f /* Same as advertise selector */ 132 #define ADVERTISE_1000FULL 0x0200 /* Advertise 1000BASE-T full duplex */ 133 #define ADVERTISE_1000HALF 0x0100 /* Advertise 1000BASE-T half duplex */ 207 * @lcladv: value of MII ADVERTISE register
|
/openbmc/linux/include/uapi/linux/ |
H A D | mdio.h | 298 #define MDIO_AN_10GBT_CTRL_ADVFSRT2_5G 0x0020 /* Advertise 2.5GBASE-T fast retrain */ 299 #define MDIO_AN_10GBT_CTRL_ADV2_5G 0x0080 /* Advertise 2.5GBASE-T */ 300 #define MDIO_AN_10GBT_CTRL_ADV5G 0x0100 /* Advertise 5GBASE-T */ 301 #define MDIO_AN_10GBT_CTRL_ADV10G 0x1000 /* Advertise 10GBASE-T */ 351 #define MDIO_AN_T1_ADV_M_MST 0x0010 /* advertise master preference */ 400 #define MDIO_AN_EEE_ADV_100TX 0x0002 /* Advertise 100TX EEE cap */ 401 #define MDIO_AN_EEE_ADV_1000T 0x0004 /* Advertise 1000T EEE cap */
|
H A D | mii.h | 96 #define LPA_SLCT 0x001f /* Same as advertise selector */ 152 #define ADVERTISE_1000FULL 0x0200 /* Advertise 1000BASE-T full duplex */ 153 #define ADVERTISE_1000HALF 0x0100 /* Advertise 1000BASE-T half duplex */
|
/openbmc/linux/drivers/nvdimm/ |
H A D | Kconfig | 12 bus is registered to advertise PMEM (persistent memory) 68 Map persistent memory, i.e. advertise it to the memory
|
/openbmc/linux/drivers/net/wireless/ath/ath11k/ |
H A D | mac.h | 61 /* These macros should be used when we wish to advertise STBC support for 97 /* These macros should be used when we wish to advertise STBC support for
|
/openbmc/qemu/contrib/ivshmem-server/ |
H A D | ivshmem-server.c | 83 /* advertise the deletion to other peers */ in ivshmem_server_free_peer() 188 /* advertise the new peer to others */ in ivshmem_server_handle_new_conn() 196 /* advertise the other peers to the new one */ in ivshmem_server_handle_new_conn() 204 /* advertise the new peer to itself */ in ivshmem_server_handle_new_conn()
|
/openbmc/linux/drivers/net/ethernet/intel/igb/ |
H A D | e1000_phy.c | 857 * configure to advertise the full capability. Setup the PHY to autoneg 873 * by the calling code so we set to advertise full capability. in igb_copper_link_autoneg() 948 * autoneg_advertised software override. Since we can advertise in igb_phy_setup_autoneg() 965 /* Do we want to advertise 10 Mb Half Duplex? */ in igb_phy_setup_autoneg() 967 hw_dbg("Advertise 10mb Half duplex\n"); in igb_phy_setup_autoneg() 971 /* Do we want to advertise 10 Mb Full Duplex? */ in igb_phy_setup_autoneg() 973 hw_dbg("Advertise 10mb Full duplex\n"); in igb_phy_setup_autoneg() 977 /* Do we want to advertise 100 Mb Half Duplex? */ in igb_phy_setup_autoneg() 979 hw_dbg("Advertise 100mb Half duplex\n"); in igb_phy_setup_autoneg() 983 /* Do we want to advertise 100 Mb Full Duplex? */ in igb_phy_setup_autoneg() [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/libedit/libedit/ |
H A D | stdc-predef.patch | 26 * seems to actually advertise this properly, despite Unicode 3.1 having
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/tnftp/tnftp/ |
H A D | 0001-libedit-Include-missing-header-stdc-predef.h.patch | 28 * seems to actually advertise this properly, despite Unicode 3.1 having
|
/openbmc/linux/arch/powerpc/kernel/ |
H A D | note.S | 35 * can be used to advertise kernel capabilities to userland.
|
/openbmc/linux/drivers/net/ethernet/intel/e1000e/ |
H A D | phy.c | 982 * autoneg_advertised software override. Since we can advertise in e1000_phy_setup_autoneg() 998 /* Do we want to advertise 10 Mb Half Duplex? */ in e1000_phy_setup_autoneg() 1000 e_dbg("Advertise 10mb Half duplex\n"); in e1000_phy_setup_autoneg() 1004 /* Do we want to advertise 10 Mb Full Duplex? */ in e1000_phy_setup_autoneg() 1006 e_dbg("Advertise 10mb Full duplex\n"); in e1000_phy_setup_autoneg() 1010 /* Do we want to advertise 100 Mb Half Duplex? */ in e1000_phy_setup_autoneg() 1012 e_dbg("Advertise 100mb Half duplex\n"); in e1000_phy_setup_autoneg() 1016 /* Do we want to advertise 100 Mb Full Duplex? */ in e1000_phy_setup_autoneg() 1018 e_dbg("Advertise 100mb Full duplex\n"); in e1000_phy_setup_autoneg() 1022 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */ in e1000_phy_setup_autoneg() [all …]
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Inventory/Item/Cpu/ |
H A D | OperatingConfig.interface.yaml | 2 Implement to advertise power and frequency attributes of a single available
|