123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /*
- * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
- */
- #ifndef _IPAHAL_HW_STATS_H_
- #define _IPAHAL_HW_STATS_H_
- #include <linux/ipa.h>
- #define IPAHAL_MAX_PIPES 32
- #define IPAHAL_MAX_RULE_ID_32 (1024 / 32) /* 10 bits of rule id */
- enum ipahal_hw_stats_type {
- IPAHAL_HW_STATS_QUOTA,
- IPAHAL_HW_STATS_TETHERING,
- IPAHAL_HW_STATS_FNR,
- IPAHAL_HW_STATS_DROP,
- IPAHAL_HW_STATS_MAX
- };
- /*
- * struct ipahal_stats_init_pyld - Statistics initialization payload
- * @len: length of payload
- * @data: actual payload data
- */
- struct ipahal_stats_init_pyld {
- u16 len;
- u16 reserved;
- u8 data[0];
- };
- /*
- * struct ipahal_stats_offset - Statistics offset parameters
- * @offset: offset of the statistic from beginning of stats table
- * @size: size of the statistics
- */
- struct ipahal_stats_offset {
- u32 offset;
- u16 size;
- };
- /*
- * struct ipahal_stats_init_quota - Initializations parameters for quota
- * @enabled_bitmask: bit mask of pipes to be monitored
- */
- struct ipahal_stats_init_quota {
- u32 enabled_bitmask;
- };
- /*
- * struct ipahal_stats_get_offset_quota - Get offset parameters for quota
- * @init: initialization parameters used in initialization of stats
- */
- struct ipahal_stats_get_offset_quota {
- struct ipahal_stats_init_quota init;
- };
- /*
- * struct ipahal_stats_quota - Quota statistics
- * @num_ipv4_bytes: IPv4 bytes
- * @num_ipv6_bytes: IPv6 bytes
- * @num_ipv4_pkts: IPv4 packets
- * @num_ipv6_pkts: IPv6 packets
- */
- struct ipahal_stats_quota {
- u64 num_ipv4_bytes;
- u64 num_ipv6_bytes;
- u64 num_ipv4_pkts;
- u64 num_ipv6_pkts;
- };
- /*
- * struct ipahal_stats_quota_all - Quota statistics for all pipes
- * @stats: array of statistics per pipe
- */
- struct ipahal_stats_quota_all {
- struct ipahal_stats_quota stats[IPAHAL_MAX_PIPES];
- };
- /*
- * struct ipahal_stats_init_tethering - Initializations parameters for tethering
- * @prod_bitmask: bit mask of producer pipes to be monitored
- * @cons_bitmask: bit mask of consumer pipes to be monitored per producer
- */
- struct ipahal_stats_init_tethering {
- u32 prod_bitmask;
- u32 cons_bitmask[IPAHAL_MAX_PIPES];
- };
- /*
- * struct ipahal_stats_get_offset_tethering - Get offset parameters for
- * tethering
- * @init: initialization parameters used in initialization of stats
- */
- struct ipahal_stats_get_offset_tethering {
- struct ipahal_stats_init_tethering init;
- };
- /*
- * struct ipahal_stats_tethering - Tethering statistics
- * @num_ipv4_bytes: IPv4 bytes
- * @num_ipv6_bytes: IPv6 bytes
- * @num_ipv4_pkts: IPv4 packets
- * @num_ipv6_pkts: IPv6 packets
- */
- struct ipahal_stats_tethering {
- u64 num_ipv4_bytes;
- u64 num_ipv6_bytes;
- u64 num_ipv4_pkts;
- u64 num_ipv6_pkts;
- };
- /*
- * struct ipahal_stats_tethering_all - Tethering statistics for all pipes
- * @stats: matrix of statistics per pair of pipes
- */
- struct ipahal_stats_tethering_all {
- struct ipahal_stats_tethering
- stats[IPAHAL_MAX_PIPES][IPAHAL_MAX_PIPES];
- };
- /*
- * struct ipahal_stats_init_flt_rt - Initializations parameters for flt_rt
- * @rule_id_bitmask: array describes which rule ids to monitor.
- * rule_id bit is determined by:
- * index to the array => rule_id / 32
- * bit to enable => rule_id % 32
- */
- struct ipahal_stats_init_flt_rt {
- u32 rule_id_bitmask[IPAHAL_MAX_RULE_ID_32];
- };
- /*
- * struct ipahal_stats_get_offset_flt_rt - Get offset parameters for flt_rt
- * @init: initialization parameters used in initialization of stats
- * @rule_id: rule_id to get the offset for
- */
- struct ipahal_stats_get_offset_flt_rt {
- struct ipahal_stats_init_flt_rt init;
- u32 rule_id;
- };
- /*
- * struct ipahal_stats_flt_rt - flt_rt statistics
- * @num_packets: Total number of packets hit this rule
- * @num_packets_hash: Total number of packets hit this rule in hash table
- */
- struct ipahal_stats_flt_rt {
- u32 num_packets;
- u32 num_packets_hash;
- };
- /*
- * struct ipahal_stats_flt_rt_v4_5 - flt_rt statistics
- * @num_packets: Total number of packets hit this rule
- * @num_packets_hash: Total number of packets hit this rule in hash table
- * @num_bytes: Total number of bytes hit this rule
- */
- struct ipahal_stats_flt_rt_v4_5 {
- u32 num_packets;
- u32 num_packets_hash;
- u64 num_bytes;
- };
- /*
- * struct ipahal_stats_get_offset_flt_rt_v4_5 - Get offset parameters for flt_rt
- * @start_id: start_id to get the offset
- * @end_id: end_id to get the offset
- */
- struct ipahal_stats_get_offset_flt_rt_v4_5 {
- u8 start_id;
- u8 end_id;
- };
- /*
- * struct ipahal_stats_init_drop - Initializations parameters for Drop
- * @enabled_bitmask: bit mask of pipes to be monitored
- */
- struct ipahal_stats_init_drop {
- u32 enabled_bitmask;
- };
- /*
- * struct ipahal_stats_get_offset_drop - Get offset parameters for Drop
- * @init: initialization parameters used in initialization of stats
- */
- struct ipahal_stats_get_offset_drop {
- struct ipahal_stats_init_drop init;
- };
- /*
- * struct ipahal_stats_drop - Packet Drop statistics
- * @drop_packet_cnt: number of packets dropped
- * @drop_byte_cnt: number of bytes dropped
- */
- struct ipahal_stats_drop {
- u32 drop_packet_cnt;
- u32 drop_byte_cnt;
- };
- /*
- * struct ipahal_stats_drop_all - Drop statistics for all pipes
- * @stats: array of statistics per pipes
- */
- struct ipahal_stats_drop_all {
- struct ipahal_stats_drop stats[IPAHAL_MAX_PIPES];
- };
- /*
- * ipahal_stats_generate_init_pyld - Generate the init payload for stats
- * @type: type of stats
- * @params: init_pyld parameters based of stats type
- * @is_atomic_ctx: is calling context atomic ?
- *
- * This function will generate the initialization payload for a particular
- * statistic in hardware. IPA driver is expected to use this payload to
- * initialize the SRAM.
- *
- * Return: pointer to ipahal_stats_init_pyld on success or NULL on failure.
- */
- struct ipahal_stats_init_pyld *ipahal_stats_generate_init_pyld(
- enum ipahal_hw_stats_type type, void *params, bool is_atomic_ctx);
- /*
- * ipahal_destroy_stats_init_pyld() - Destroy/Release bulk that was built
- * by the ipahal_stats_generate_init_pyld function.
- */
- static inline void ipahal_destroy_stats_init_pyld(
- struct ipahal_stats_init_pyld *pyld)
- {
- kfree(pyld);
- }
- /*
- * ipahal_stats_get_offset - Get the offset / size of payload for stats
- * @type: type of stats
- * @params: get_offset parameters based of stats type
- * @out: out parameter for the offset and size.
- *
- * This function will return the offset of the counter from beginning of
- * the table.IPA driver is expected to read this portion in SRAM and pass
- * it to ipahal_parse_stats() to interprete the stats.
- *
- * Return: 0 on success and negative on failure
- */
- int ipahal_stats_get_offset(enum ipahal_hw_stats_type type, void *params,
- struct ipahal_stats_offset *out);
- /*
- * ipahal_parse_stats - parse statistics
- * @type: type of stats
- * @init_params: init_pyld parameters used on init
- * @raw_stats: stats read from IPA SRAM
- * @parsed_stats: pointer to parsed stats based on type
- *
- * Return: 0 on success and negative on failure
- */
- int ipahal_parse_stats(enum ipahal_hw_stats_type type, void *init_params,
- void *raw_stats, void *parsed_stats);
- /*
- * ipahal_set_flt_rt_sw_stats - set sw counter stats for FnR
- * @raw_stats: stats write to IPA SRAM
- * @sw_stats: FnR sw stats to be written
- *
- * Return: None
- */
- void ipahal_set_flt_rt_sw_stats(void *raw_stats,
- struct ipa_flt_rt_stats sw_stats);
- #endif /* _IPAHAL_HW_STATS_H_ */
|