xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/phl_ser_def.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /******************************************************************************
2  *
3  * Copyright(c) 2019 - 2020 Realtek Corporation.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  *****************************************************************************/
15 #ifndef __PHL_SER_DEF_H__
16 #define __PHL_SER_DEF_H__
17 
18 
19 enum RTW_PHL_SER_NOTIFY_EVENT {
20 	RTW_PHL_SER_L0_RESET, /* L0 notify only */
21 	RTW_PHL_SER_PAUSE_TRX, /* M1 */
22 	RTW_PHL_SER_DO_RECOVERY, /* M3 */
23 	RTW_PHL_SER_READY, /* M5 */
24 	RTW_PHL_SER_L2_RESET,/* M9 */
25 	RTW_PHL_SER_EVENT_CHK,
26 	RTW_PHL_SER_DUMP_FW_LOG,
27 	RTW_PHL_SER_LOG_ONLY,
28 	RTW_PHL_SER_MAX = 8
29 };
30 
31 enum RTW_PHL_SER_RCVY_STEP {
32 	RTW_PHL_SER_L1_DISABLE_EN = 0x0001,
33 	RTW_PHL_SER_L1_RCVY_EN = 0x0002,
34 	RTW_PHL_SER_L0_CFG_NOTIFY = 0x0010,
35 	RTW_PHL_SER_L0_CFG_DIS_NOTIFY = 0x0011,
36 	RTW_PHL_SER_L0_CFG_HANDSHAKE = 0x0012,
37 	RTW_PHL_SER_L0_RCVY_EN = 0x0013,
38 };
39 
40 #endif /* __PHL_SER_DEF_H__ */
41