|
@@ -110,6 +110,8 @@ struct nla_policy iwl_testmode_gnl_msg_policy[IWL_TM_ATTR_MAX] = {
|
|
|
[IWL_TM_ATTR_SRAM_ADDR] = { .type = NLA_U32, },
|
|
|
[IWL_TM_ATTR_SRAM_SIZE] = { .type = NLA_U32, },
|
|
|
[IWL_TM_ATTR_SRAM_DUMP] = { .type = NLA_UNSPEC, },
|
|
|
+
|
|
|
+ [IWL_TM_ATTR_FW_VERSION] = { .type = NLA_U32, },
|
|
|
};
|
|
|
|
|
|
/*
|
|
@@ -510,6 +512,21 @@ static int iwl_testmode_driver(struct ieee80211_hw *hw, struct nlattr **tb)
|
|
|
priv->tm_fixed_rate = nla_get_u32(tb[IWL_TM_ATTR_FIXRATE]);
|
|
|
break;
|
|
|
|
|
|
+ case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
|
|
|
+ IWL_INFO(priv, "uCode version raw: 0x%x\n", priv->ucode_ver);
|
|
|
+
|
|
|
+ skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
|
|
|
+ if (!skb) {
|
|
|
+ IWL_DEBUG_INFO(priv, "Error allocating memory\n");
|
|
|
+ return -ENOMEM;
|
|
|
+ }
|
|
|
+ NLA_PUT_U32(skb, IWL_TM_ATTR_FW_VERSION, priv->ucode_ver);
|
|
|
+ status = cfg80211_testmode_reply(skb);
|
|
|
+ if (status < 0)
|
|
|
+ IWL_DEBUG_INFO(priv,
|
|
|
+ "Error sending msg : %d\n", status);
|
|
|
+ break;
|
|
|
+
|
|
|
default:
|
|
|
IWL_DEBUG_INFO(priv, "Unknown testmode driver command ID\n");
|
|
|
return -ENOSYS;
|
|
@@ -842,6 +859,7 @@ int iwlagn_mac_testmode_cmd(struct ieee80211_hw *hw, void *data, int len)
|
|
|
case IWL_TM_CMD_APP2DEV_GET_EEPROM:
|
|
|
case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
|
|
|
case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW:
|
|
|
+ case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
|
|
|
IWL_DEBUG_INFO(priv, "testmode cmd to driver\n");
|
|
|
result = iwl_testmode_driver(hw, tb);
|
|
|
break;
|