ethernet.h 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006
  1. /** @file
  2. @brief Ethernet
  3. This is not to be included by the application.
  4. */
  5. /*
  6. * Copyright (c) 2016 Intel Corporation
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_ETHERNET_H_
  11. #define ZEPHYR_INCLUDE_NET_ETHERNET_H_
  12. #include <kernel.h>
  13. #include <zephyr/types.h>
  14. #include <stdbool.h>
  15. #include <sys/atomic.h>
  16. #include <net/net_ip.h>
  17. #include <net/net_pkt.h>
  18. #if defined(CONFIG_NET_LLDP)
  19. #include <net/lldp.h>
  20. #endif
  21. #include <sys/util.h>
  22. #include <net/net_if.h>
  23. #include <net/ethernet_vlan.h>
  24. #include <net/ptp_time.h>
  25. #if defined(CONFIG_NET_DSA)
  26. #include <net/dsa.h>
  27. #endif
  28. #if defined(CONFIG_NET_ETHERNET_BRIDGE)
  29. #include <net/ethernet_bridge.h>
  30. #endif
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /**
  35. * @brief Ethernet support functions
  36. * @defgroup ethernet Ethernet Support Functions
  37. * @ingroup networking
  38. * @{
  39. */
  40. /** @cond INTERNAL_HIDDEN */
  41. struct net_eth_addr {
  42. uint8_t addr[6];
  43. };
  44. #define NET_ETH_HDR(pkt) ((struct net_eth_hdr *)net_pkt_data(pkt))
  45. #define NET_ETH_PTYPE_ARP 0x0806
  46. #define NET_ETH_PTYPE_IP 0x0800
  47. #define NET_ETH_PTYPE_TSN 0x22f0 /* TSN (IEEE 1722) packet */
  48. #define NET_ETH_PTYPE_IPV6 0x86dd
  49. #define NET_ETH_PTYPE_VLAN 0x8100
  50. #define NET_ETH_PTYPE_PTP 0x88f7
  51. #define NET_ETH_PTYPE_LLDP 0x88cc
  52. #define NET_ETH_PTYPE_ALL 0x0003 /* from linux/if_ether.h */
  53. #if !defined(ETH_P_ALL)
  54. #define ETH_P_ALL NET_ETH_PTYPE_ALL
  55. #endif
  56. #if !defined(ETH_P_IP)
  57. #define ETH_P_IP NET_ETH_PTYPE_IP
  58. #endif
  59. #if !defined(ETH_P_ARP)
  60. #define ETH_P_ARP NET_ETH_PTYPE_ARP
  61. #endif
  62. #if !defined(ETH_P_IPV6)
  63. #define ETH_P_IPV6 NET_ETH_PTYPE_IPV6
  64. #endif
  65. #if !defined(ETH_P_8021Q)
  66. #define ETH_P_8021Q NET_ETH_PTYPE_VLAN
  67. #endif
  68. #if !defined(ETH_P_TSN)
  69. #define ETH_P_TSN NET_ETH_PTYPE_TSN
  70. #endif
  71. #define NET_ETH_MINIMAL_FRAME_SIZE 60
  72. #define NET_ETH_MTU 1500
  73. #define _NET_ETH_MAX_FRAME_SIZE (NET_ETH_MTU + sizeof(struct net_eth_hdr))
  74. #define _NET_ETH_MAX_HDR_SIZE (sizeof(struct net_eth_hdr))
  75. /*
  76. * Extend the max frame size for DSA (KSZ8794) by one byte (to 1519) to
  77. * store tail tag.
  78. */
  79. #if defined(CONFIG_NET_DSA)
  80. #define NET_ETH_MAX_FRAME_SIZE (_NET_ETH_MAX_FRAME_SIZE + DSA_TAG_SIZE)
  81. #define NET_ETH_MAX_HDR_SIZE (_NET_ETH_MAX_HDR_SIZE + DSA_TAG_SIZE)
  82. #else
  83. #define NET_ETH_MAX_FRAME_SIZE (_NET_ETH_MAX_FRAME_SIZE)
  84. #define NET_ETH_MAX_HDR_SIZE (_NET_ETH_MAX_HDR_SIZE)
  85. #endif
  86. #define NET_ETH_VLAN_HDR_SIZE 4
  87. /** @endcond */
  88. /** Ethernet hardware capabilities */
  89. enum ethernet_hw_caps {
  90. /** TX Checksum offloading supported for all of IPv4, UDP, TCP */
  91. ETHERNET_HW_TX_CHKSUM_OFFLOAD = BIT(0),
  92. /** RX Checksum offloading supported for all of IPv4, UDP, TCP */
  93. ETHERNET_HW_RX_CHKSUM_OFFLOAD = BIT(1),
  94. /** VLAN supported */
  95. ETHERNET_HW_VLAN = BIT(2),
  96. /** Enabling/disabling auto negotiation supported */
  97. ETHERNET_AUTO_NEGOTIATION_SET = BIT(3),
  98. /** 10 Mbits link supported */
  99. ETHERNET_LINK_10BASE_T = BIT(4),
  100. /** 100 Mbits link supported */
  101. ETHERNET_LINK_100BASE_T = BIT(5),
  102. /** 1 Gbits link supported */
  103. ETHERNET_LINK_1000BASE_T = BIT(6),
  104. /** Changing duplex (half/full) supported */
  105. ETHERNET_DUPLEX_SET = BIT(7),
  106. /** IEEE 802.1AS (gPTP) clock supported */
  107. ETHERNET_PTP = BIT(8),
  108. /** IEEE 802.1Qav (credit-based shaping) supported */
  109. ETHERNET_QAV = BIT(9),
  110. /** Promiscuous mode supported */
  111. ETHERNET_PROMISC_MODE = BIT(10),
  112. /** Priority queues available */
  113. ETHERNET_PRIORITY_QUEUES = BIT(11),
  114. /** MAC address filtering supported */
  115. ETHERNET_HW_FILTERING = BIT(12),
  116. /** Link Layer Discovery Protocol supported */
  117. ETHERNET_LLDP = BIT(13),
  118. /** VLAN Tag stripping */
  119. ETHERNET_HW_VLAN_TAG_STRIP = BIT(14),
  120. /** DSA switch */
  121. ETHERNET_DSA_SLAVE_PORT = BIT(15),
  122. ETHERNET_DSA_MASTER_PORT = BIT(16),
  123. /** IEEE 802.1Qbv (scheduled traffic) supported */
  124. ETHERNET_QBV = BIT(17),
  125. /** IEEE 802.1Qbu (frame preemption) supported */
  126. ETHERNET_QBU = BIT(18),
  127. /** TXTIME supported */
  128. ETHERNET_TXTIME = BIT(19),
  129. };
  130. /** @cond INTERNAL_HIDDEN */
  131. enum ethernet_config_type {
  132. ETHERNET_CONFIG_TYPE_AUTO_NEG,
  133. ETHERNET_CONFIG_TYPE_LINK,
  134. ETHERNET_CONFIG_TYPE_DUPLEX,
  135. ETHERNET_CONFIG_TYPE_MAC_ADDRESS,
  136. ETHERNET_CONFIG_TYPE_QAV_PARAM,
  137. ETHERNET_CONFIG_TYPE_QBV_PARAM,
  138. ETHERNET_CONFIG_TYPE_QBU_PARAM,
  139. ETHERNET_CONFIG_TYPE_TXTIME_PARAM,
  140. ETHERNET_CONFIG_TYPE_PROMISC_MODE,
  141. ETHERNET_CONFIG_TYPE_PRIORITY_QUEUES_NUM,
  142. ETHERNET_CONFIG_TYPE_FILTER,
  143. ETHERNET_CONFIG_TYPE_PORTS_NUM,
  144. };
  145. enum ethernet_qav_param_type {
  146. ETHERNET_QAV_PARAM_TYPE_DELTA_BANDWIDTH,
  147. ETHERNET_QAV_PARAM_TYPE_IDLE_SLOPE,
  148. ETHERNET_QAV_PARAM_TYPE_OPER_IDLE_SLOPE,
  149. ETHERNET_QAV_PARAM_TYPE_TRAFFIC_CLASS,
  150. ETHERNET_QAV_PARAM_TYPE_STATUS,
  151. };
  152. /** @endcond */
  153. struct ethernet_qav_param {
  154. /** ID of the priority queue to use */
  155. int queue_id;
  156. /** Type of Qav parameter */
  157. enum ethernet_qav_param_type type;
  158. union {
  159. /** True if Qav is enabled for queue */
  160. bool enabled;
  161. /** Delta Bandwidth (percentage of bandwidth) */
  162. unsigned int delta_bandwidth;
  163. /** Idle Slope (bits per second) */
  164. unsigned int idle_slope;
  165. /** Oper Idle Slope (bits per second) */
  166. unsigned int oper_idle_slope;
  167. /** Traffic class the queue is bound to */
  168. unsigned int traffic_class;
  169. };
  170. };
  171. /** @cond INTERNAL_HIDDEN */
  172. enum ethernet_qbv_param_type {
  173. ETHERNET_QBV_PARAM_TYPE_STATUS,
  174. ETHERNET_QBV_PARAM_TYPE_GATE_CONTROL_LIST,
  175. ETHERNET_QBV_PARAM_TYPE_GATE_CONTROL_LIST_LEN,
  176. ETHERNET_QBV_PARAM_TYPE_TIME,
  177. };
  178. enum ethernet_qbv_state_type {
  179. ETHERNET_QBV_STATE_TYPE_ADMIN,
  180. ETHERNET_QBV_STATE_TYPE_OPER,
  181. };
  182. enum ethernet_gate_state_operation {
  183. ETHERNET_SET_GATE_STATE,
  184. ETHERNET_SET_AND_HOLD_MAC_STATE,
  185. ETHERNET_SET_AND_RELEASE_MAC_STATE,
  186. };
  187. /** @endcond */
  188. struct ethernet_qbv_param {
  189. /** Port id */
  190. int port_id;
  191. /** Type of Qbv parameter */
  192. enum ethernet_qbv_param_type type;
  193. /** What state (Admin/Oper) parameters are these */
  194. enum ethernet_qbv_state_type state;
  195. union {
  196. /** True if Qbv is enabled or not */
  197. bool enabled;
  198. struct {
  199. /** True = open, False = closed */
  200. bool gate_status[NET_TC_TX_COUNT];
  201. /** GateState operation */
  202. enum ethernet_gate_state_operation operation;
  203. /** Time interval ticks (nanoseconds) */
  204. uint32_t time_interval;
  205. /** Gate control list row */
  206. uint16_t row;
  207. } gate_control;
  208. /** Number of entries in gate control list */
  209. uint32_t gate_control_list_len;
  210. /* The time values are set in one go when type is set to
  211. * ETHERNET_QBV_PARAM_TYPE_TIME
  212. */
  213. struct {
  214. /** Base time */
  215. struct net_ptp_extended_time base_time;
  216. /** Cycle time */
  217. struct net_ptp_time cycle_time;
  218. /** Extension time (nanoseconds) */
  219. uint32_t extension_time;
  220. };
  221. };
  222. };
  223. /** @cond INTERNAL_HIDDEN */
  224. enum ethernet_qbu_param_type {
  225. ETHERNET_QBU_PARAM_TYPE_STATUS,
  226. ETHERNET_QBU_PARAM_TYPE_RELEASE_ADVANCE,
  227. ETHERNET_QBU_PARAM_TYPE_HOLD_ADVANCE,
  228. ETHERNET_QBU_PARAM_TYPE_PREEMPTION_STATUS_TABLE,
  229. /* Some preemption settings are from Qbr spec. */
  230. ETHERNET_QBR_PARAM_TYPE_LINK_PARTNER_STATUS,
  231. ETHERNET_QBR_PARAM_TYPE_ADDITIONAL_FRAGMENT_SIZE,
  232. };
  233. enum ethernet_qbu_preempt_status {
  234. ETHERNET_QBU_STATUS_EXPRESS,
  235. ETHERNET_QBU_STATUS_PREEMPTABLE
  236. } __packed;
  237. /** @endcond */
  238. struct ethernet_qbu_param {
  239. /** Port id */
  240. int port_id;
  241. /** Type of Qbu parameter */
  242. enum ethernet_qbu_param_type type;
  243. union {
  244. /** Hold advance (nanoseconds) */
  245. uint32_t hold_advance;
  246. /** Release advance (nanoseconds) */
  247. uint32_t release_advance;
  248. /** sequence of framePreemptionAdminStatus values.
  249. */
  250. enum ethernet_qbu_preempt_status
  251. frame_preempt_statuses[NET_TC_TX_COUNT];
  252. /** True if Qbu is enabled or not */
  253. bool enabled;
  254. /** Link partner status (from Qbr) */
  255. bool link_partner_status;
  256. /** Additional fragment size (from Qbr). The minimum non-final
  257. * fragment size is (additional_fragment_size + 1) * 64 octets
  258. */
  259. uint8_t additional_fragment_size : 2;
  260. };
  261. };
  262. /** @cond INTERNAL_HIDDEN */
  263. enum ethernet_filter_type {
  264. ETHERNET_FILTER_TYPE_SRC_MAC_ADDRESS,
  265. ETHERNET_FILTER_TYPE_DST_MAC_ADDRESS,
  266. };
  267. /** @endcond */
  268. struct ethernet_filter {
  269. /** Type of filter */
  270. enum ethernet_filter_type type;
  271. /** MAC address to filter */
  272. struct net_eth_addr mac_address;
  273. /** Set (true) or unset (false) the filter */
  274. bool set;
  275. };
  276. /** @cond INTERNAL_HIDDEN */
  277. enum ethernet_txtime_param_type {
  278. ETHERNET_TXTIME_PARAM_TYPE_ENABLE_QUEUES,
  279. };
  280. /** @endcond */
  281. struct ethernet_txtime_param {
  282. /** Type of TXTIME parameter */
  283. enum ethernet_txtime_param_type type;
  284. /** Queue number for configuring TXTIME */
  285. int queue_id;
  286. /** Enable or disable TXTIME per queue */
  287. bool enable_txtime;
  288. };
  289. /** @cond INTERNAL_HIDDEN */
  290. struct ethernet_config {
  291. union {
  292. bool auto_negotiation;
  293. bool full_duplex;
  294. bool promisc_mode;
  295. struct {
  296. bool link_10bt;
  297. bool link_100bt;
  298. bool link_1000bt;
  299. } l;
  300. struct net_eth_addr mac_address;
  301. struct ethernet_qav_param qav_param;
  302. struct ethernet_qbv_param qbv_param;
  303. struct ethernet_qbu_param qbu_param;
  304. struct ethernet_txtime_param txtime_param;
  305. int priority_queues_num;
  306. int ports_num;
  307. struct ethernet_filter filter;
  308. };
  309. };
  310. /** @endcond */
  311. struct ethernet_api {
  312. /**
  313. * The net_if_api must be placed in first position in this
  314. * struct so that we are compatible with network interface API.
  315. */
  316. struct net_if_api iface_api;
  317. #if defined(CONFIG_NET_STATISTICS_ETHERNET)
  318. /** Collect optional ethernet specific statistics. This pointer
  319. * should be set by driver if statistics needs to be collected
  320. * for that driver.
  321. */
  322. struct net_stats_eth *(*get_stats)(const struct device *dev);
  323. #endif
  324. /** Start the device */
  325. int (*start)(const struct device *dev);
  326. /** Stop the device */
  327. int (*stop)(const struct device *dev);
  328. /** Get the device capabilities */
  329. enum ethernet_hw_caps (*get_capabilities)(const struct device *dev);
  330. /** Set specific hardware configuration */
  331. int (*set_config)(const struct device *dev,
  332. enum ethernet_config_type type,
  333. const struct ethernet_config *config);
  334. /** Get hardware specific configuration */
  335. int (*get_config)(const struct device *dev,
  336. enum ethernet_config_type type,
  337. struct ethernet_config *config);
  338. #if defined(CONFIG_NET_VLAN)
  339. /** The IP stack will call this function when a VLAN tag is enabled
  340. * or disabled. If enable is set to true, then the VLAN tag was added,
  341. * if it is false then the tag was removed. The driver can utilize
  342. * this information if needed.
  343. */
  344. int (*vlan_setup)(const struct device *dev, struct net_if *iface,
  345. uint16_t tag, bool enable);
  346. #endif /* CONFIG_NET_VLAN */
  347. #if defined(CONFIG_PTP_CLOCK)
  348. /** Return ptp_clock device that is tied to this ethernet device */
  349. const struct device *(*get_ptp_clock)(const struct device *dev);
  350. #endif /* CONFIG_PTP_CLOCK */
  351. /** Send a network packet */
  352. int (*send)(const struct device *dev, struct net_pkt *pkt);
  353. };
  354. /* Make sure that the network interface API is properly setup inside
  355. * Ethernet API struct (it is the first one).
  356. */
  357. BUILD_ASSERT(offsetof(struct ethernet_api, iface_api) == 0);
  358. /** @cond INTERNAL_HIDDEN */
  359. struct net_eth_hdr {
  360. struct net_eth_addr dst;
  361. struct net_eth_addr src;
  362. uint16_t type;
  363. } __packed;
  364. struct ethernet_vlan {
  365. /** Network interface that has VLAN enabled */
  366. struct net_if *iface;
  367. /** VLAN tag */
  368. uint16_t tag;
  369. };
  370. #if defined(CONFIG_NET_VLAN_COUNT)
  371. #define NET_VLAN_MAX_COUNT CONFIG_NET_VLAN_COUNT
  372. #else
  373. /* Even thou there are no VLAN support, the minimum count must be set to 1.
  374. */
  375. #define NET_VLAN_MAX_COUNT 1
  376. #endif
  377. /** @endcond */
  378. #if defined(CONFIG_NET_LLDP)
  379. struct ethernet_lldp {
  380. /** Used for track timers */
  381. sys_snode_t node;
  382. /** LLDP Data Unit mandatory TLVs for the interface. */
  383. const struct net_lldpdu *lldpdu;
  384. /** LLDP Data Unit optional TLVs for the interface */
  385. const uint8_t *optional_du;
  386. /** Length of the optional Data Unit TLVs */
  387. size_t optional_len;
  388. /** Network interface that has LLDP supported. */
  389. struct net_if *iface;
  390. /** LLDP TX timer start time */
  391. int64_t tx_timer_start;
  392. /** LLDP TX timeout */
  393. uint32_t tx_timer_timeout;
  394. /** LLDP RX callback function */
  395. net_lldp_recv_cb_t cb;
  396. };
  397. #endif /* CONFIG_NET_LLDP */
  398. enum ethernet_flags {
  399. ETH_CARRIER_UP,
  400. };
  401. /** Ethernet L2 context that is needed for VLAN */
  402. struct ethernet_context {
  403. /** Flags representing ethernet state, which are accessed from multiple
  404. * threads.
  405. */
  406. atomic_t flags;
  407. #if defined(CONFIG_NET_VLAN)
  408. struct ethernet_vlan vlan[NET_VLAN_MAX_COUNT];
  409. /** Array that will help when checking if VLAN is enabled for
  410. * some specific network interface. Requires that VLAN count
  411. * NET_VLAN_MAX_COUNT is not smaller than the actual number
  412. * of network interfaces.
  413. */
  414. ATOMIC_DEFINE(interfaces, NET_VLAN_MAX_COUNT);
  415. #endif
  416. #if defined(CONFIG_NET_ETHERNET_BRIDGE)
  417. struct eth_bridge_iface_context bridge;
  418. #endif
  419. /** Carrier ON/OFF handler worker. This is used to create
  420. * network interface UP/DOWN event when ethernet L2 driver
  421. * notices carrier ON/OFF situation. We must not create another
  422. * network management event from inside management handler thus
  423. * we use worker thread to trigger the UP/DOWN event.
  424. */
  425. struct k_work carrier_work;
  426. /** Network interface. */
  427. struct net_if *iface;
  428. #if defined(CONFIG_NET_LLDP)
  429. struct ethernet_lldp lldp[NET_VLAN_MAX_COUNT];
  430. #endif
  431. /**
  432. * This tells what L2 features does ethernet support.
  433. */
  434. enum net_l2_flags ethernet_l2_flags;
  435. #if defined(CONFIG_NET_GPTP)
  436. /** The gPTP port number for this network device. We need to store the
  437. * port number here so that we do not need to fetch it for every
  438. * incoming gPTP packet.
  439. */
  440. int port;
  441. #endif
  442. #if defined(CONFIG_NET_DSA)
  443. /** DSA RX callback function - for custom processing - like e.g.
  444. * redirecting packets when MAC address is caught
  445. */
  446. dsa_net_recv_cb_t dsa_recv_cb;
  447. /** Switch physical port number */
  448. uint8_t dsa_port_idx;
  449. /** DSA context pointer */
  450. struct dsa_context *dsa_ctx;
  451. /** Send a network packet via DSA master port */
  452. dsa_send_t dsa_send;
  453. #endif
  454. #if defined(CONFIG_NET_VLAN)
  455. /** Flag that tells whether how many VLAN tags are enabled for this
  456. * context. The same information can be dug from the vlan array but
  457. * this saves some time in RX path.
  458. */
  459. int8_t vlan_enabled;
  460. #endif
  461. /** Is network carrier up */
  462. bool is_net_carrier_up : 1;
  463. /** Is this context already initialized */
  464. bool is_init : 1;
  465. };
  466. /**
  467. * @brief Initialize Ethernet L2 stack for a given interface
  468. *
  469. * @param iface A valid pointer to a network interface
  470. */
  471. void ethernet_init(struct net_if *iface);
  472. /** @cond INTERNAL_HIDDEN */
  473. #define ETHERNET_L2_CTX_TYPE struct ethernet_context
  474. /* Separate header for VLAN as some of device interfaces might not
  475. * support VLAN.
  476. */
  477. struct net_eth_vlan_hdr {
  478. struct net_eth_addr dst;
  479. struct net_eth_addr src;
  480. struct {
  481. uint16_t tpid; /* tag protocol id */
  482. uint16_t tci; /* tag control info */
  483. } vlan;
  484. uint16_t type;
  485. } __packed;
  486. static inline bool net_eth_is_addr_broadcast(struct net_eth_addr *addr)
  487. {
  488. if (addr->addr[0] == 0xff &&
  489. addr->addr[1] == 0xff &&
  490. addr->addr[2] == 0xff &&
  491. addr->addr[3] == 0xff &&
  492. addr->addr[4] == 0xff &&
  493. addr->addr[5] == 0xff) {
  494. return true;
  495. }
  496. return false;
  497. }
  498. static inline bool net_eth_is_addr_unspecified(struct net_eth_addr *addr)
  499. {
  500. if (addr->addr[0] == 0x00 &&
  501. addr->addr[1] == 0x00 &&
  502. addr->addr[2] == 0x00 &&
  503. addr->addr[3] == 0x00 &&
  504. addr->addr[4] == 0x00 &&
  505. addr->addr[5] == 0x00) {
  506. return true;
  507. }
  508. return false;
  509. }
  510. static inline bool net_eth_is_addr_multicast(struct net_eth_addr *addr)
  511. {
  512. #if defined(CONFIG_NET_IPV6)
  513. if (addr->addr[0] == 0x33 &&
  514. addr->addr[1] == 0x33) {
  515. return true;
  516. }
  517. #endif
  518. #if defined(CONFIG_NET_IPV4)
  519. if (addr->addr[0] == 0x01 &&
  520. addr->addr[1] == 0x00 &&
  521. addr->addr[2] == 0x5e) {
  522. return true;
  523. }
  524. #endif
  525. return false;
  526. }
  527. static inline bool net_eth_is_addr_lldp_multicast(struct net_eth_addr *addr)
  528. {
  529. #if defined(CONFIG_NET_GPTP) || defined(CONFIG_NET_LLDP)
  530. if (addr->addr[0] == 0x01 &&
  531. addr->addr[1] == 0x80 &&
  532. addr->addr[2] == 0xc2 &&
  533. addr->addr[3] == 0x00 &&
  534. addr->addr[4] == 0x00 &&
  535. addr->addr[5] == 0x0e) {
  536. return true;
  537. }
  538. #endif
  539. return false;
  540. }
  541. const struct net_eth_addr *net_eth_broadcast_addr(void);
  542. /** @endcond */
  543. /**
  544. * @brief Convert IPv4 multicast address to Ethernet address.
  545. *
  546. * @param ipv4_addr IPv4 multicast address
  547. * @param mac_addr Output buffer for Ethernet address
  548. */
  549. void net_eth_ipv4_mcast_to_mac_addr(const struct in_addr *ipv4_addr,
  550. struct net_eth_addr *mac_addr);
  551. /**
  552. * @brief Convert IPv6 multicast address to Ethernet address.
  553. *
  554. * @param ipv6_addr IPv6 multicast address
  555. * @param mac_addr Output buffer for Ethernet address
  556. */
  557. void net_eth_ipv6_mcast_to_mac_addr(const struct in6_addr *ipv6_addr,
  558. struct net_eth_addr *mac_addr);
  559. /**
  560. * @brief Return ethernet device hardware capability information.
  561. *
  562. * @param iface Network interface
  563. *
  564. * @return Hardware capabilities
  565. */
  566. static inline
  567. enum ethernet_hw_caps net_eth_get_hw_capabilities(struct net_if *iface)
  568. {
  569. const struct ethernet_api *eth =
  570. (struct ethernet_api *)net_if_get_device(iface)->api;
  571. if (!eth->get_capabilities) {
  572. return (enum ethernet_hw_caps)0;
  573. }
  574. return eth->get_capabilities(net_if_get_device(iface));
  575. }
  576. /**
  577. * @brief Add VLAN tag to the interface.
  578. *
  579. * @param iface Interface to use.
  580. * @param tag VLAN tag to add
  581. *
  582. * @return 0 if ok, <0 if error
  583. */
  584. #if defined(CONFIG_NET_VLAN)
  585. int net_eth_vlan_enable(struct net_if *iface, uint16_t tag);
  586. #else
  587. static inline int net_eth_vlan_enable(struct net_if *iface, uint16_t tag)
  588. {
  589. return -EINVAL;
  590. }
  591. #endif
  592. /**
  593. * @brief Remove VLAN tag from the interface.
  594. *
  595. * @param iface Interface to use.
  596. * @param tag VLAN tag to remove
  597. *
  598. * @return 0 if ok, <0 if error
  599. */
  600. #if defined(CONFIG_NET_VLAN)
  601. int net_eth_vlan_disable(struct net_if *iface, uint16_t tag);
  602. #else
  603. static inline int net_eth_vlan_disable(struct net_if *iface, uint16_t tag)
  604. {
  605. return -EINVAL;
  606. }
  607. #endif
  608. /**
  609. * @brief Return VLAN tag specified to network interface
  610. *
  611. * @param iface Network interface.
  612. *
  613. * @return VLAN tag for this interface or NET_VLAN_TAG_UNSPEC if VLAN
  614. * is not configured for that interface.
  615. */
  616. #if defined(CONFIG_NET_VLAN)
  617. uint16_t net_eth_get_vlan_tag(struct net_if *iface);
  618. #else
  619. static inline uint16_t net_eth_get_vlan_tag(struct net_if *iface)
  620. {
  621. return NET_VLAN_TAG_UNSPEC;
  622. }
  623. #endif
  624. /**
  625. * @brief Return network interface related to this VLAN tag
  626. *
  627. * @param iface Master network interface. This is used to get the
  628. * pointer to ethernet L2 context
  629. * @param tag VLAN tag
  630. *
  631. * @return Network interface related to this tag or NULL if no such interface
  632. * exists.
  633. */
  634. #if defined(CONFIG_NET_VLAN)
  635. struct net_if *net_eth_get_vlan_iface(struct net_if *iface, uint16_t tag);
  636. #else
  637. static inline
  638. struct net_if *net_eth_get_vlan_iface(struct net_if *iface, uint16_t tag)
  639. {
  640. return NULL;
  641. }
  642. #endif
  643. /**
  644. * @brief Check if VLAN is enabled for a specific network interface.
  645. *
  646. * @param ctx Ethernet context
  647. * @param iface Network interface
  648. *
  649. * @return True if VLAN is enabled for this network interface, false if not.
  650. */
  651. #if defined(CONFIG_NET_VLAN)
  652. bool net_eth_is_vlan_enabled(struct ethernet_context *ctx,
  653. struct net_if *iface);
  654. #else
  655. static inline bool net_eth_is_vlan_enabled(struct ethernet_context *ctx,
  656. struct net_if *iface)
  657. {
  658. return false;
  659. }
  660. #endif
  661. /**
  662. * @brief Get VLAN status for a given network interface (enabled or not).
  663. *
  664. * @param iface Network interface
  665. *
  666. * @return True if VLAN is enabled for this network interface, false if not.
  667. */
  668. #if defined(CONFIG_NET_VLAN)
  669. bool net_eth_get_vlan_status(struct net_if *iface);
  670. #else
  671. static inline bool net_eth_get_vlan_status(struct net_if *iface)
  672. {
  673. return false;
  674. }
  675. #endif
  676. #if defined(CONFIG_NET_VLAN)
  677. #define Z_ETH_NET_DEVICE_INIT(node_id, dev_name, drv_name, init_fn, \
  678. pm_control_fn, data, cfg, prio, api, mtu) \
  679. Z_DEVICE_DEFINE(node_id, dev_name, drv_name, init_fn, \
  680. pm_control_fn, data, cfg, POST_KERNEL, \
  681. prio, api); \
  682. NET_L2_DATA_INIT(dev_name, 0, NET_L2_GET_CTX_TYPE(ETHERNET_L2));\
  683. NET_IF_INIT(dev_name, 0, ETHERNET_L2, mtu, NET_VLAN_MAX_COUNT)
  684. #else /* CONFIG_NET_VLAN */
  685. #define Z_ETH_NET_DEVICE_INIT(node_id, dev_name, drv_name, init_fn, \
  686. pm_control_fn, data, cfg, prio, api, mtu) \
  687. Z_NET_DEVICE_INIT(node_id, dev_name, drv_name, init_fn, \
  688. pm_control_fn, data, cfg, prio, api, \
  689. ETHERNET_L2, NET_L2_GET_CTX_TYPE(ETHERNET_L2),\
  690. mtu)
  691. #endif /* CONFIG_NET_VLAN */
  692. /**
  693. * @def ETH_NET_DEVICE_INIT
  694. *
  695. * @brief Create an Ethernet network interface and bind it to network device.
  696. *
  697. * @param dev_name Network device name.
  698. * @param drv_name The name this instance of the driver exposes to
  699. * the system.
  700. * @param init_fn Address to the init function of the driver.
  701. * @param pm_control_fn Pointer to pm_control function.
  702. * Can be NULL if not implemented.
  703. * @param data Pointer to the device's private data.
  704. * @param cfg The address to the structure containing the
  705. * configuration information for this instance of the driver.
  706. * @param prio The initialization level at which configuration occurs.
  707. * @param api Provides an initial pointer to the API function struct
  708. * used by the driver. Can be NULL.
  709. * @param mtu Maximum transfer unit in bytes for this network interface.
  710. */
  711. #define ETH_NET_DEVICE_INIT(dev_name, drv_name, init_fn, pm_control_fn, \
  712. data, cfg, prio, api, mtu) \
  713. Z_ETH_NET_DEVICE_INIT(DT_INVALID_NODE, dev_name, drv_name, \
  714. init_fn, pm_control_fn, data, cfg, prio, \
  715. api, mtu)
  716. /**
  717. * @def ETH_NET_DEVICE_DT_DEFINE
  718. *
  719. * @brief Like ETH_NET_DEVICE_INIT but taking metadata from a devicetree.
  720. * Create an Ethernet network interface and bind it to network device.
  721. *
  722. * @param node_id The devicetree node identifier.
  723. * @param init_fn Address to the init function of the driver.
  724. * @param pm_control_fn Pointer to pm_control function.
  725. * Can be NULL if not implemented.
  726. * @param data Pointer to the device's private data.
  727. * @param cfg The address to the structure containing the
  728. * configuration information for this instance of the driver.
  729. * @param prio The initialization level at which configuration occurs.
  730. * @param api Provides an initial pointer to the API function struct
  731. * used by the driver. Can be NULL.
  732. * @param mtu Maximum transfer unit in bytes for this network interface.
  733. */
  734. #define ETH_NET_DEVICE_DT_DEFINE(node_id, init_fn, pm_control_fn, data, \
  735. cfg, prio, api, mtu) \
  736. Z_ETH_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_NAME(node_id), \
  737. DT_PROP_OR(node_id, label, ""), \
  738. init_fn, pm_control_fn, data, cfg, prio, \
  739. api, mtu)
  740. /**
  741. * @def ETH_NET_DEVICE_DT_INST_DEFINE
  742. *
  743. * @brief Like ETH_NET_DEVICE_DT_DEFINE for an instance of a DT_DRV_COMPAT
  744. * compatible
  745. *
  746. * @param inst instance number. This is replaced by
  747. * <tt>DT_DRV_COMPAT(inst)</tt> in the call to ETH_NET_DEVICE_DT_DEFINE.
  748. *
  749. * @param ... other parameters as expected by ETH_NET_DEVICE_DT_DEFINE.
  750. */
  751. #define ETH_NET_DEVICE_DT_INST_DEFINE(inst, ...) \
  752. ETH_NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
  753. /**
  754. * @brief Inform ethernet L2 driver that ethernet carrier is detected.
  755. * This happens when cable is connected.
  756. *
  757. * @param iface Network interface
  758. */
  759. void net_eth_carrier_on(struct net_if *iface);
  760. /**
  761. * @brief Inform ethernet L2 driver that ethernet carrier was lost.
  762. * This happens when cable is disconnected.
  763. *
  764. * @param iface Network interface
  765. */
  766. void net_eth_carrier_off(struct net_if *iface);
  767. /**
  768. * @brief Set promiscuous mode either ON or OFF.
  769. *
  770. * @param iface Network interface
  771. *
  772. * @param enable on (true) or off (false)
  773. *
  774. * @return 0 if mode set or unset was successful, <0 otherwise.
  775. */
  776. int net_eth_promisc_mode(struct net_if *iface, bool enable);
  777. /**
  778. * @brief Return PTP clock that is tied to this ethernet network interface.
  779. *
  780. * @param iface Network interface
  781. *
  782. * @return Pointer to PTP clock if found, NULL if not found or if this
  783. * ethernet interface does not support PTP.
  784. */
  785. #if defined(CONFIG_PTP_CLOCK)
  786. const struct device *net_eth_get_ptp_clock(struct net_if *iface);
  787. #else
  788. static inline const struct device *net_eth_get_ptp_clock(struct net_if *iface)
  789. {
  790. ARG_UNUSED(iface);
  791. return NULL;
  792. }
  793. #endif
  794. /**
  795. * @brief Return PTP clock that is tied to this ethernet network interface
  796. * index.
  797. *
  798. * @param index Network interface index
  799. *
  800. * @return Pointer to PTP clock if found, NULL if not found or if this
  801. * ethernet interface index does not support PTP.
  802. */
  803. __syscall const struct device *net_eth_get_ptp_clock_by_index(int index);
  804. /**
  805. * @brief Return gPTP port number attached to this interface.
  806. *
  807. * @param iface Network interface
  808. *
  809. * @return Port number, no such port if < 0
  810. */
  811. #if defined(CONFIG_NET_GPTP)
  812. int net_eth_get_ptp_port(struct net_if *iface);
  813. #else
  814. static inline int net_eth_get_ptp_port(struct net_if *iface)
  815. {
  816. ARG_UNUSED(iface);
  817. return -ENODEV;
  818. }
  819. #endif /* CONFIG_NET_GPTP */
  820. /**
  821. * @brief Set gPTP port number attached to this interface.
  822. *
  823. * @param iface Network interface
  824. * @param port Port number to set
  825. */
  826. #if defined(CONFIG_NET_GPTP)
  827. void net_eth_set_ptp_port(struct net_if *iface, int port);
  828. #endif /* CONFIG_NET_GPTP */
  829. /**
  830. * @}
  831. */
  832. #ifdef __cplusplus
  833. }
  834. #endif
  835. #include <syscalls/ethernet.h>
  836. #endif /* ZEPHYR_INCLUDE_NET_ETHERNET_H_ */