|
@@ -2109,6 +2109,30 @@ static int wcn36xx_smd_delete_sta_context_ind(struct wcn36xx *wcn,
|
|
|
return -ENOENT;
|
|
|
}
|
|
|
|
|
|
+static int wcn36xx_smd_print_reg_info_ind(struct wcn36xx *wcn,
|
|
|
+ void *buf,
|
|
|
+ size_t len)
|
|
|
+{
|
|
|
+ struct wcn36xx_hal_print_reg_info_ind *rsp = buf;
|
|
|
+ int i;
|
|
|
+
|
|
|
+ if (len < sizeof(*rsp)) {
|
|
|
+ wcn36xx_warn("Corrupted print reg info indication\n");
|
|
|
+ return -EIO;
|
|
|
+ }
|
|
|
+
|
|
|
+ wcn36xx_dbg(WCN36XX_DBG_HAL,
|
|
|
+ "reginfo indication, scenario: 0x%x reason: 0x%x\n",
|
|
|
+ rsp->scenario, rsp->reason);
|
|
|
+
|
|
|
+ for (i = 0; i < rsp->count; i++) {
|
|
|
+ wcn36xx_dbg(WCN36XX_DBG_HAL, "\t0x%x: 0x%x\n",
|
|
|
+ rsp->regs[i].addr, rsp->regs[i].value);
|
|
|
+ }
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
int wcn36xx_smd_update_cfg(struct wcn36xx *wcn, u32 cfg_id, u32 value)
|
|
|
{
|
|
|
struct wcn36xx_hal_update_cfg_req_msg msg_body, *body;
|
|
@@ -2237,6 +2261,7 @@ int wcn36xx_smd_rsp_process(struct qcom_smd_channel *channel,
|
|
|
case WCN36XX_HAL_OTA_TX_COMPL_IND:
|
|
|
case WCN36XX_HAL_MISSED_BEACON_IND:
|
|
|
case WCN36XX_HAL_DELETE_STA_CONTEXT_IND:
|
|
|
+ case WCN36XX_HAL_PRINT_REG_INFO_IND:
|
|
|
msg_ind = kmalloc(sizeof(*msg_ind) + len, GFP_ATOMIC);
|
|
|
if (!msg_ind) {
|
|
|
wcn36xx_err("Run out of memory while handling SMD_EVENT (%d)\n",
|
|
@@ -2296,6 +2321,11 @@ static void wcn36xx_ind_smd_work(struct work_struct *work)
|
|
|
hal_ind_msg->msg,
|
|
|
hal_ind_msg->msg_len);
|
|
|
break;
|
|
|
+ case WCN36XX_HAL_PRINT_REG_INFO_IND:
|
|
|
+ wcn36xx_smd_print_reg_info_ind(wcn,
|
|
|
+ hal_ind_msg->msg,
|
|
|
+ hal_ind_msg->msg_len);
|
|
|
+ break;
|
|
|
default:
|
|
|
wcn36xx_err("SMD_EVENT (%d) not supported\n",
|
|
|
msg_header->msg_type);
|