wifi_mgmt.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * Copyright (c) 2017 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief WiFi L2 stack public header
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_WIFI_MGMT_H_
  11. #define ZEPHYR_INCLUDE_NET_WIFI_MGMT_H_
  12. #include <net/net_mgmt.h>
  13. #include <net/wifi.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /* Management part definitions */
  18. #define _NET_WIFI_LAYER NET_MGMT_LAYER_L2
  19. #define _NET_WIFI_CODE 0x156
  20. #define _NET_WIFI_BASE (NET_MGMT_IFACE_BIT | \
  21. NET_MGMT_LAYER(_NET_WIFI_LAYER) | \
  22. NET_MGMT_LAYER_CODE(_NET_WIFI_CODE))
  23. #define _NET_WIFI_EVENT (_NET_WIFI_BASE | NET_MGMT_EVENT_BIT)
  24. enum net_request_wifi_cmd {
  25. NET_REQUEST_WIFI_CMD_SCAN = 1,
  26. NET_REQUEST_WIFI_CMD_CONNECT,
  27. NET_REQUEST_WIFI_CMD_DISCONNECT,
  28. NET_REQUEST_WIFI_CMD_AP_ENABLE,
  29. NET_REQUEST_WIFI_CMD_AP_DISABLE,
  30. };
  31. #define NET_REQUEST_WIFI_SCAN \
  32. (_NET_WIFI_BASE | NET_REQUEST_WIFI_CMD_SCAN)
  33. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_WIFI_SCAN);
  34. #define NET_REQUEST_WIFI_CONNECT \
  35. (_NET_WIFI_BASE | NET_REQUEST_WIFI_CMD_CONNECT)
  36. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_WIFI_CONNECT);
  37. #define NET_REQUEST_WIFI_DISCONNECT \
  38. (_NET_WIFI_BASE | NET_REQUEST_WIFI_CMD_DISCONNECT)
  39. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_WIFI_DISCONNECT);
  40. #define NET_REQUEST_WIFI_AP_ENABLE \
  41. (_NET_WIFI_BASE | NET_REQUEST_WIFI_CMD_AP_ENABLE)
  42. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_WIFI_AP_ENABLE);
  43. #define NET_REQUEST_WIFI_AP_DISABLE \
  44. (_NET_WIFI_BASE | NET_REQUEST_WIFI_CMD_AP_DISABLE)
  45. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_WIFI_AP_DISABLE);
  46. enum net_event_wifi_cmd {
  47. NET_EVENT_WIFI_CMD_SCAN_RESULT = 1,
  48. NET_EVENT_WIFI_CMD_SCAN_DONE,
  49. NET_EVENT_WIFI_CMD_CONNECT_RESULT,
  50. NET_EVENT_WIFI_CMD_DISCONNECT_RESULT,
  51. };
  52. #define NET_EVENT_WIFI_SCAN_RESULT \
  53. (_NET_WIFI_EVENT | NET_EVENT_WIFI_CMD_SCAN_RESULT)
  54. #define NET_EVENT_WIFI_SCAN_DONE \
  55. (_NET_WIFI_EVENT | NET_EVENT_WIFI_CMD_SCAN_DONE)
  56. #define NET_EVENT_WIFI_CONNECT_RESULT \
  57. (_NET_WIFI_EVENT | NET_EVENT_WIFI_CMD_CONNECT_RESULT)
  58. #define NET_EVENT_WIFI_DISCONNECT_RESULT \
  59. (_NET_WIFI_EVENT | NET_EVENT_WIFI_CMD_DISCONNECT_RESULT)
  60. /* Each result is provided to the net_mgmt_event_callback
  61. * via its info attribute (see net_mgmt.h)
  62. */
  63. struct wifi_scan_result {
  64. uint8_t ssid[WIFI_SSID_MAX_LEN];
  65. uint8_t ssid_length;
  66. uint8_t channel;
  67. enum wifi_security_type security;
  68. int8_t rssi;
  69. };
  70. struct wifi_connect_req_params {
  71. uint8_t *ssid;
  72. uint8_t ssid_length; /* Max 32 */
  73. uint8_t *psk;
  74. uint8_t psk_length; /* Min 8 - Max 64 */
  75. uint8_t channel;
  76. enum wifi_security_type security;
  77. };
  78. struct wifi_status {
  79. int status;
  80. };
  81. #include <net/net_if.h>
  82. typedef void (*scan_result_cb_t)(struct net_if *iface, int status,
  83. struct wifi_scan_result *entry);
  84. struct net_wifi_mgmt_offload {
  85. /**
  86. * Mandatory to get in first position.
  87. * A network device should indeed provide a pointer on such
  88. * net_if_api structure. So we make current structure pointer
  89. * that can be casted to a net_if_api structure pointer.
  90. */
  91. struct net_if_api iface_api;
  92. /* cb parameter is the cb that should be called for each
  93. * result by the driver. The wifi mgmt part will take care of
  94. * raising the necessary event etc...
  95. */
  96. int (*scan)(const struct device *dev, scan_result_cb_t cb);
  97. int (*connect)(const struct device *dev,
  98. struct wifi_connect_req_params *params);
  99. int (*disconnect)(const struct device *dev);
  100. int (*ap_enable)(const struct device *dev,
  101. struct wifi_connect_req_params *params);
  102. int (*ap_disable)(const struct device *dev);
  103. };
  104. /* Make sure that the network interface API is properly setup inside
  105. * Wifi mgmt offload API struct (it is the first one).
  106. */
  107. BUILD_ASSERT(offsetof(struct net_wifi_mgmt_offload, iface_api) == 0);
  108. #ifdef CONFIG_WIFI_OFFLOAD
  109. void wifi_mgmt_raise_connect_result_event(struct net_if *iface, int status);
  110. void wifi_mgmt_raise_disconnect_result_event(struct net_if *iface, int status);
  111. #endif /* CONFIG_WIFI_OFFLOAD */
  112. #ifdef __cplusplus
  113. }
  114. #endif
  115. #endif /* ZEPHYR_INCLUDE_NET_WIFI_MGMT_H_ */