qcacmn: Add new WMI API for OCL command

Currently there is no provision to configure OCL mode in FW during
driver bootup.

To enable this configuration add a new WMI API wmi_unified_send_ocl_cmd.

Change-Id: Idb936172612ff2ed8ea029d8a363b758625eb97d
CRs-Fixed: 2647631
This commit is contained in:
Bapiraju Alla
2020-03-23 18:22:39 +05:30
committed by nshrivas
parent 1f76b82659
commit d5d364a58d
5 changed files with 81 additions and 2 deletions

View File

@@ -363,4 +363,14 @@ struct get_arp_stats {
uint32_t vdev_id;
};
/**
* struct ocl_cmd_params - OCL command params
* @vdev_id: Virtual AP device identifier
* @en_dis_chain: enable/disable dynamic/static OCL mode
*/
struct ocl_cmd_params {
uint32_t vdev_id;
uint32_t en_dis_chain;
};
#endif /* _WMI_UNIFIED_STA_PARAM_H_ */