Home
last modified time | relevance | path

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

12345678910>>...15

/linux-6.12.1/drivers/net/
Dsungem_phy.c310 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 …]
Dmii.c271 /* 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()
/linux-6.12.1/tools/testing/selftests/drivers/net/hw/
Dethtool.sh187 ethtool_set $h1 advertise $speed_1_to_advertise
190 log_test "advertise subset of speeds"
203 ethtool_set $h2 advertise $speed_2_to_advertise
210 log_test "advertise $speed_1_to_advertise vs. $speed_2_to_advertise"
228 ethtool_set $h1 advertise $speed_to_advertise
250 check_err $? "h1 advertise $speed_to_advertise, h2 sync to speed $chosen_speed"
260 # Test that when we configure links to advertise different speeds,
271 ethtool_set $h1 advertise $speed1
272 ethtool_set $h2 advertise $speed2
281 log_test "advertise different speeds autoneg on"
/linux-6.12.1/drivers/net/ethernet/intel/igc/
Digc_phy.c252 * autoneg_advertised software override. Since we can advertise in igc_phy_setup_autoneg()
269 /* Do we want to advertise 10 Mb Half Duplex? */ in igc_phy_setup_autoneg()
271 hw_dbg("Advertise 10mb Half duplex\n"); in igc_phy_setup_autoneg()
275 /* Do we want to advertise 10 Mb Full Duplex? */ in igc_phy_setup_autoneg()
277 hw_dbg("Advertise 10mb Full duplex\n"); in igc_phy_setup_autoneg()
281 /* Do we want to advertise 100 Mb Half Duplex? */ in igc_phy_setup_autoneg()
283 hw_dbg("Advertise 100mb Half duplex\n"); in igc_phy_setup_autoneg()
287 /* Do we want to advertise 100 Mb Full Duplex? */ in igc_phy_setup_autoneg()
289 hw_dbg("Advertise 100mb Full duplex\n"); in igc_phy_setup_autoneg()
293 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */ in igc_phy_setup_autoneg()
[all …]
/linux-6.12.1/drivers/net/ethernet/ibm/emac/
Dphy.c110 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 …]
Dphy.h31 int (*setup_aneg) (struct mii_phy * phy, u32 advertise);
/linux-6.12.1/drivers/net/ethernet/dec/tulip/
Dpnic2.c31 * 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()
/linux-6.12.1/Documentation/driver-api/
Dwbrf.rst12 To mitigate possible RFI interference producers can advertise the
17 the platform designer will advertise the availability of this feature via
19 * Producers with this _DSM will be able to advertise the frequencies in use.
/linux-6.12.1/drivers/net/pcs/
Dpcs-mtk-lynxi.c113 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()
/linux-6.12.1/include/uapi/linux/
Dmdio.h301 #define MDIO_AN_10GBT_CTRL_ADVFSRT2_5G 0x0020 /* Advertise 2.5GBASE-T fast retrain */
302 #define MDIO_AN_10GBT_CTRL_ADV2_5G 0x0080 /* Advertise 2.5GBASE-T */
303 #define MDIO_AN_10GBT_CTRL_ADV5G 0x0100 /* Advertise 5GBASE-T */
304 #define MDIO_AN_10GBT_CTRL_ADV10G 0x1000 /* Advertise 10GBASE-T */
354 #define MDIO_AN_T1_ADV_M_1000BT1 0x0080 /* advertise 1000BASE-T1 */
355 #define MDIO_AN_T1_ADV_M_100BT1 0x0020 /* advertise 100BASE-T1 */
356 #define MDIO_AN_T1_ADV_M_MST 0x0010 /* advertise master preference */
405 #define MDIO_AN_EEE_ADV_100TX 0x0002 /* Advertise 100TX EEE cap */
406 #define MDIO_AN_EEE_ADV_1000T 0x0004 /* Advertise 1000T EEE cap */
Dmii.h96 #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 */
/linux-6.12.1/drivers/net/ethernet/sfc/siena/
Dtx.h22 /* 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()
/linux-6.12.1/drivers/net/ethernet/sfc/
Dtx.h29 /* 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()
/linux-6.12.1/drivers/nvdimm/
DKconfig12 bus is registered to advertise PMEM (persistent memory)
68 Map persistent memory, i.e. advertise it to the memory
/linux-6.12.1/drivers/net/ethernet/intel/igb/
De1000_phy.c857 * 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 …]
/linux-6.12.1/drivers/net/wireless/ath/ath11k/
Dmac.h61 /* 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
/linux-6.12.1/drivers/net/ethernet/intel/e1000e/
Dphy.c981 * autoneg_advertised software override. Since we can advertise in e1000_phy_setup_autoneg()
997 /* Do we want to advertise 10 Mb Half Duplex? */ in e1000_phy_setup_autoneg()
999 e_dbg("Advertise 10mb Half duplex\n"); in e1000_phy_setup_autoneg()
1003 /* Do we want to advertise 10 Mb Full Duplex? */ in e1000_phy_setup_autoneg()
1005 e_dbg("Advertise 10mb Full duplex\n"); in e1000_phy_setup_autoneg()
1009 /* Do we want to advertise 100 Mb Half Duplex? */ in e1000_phy_setup_autoneg()
1011 e_dbg("Advertise 100mb Half duplex\n"); in e1000_phy_setup_autoneg()
1015 /* Do we want to advertise 100 Mb Full Duplex? */ in e1000_phy_setup_autoneg()
1017 e_dbg("Advertise 100mb Full duplex\n"); in e1000_phy_setup_autoneg()
1021 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */ in e1000_phy_setup_autoneg()
[all …]
/linux-6.12.1/drivers/platform/x86/amd/
DKconfig33 This mechanism will only be activated on platforms that advertise a
/linux-6.12.1/drivers/ufs/core/
Dufshcd-crypto.c168 * Don't use crypto if either the hardware doesn't advertise the in ufshcd_hba_init_crypto_capabilities()
201 * Cache all the UFS crypto capabilities and advertise the supported in ufshcd_hba_init_crypto_capabilities()
/linux-6.12.1/arch/powerpc/kernel/
Dnote.S35 * can be used to advertise kernel capabilities to userland.
/linux-6.12.1/Documentation/block/
Dinline-encryption.rst59 advertise crypto capabilities to upper layers in a generic way.
97 advertise their crypto capabilities and provide certain functions (e.g.,
236 Next, it must advertise its crypto capabilities by setting fields in the
/linux-6.12.1/drivers/gpu/drm/radeon/
Dradeon_acpi.c593 * @advertise: set advertise caps flag if set
600 u8 perf_req, bool advertise) in radeon_acpi_pcie_performance_request() argument
624 if (advertise) in radeon_acpi_pcie_performance_request()
/linux-6.12.1/drivers/dax/
DKconfig36 EFI 2.8 platforms, and others, may advertise 'specific purpose'
/linux-6.12.1/net/sunrpc/
Drpcb_clnt.c434 * RPC services invoke this function to advertise their contact
437 * tuple they wish to advertise.
557 * RPC services invoke this function to advertise their contact
560 * netid] tuple they wish to advertise.
580 * supported by this API if the caller wishes to advertise an RPC
/linux-6.12.1/drivers/net/ethernet/intel/e1000/
De1000_hw.c856 * advertise that we are capable of Rx Pause ONLY, we will in e1000_setup_fiber_serdes_link()
857 * advertise that we support both symmetric and asymmetric Rx in e1000_setup_fiber_serdes_link()
1320 * by the calling code so we set to advertise full capability. in e1000_copper_link_autoneg()
1515 * autoneg_advertised software override. Since we can advertise in e1000_phy_setup_autoneg()
1529 /* Do we want to advertise 10 Mb Half Duplex? */ in e1000_phy_setup_autoneg()
1531 e_dbg("Advertise 10mb Half duplex\n"); in e1000_phy_setup_autoneg()
1535 /* Do we want to advertise 10 Mb Full Duplex? */ in e1000_phy_setup_autoneg()
1537 e_dbg("Advertise 10mb Full duplex\n"); in e1000_phy_setup_autoneg()
1541 /* Do we want to advertise 100 Mb Half Duplex? */ in e1000_phy_setup_autoneg()
1543 e_dbg("Advertise 100mb Half duplex\n"); in e1000_phy_setup_autoneg()
[all …]

12345678910>>...15