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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2022 Rockchip Electronics Co. Ltd.
 *
 * it66353 HDMI 3 in 1 out driver.
 *
 * Author: Kenneth.Hung@ite.com.tw
 *        Wangqiang Guo <kay.guo@rock-chips.com>
 * Version: IT66353_SAMPLE_1.08
 *
 */
#ifdef __init_str_SYS_FSM_STATE
static char *s__SYS_FSM_STATE[]    = {
   "RX_TOGGLE_HPD",
   "RX_PORT_CHANGE",
   "TX_OUTPUT",
   "TX_OUTPUT_PREPARE",
   "RX_CHECK_EQ",
   "SETUP_AFE",
   "RX_WAIT_CLOCK",
   "RX_HPD",
   "TX_GOT_HPD",
   "TX_WAIT_HPD",
   "TX_UNPLUG",
   "RX_UNPLUG",
   "IDLE",
};
 
#endif
#ifdef __init_str_DEV_FSM_STATE
static char *s__DEV_FSM_STATE[] = {
   "DEV_DEVICE_LOOP",
   "DEV_DEVICE_INIT",
   "DEV_WAIT_DEVICE_READY",
   "DEV_FW_VAR_INIT",
   "DEV_WAIT_RESET",
};
 
#endif
#ifdef __init_str_AEQ_FSM_STATE
static char *s__AEQ_FSM_STATE[] = {
   "AEQ_OFF",
   "AEQ_START",
   "AEQ_CHECK_SAREQ_RESULT",
   "AEQ_APPLY_SAREQ",
   "AEQ_DONE",
   "AEQ_FAIL",
   "AEQ_MAX",
};
 
#endif
#ifdef __init_str_EQ_RESULT_TYPE
static char *s__EQ_RESULT_TYPE[] = {
   "EQRES_UNKNOWN",
   "EQRES_BUSY",
   "EQRES_SAREQ_DONE",
   "EQRES_SAREQ_FAIL",
   "EQRES_SAREQ_TIMEOUT",
   "EQRES_H14EQ_DONE",
   "EQRES_H14EQ_FAIL",
   "EQRES_H14EQ_TIMEOUT",
   "EQRES_DONE",
};
 
#endif
#ifdef __init_str_SYS_AEQ_TYPE
static char *s__SYS_AEQ_TYPE[] = {
   "SysAEQ_OFF",
   "SysAEQ_RUN",
   "SysAEQ_DONE",
};
 
#endif