Home
last modified time | relevance | path

Searched full:oui (Results 1 – 25 of 114) sorted by relevance

12345

/linux/drivers/net/ethernet/cisco/enic/
H A Dvnic_vic.c11 struct vic_provinfo *vic_provinfo_alloc(gfp_t flags, const u8 *oui, in vic_provinfo_alloc() argument
16 if (!oui) in vic_provinfo_alloc()
23 memcpy(vp->oui, oui, sizeof(vp->oui)); in vic_provinfo_alloc()
H A Dvnic_vic.h39 u8 oui[3]; /* OUI of data provider */ member
61 struct vic_provinfo *vic_provinfo_alloc(gfp_t flags, const u8 *oui,
H A Denic_pp.c59 const u8 oui[3] = VIC_PROVINFO_CISCO_OUI; in enic_set_port_profile() local
73 vp = vic_provinfo_alloc(GFP_KERNEL, oui, in enic_set_port_profile()
/linux/arch/mips/bcm63xx/
H A Dnvram.c58 u8 *oui; in bcm63xx_nvram_get_mac_address() local
67 oui = mac + ETH_ALEN/2 - 1; in bcm63xx_nvram_get_mac_address()
78 } while (p != oui); in bcm63xx_nvram_get_mac_address()
80 if (p == oui) { in bcm63xx_nvram_get_mac_address()
/linux/drivers/staging/rtl8723bs/core/
H A Drtw_ieee80211.c168 * @oui: OUI to match
169 * @oui_len: OUI length
175 u8 *rtw_get_ie_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, u8 oui_len, u8 *ie, uint *ielen) in rtw_get_ie_ex() argument
190 && (!oui || !memcmp(&in_ie[cnt+2], oui, oui_len))) { in rtw_get_ie_ex()
213 * @oui: OUI to match
214 * @oui_len: OUI length
218 int rtw_ies_remove_ie(u8 *ies, uint *ies_len, uint offset, u8 eid, u8 *oui, u8 oui_len) in rtw_ies_remove_ie() argument
233 target_ie = rtw_get_ie_ex(start, search_len, eid, oui, oui_len, NULL, &target_ielen); in rtw_ies_remove_ie()
368 /* check if oui matches... */ in rtw_get_wpa_ie()
705 /* 6 = 1(Element ID) + 1(Length) + 4(WPS OUI) */ in rtw_get_wps_attr()
[all …]
/linux/include/uapi/rdma/
H A Dib_user_mad.h180 * @oui: Indicates IEEE OUI when mgmt_class is a vendor class
191 __u8 oui[3]; member
212 * @oui - Indicates IEEE OUI to use when mgmt_class is a vendor
229 __u32 oui; member
/linux/drivers/net/ethernet/sfc/falcon/
H A Dmdio_10g.c18 unsigned oui = 0; in ef4_mdio_id_oui() local
21 /* The bits of the OUI are designated a..x, with a=0 and b variable. in ef4_mdio_id_oui()
22 * In the id register c is the MSB but the OUI is conventionally in ef4_mdio_id_oui()
26 oui |= 1 << (i ^ 7); in ef4_mdio_id_oui()
28 return oui; in ef4_mdio_id_oui()
/linux/include/net/nfc/
H A Dnfc.h318 u32 oui, u32 subcmd,
325 * @oui: vendor oui
348 u32 oui, u32 subcmd, int approxlen) in nfc_vendor_cmd_alloc_reply_skb() argument
352 oui, in nfc_vendor_cmd_alloc_reply_skb()
/linux/net/802/
H A Dfddi.c64 fddi->hdr.llc_snap.oui[0] = 0x00; in fddi_header()
65 fddi->hdr.llc_snap.oui[1] = 0x00; in fddi_header()
66 fddi->hdr.llc_snap.oui[2] = 0x00; in fddi_header()
H A Dhippi.c73 hip->snap.oui[0] = 0x00; in hippi_header()
74 hip->snap.oui[1] = 0x00; in hippi_header()
75 hip->snap.oui[2] = 0x00; in hippi_header()
/linux/drivers/infiniband/core/
H A Duser_mad.c738 memcpy(req.oui, ureq.oui, sizeof req.oui); in ib_umad_reg_agent()
851 if (ureq.oui & 0xff000000) { in ib_umad_reg_agent2()
853 "%s failed: oui invalid 0x%08x\n", __func__, in ib_umad_reg_agent2()
854 ureq.oui); in ib_umad_reg_agent2()
858 req.oui[2] = ureq.oui & 0x0000ff; in ib_umad_reg_agent2()
859 req.oui[1] = (ureq.oui & 0x00ff00) >> 8; in ib_umad_reg_agent2()
860 req.oui[0] = (ureq.oui & 0xff0000) >> 16; in ib_umad_reg_agent2()
/linux/drivers/infiniband/ulp/opa_vnic/
H A Dopa_vnic_encap.h89 /* INTEL OUI */
471 * @oui: Unique org identifier
478 u8 oui[3]; member
513 * @oui: Unique org identifier
520 u8 oui[3]; member
H A Dopa_vnic_vema.c816 /* Set up vendor OUI */ in opa_vnic_vema_send_trap()
817 trap_mad->oui[0] = INTEL_OUI_1; in opa_vnic_vema_send_trap()
818 trap_mad->oui[1] = INTEL_OUI_2; in opa_vnic_vema_send_trap()
819 trap_mad->oui[2] = INTEL_OUI_3; in opa_vnic_vema_send_trap()
927 .oui = { INTEL_OUI_1, INTEL_OUI_2, INTEL_OUI_3 } in vema_register()
/linux/drivers/net/wireless/marvell/mwifiex/
H A Dscan.c101 * This function parses a given IE for a given OUI.
104 * a given oui in PTK.
107 mwifiex_search_oui_in_ie(struct ie_body *iebody, u8 *oui) in mwifiex_search_oui_in_ie() argument
118 if (!memcmp(iebody->ptk_body, oui, sizeof(iebody->ptk_body))) in mwifiex_search_oui_in_ie()
127 pr_debug("info: %s: OUI is not found in PTK\n", __func__); in mwifiex_search_oui_in_ie()
132 * This function checks if a given OUI is present in a RSN IE.
135 * BSS descriptor. It tries to locate the OUI only if such an IE is
141 u8 *oui; in mwifiex_is_rsn_oui_present() local
149 oui = &mwifiex_rsn_oui[cipher][0]; in mwifiex_is_rsn_oui_present()
150 ret = mwifiex_search_oui_in_ie(iebody, oui); in mwifiex_is_rsn_oui_present()
[all …]
/linux/include/scsi/fc/
H A Dfc_fip.h17 #define FIP_DEF_FC_MAP 0x0efc00 /* default FCoE MAP (MAC OUI) value */
25 #define FIP_VN_FC_MAP 0x0efd00 /* MAC OUI for VN2VN use */
141 FIP_DT_MAP_OUI = 3, /* FC-MAP OUI */
/linux/include/uapi/linux/
H A Dif_fddi.h46 #define FDDI_K_OUI_LEN 3 /* Octets in OUI in 802.2 SNAP
105 __u8 oui[FDDI_K_OUI_LEN]; /* organizational universal id */ member
H A Datmclip.h14 #define RFC1483LLC_LEN 8 /* LLC+OUI+PID = 8 */
/linux/drivers/net/phy/
H A Dsmsc.c689 .phy_id = 0x0007c0a0, /* OUI=0x00800f, Model#=0x0a */
708 .phy_id = 0x0007c0b0, /* OUI=0x00800f, Model#=0x0b */
735 .phy_id = 0x0007c0c0, /* OUI=0x00800f, Model#=0x0c */
764 .phy_id = 0x0007c0d0, /* OUI=0x00800f, Model#=0x0d */
782 .phy_id = 0x0007c0f0, /* OUI=0x00800f, Model#=0x0f */
/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dp2p.c51 #define P2P_OUI "\x50\x6F\x9A" /* P2P OUI */
52 #define P2P_OUI_LEN 3 /* P2P OUI length */
71 /* WiFi P2P Public Action Frame OUI Subtypes */
83 /* WiFi P2P Action Frame OUI Subtypes */
148 * @oui: P2P_OUI
149 * @oui_type: OUI type - P2P_VER
150 * @subtype: OUI subtype - P2P_TYPE_*
157 u8 oui[3]; member
168 * @oui: OUI - P2P_OUI
169 * @type: OUI Type - P2P_VER
[all …]
/linux/arch/arm/mach-mxs/
H A Dmach-mxs.c160 static void __init update_fec_mac_prop(enum mac_oui oui) in update_fec_mac_prop() argument
193 * so hard-code OUI here. in update_fec_mac_prop()
196 switch (oui) { in update_fec_mac_prop()
/linux/drivers/gpu/drm/amd/display/dc/
H A Ddc_dp_types.h535 /*Bit 7 = OUI Support
536 0 = OUI not supported
537 1 = OUI supported
538 (OUI and Device Identification mandatory for DP 1.2)*/
576 uint8_t ieee_oui[3];/*24-bit IEEE OUI*/
590 uint8_t ieee_oui[3];/*24-bit IEEE OUI*/
/linux/include/net/
H A Dieee80211_radiotap.h397 * @oui: radiotap vendor namespace OUI
404 u8 oui[3];
386 u8 oui[3]; global() member
/linux/Documentation/networking/devlink/
H A Dmv88e6xxx.rst27 default of 1 when many MAC addresses have the same OUI. Only the
/linux/drivers/gpu/drm/tests/
H A Ddrm_kunit_edid.h146 * Vendor-Specific Data Block (HDMI), OUI 00-0C-03:
259 * Vendor-Specific Data Block (HDMI), OUI 00-0C-03:
367 * Vendor-Specific Data Block (HDMI), OUI 00-0C-03:
477 * Vendor-Specific Data Block (HDMI), OUI 00-0C-03:
591 * Vendor-Specific Data Block (HDMI), OUI 00-0C-03:
704 * Vendor-Specific Data Block (HDMI), OUI 00-0C-03:
712 * Vendor-Specific Data Block (HDMI Forum), OUI C4-5D-D8:
819 * Vendor-Specific Data Block (HDMI), OUI 00-0C-03:
827 * Vendor-Specific Data Block (HDMI Forum), OUI C4-5D-D8:
/linux/drivers/gpu/drm/amd/display/modules/freesync/
H A Dfreesync.c567 /* PB1 = 0x1A (24bit AMD IEEE OUI (0x00001A) - Byte 0) */ in build_vrr_infopacket_data_v1()
570 /* PB2 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 1) */ in build_vrr_infopacket_data_v1()
573 /* PB3 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 2) */ in build_vrr_infopacket_data_v1()
626 /* PB1 = 0x1A (24bit AMD IEEE OUI (0x00001A) - Byte 0) */ in build_vrr_infopacket_data_v3()
629 /* PB2 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 1) */ in build_vrr_infopacket_data_v3()
632 /* PB3 = 0x00 (24bit AMD IEEE OUI (0x00001A) - Byte 2) */ in build_vrr_infopacket_data_v3()

12345