blob: 3e7af99929833c665ada657dde6b32f1169d3907 (
plain) (
blame)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
config MTK_COMBO
tristate "MediaTek Connectivity Combo Chip Support"
help
MTK connectivity combo chip driver for MT66xx
#
# MTK Combo Chip Selection
#
choice
prompt "Select Chip"
depends on MTK_COMBO
config MTK_COMBO_CHIP_MT6620
bool "MT6620"
config MTK_COMBO_CHIP_MT6628
bool "MT6628"
config MTK_COMBO_CHIP_MT6630
bool "MT6630"
config MTK_COMBO_CHIP_CONSYS_6572
bool "CONSYS_6572"
config MTK_COMBO_CHIP_CONSYS_6582
bool "CONSYS_6582"
config MTK_COMBO_CHIP_CONSYS_8127
bool "CONSYS_8127"
config MTK_COMBO_CHIP_CONSYS_6752
bool "CONSYS_6752"
config MTK_COMBO_CHIP_CONSYS_6592
bool "CONSYS_6592"
config MTK_COMBO_CHIP_CONSYS_8163
bool "CONSYS_8163"
config MTK_COMBO_CHIP_CONSYS_6735
bool "CONSYS_6735"
config MTK_COMBO_CHIP_CONSYS_6580
bool "CONSYS_6580"
endchoice
config MTK_COMBO_CHIP
string
default "MT6620" if MTK_COMBO_CHIP_MT6620
default "MT6628" if MTK_COMBO_CHIP_MT6628
default "MT6630" if MTK_COMBO_CHIP_MT6630
default "CONSYS_6572" if MTK_COMBO_CHIP_CONSYS_6572
default "CONSYS_6582" if MTK_COMBO_CHIP_CONSYS_6582
default "CONSYS_8127" if MTK_COMBO_CHIP_CONSYS_8127
default "CONSYS_6752" if MTK_COMBO_CHIP_CONSYS_6752
default "CONSYS_6592" if MTK_COMBO_CHIP_CONSYS_6592
default "CONSYS_8163" if MTK_COMBO_CHIP_CONSYS_8163
default "CONSYS_6735" if MTK_COMBO_CHIP_CONSYS_6735
default "CONSYS_6580" if MTK_COMBO_CHIP_CONSYS_6580
help
this feature is used to identify combo chip version or SOC chip
consys version.
#
# Target Platform Selection
#
config MTK_COMBO_PLAT_PATH
string "Platform folder name"
depends on MTK_COMBO
default "sample" if MTK_COMBO_PLAT_SAMPLE
help
Specify platform folder under common driver platform folder:
mtk_wcn_combo/common/platform/*
#
# MTK COMBO Chip Configuration
#
config MTK_COMBO_COMM
depends on MTK_COMBO
tristate "MediaTek Combo Chip Common part driver"
help
MediaTek combo chip common part driver
#config MTK_COMBO_COMM_PS
# depends on MTK_COMBO_COMM
# bool "Enable PS support"
# default n
# help
# Enable PS support of common UART interface
config MTK_COMBO_COMM_UART
depends on MTK_COMBO_COMM
tristate "Common interface UART"
help
Use UART for common part interface type
config MTK_COMBO_COMM_SDIO
depends on MTK_COMBO_COMM
tristate "Common interface SDIO"
help
Use SDIO for common part interface type
config MTK_COMBO_COMM_NPWR
depends on MTK_COMBO_COMM
bool "Enable NPWR support"
default n
help
Enable NPWR support of new power on swquence
config MTK_COMBO_BT
tristate "MediaTek Combo Chip BT driver"
depends on MTK_COMBO
help
MTK BT /dev/stpbt driver for Bluedroid
config MTK_COMBO_ANT
tristate "MediaTek Combo Chip ANT driver"
depends on MTK_COMBO
help
MTK ANT /dev/stpant driver for ANT
config MTK_COMBO_BT_HCI
tristate "MediaTek Combo Chip BlueZ driver"
depends on BT && MTK_COMBO
help
MTK BT driver for BlueZ
config MTK_COMBO_GPS
tristate "MediaTek Combo Chip GPS driver"
depends on MTK_COMBO
help
MTK GPS /dev/stpgps driver
|