ipahal_hw_stats.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPAHAL_HW_STATS_H_
  6. #define _IPAHAL_HW_STATS_H_
  7. #include <linux/ipa.h>
  8. #define IPAHAL_MAX_PIPES 32
  9. #define IPAHAL_MAX_RULE_ID_32 (1024 / 32) /* 10 bits of rule id */
  10. enum ipahal_hw_stats_type {
  11. IPAHAL_HW_STATS_QUOTA,
  12. IPAHAL_HW_STATS_TETHERING,
  13. IPAHAL_HW_STATS_FNR,
  14. IPAHAL_HW_STATS_DROP,
  15. IPAHAL_HW_STATS_MAX
  16. };
  17. /*
  18. * struct ipahal_stats_init_pyld - Statistics initialization payload
  19. * @len: length of payload
  20. * @data: actual payload data
  21. */
  22. struct ipahal_stats_init_pyld {
  23. u16 len;
  24. u16 reserved;
  25. u8 data[0];
  26. };
  27. /*
  28. * struct ipahal_stats_offset - Statistics offset parameters
  29. * @offset: offset of the statistic from beginning of stats table
  30. * @size: size of the statistics
  31. */
  32. struct ipahal_stats_offset {
  33. u32 offset;
  34. u16 size;
  35. };
  36. /*
  37. * struct ipahal_stats_init_quota - Initializations parameters for quota
  38. * @enabled_bitmask: bit mask of pipes to be monitored
  39. */
  40. struct ipahal_stats_init_quota {
  41. u32 enabled_bitmask;
  42. };
  43. /*
  44. * struct ipahal_stats_get_offset_quota - Get offset parameters for quota
  45. * @init: initialization parameters used in initialization of stats
  46. */
  47. struct ipahal_stats_get_offset_quota {
  48. struct ipahal_stats_init_quota init;
  49. };
  50. /*
  51. * struct ipahal_stats_quota - Quota statistics
  52. * @num_ipv4_bytes: IPv4 bytes
  53. * @num_ipv6_bytes: IPv6 bytes
  54. * @num_ipv4_pkts: IPv4 packets
  55. * @num_ipv6_pkts: IPv6 packets
  56. */
  57. struct ipahal_stats_quota {
  58. u64 num_ipv4_bytes;
  59. u64 num_ipv6_bytes;
  60. u64 num_ipv4_pkts;
  61. u64 num_ipv6_pkts;
  62. };
  63. /*
  64. * struct ipahal_stats_quota_all - Quota statistics for all pipes
  65. * @stats: array of statistics per pipe
  66. */
  67. struct ipahal_stats_quota_all {
  68. struct ipahal_stats_quota stats[IPAHAL_MAX_PIPES];
  69. };
  70. /*
  71. * struct ipahal_stats_init_tethering - Initializations parameters for tethering
  72. * @prod_bitmask: bit mask of producer pipes to be monitored
  73. * @cons_bitmask: bit mask of consumer pipes to be monitored per producer
  74. */
  75. struct ipahal_stats_init_tethering {
  76. u32 prod_bitmask;
  77. u32 cons_bitmask[IPAHAL_MAX_PIPES];
  78. };
  79. /*
  80. * struct ipahal_stats_get_offset_tethering - Get offset parameters for
  81. * tethering
  82. * @init: initialization parameters used in initialization of stats
  83. */
  84. struct ipahal_stats_get_offset_tethering {
  85. struct ipahal_stats_init_tethering init;
  86. };
  87. /*
  88. * struct ipahal_stats_tethering - Tethering statistics
  89. * @num_ipv4_bytes: IPv4 bytes
  90. * @num_ipv6_bytes: IPv6 bytes
  91. * @num_ipv4_pkts: IPv4 packets
  92. * @num_ipv6_pkts: IPv6 packets
  93. */
  94. struct ipahal_stats_tethering {
  95. u64 num_ipv4_bytes;
  96. u64 num_ipv6_bytes;
  97. u64 num_ipv4_pkts;
  98. u64 num_ipv6_pkts;
  99. };
  100. /*
  101. * struct ipahal_stats_tethering_all - Tethering statistics for all pipes
  102. * @stats: matrix of statistics per pair of pipes
  103. */
  104. struct ipahal_stats_tethering_all {
  105. struct ipahal_stats_tethering
  106. stats[IPAHAL_MAX_PIPES][IPAHAL_MAX_PIPES];
  107. };
  108. /*
  109. * struct ipahal_stats_init_flt_rt - Initializations parameters for flt_rt
  110. * @rule_id_bitmask: array describes which rule ids to monitor.
  111. * rule_id bit is determined by:
  112. * index to the array => rule_id / 32
  113. * bit to enable => rule_id % 32
  114. */
  115. struct ipahal_stats_init_flt_rt {
  116. u32 rule_id_bitmask[IPAHAL_MAX_RULE_ID_32];
  117. };
  118. /*
  119. * struct ipahal_stats_get_offset_flt_rt - Get offset parameters for flt_rt
  120. * @init: initialization parameters used in initialization of stats
  121. * @rule_id: rule_id to get the offset for
  122. */
  123. struct ipahal_stats_get_offset_flt_rt {
  124. struct ipahal_stats_init_flt_rt init;
  125. u32 rule_id;
  126. };
  127. /*
  128. * struct ipahal_stats_flt_rt - flt_rt statistics
  129. * @num_packets: Total number of packets hit this rule
  130. * @num_packets_hash: Total number of packets hit this rule in hash table
  131. */
  132. struct ipahal_stats_flt_rt {
  133. u32 num_packets;
  134. u32 num_packets_hash;
  135. };
  136. /*
  137. * struct ipahal_stats_flt_rt_v4_5 - flt_rt statistics
  138. * @num_packets: Total number of packets hit this rule
  139. * @num_packets_hash: Total number of packets hit this rule in hash table
  140. * @num_bytes: Total number of bytes hit this rule
  141. */
  142. struct ipahal_stats_flt_rt_v4_5 {
  143. u32 num_packets;
  144. u32 num_packets_hash;
  145. u64 num_bytes;
  146. };
  147. /*
  148. * struct ipahal_stats_get_offset_flt_rt_v4_5 - Get offset parameters for flt_rt
  149. * @start_id: start_id to get the offset
  150. * @end_id: end_id to get the offset
  151. */
  152. struct ipahal_stats_get_offset_flt_rt_v4_5 {
  153. u8 start_id;
  154. u8 end_id;
  155. };
  156. /*
  157. * struct ipahal_stats_init_drop - Initializations parameters for Drop
  158. * @enabled_bitmask: bit mask of pipes to be monitored
  159. */
  160. struct ipahal_stats_init_drop {
  161. u32 enabled_bitmask;
  162. };
  163. /*
  164. * struct ipahal_stats_get_offset_drop - Get offset parameters for Drop
  165. * @init: initialization parameters used in initialization of stats
  166. */
  167. struct ipahal_stats_get_offset_drop {
  168. struct ipahal_stats_init_drop init;
  169. };
  170. /*
  171. * struct ipahal_stats_drop - Packet Drop statistics
  172. * @drop_packet_cnt: number of packets dropped
  173. * @drop_byte_cnt: number of bytes dropped
  174. */
  175. struct ipahal_stats_drop {
  176. u32 drop_packet_cnt;
  177. u32 drop_byte_cnt;
  178. };
  179. /*
  180. * struct ipahal_stats_drop_all - Drop statistics for all pipes
  181. * @stats: array of statistics per pipes
  182. */
  183. struct ipahal_stats_drop_all {
  184. struct ipahal_stats_drop stats[IPAHAL_MAX_PIPES];
  185. };
  186. /*
  187. * ipahal_stats_generate_init_pyld - Generate the init payload for stats
  188. * @type: type of stats
  189. * @params: init_pyld parameters based of stats type
  190. * @is_atomic_ctx: is calling context atomic ?
  191. *
  192. * This function will generate the initialization payload for a particular
  193. * statistic in hardware. IPA driver is expected to use this payload to
  194. * initialize the SRAM.
  195. *
  196. * Return: pointer to ipahal_stats_init_pyld on success or NULL on failure.
  197. */
  198. struct ipahal_stats_init_pyld *ipahal_stats_generate_init_pyld(
  199. enum ipahal_hw_stats_type type, void *params, bool is_atomic_ctx);
  200. /*
  201. * ipahal_destroy_stats_init_pyld() - Destroy/Release bulk that was built
  202. * by the ipahal_stats_generate_init_pyld function.
  203. */
  204. static inline void ipahal_destroy_stats_init_pyld(
  205. struct ipahal_stats_init_pyld *pyld)
  206. {
  207. kfree(pyld);
  208. }
  209. /*
  210. * ipahal_stats_get_offset - Get the offset / size of payload for stats
  211. * @type: type of stats
  212. * @params: get_offset parameters based of stats type
  213. * @out: out parameter for the offset and size.
  214. *
  215. * This function will return the offset of the counter from beginning of
  216. * the table.IPA driver is expected to read this portion in SRAM and pass
  217. * it to ipahal_parse_stats() to interprete the stats.
  218. *
  219. * Return: 0 on success and negative on failure
  220. */
  221. int ipahal_stats_get_offset(enum ipahal_hw_stats_type type, void *params,
  222. struct ipahal_stats_offset *out);
  223. /*
  224. * ipahal_parse_stats - parse statistics
  225. * @type: type of stats
  226. * @init_params: init_pyld parameters used on init
  227. * @raw_stats: stats read from IPA SRAM
  228. * @parsed_stats: pointer to parsed stats based on type
  229. *
  230. * Return: 0 on success and negative on failure
  231. */
  232. int ipahal_parse_stats(enum ipahal_hw_stats_type type, void *init_params,
  233. void *raw_stats, void *parsed_stats);
  234. /*
  235. * ipahal_set_flt_rt_sw_stats - set sw counter stats for FnR
  236. * @raw_stats: stats write to IPA SRAM
  237. * @sw_stats: FnR sw stats to be written
  238. *
  239. * Return: None
  240. */
  241. void ipahal_set_flt_rt_sw_stats(void *raw_stats,
  242. struct ipa_flt_rt_stats sw_stats);
  243. #endif /* _IPAHAL_HW_STATS_H_ */