qcacmn: Add new resource config fields

Firmware recently exposed two new resource config fields,
num_packet_filters, and num_max_sta_vdevs. Add these fields to the
host-side resource config struct so appropriate values can be populated
and communicated to firmware.

Change-Id: I951ba6ac929c38c2d78af6705f4922b62fc7d3a1
CRs-Fixed: 2201876
This commit is contained in:
Dustin Brown
2018-03-07 11:48:14 -08:00
committed by nshrivas
parent 1b1c004f36
commit 29c4cbf0c3

View File

@@ -6039,6 +6039,8 @@ struct wmi_host_fw_abi_ver {
* @num_ocb_vdevs:
* @num_ocb_channels:
* @num_ocb_schedules:
* @num_packet_filters: maximum number of packet filter rules to support
* @num_max_sta_vdevs: maximum number of concurrent station vdevs to support
* @num_ns_ext_tuples_cfg:
* @bpf_instruction_size:
* @max_bssid_rx_filters:
@@ -6109,6 +6111,8 @@ typedef struct {
uint32_t num_ocb_vdevs;
uint32_t num_ocb_channels;
uint32_t num_ocb_schedules;
uint32_t num_packet_filters;
uint32_t num_max_sta_vdevs;
uint32_t num_ns_ext_tuples_cfg;
uint32_t bpf_instruction_size;
uint32_t max_bssid_rx_filters;