dsa.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*
  2. * Copyright (c) 2020 DENX Software Engineering GmbH
  3. * Lukasz Majewski <lukma@denx.de>
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief DSA definitions and handlers
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_DSA_H_
  10. #define ZEPHYR_INCLUDE_NET_DSA_H_
  11. #include <device.h>
  12. #include <net/net_if.h>
  13. /**
  14. * @brief DSA definitions and helpers
  15. * @defgroup DSA - Distributed Switch Architecture definitions and helpers
  16. * @ingroup networking
  17. * @{
  18. */
  19. #define NET_DSA_PORT_MAX_COUNT 8
  20. #define DSA_STATUS_PERIOD_MS K_MSEC(1000)
  21. /*
  22. * Size of the DSA TAG:
  23. * - KSZ8794 - 1 byte
  24. */
  25. #if defined(CONFIG_DSA_KSZ8794) && defined(DSA_KSZ_TAIL_TAGGING)
  26. #define DSA_TAG_SIZE 1
  27. #else
  28. #define DSA_TAG_SIZE 0
  29. #endif
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. /**
  34. * @brief DSA generic transmit function
  35. *
  36. * This is a generic function for passing packets from slave DSA interface to
  37. * master.
  38. *
  39. * @param dev Device
  40. * @param pkt Network packet
  41. *
  42. * Returns:
  43. * - 0 if ok (packet sent via master iface), < 0 if error
  44. */
  45. int dsa_tx(const struct device *dev, struct net_pkt *pkt);
  46. /**
  47. * @brief DSA (MGMT) Receive packet callback
  48. *
  49. * Callback gets called upon receiving packet. It is responsible for
  50. * freeing packet or indicating to the stack that it needs to free packet
  51. * by returning correct net_verdict.
  52. *
  53. * Returns:
  54. * - NET_DROP, if packet was invalid, rejected or we want the stack to free it.
  55. * In this case the core stack will free the packet.
  56. * - NET_OK, if the packet was accepted, in this case the ownership of the
  57. * net_pkt goes to callback and core network stack will forget it.
  58. */
  59. typedef enum net_verdict (*dsa_net_recv_cb_t)(struct net_if *iface,
  60. struct net_pkt *pkt);
  61. /**
  62. * @brief Register DSA Rx callback functions
  63. *
  64. * @param iface Network interface
  65. * @param cb Receive callback function
  66. *
  67. * @return 0 if ok, < 0 if error
  68. */
  69. int dsa_register_recv_callback(struct net_if *iface, dsa_net_recv_cb_t cb);
  70. /**
  71. * @brief Set DSA interface to packet
  72. *
  73. * @param iface Network interface (master)
  74. * @param pkt Network packet
  75. *
  76. * @return Return the slave network interface
  77. */
  78. struct net_if *dsa_net_recv(struct net_if *iface, struct net_pkt **pkt);
  79. /**
  80. * @brief Pointer to master interface send function
  81. */
  82. typedef int (*dsa_send_t)(const struct device *dev, struct net_pkt *pkt);
  83. /**
  84. * @brief DSA helper function to register transmit function for master
  85. *
  86. * @param iface Network interface (master)
  87. * @param fn Pointer to master interface send method
  88. *
  89. * Returns:
  90. * - 0 if ok, < 0 if error
  91. */
  92. int dsa_register_master_tx(struct net_if *iface, dsa_send_t fn);
  93. /**
  94. * @brief DSA helper function to check if port is master
  95. *
  96. * @param iface Network interface (master)
  97. *
  98. * Returns:
  99. * - true if ok, false otherwise
  100. */
  101. bool dsa_is_port_master(struct net_if *iface);
  102. /**
  103. * @cond INTERNAL_HIDDEN
  104. *
  105. * These are for internal use only, so skip these in
  106. * public documentation.
  107. */
  108. /** DSA context data */
  109. struct dsa_context {
  110. /** Pointers to all DSA slave network interfaces */
  111. struct net_if *iface_slave[NET_DSA_PORT_MAX_COUNT];
  112. /** Pointer to DSA master network interface */
  113. struct net_if *iface_master;
  114. /** DSA specific API callbacks - filled in the switch IC driver */
  115. struct dsa_api *dapi;
  116. /** DSA related work (e.g. monitor if network interface is up) */
  117. struct k_work_delayable dsa_work;
  118. /** Number of slave ports in the DSA switch */
  119. uint8_t num_slave_ports;
  120. /** Status of each port */
  121. bool link_up[NET_DSA_PORT_MAX_COUNT];
  122. /** Instance specific data */
  123. void *prv_data;
  124. };
  125. /**
  126. * @brief Structure to provide DSA switch api callbacks - it is an augmented
  127. * struct ethernet_api.
  128. */
  129. struct dsa_api {
  130. /** Function to get proper LAN{123} interface */
  131. struct net_if *(*dsa_get_iface)(struct net_if *iface,
  132. struct net_pkt *pkt);
  133. /*
  134. * Callbacks required for DSA switch initialization and configuration.
  135. *
  136. * Each switch instance (e.g. two KSZ8794 ICs) would have its own struct
  137. * dsa_context.
  138. */
  139. /** Read value from DSA register */
  140. int (*switch_read)(const struct device *dev, uint16_t reg_addr,
  141. uint8_t *value);
  142. /** Write value to DSA register */
  143. int (*switch_write)(const struct device *dev, uint16_t reg_addr,
  144. uint8_t value);
  145. /** Program (set) mac table entry in the DSA switch */
  146. int (*switch_set_mac_table_entry)(const struct device *dev,
  147. const uint8_t *mac,
  148. uint8_t fw_port,
  149. uint16_t tbl_entry_idx,
  150. uint16_t flags);
  151. /** Read mac table entry from the DSA switch */
  152. int (*switch_get_mac_table_entry)(const struct device *dev,
  153. uint8_t *buf,
  154. uint16_t tbl_entry_idx);
  155. /*
  156. * DSA helper callbacks
  157. */
  158. struct net_pkt *(*dsa_xmit_pkt)(struct net_if *iface,
  159. struct net_pkt *pkt);
  160. };
  161. /**
  162. * @endcond
  163. */
  164. /**
  165. * @brief Get network interface of a slave port
  166. *
  167. * @param iface Master port
  168. * @param[in] slave_num Slave port number
  169. *
  170. * @return network interface of the slave if successful
  171. * @return NULL if slave port does not exist
  172. */
  173. struct net_if *dsa_get_slave_port(struct net_if *iface, int slave_num);
  174. /**
  175. * @brief Read from DSA switch register
  176. *
  177. * @param iface The interface
  178. * @param[in] reg_addr The register address
  179. * @param value The value
  180. *
  181. * @return 0 if successful, negative if error
  182. */
  183. int dsa_switch_read(struct net_if *iface, uint16_t reg_addr, uint8_t *value);
  184. /**
  185. * @brief Write to DSA switch
  186. *
  187. * @param iface The interface
  188. * @param[in] reg_addr The register address
  189. * @param[in] value The value
  190. *
  191. * @return { description_of_the_return_value }
  192. */
  193. int dsa_switch_write(struct net_if *iface, uint16_t reg_addr, uint8_t value);
  194. /**
  195. * @brief Write static MAC table entry
  196. *
  197. * @param iface Master DSA interface
  198. * @param[in] mac MAC address
  199. * @param[in] fw_port The firmware port
  200. * @param[in] tbl_entry_idx Table entry index
  201. * @param[in] flags Flags
  202. *
  203. * @return 0 if successful, negative if error
  204. */
  205. int dsa_switch_set_mac_table_entry(struct net_if *iface,
  206. const uint8_t *mac,
  207. uint8_t fw_port,
  208. uint16_t tbl_entry_idx,
  209. uint16_t flags);
  210. /**
  211. * @brief Read static MAC table entry
  212. *
  213. * @param iface Master DSA interface
  214. * @param buf Buffer to receive MAC address
  215. * @param[in] tbl_entry_idx Table entry index
  216. *
  217. * @return 0 if successful, negative if error
  218. */
  219. int dsa_switch_get_mac_table_entry(struct net_if *iface,
  220. uint8_t *buf,
  221. uint16_t tbl_entry_idx);
  222. /**
  223. * @brief Structure to provide mac address for each LAN interface
  224. */
  225. struct dsa_slave_config {
  226. /** MAC address for each LAN{123.,} ports */
  227. uint8_t mac_addr[6];
  228. };
  229. #ifdef __cplusplus
  230. }
  231. #endif
  232. /**
  233. * @}
  234. */
  235. #endif /* ZEPHYR_INCLUDE_NET_DSA_H_ */