Searched +full:asym +full:- +full:pause (Results 1 – 8 of 8) sorted by relevance
/freebsd/sys/dev/mii/ |
H A D | xmphyreg.h | 1 /*- 2 * SPDX-License-Identifier: BSD-4-Clause 18 * 4. Neither the name of the author nor the names of any co-contributors 63 #define XMPHY_ANAR_PAUSEBITS 0x0180 /* Pause bits */ 71 #define XMPHY_ANLPAR_PAUSEBITS 0x0180 /* Pause bits */ 75 #define XMPHY_RF_OK 0x0000 /* No error -- link is good */ 80 #define XMPHY_PAUSE_NOPAUSE 0x0000 /* No pause possible */ 81 #define XMPHY_PAUSE_ASYMETRIC 0x0080 /* Asymetric pause toward LP */ 82 #define XMPHY_PAUSE_SYMETRIC 0x0100 /* Symetric pause */ 83 #define XMPHY_PAUSE_BOTH 0x0180 /* Both sym and asym pause */ [all …]
|
H A D | mii.h | 3 /*- 4 * SPDX-License-Identifier: BSD-2-Clause 115 #define ANAR_FC 0x0400 /* local device supports PAUSE */ 128 #define ANAR_X_FD 0x0020 /* local device supports 1000BASE-X FD */ 129 #define ANAR_X_HD 0x0040 /* local device supports 1000BASE-X HD */ 140 #define ANLPAR_FC 0x0400 /* link partner supports PAUSE */ 153 #define ANLPAR_X_FD 0x0020 /* local device supports 1000BASE-X FD */ 154 #define ANLPAR_X_HD 0x0040 /* local device supports 1000BASE-X HD */ 164 #define ANER_LPNP 0x0008 /* link parter next page-able */ 165 #define ANER_NP 0x0004 /* next page-able */ [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | ethernet-controller.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/net/ethernet-controller.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - David S. Miller <davem@davemloft.net> 19 local-mac-address: 22 $ref: /schemas/types.yaml#/definitions/uint8-array 26 mac-address: 31 local-mac-address property. 32 $ref: /schemas/types.yaml#/definitions/uint8-array [all …]
|
/freebsd/sys/dev/e1000/ |
H A D | e1000_defines.h | 2 SPDX-License-Identifier: BSD-3-Clause 4 Copyright (c) 2001-2020, Intel Corporation 94 #define E1000_CTRL_EXT_IAME 0x08000000 /* Int ACK Auto-mask */ 122 #define E1000_RXD_STAT_PIF 0x80 /* passed in-exact filter */ 172 #define E1000_MANC_SMBUS_EN 0x00000001 /* SMBus Enabled - RO */ 173 #define E1000_MANC_ASF_EN 0x00000002 /* ASF Enabled - RO */ 216 #define E1000_RCTL_DPF 0x00400000 /* discard pause frames */ 261 #define E1000_CTRL_ASDE 0x00000020 /* Auto-speed detect enable */ 263 #define E1000_CTRL_ILOS 0x00000080 /* Invert Loss-Of Signal */ 340 #define E1000_STATUS_PCIX_MODE 0x00002000 /* PCI-X mode */ [all …]
|
/freebsd/sys/dev/igc/ |
H A D | igc_defines.h | 1 /*- 4 * SPDX-License-Identifier: BSD-3-Clause 72 #define IGC_CTRL_EXT_IAME 0x08000000 /* Int ACK Auto-mask */ 89 #define IGC_RXD_STAT_PIF 0x80 /* passed in-exact filter */ 127 #define IGC_MANC_SMBUS_EN 0x00000001 /* SMBus Enabled - RO */ 128 #define IGC_MANC_ASF_EN 0x00000002 /* ASF Enabled - RO */ 171 #define IGC_RCTL_DPF 0x00400000 /* discard pause frames */ 214 #define IGC_CTRL_ASDE 0x00000020 /* Auto-speed detect enable */ 216 #define IGC_CTRL_ILOS 0x00000080 /* Invert Loss-Of Signal */ 278 /* 1000/H is not supported, nor spec-compliant. */ [all …]
|
/freebsd/contrib/tcpdump/ |
H A D | print-lldp.c | 2 * Copyright (c) 1998-2007 The TCPDUMP project 24 #include "netdissect-stdinc.h" 197 { LLDP_PRIVATE_TIA_SUBTYPE_CAPABILITIES, "LLDP-MED Capabilities" }, 200 { LLDP_PRIVATE_TIA_SUBTYPE_EXTENDED_POWER_MDI, "Extended power-via-MDI" }, 201 { LLDP_PRIVATE_TIA_SUBTYPE_INVENTORY_HARDWARE_REV, "Inventory - hardware revision" }, 202 { LLDP_PRIVATE_TIA_SUBTYPE_INVENTORY_FIRMWARE_REV, "Inventory - firmware revision" }, 203 { LLDP_PRIVATE_TIA_SUBTYPE_INVENTORY_SOFTWARE_REV, "Inventory - software revision" }, 204 { LLDP_PRIVATE_TIA_SUBTYPE_INVENTORY_SERIAL_NUMBER, "Inventory - serial number" }, 205 { LLDP_PRIVATE_TIA_SUBTYPE_INVENTORY_MANUFACTURER_NAME, "Inventory - manufacturer name" }, 206 { LLDP_PRIVATE_TIA_SUBTYPE_INVENTORY_MODEL_NAME, "Inventory - model name" }, [all …]
|
/freebsd/sys/dev/sfxge/common/ |
H A D | ef10_phy.c | 1 /*- 2 * Copyright (c) 2012-2016 Solarflare Communications Inc. 58 CHECK_CAP(PAUSE); in mcdi_phy_decode_cap() 59 CHECK_CAP(ASYM); in mcdi_phy_decode_cap() 195 efx_port_t *epp = &(enp->en_port); in ef10_phy_link_ev() 253 epp->ep_lp_cap_mask = lp_cap_mask; in ef10_phy_link_ev() 254 epp->ep_fcntl = fcntl; in ef10_phy_link_ev() 273 enp->en_reset_flags |= EFX_RESET_PHY; in ef10_phy_power() 313 &elsp->epls.epls_adv_cap_mask); in ef10_phy_get_link() 315 &elsp->epls.epls_lp_cap_mask); in ef10_phy_get_link() [all …]
|
/freebsd/sys/dev/bxe/ |
H A D | bxe_elink.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2007-2017 QLogic Corporation. All rights reserved. 508 /* When this pin is active high during reset, 10GBASE-T core is power 509 * down, When it is active low the 10GBASE-T is power up 774 #define I2C_WA_PWR_ITER (I2C_WA_RETRY_CNT - 1) 936 (_phy)->def_md_devad, \ 942 (_phy)->def_md_devad, \ 970 * elink_check_lfa - This function checks if link reinitialization is required, 982 struct bxe_softc *sc = params->sc; in elink_check_lfa() [all …]
|