hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
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
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (c) 2012 - 2018 Microchip Technology Inc., and its subsidiaries.
 * All rights reserved.
 */
 
#ifndef WILC_WLAN_CFG_H
#define WILC_WLAN_CFG_H
 
struct wilc_cfg_byte {
   u16 id;
   u8 val;
};
 
struct wilc_cfg_hword {
   u16 id;
   u16 val;
};
 
struct wilc_cfg_word {
   u16 id;
   u32 val;
};
 
struct wilc_cfg_str {
   u16 id;
   u8 *str;
};
 
struct wilc_cfg_str_vals {
   u8 mac_address[7];
   u8 firmware_version[129];
   u8 assoc_rsp[256];
};
 
struct wilc_cfg {
   struct wilc_cfg_byte *b;
   struct wilc_cfg_hword *hw;
   struct wilc_cfg_word *w;
   struct wilc_cfg_str *s;
   struct wilc_cfg_str_vals *str_vals;
};
 
struct wilc;
int wilc_wlan_cfg_set_wid(u8 *frame, u32 offset, u16 id, u8 *buf, int size);
int wilc_wlan_cfg_get_wid(u8 *frame, u32 offset, u16 id);
int wilc_wlan_cfg_get_val(struct wilc *wl, u16 wid, u8 *buffer,
             u32 buffer_size);
void wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
                  struct wilc_cfg_rsp *rsp);
int wilc_wlan_cfg_init(struct wilc *wl);
void wilc_wlan_cfg_deinit(struct wilc *wl);
 
#endif