mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 22:02:28 +00:00
ath10k: add wmi support for addba_set_resp
Add WMI support for sending addba response manually. This command is used for debugging purpose. Signed-off-by: Rajkumar Manoharan <rmanohar@qti.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
65c0893d91
commit
11597413b2
@ -123,6 +123,9 @@ struct wmi_ops {
|
|||||||
const u8 *mac);
|
const u8 *mac);
|
||||||
struct sk_buff *(*gen_addba_send)(struct ath10k *ar, u32 vdev_id,
|
struct sk_buff *(*gen_addba_send)(struct ath10k *ar, u32 vdev_id,
|
||||||
const u8 *mac, u32 tid, u32 buf_size);
|
const u8 *mac, u32 tid, u32 buf_size);
|
||||||
|
struct sk_buff *(*gen_addba_set_resp)(struct ath10k *ar, u32 vdev_id,
|
||||||
|
const u8 *mac, u32 tid,
|
||||||
|
u32 status);
|
||||||
};
|
};
|
||||||
|
|
||||||
int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id);
|
int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id);
|
||||||
@ -894,4 +897,21 @@ ath10k_wmi_addba_send(struct ath10k *ar, u32 vdev_id, const u8 *mac,
|
|||||||
ar->wmi.cmd->addba_send_cmdid);
|
ar->wmi.cmd->addba_send_cmdid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int
|
||||||
|
ath10k_wmi_addba_set_resp(struct ath10k *ar, u32 vdev_id, const u8 *mac,
|
||||||
|
u32 tid, u32 status)
|
||||||
|
{
|
||||||
|
struct sk_buff *skb;
|
||||||
|
|
||||||
|
if (!ar->wmi.ops->gen_addba_set_resp)
|
||||||
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
|
skb = ar->wmi.ops->gen_addba_set_resp(ar, vdev_id, mac, tid, status);
|
||||||
|
if (IS_ERR(skb))
|
||||||
|
return PTR_ERR(skb);
|
||||||
|
|
||||||
|
return ath10k_wmi_cmd_send(ar, skb,
|
||||||
|
ar->wmi.cmd->addba_set_resp_cmdid);
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -2209,6 +2209,7 @@ static const struct wmi_ops wmi_tlv_ops = {
|
|||||||
/* .gen_pdev_get_temperature not implemented */
|
/* .gen_pdev_get_temperature not implemented */
|
||||||
/* .gen_addba_clear_resp not implemented */
|
/* .gen_addba_clear_resp not implemented */
|
||||||
/* .gen_addba_send not implemented */
|
/* .gen_addba_send not implemented */
|
||||||
|
/* .gen_addba_set_resp not implemented */
|
||||||
};
|
};
|
||||||
|
|
||||||
/************/
|
/************/
|
||||||
|
@ -4930,6 +4930,32 @@ ath10k_wmi_op_gen_addba_send(struct ath10k *ar, u32 vdev_id, const u8 *mac,
|
|||||||
return skb;
|
return skb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct sk_buff *
|
||||||
|
ath10k_wmi_op_gen_addba_set_resp(struct ath10k *ar, u32 vdev_id, const u8 *mac,
|
||||||
|
u32 tid, u32 status)
|
||||||
|
{
|
||||||
|
struct wmi_addba_setresponse_cmd *cmd;
|
||||||
|
struct sk_buff *skb;
|
||||||
|
|
||||||
|
if (!mac)
|
||||||
|
return ERR_PTR(-EINVAL);
|
||||||
|
|
||||||
|
skb = ath10k_wmi_alloc_skb(ar, sizeof(*cmd));
|
||||||
|
if (!skb)
|
||||||
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
||||||
|
cmd = (struct wmi_addba_setresponse_cmd *)skb->data;
|
||||||
|
cmd->vdev_id = __cpu_to_le32(vdev_id);
|
||||||
|
ether_addr_copy(cmd->peer_macaddr.addr, mac);
|
||||||
|
cmd->tid = __cpu_to_le32(tid);
|
||||||
|
cmd->statuscode = __cpu_to_le32(status);
|
||||||
|
|
||||||
|
ath10k_dbg(ar, ATH10K_DBG_WMI,
|
||||||
|
"wmi addba set resp vdev_id 0x%X mac_addr %pM tid %u status %u\n",
|
||||||
|
vdev_id, mac, tid, status);
|
||||||
|
return skb;
|
||||||
|
}
|
||||||
|
|
||||||
static const struct wmi_ops wmi_ops = {
|
static const struct wmi_ops wmi_ops = {
|
||||||
.rx = ath10k_wmi_op_rx,
|
.rx = ath10k_wmi_op_rx,
|
||||||
.map_svc = wmi_main_svc_map,
|
.map_svc = wmi_main_svc_map,
|
||||||
@ -4983,6 +5009,7 @@ static const struct wmi_ops wmi_ops = {
|
|||||||
/* .gen_pdev_get_temperature not implemented */
|
/* .gen_pdev_get_temperature not implemented */
|
||||||
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
||||||
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
||||||
|
.gen_addba_set_resp = ath10k_wmi_op_gen_addba_set_resp,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct wmi_ops wmi_10_1_ops = {
|
static const struct wmi_ops wmi_10_1_ops = {
|
||||||
@ -5039,6 +5066,7 @@ static const struct wmi_ops wmi_10_1_ops = {
|
|||||||
.gen_pdev_set_quiet_mode = ath10k_wmi_op_gen_pdev_set_quiet_mode,
|
.gen_pdev_set_quiet_mode = ath10k_wmi_op_gen_pdev_set_quiet_mode,
|
||||||
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
||||||
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
||||||
|
.gen_addba_set_resp = ath10k_wmi_op_gen_addba_set_resp,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct wmi_ops wmi_10_2_ops = {
|
static const struct wmi_ops wmi_10_2_ops = {
|
||||||
@ -5096,6 +5124,7 @@ static const struct wmi_ops wmi_10_2_ops = {
|
|||||||
.gen_pdev_set_quiet_mode = ath10k_wmi_op_gen_pdev_set_quiet_mode,
|
.gen_pdev_set_quiet_mode = ath10k_wmi_op_gen_pdev_set_quiet_mode,
|
||||||
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
||||||
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
||||||
|
.gen_addba_set_resp = ath10k_wmi_op_gen_addba_set_resp,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct wmi_ops wmi_10_2_4_ops = {
|
static const struct wmi_ops wmi_10_2_4_ops = {
|
||||||
@ -5153,6 +5182,7 @@ static const struct wmi_ops wmi_10_2_4_ops = {
|
|||||||
.gen_pdev_set_quiet_mode = ath10k_wmi_op_gen_pdev_set_quiet_mode,
|
.gen_pdev_set_quiet_mode = ath10k_wmi_op_gen_pdev_set_quiet_mode,
|
||||||
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
.gen_addba_clear_resp = ath10k_wmi_op_gen_addba_clear_resp,
|
||||||
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
.gen_addba_send = ath10k_wmi_op_gen_addba_send,
|
||||||
|
.gen_addba_set_resp = ath10k_wmi_op_gen_addba_set_resp,
|
||||||
};
|
};
|
||||||
|
|
||||||
int ath10k_wmi_attach(struct ath10k *ar)
|
int ath10k_wmi_attach(struct ath10k *ar)
|
||||||
|
Loading…
Reference in New Issue
Block a user