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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/******************************************************************************
 *
 * 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.
 *
 *****************************************************************************/
#ifndef _PHL_LED_DEF_H_
#define _PHL_LED_DEF_H_
 
#define PHL_RADIO_ON_OFF_NOT_READY
 
enum rtw_led_ctrl_mode {
   RTW_LED_CTRL_NOT_SUPPORT,
   RTW_LED_CTRL_HW_TRX_MODE,
   RTW_LED_CTRL_HW_TX_MODE,
   RTW_LED_CTRL_HW_RX_MODE,
   RTW_LED_CTRL_SW_PP_MODE,
   RTW_LED_CTRL_SW_OD_MODE,
};
 
enum rtw_led_id { RTW_LED_ID_0, RTW_LED_ID_1, RTW_LED_ID_LENGTH };
 
#define RTW_LED_TIMER_LENGTH (RTW_LED_ID_LENGTH + 1)
 
/*
 * led_event here is not integrated with msg_evt_id due to the following reason:
 *
 * (a) led_event is used for mapping LED events with LED actions, and
 *     the mapping can be configured in core layer according to the
 *     customized LED table.
 *
 * (b) LED module inside uses led_event as the index of led action
 *     arrays, and hence it would be inappropriate to directly replace
 *     led_event with msg_evt_id which is not continuous and does not
 *     start from zero.
 */
enum rtw_led_event {
   RTW_LED_EVENT_PHL_START,
   RTW_LED_EVENT_PHL_STOP,
   RTW_LED_EVENT_SW_RF_ON,
   RTW_LED_EVENT_SW_RF_OFF,
   RTW_LED_EVENT_SCAN_START,
   RTW_LED_EVENT_LINK_START,
   RTW_LED_EVENT_LINKED,
   RTW_LED_EVENT_NO_LINK,
   RTW_LED_EVENT_LINKED_CIPHER,
   RTW_LED_EVENT_LINKED_NOCIPHER,
   RTW_LED_EVENT_LINKED_24G,
   RTW_LED_EVENT_LINKED_5G,
   RTW_LED_EVENT_WPS,
   RTW_LED_EVENT_IDLE_SLEEP_START,
   RTW_LED_EVENT_IDLE_SLEEP_END,
   RTW_LED_EVENT_LENGTH
};
 
enum rtw_led_state {
   RTW_LED_STATE_IGNORE = BIT0,
   RTW_LED_STATE_SW_RF_ON = BIT1,
   RTW_LED_STATE_NOT_IDLE_SLEEP = BIT2,
};
 
enum rtw_led_action {
   RTW_LED_ACTION_LOW,
   RTW_LED_ACTION_HIGH,
   RTW_LED_ACTION_HW_TRX,
   RTW_LED_ACTION_TOGGLE,
};
 
enum rtw_led_opt {
   RTW_LED_OPT_LOW = 0,
   RTW_LED_OPT_HIGH = 1,
   RTW_LED_OPT_UNKNOWN = 2
};
 
struct rtw_led_toggle_args_t {
   enum rtw_led_opt start_opt;
   u32 start_delay;
   u32 loop;
   u8 intervals_idx;
};
 
struct rtw_led_action_args_t {
   enum rtw_led_id led_id;
   enum rtw_led_action led_action;
   struct rtw_led_toggle_args_t toggle_args;
};
 
struct rtw_led_intervals_t {
   u32 *interval_arr;
   u8 len;
};
 
#endif /*_PHL_LED_DEF_H_*/