phyrx_pkt_end.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. /*
  2. * Copyright (c) 2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. // $ATH_LICENSE_HW_HDR_C$
  19. //
  20. // DO NOT EDIT! This file is automatically generated
  21. // These definitions are tied to a particular hardware layout
  22. #ifndef _PHYRX_PKT_END_H_
  23. #define _PHYRX_PKT_END_H_
  24. #if !defined(__ASSEMBLER__)
  25. #endif
  26. #include "rx_location_info.h"
  27. #include "rx_timing_offset_info.h"
  28. #include "receive_rssi_info.h"
  29. // ################ START SUMMARY #################
  30. //
  31. // Dword Fields
  32. // 0 phy_internal_nap[0], location_info_valid[1], timing_info_valid[2], rssi_info_valid[3], rx_frame_correction_needed[4], frameless_frame_received[5], reserved_0a[31:6]
  33. // 1 phy_timestamp_1_lower_32[31:0]
  34. // 2 phy_timestamp_1_upper_32[31:0]
  35. // 3 phy_timestamp_2_lower_32[31:0]
  36. // 4 phy_timestamp_2_upper_32[31:0]
  37. // 5-13 struct rx_location_info rx_location_info_details;
  38. // 14 struct rx_timing_offset_info rx_timing_offset_info_details;
  39. // 15-30 struct receive_rssi_info post_rssi_info_details;
  40. // 31 phy_sw_status_31_0[31:0]
  41. // 32 phy_sw_status_63_32[31:0]
  42. //
  43. // ################ END SUMMARY #################
  44. #define NUM_OF_DWORDS_PHYRX_PKT_END 33
  45. struct phyrx_pkt_end {
  46. uint32_t phy_internal_nap : 1, //[0]
  47. location_info_valid : 1, //[1]
  48. timing_info_valid : 1, //[2]
  49. rssi_info_valid : 1, //[3]
  50. rx_frame_correction_needed : 1, //[4]
  51. frameless_frame_received : 1, //[5]
  52. reserved_0a : 26; //[31:6]
  53. uint32_t phy_timestamp_1_lower_32 : 32; //[31:0]
  54. uint32_t phy_timestamp_1_upper_32 : 32; //[31:0]
  55. uint32_t phy_timestamp_2_lower_32 : 32; //[31:0]
  56. uint32_t phy_timestamp_2_upper_32 : 32; //[31:0]
  57. struct rx_location_info rx_location_info_details;
  58. struct rx_timing_offset_info rx_timing_offset_info_details;
  59. struct receive_rssi_info post_rssi_info_details;
  60. uint32_t phy_sw_status_31_0 : 32; //[31:0]
  61. uint32_t phy_sw_status_63_32 : 32; //[31:0]
  62. };
  63. /*
  64. phy_internal_nap
  65. When set, PHY RX entered an internal NAP state, as PHY
  66. determined that this reception was not destined to this
  67. device
  68. location_info_valid
  69. Indicates that the RX_LOCATION_INFO structure later on
  70. in the TLV contains valid info
  71. timing_info_valid
  72. Indicates that the RX_TIMING_OFFSET_INFO structure later
  73. on in the TLV contains valid info
  74. rssi_info_valid
  75. Indicates that the RECEIVE_RSSI_INFO structure later on
  76. in the TLV contains valid info
  77. rx_frame_correction_needed
  78. When clear, no action is needed in the MAC.
  79. When set, the falling edge of the rx_frame happened 4us
  80. too late. MAC will need to compensate for this delay in
  81. order to maintain proper SIFS timing and/or not to get
  82. de-slotted.
  83. PHY uses this for very short 11a frames.
  84. When set, PHY will have passed this TLV to the MAC up to
  85. 8 us into the 'real SIFS' time, and thus within 4us from the
  86. falling edge of the rx_frame.
  87. <legal all>
  88. frameless_frame_received
  89. When set, PHY has received the 'frameless frame' . Can
  90. be used in the 'MU-RTS -CTS exchange where CTS reception can
  91. be problematic.
  92. <legal all>
  93. reserved_0a
  94. <legal 0>
  95. phy_timestamp_1_lower_32
  96. TODO PHY-RF team: Is the description for this and the
  97. next 3 fields still correct ?
  98. The PHY timestamp in the AMPI of the first rising edge
  99. of rx_clear_pri after TX_PHY_DESC. . This field should set
  100. to 0 by the PHY and should be updated by the AMPI before
  101. being forwarded to the rest of the MAC. This field indicates
  102. the lower 32 bits of the timestamp
  103. phy_timestamp_1_upper_32
  104. The PHY timestamp in the AMPI of the first rising edge
  105. of rx_clear_pri after TX_PHY_DESC. This field should set to
  106. 0 by the PHY and should be updated by the AMPI before being
  107. forwarded to the rest of the MAC. This field indicates the
  108. upper 32 bits of the timestamp
  109. phy_timestamp_2_lower_32
  110. The PHY timestamp in the AMPI of the rising edge of
  111. rx_clear_pri after RX_RSSI_LEGACY. This field should set to
  112. 0 by the PHY and should be updated by the AMPI before being
  113. forwarded to the rest of the MAC. This field indicates the
  114. lower 32 bits of the timestamp
  115. phy_timestamp_2_upper_32
  116. The PHY timestamp in the AMPI of the rising edge of
  117. rx_clear_pri after RX_RSSI_LEGACY. This field should set to
  118. 0 by the PHY and should be updated by the AMPI before being
  119. forwarded to the rest of the MAC. This field indicates the
  120. upper 32 bits of the timestamp
  121. struct rx_location_info rx_location_info_details
  122. Overview of location related info
  123. struct rx_timing_offset_info rx_timing_offset_info_details
  124. Overview of timing offset related info
  125. struct receive_rssi_info post_rssi_info_details
  126. Overview of the post-RSSI values.
  127. phy_sw_status_31_0
  128. Some PHY micro code status that can be put in here.
  129. Details of definition within SW specification
  130. This field can be used for debugging, FW - SW message
  131. exchange, etc.
  132. It could for example be a pointer to a DDR memory
  133. location where PHY FW put some debug info.
  134. <legal all>
  135. phy_sw_status_63_32
  136. Some PHY micro code status that can be put in here.
  137. Details of definition within SW specification
  138. This field can be used for debugging, FW - SW message
  139. exchange, etc.
  140. It could for example be a pointer to a DDR memory
  141. location where PHY FW put some debug info.
  142. <legal all>
  143. */
  144. /* Description PHYRX_PKT_END_0_PHY_INTERNAL_NAP
  145. When set, PHY RX entered an internal NAP state, as PHY
  146. determined that this reception was not destined to this
  147. device
  148. */
  149. #define PHYRX_PKT_END_0_PHY_INTERNAL_NAP_OFFSET 0x00000000
  150. #define PHYRX_PKT_END_0_PHY_INTERNAL_NAP_LSB 0
  151. #define PHYRX_PKT_END_0_PHY_INTERNAL_NAP_MASK 0x00000001
  152. /* Description PHYRX_PKT_END_0_LOCATION_INFO_VALID
  153. Indicates that the RX_LOCATION_INFO structure later on
  154. in the TLV contains valid info
  155. */
  156. #define PHYRX_PKT_END_0_LOCATION_INFO_VALID_OFFSET 0x00000000
  157. #define PHYRX_PKT_END_0_LOCATION_INFO_VALID_LSB 1
  158. #define PHYRX_PKT_END_0_LOCATION_INFO_VALID_MASK 0x00000002
  159. /* Description PHYRX_PKT_END_0_TIMING_INFO_VALID
  160. Indicates that the RX_TIMING_OFFSET_INFO structure later
  161. on in the TLV contains valid info
  162. */
  163. #define PHYRX_PKT_END_0_TIMING_INFO_VALID_OFFSET 0x00000000
  164. #define PHYRX_PKT_END_0_TIMING_INFO_VALID_LSB 2
  165. #define PHYRX_PKT_END_0_TIMING_INFO_VALID_MASK 0x00000004
  166. /* Description PHYRX_PKT_END_0_RSSI_INFO_VALID
  167. Indicates that the RECEIVE_RSSI_INFO structure later on
  168. in the TLV contains valid info
  169. */
  170. #define PHYRX_PKT_END_0_RSSI_INFO_VALID_OFFSET 0x00000000
  171. #define PHYRX_PKT_END_0_RSSI_INFO_VALID_LSB 3
  172. #define PHYRX_PKT_END_0_RSSI_INFO_VALID_MASK 0x00000008
  173. /* Description PHYRX_PKT_END_0_RX_FRAME_CORRECTION_NEEDED
  174. When clear, no action is needed in the MAC.
  175. When set, the falling edge of the rx_frame happened 4us
  176. too late. MAC will need to compensate for this delay in
  177. order to maintain proper SIFS timing and/or not to get
  178. de-slotted.
  179. PHY uses this for very short 11a frames.
  180. When set, PHY will have passed this TLV to the MAC up to
  181. 8 us into the 'real SIFS' time, and thus within 4us from the
  182. falling edge of the rx_frame.
  183. <legal all>
  184. */
  185. #define PHYRX_PKT_END_0_RX_FRAME_CORRECTION_NEEDED_OFFSET 0x00000000
  186. #define PHYRX_PKT_END_0_RX_FRAME_CORRECTION_NEEDED_LSB 4
  187. #define PHYRX_PKT_END_0_RX_FRAME_CORRECTION_NEEDED_MASK 0x00000010
  188. /* Description PHYRX_PKT_END_0_FRAMELESS_FRAME_RECEIVED
  189. When set, PHY has received the 'frameless frame' . Can
  190. be used in the 'MU-RTS -CTS exchange where CTS reception can
  191. be problematic.
  192. <legal all>
  193. */
  194. #define PHYRX_PKT_END_0_FRAMELESS_FRAME_RECEIVED_OFFSET 0x00000000
  195. #define PHYRX_PKT_END_0_FRAMELESS_FRAME_RECEIVED_LSB 5
  196. #define PHYRX_PKT_END_0_FRAMELESS_FRAME_RECEIVED_MASK 0x00000020
  197. /* Description PHYRX_PKT_END_0_RESERVED_0A
  198. <legal 0>
  199. */
  200. #define PHYRX_PKT_END_0_RESERVED_0A_OFFSET 0x00000000
  201. #define PHYRX_PKT_END_0_RESERVED_0A_LSB 6
  202. #define PHYRX_PKT_END_0_RESERVED_0A_MASK 0xffffffc0
  203. /* Description PHYRX_PKT_END_1_PHY_TIMESTAMP_1_LOWER_32
  204. TODO PHY-RF team: Is the description for this and the
  205. next 3 fields still correct ?
  206. The PHY timestamp in the AMPI of the first rising edge
  207. of rx_clear_pri after TX_PHY_DESC. . This field should set
  208. to 0 by the PHY and should be updated by the AMPI before
  209. being forwarded to the rest of the MAC. This field indicates
  210. the lower 32 bits of the timestamp
  211. */
  212. #define PHYRX_PKT_END_1_PHY_TIMESTAMP_1_LOWER_32_OFFSET 0x00000004
  213. #define PHYRX_PKT_END_1_PHY_TIMESTAMP_1_LOWER_32_LSB 0
  214. #define PHYRX_PKT_END_1_PHY_TIMESTAMP_1_LOWER_32_MASK 0xffffffff
  215. /* Description PHYRX_PKT_END_2_PHY_TIMESTAMP_1_UPPER_32
  216. The PHY timestamp in the AMPI of the first rising edge
  217. of rx_clear_pri after TX_PHY_DESC. This field should set to
  218. 0 by the PHY and should be updated by the AMPI before being
  219. forwarded to the rest of the MAC. This field indicates the
  220. upper 32 bits of the timestamp
  221. */
  222. #define PHYRX_PKT_END_2_PHY_TIMESTAMP_1_UPPER_32_OFFSET 0x00000008
  223. #define PHYRX_PKT_END_2_PHY_TIMESTAMP_1_UPPER_32_LSB 0
  224. #define PHYRX_PKT_END_2_PHY_TIMESTAMP_1_UPPER_32_MASK 0xffffffff
  225. /* Description PHYRX_PKT_END_3_PHY_TIMESTAMP_2_LOWER_32
  226. The PHY timestamp in the AMPI of the rising edge of
  227. rx_clear_pri after RX_RSSI_LEGACY. This field should set to
  228. 0 by the PHY and should be updated by the AMPI before being
  229. forwarded to the rest of the MAC. This field indicates the
  230. lower 32 bits of the timestamp
  231. */
  232. #define PHYRX_PKT_END_3_PHY_TIMESTAMP_2_LOWER_32_OFFSET 0x0000000c
  233. #define PHYRX_PKT_END_3_PHY_TIMESTAMP_2_LOWER_32_LSB 0
  234. #define PHYRX_PKT_END_3_PHY_TIMESTAMP_2_LOWER_32_MASK 0xffffffff
  235. /* Description PHYRX_PKT_END_4_PHY_TIMESTAMP_2_UPPER_32
  236. The PHY timestamp in the AMPI of the rising edge of
  237. rx_clear_pri after RX_RSSI_LEGACY. This field should set to
  238. 0 by the PHY and should be updated by the AMPI before being
  239. forwarded to the rest of the MAC. This field indicates the
  240. upper 32 bits of the timestamp
  241. */
  242. #define PHYRX_PKT_END_4_PHY_TIMESTAMP_2_UPPER_32_OFFSET 0x00000010
  243. #define PHYRX_PKT_END_4_PHY_TIMESTAMP_2_UPPER_32_LSB 0
  244. #define PHYRX_PKT_END_4_PHY_TIMESTAMP_2_UPPER_32_MASK 0xffffffff
  245. #define PHYRX_PKT_END_5_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x00000014
  246. #define PHYRX_PKT_END_5_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  247. #define PHYRX_PKT_END_5_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  248. #define PHYRX_PKT_END_6_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x00000018
  249. #define PHYRX_PKT_END_6_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  250. #define PHYRX_PKT_END_6_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  251. #define PHYRX_PKT_END_7_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x0000001c
  252. #define PHYRX_PKT_END_7_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  253. #define PHYRX_PKT_END_7_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  254. #define PHYRX_PKT_END_8_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x00000020
  255. #define PHYRX_PKT_END_8_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  256. #define PHYRX_PKT_END_8_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  257. #define PHYRX_PKT_END_9_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x00000024
  258. #define PHYRX_PKT_END_9_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  259. #define PHYRX_PKT_END_9_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  260. #define PHYRX_PKT_END_10_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x00000028
  261. #define PHYRX_PKT_END_10_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  262. #define PHYRX_PKT_END_10_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  263. #define PHYRX_PKT_END_11_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x0000002c
  264. #define PHYRX_PKT_END_11_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  265. #define PHYRX_PKT_END_11_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  266. #define PHYRX_PKT_END_12_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x00000030
  267. #define PHYRX_PKT_END_12_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  268. #define PHYRX_PKT_END_12_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  269. #define PHYRX_PKT_END_13_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_OFFSET 0x00000034
  270. #define PHYRX_PKT_END_13_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_LSB 0
  271. #define PHYRX_PKT_END_13_RX_LOCATION_INFO_RX_LOCATION_INFO_DETAILS_MASK 0xffffffff
  272. #define PHYRX_PKT_END_14_RX_TIMING_OFFSET_INFO_RX_TIMING_OFFSET_INFO_DETAILS_OFFSET 0x00000038
  273. #define PHYRX_PKT_END_14_RX_TIMING_OFFSET_INFO_RX_TIMING_OFFSET_INFO_DETAILS_LSB 0
  274. #define PHYRX_PKT_END_14_RX_TIMING_OFFSET_INFO_RX_TIMING_OFFSET_INFO_DETAILS_MASK 0xffffffff
  275. #define PHYRX_PKT_END_15_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x0000003c
  276. #define PHYRX_PKT_END_15_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  277. #define PHYRX_PKT_END_15_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  278. #define PHYRX_PKT_END_16_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000040
  279. #define PHYRX_PKT_END_16_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  280. #define PHYRX_PKT_END_16_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  281. #define PHYRX_PKT_END_17_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000044
  282. #define PHYRX_PKT_END_17_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  283. #define PHYRX_PKT_END_17_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  284. #define PHYRX_PKT_END_18_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000048
  285. #define PHYRX_PKT_END_18_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  286. #define PHYRX_PKT_END_18_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  287. #define PHYRX_PKT_END_19_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x0000004c
  288. #define PHYRX_PKT_END_19_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  289. #define PHYRX_PKT_END_19_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  290. #define PHYRX_PKT_END_20_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000050
  291. #define PHYRX_PKT_END_20_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  292. #define PHYRX_PKT_END_20_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  293. #define PHYRX_PKT_END_21_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000054
  294. #define PHYRX_PKT_END_21_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  295. #define PHYRX_PKT_END_21_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  296. #define PHYRX_PKT_END_22_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000058
  297. #define PHYRX_PKT_END_22_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  298. #define PHYRX_PKT_END_22_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  299. #define PHYRX_PKT_END_23_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x0000005c
  300. #define PHYRX_PKT_END_23_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  301. #define PHYRX_PKT_END_23_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  302. #define PHYRX_PKT_END_24_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000060
  303. #define PHYRX_PKT_END_24_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  304. #define PHYRX_PKT_END_24_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  305. #define PHYRX_PKT_END_25_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000064
  306. #define PHYRX_PKT_END_25_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  307. #define PHYRX_PKT_END_25_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  308. #define PHYRX_PKT_END_26_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000068
  309. #define PHYRX_PKT_END_26_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  310. #define PHYRX_PKT_END_26_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  311. #define PHYRX_PKT_END_27_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x0000006c
  312. #define PHYRX_PKT_END_27_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  313. #define PHYRX_PKT_END_27_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  314. #define PHYRX_PKT_END_28_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000070
  315. #define PHYRX_PKT_END_28_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  316. #define PHYRX_PKT_END_28_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  317. #define PHYRX_PKT_END_29_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000074
  318. #define PHYRX_PKT_END_29_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  319. #define PHYRX_PKT_END_29_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  320. #define PHYRX_PKT_END_30_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_OFFSET 0x00000078
  321. #define PHYRX_PKT_END_30_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_LSB 0
  322. #define PHYRX_PKT_END_30_RECEIVE_RSSI_INFO_POST_RSSI_INFO_DETAILS_MASK 0xffffffff
  323. /* Description PHYRX_PKT_END_31_PHY_SW_STATUS_31_0
  324. Some PHY micro code status that can be put in here.
  325. Details of definition within SW specification
  326. This field can be used for debugging, FW - SW message
  327. exchange, etc.
  328. It could for example be a pointer to a DDR memory
  329. location where PHY FW put some debug info.
  330. <legal all>
  331. */
  332. #define PHYRX_PKT_END_31_PHY_SW_STATUS_31_0_OFFSET 0x0000007c
  333. #define PHYRX_PKT_END_31_PHY_SW_STATUS_31_0_LSB 0
  334. #define PHYRX_PKT_END_31_PHY_SW_STATUS_31_0_MASK 0xffffffff
  335. /* Description PHYRX_PKT_END_32_PHY_SW_STATUS_63_32
  336. Some PHY micro code status that can be put in here.
  337. Details of definition within SW specification
  338. This field can be used for debugging, FW - SW message
  339. exchange, etc.
  340. It could for example be a pointer to a DDR memory
  341. location where PHY FW put some debug info.
  342. <legal all>
  343. */
  344. #define PHYRX_PKT_END_32_PHY_SW_STATUS_63_32_OFFSET 0x00000080
  345. #define PHYRX_PKT_END_32_PHY_SW_STATUS_63_32_LSB 0
  346. #define PHYRX_PKT_END_32_PHY_SW_STATUS_63_32_MASK 0xffffffff
  347. #endif // _PHYRX_PKT_END_H_