hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/******************************************************************************
 *
 * Copyright(c) 2019 Realtek Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
#define _HAL_C2H_C_
#include "hal_headers.h"
 
static void _hal_c2h_process_complete(void* priv, struct phl_msg* msg)
{
   struct hal_info_t *hal_info = (struct hal_info_t *)priv;
   void *drv = hal_to_drvpriv(hal_info);
 
   if (msg->inbuf && msg->inlen)
       _os_kmem_free(drv, msg->inbuf, msg->inlen);
}
 
struct hal_c2h_hdl c2h_list[] =
{
   {C2H_CAT_OUTSRC, C2H_CLS_PHYDM_MIN, C2H_CLS_PHYDM_MAX,
       rtw_hal_bb_process_c2h, NULL},
   {C2H_CAT_OUTSRC, C2H_CLS_RF_MIN, C2H_CLS_RF_MAX,
       rtw_hal_rf_process_c2h, NULL},
   {C2H_CAT_OUTSRC, C2H_CLS_BTC_MIN, C2H_CLS_BTC_MAX,
       rtw_hal_btc_process_c2h, NULL},
   {C2H_CAT_MAC, C2H_CLS_MAC_MIN, C2H_CLS_MAC_MAX,
       rtw_hal_mac_process_c2h, rtw_hal_mac_upd_c2h},
   {C2H_CAT_MAX, C2H_CLS_MAX, C2H_CLS_MAX,
       NULL, NULL}
};
 
void hal_c2h_post_process(void *phl, void *hal, void *c2h)
{
   struct rtw_phl_com_t *phl_com = (struct rtw_phl_com_t *)phl;
   struct rtw_c2h_info *c = (struct rtw_c2h_info *)c2h;
   struct c2h_evt_msg c2h_msg;
   u8 i = 0;
   u32 evt_id = 0;
 
   for (i = 0; C2H_CAT_MAX != c2h_list[i].cat; i++) {
       if (c->c2h_cat == c2h_list[i].cat) {
           if (c->c2h_class >= c2h_list[i].cls_min &&
               c->c2h_class <= c2h_list[i].cls_max) {
               evt_id = c2h_list[i].c2h_hdl(hal, c2h, &c2h_msg);
 
               if (c2h_list[i].c2h_buf_wb)
                   c2h_list[i].c2h_buf_wb(hal, c, evt_id, &c2h_msg);
               else
                   c->content_len = 0;
 
               break;
           }
       }
   }
 
   if (evt_id > 0) {
       /* submit phl msg hub */
       struct phl_msg msg = {0};
       struct phl_msg_attribute attr = {0};
 
       if (c->content_len > 0) {
           msg.inbuf = c->content;
           msg.inlen = c->content_len;
           attr.completion.completion = _hal_c2h_process_complete;
           attr.completion.priv = hal;
       }
 
       SET_MSG_MDL_ID_FIELD(msg.msg_id, PHL_MDL_RX);
       SET_MSG_EVT_ID_FIELD(msg.msg_id, (u16)evt_id);
       if (rtw_phl_msg_hub_hal_send(phl_com, &attr, &msg) !=
           RTW_PHL_STATUS_SUCCESS) {
           if (c->content_len > 0)
               _hal_c2h_process_complete(hal, &msg);
           PHL_ERR("%s rtw_phl_msg_hub_hal_send failed\n", __func__);
       }
   }
}