1/*-
2 * Copyright (c) 2007 Cisco Systems, Inc.  All rights reserved.
3 * Copyright (c) 2014 Mellanox Technologies, Ltd. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses.  You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 *     Redistribution and use in source and binary forms, with or
12 *     without modification, are permitted provided that the following
13 *     conditions are met:
14 *
15 *	- Redistributions of source code must retain the above
16 *	  copyright notice, this list of conditions and the following
17 *	  disclaimer.
18 *
19 *	- Redistributions in binary form must reproduce the above
20 *	  copyright notice, this list of conditions and the following
21 *	  disclaimer in the documentation and/or other materials
22 *	  provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34
35#ifndef _LINUX_ETHERDEVICE
36#define _LINUX_ETHERDEVICE
37
38#include <linux/types.h>
39
40#define	ETH_MODULE_SFF_8079		1
41#define	ETH_MODULE_SFF_8079_LEN		256
42#define	ETH_MODULE_SFF_8472		2
43#define	ETH_MODULE_SFF_8472_LEN		512
44#define	ETH_MODULE_SFF_8636		3
45#define	ETH_MODULE_SFF_8636_LEN		256
46#define	ETH_MODULE_SFF_8436		4
47#define	ETH_MODULE_SFF_8436_LEN		256
48
49struct ethtool_eeprom {
50	u32	offset;
51	u32	len;
52};
53
54struct ethtool_modinfo {
55	u32	type;
56	u32	eeprom_len;
57};
58
59/**
60 * is_zero_ether_addr - Determine if give Ethernet address is all zeros.
61 * @addr: Pointer to a six-byte array containing the Ethernet address
62 *
63 * Return true if the address is all zeroes.
64 */
65static inline bool is_zero_ether_addr(const u8 *addr)
66{
67        return !(addr[0] | addr[1] | addr[2] | addr[3] | addr[4] | addr[5]);
68}
69
70
71
72/**
73 * is_multicast_ether_addr - Determine if the Ethernet address is a multicast.
74 * @addr: Pointer to a six-byte array containing the Ethernet address
75 *
76 * Return true if the address is a multicast address.
77 * By definition the broadcast address is also a multicast address.
78 */
79static inline bool is_multicast_ether_addr(const u8 *addr)
80{
81        return (0x01 & addr[0]);
82}
83
84/**
85 * is_broadcast_ether_addr - Determine if the Ethernet address is broadcast
86 * @addr: Pointer to a six-byte array containing the Ethernet address
87 *
88 * Return true if the address is the broadcast address.
89 */
90static inline bool is_broadcast_ether_addr(const u8 *addr)
91{
92        return (addr[0] & addr[1] & addr[2] & addr[3] & addr[4] & addr[5]) == 0xff;
93}
94
95/**
96 * is_valid_ether_addr - Determine if the given Ethernet address is valid
97 * @addr: Pointer to a six-byte array containing the Ethernet address
98 *
99 * Check that the Ethernet address (MAC) is not 00:00:00:00:00:00, is not
100 * a multicast address, and is not FF:FF:FF:FF:FF:FF.
101 *
102 * Return true if the address is valid.
103 **/
104static inline bool is_valid_ether_addr(const u8 *addr)
105{
106        /* FF:FF:FF:FF:FF:FF is a multicast address so we don't need to
107        ** explicitly check for it here. */
108        return !is_multicast_ether_addr(addr) && !is_zero_ether_addr(addr);
109}
110
111static inline void ether_addr_copy(u8 *dst, const u8 *src)
112{
113	memcpy(dst, src, 6);
114}
115
116#endif /* _LINUX_ETHERDEVICE */
117