mac-cfg.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /******************************************************************************
  2. *
  3. * This file is provided under a dual BSD/GPLv2 license. When using or
  4. * redistributing this file, you may do so under either license.
  5. *
  6. * GPL LICENSE SUMMARY
  7. *
  8. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
  10. * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of version 2 of the GNU General Public License as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * The full GNU General Public License is included in this distribution
  22. * in the file called COPYING.
  23. *
  24. * Contact Information:
  25. * Intel Linux Wireless <linuxwifi@intel.com>
  26. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  27. *
  28. * BSD LICENSE
  29. *
  30. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  31. * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
  32. * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
  33. * All rights reserved.
  34. *
  35. * Redistribution and use in source and binary forms, with or without
  36. * modification, are permitted provided that the following conditions
  37. * are met:
  38. *
  39. * * Redistributions of source code must retain the above copyright
  40. * notice, this list of conditions and the following disclaimer.
  41. * * Redistributions in binary form must reproduce the above copyright
  42. * notice, this list of conditions and the following disclaimer in
  43. * the documentation and/or other materials provided with the
  44. * distribution.
  45. * * Neither the name Intel Corporation nor the names of its
  46. * contributors may be used to endorse or promote products derived
  47. * from this software without specific prior written permission.
  48. *
  49. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  50. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  51. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  52. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  53. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  54. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  55. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  56. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  57. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  58. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  59. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  60. *
  61. *****************************************************************************/
  62. #ifndef __iwl_fw_api_mac_cfg_h__
  63. #define __iwl_fw_api_mac_cfg_h__
  64. /**
  65. * enum iwl_mac_conf_subcmd_ids - mac configuration command IDs
  66. */
  67. enum iwl_mac_conf_subcmd_ids {
  68. /**
  69. * @LINK_QUALITY_MEASUREMENT_CMD: &struct iwl_link_qual_msrmnt_cmd
  70. */
  71. LINK_QUALITY_MEASUREMENT_CMD = 0x1,
  72. /**
  73. * @LINK_QUALITY_MEASUREMENT_COMPLETE_NOTIF:
  74. * &struct iwl_link_qual_msrmnt_notif
  75. */
  76. LINK_QUALITY_MEASUREMENT_COMPLETE_NOTIF = 0xFE,
  77. /**
  78. * @CHANNEL_SWITCH_NOA_NOTIF: &struct iwl_channel_switch_noa_notif
  79. */
  80. CHANNEL_SWITCH_NOA_NOTIF = 0xFF,
  81. };
  82. #define LQM_NUMBER_OF_STATIONS_IN_REPORT 16
  83. enum iwl_lqm_cmd_operatrions {
  84. LQM_CMD_OPERATION_START_MEASUREMENT = 0x01,
  85. LQM_CMD_OPERATION_STOP_MEASUREMENT = 0x02,
  86. };
  87. enum iwl_lqm_status {
  88. LQM_STATUS_SUCCESS = 0,
  89. LQM_STATUS_TIMEOUT = 1,
  90. LQM_STATUS_ABORT = 2,
  91. };
  92. /**
  93. * struct iwl_link_qual_msrmnt_cmd - Link Quality Measurement command
  94. * @cmd_operation: command operation to be performed (start or stop)
  95. * as defined above.
  96. * @mac_id: MAC ID the measurement applies to.
  97. * @measurement_time: time of the total measurement to be performed, in uSec.
  98. * @timeout: maximum time allowed until a response is sent, in uSec.
  99. */
  100. struct iwl_link_qual_msrmnt_cmd {
  101. __le32 cmd_operation;
  102. __le32 mac_id;
  103. __le32 measurement_time;
  104. __le32 timeout;
  105. } __packed /* LQM_CMD_API_S_VER_1 */;
  106. /**
  107. * struct iwl_link_qual_msrmnt_notif - Link Quality Measurement notification
  108. *
  109. * @frequent_stations_air_time: an array containing the total air time
  110. * (in uSec) used by the most frequently transmitting stations.
  111. * @number_of_stations: the number of uniqe stations included in the array
  112. * (a number between 0 to 16)
  113. * @total_air_time_other_stations: the total air time (uSec) used by all the
  114. * stations which are not included in the above report.
  115. * @time_in_measurement_window: the total time in uSec in which a measurement
  116. * took place.
  117. * @tx_frame_dropped: the number of TX frames dropped due to retry limit during
  118. * measurement
  119. * @mac_id: MAC ID the measurement applies to.
  120. * @status: return status. may be one of the LQM_STATUS_* defined above.
  121. * @reserved: reserved.
  122. */
  123. struct iwl_link_qual_msrmnt_notif {
  124. __le32 frequent_stations_air_time[LQM_NUMBER_OF_STATIONS_IN_REPORT];
  125. __le32 number_of_stations;
  126. __le32 total_air_time_other_stations;
  127. __le32 time_in_measurement_window;
  128. __le32 tx_frame_dropped;
  129. __le32 mac_id;
  130. __le32 status;
  131. u8 reserved[12];
  132. } __packed; /* LQM_MEASUREMENT_COMPLETE_NTF_API_S_VER1 */
  133. /**
  134. * struct iwl_channel_switch_noa_notif - Channel switch NOA notification
  135. *
  136. * @id_and_color: ID and color of the MAC
  137. */
  138. struct iwl_channel_switch_noa_notif {
  139. __le32 id_and_color;
  140. } __packed; /* CHANNEL_SWITCH_START_NTFY_API_S_VER_1 */
  141. #endif /* __iwl_fw_api_mac_cfg_h__ */