ethernet_vlan.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /** @file
  2. * @brief VLAN specific definitions.
  3. *
  4. * Virtual LAN specific definitions.
  5. */
  6. /*
  7. * Copyright (c) 2018 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_ETHERNET_VLAN_H_
  12. #define ZEPHYR_INCLUDE_NET_ETHERNET_VLAN_H_
  13. /**
  14. * @brief VLAN definitions and helpers
  15. * @defgroup vlan_api Virtual LAN definitions and helpers
  16. * @ingroup networking
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /** Unspecified VLAN tag value */
  24. #define NET_VLAN_TAG_UNSPEC 0x0fff
  25. /**
  26. * @brief Get VLAN identifier from TCI.
  27. *
  28. * @param tci VLAN tag control information.
  29. *
  30. * @return VLAN identifier.
  31. */
  32. static inline uint16_t net_eth_vlan_get_vid(uint16_t tci)
  33. {
  34. return tci & 0x0fff;
  35. }
  36. /**
  37. * @brief Get Drop Eligible Indicator from TCI.
  38. *
  39. * @param tci VLAN tag control information.
  40. *
  41. * @return Drop eligible indicator.
  42. */
  43. static inline uint8_t net_eth_vlan_get_dei(uint16_t tci)
  44. {
  45. return (tci >> 12) & 0x01;
  46. }
  47. /**
  48. * @brief Get Priority Code Point from TCI.
  49. *
  50. * @param tci VLAN tag control information.
  51. *
  52. * @return Priority code point.
  53. */
  54. static inline uint8_t net_eth_vlan_get_pcp(uint16_t tci)
  55. {
  56. return (tci >> 13) & 0x07;
  57. }
  58. /**
  59. * @brief Set VLAN identifier to TCI.
  60. *
  61. * @param tci VLAN tag control information.
  62. * @param vid VLAN identifier.
  63. *
  64. * @return New TCI value.
  65. */
  66. static inline uint16_t net_eth_vlan_set_vid(uint16_t tci, uint16_t vid)
  67. {
  68. return (tci & 0xf000) | (vid & 0x0fff);
  69. }
  70. /**
  71. * @brief Set Drop Eligible Indicator to TCI.
  72. *
  73. * @param tci VLAN tag control information.
  74. * @param dei Drop eligible indicator.
  75. *
  76. * @return New TCI value.
  77. */
  78. static inline uint16_t net_eth_vlan_set_dei(uint16_t tci, bool dei)
  79. {
  80. return (tci & 0xefff) | ((!!dei) << 12);
  81. }
  82. /**
  83. * @brief Set Priority Code Point to TCI.
  84. *
  85. * @param tci VLAN tag control information.
  86. * @param pcp Priority code point.
  87. *
  88. * @return New TCI value.
  89. */
  90. static inline uint16_t net_eth_vlan_set_pcp(uint16_t tci, uint8_t pcp)
  91. {
  92. return (tci & 0x1fff) | ((pcp & 0x07) << 13);
  93. }
  94. #ifdef __cplusplus
  95. }
  96. #endif
  97. /**
  98. * @}
  99. */
  100. #endif /* ZEPHYR_INCLUDE_NET_ETHERNET_VLAN_H_ */