Skip to content

Commit 65783d7

Browse files
author
hefayun
committed
Kernel: Xiaomi kernel changes for Xiaomi 12T Android S
The Patch based on Mediatek release TAG:t-alps-release-s0.mp1.tc8sp2-mt6983-V1.0.1 The kernel config file used is mikrn_plato_defconfig Signed-off-by: hefayun <hefayun@xiaomi.com>
0 parents  commit 65783d7

File tree

4,767 files changed

+2811419
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,767 files changed

+2811419
-0
lines changed

connectivity/bt/mt66xx/Android.mk

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
LOCAL_PATH := $(call my-dir)
2+
LOCAL_PATH_B := $(LOCAL_PATH)
3+
4+
BT_PLATFORM:=$(subst MTK_CONSYS_MT,,$(MTK_BT_CHIP))
5+
$(info [BT_Drv] MTK_BT_SUPPORT = $(MTK_BT_SUPPORT))
6+
$(info [BT_Drv] MTK_BT_CHIP = $(MTK_BT_CHIP))
7+
8+
ifeq ($(strip $(MTK_BT_SUPPORT)), yes)
9+
ifneq (true,$(strip $(TARGET_NO_KERNEL)))
10+
# connac1x
11+
LOG_TAG := [BT_Drv][wmt]
12+
BT_PLATFORM := connac1x
13+
include $(LOCAL_PATH_B)/wmt/Android.mk
14+
15+
# connac20
16+
LOG_TAG := [BT_Drv][btif]
17+
#BT_PLATFORM := 6885
18+
#include $(LOCAL_PATH_B)/btif/Android.mk
19+
#BT_PLATFORM := 6893
20+
#include $(LOCAL_PATH_B)/btif/Android.mk
21+
#BT_PLATFORM := 6877
22+
#include $(LOCAL_PATH_B)/btif/Android.mk
23+
BT_PLATFORM := 6983
24+
include $(LOCAL_PATH_B)/btif/Android.mk
25+
#BT_PLATFORM := 6879
26+
#include $(LOCAL_PATH_B)/btif/Android.mk
27+
BT_PLATFORM := 6895
28+
include $(LOCAL_PATH_B)/btif/Android.mk
29+
endif
30+
endif
31+
32+
#dirs := btif
33+
#include $(call all-named-subdir-makefiles, $(dirs))

connectivity/bt/mt66xx/Makefile

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
export KERNEL_SRC := /lib/modules/$(shell uname -r)/build
2+
#################### Configurations ####################
3+
# Compile Options for bt driver configuration.
4+
CONFIG_SUPPORT_BT_DL_WIFI_PATCH=y
5+
CONFIG_SUPPORT_BLUEZ=n
6+
CONFIG_SUPPORT_DVT=n
7+
CONFIG_SUPPORT_MULTI_DEV_NODE=n
8+
9+
ifeq ($(CONFIG_SUPPORT_BT_DL_WIFI_PATCH), y)
10+
ccflags-y += -DCFG_SUPPORT_BT_DL_WIFI_PATCH=1
11+
else
12+
ccflags-y += -DCFG_SUPPORT_BT_DL_WIFI_PATCH=0
13+
endif
14+
15+
ifeq ($(CONFIG_SUPPORT_BLUEZ), y)
16+
ccflags-y += -DCFG_SUPPORT_BLUEZ=1
17+
ccflags-y += -DCFG_SUPPORT_HW_DVT=0
18+
else
19+
ccflags-y += -DCFG_SUPPORT_BLUEZ=0
20+
ccflags-y += -DCFG_SUPPORT_HW_DVT=1
21+
endif
22+
23+
ifeq ($(CONFIG_SUPPORT_DVT), y)
24+
ccflags-y += -DCFG_SUPPORT_DVT=1
25+
else
26+
ccflags-y += -DCFG_SUPPORT_DVT=0
27+
endif
28+
29+
ifeq ($(CONFIG_SUPPORT_DVT), y)
30+
ccflags-y += -DCFG_SUPPORT_DVT=1
31+
else
32+
ccflags-y += -DCFG_SUPPORT_DVT=0
33+
endif
34+
35+
ifeq ($(CONFIG_SUPPORT_MULTI_DEV_NODE), y)
36+
ccflags-y += -DCFG_SUPPORT_MULTI_DEV_NODE=1
37+
else
38+
ccflags-y += -DCFG_SUPPORT_MULTI_DEV_NODE=0
39+
endif
40+
41+
#################### Configurations ####################
42+
# For chip interface, driver supports "usb", "sdio", "uart" and "btif"
43+
MTK_CHIP_IF := usb
44+
45+
ifeq ($(MTK_CHIP_IF), sdio)
46+
MOD_NAME = btmtk_sdio_unify
47+
CFILES := sdio/btmtksdio.c btmtk_woble.c btmtk_buffer_mode.c btmtk_chip_reset.c
48+
ccflags-y += -DCHIP_IF_SDIO
49+
ccflags-y += -DSDIO_DEBUG=0
50+
ccflags-y += -I$(src)/include/sdio
51+
else ifeq ($(MTK_CHIP_IF), usb)
52+
MOD_NAME = btmtk_usb_unify
53+
CFILES := usb/btmtkusb.c btmtk_woble.c btmtk_chip_reset.c
54+
ccflags-y += -DCHIP_IF_USB
55+
ccflags-y += -I$(src)/include/usb
56+
else ifeq ($(MTK_CHIP_IF), uart)
57+
MOD_NAME = btmtk_uart_unify
58+
CFILES := uart/btmtk_uart_main.c
59+
ccflags-y += -DCHIP_IF_UART
60+
ccflags-y += -I$(src)/include/uart
61+
else
62+
MOD_NAME = btmtkbtif_unify
63+
CFILES := btif/btmtk_btif.c
64+
ccflags-y += -DCHIP_IF_BTIF
65+
ccflags-y += -I$(src)/include/btif
66+
endif
67+
68+
CFILES += btmtk_main.c btmtk_fw_log.c
69+
70+
ccflags-y += -I$(src)/include/ -I$(src)/
71+
72+
$(MOD_NAME)-objs := $(CFILES:.c=.o)
73+
74+
obj-m += $(MOD_NAME).o
75+
76+
77+
#VPATH = /opt/toolchains/gcc-linaro-aarch64-linux-gnu-4.9-2014.09_linux
78+
#UART_MOD_NAME = btmtk_uart
79+
#UART_CFILES := \
80+
# btmtk_uart_main.c
81+
#$(UART_MOD_NAME)-objs := $(UART_CFILES:.c=.o)
82+
###############################################################################
83+
# Common
84+
###############################################################################
85+
#obj-m := $(UART_MOD_NAME).o
86+
all:
87+
make -C $(KERNEL_SRC) M=$(PWD) modules
88+
clean:
89+
make -C $(KERNEL_SRC) M=$(PWD) clean
90+
# Check coding style
91+
# export IGNORE_CODING_STYLE_RULES := NEW_TYPEDEFS,LEADING_SPACE,CODE_INDENT,SUSPECT_CODE_INDENT
92+
ccs:
93+
./util/checkpatch.pl -f ./sdio/btmtksdio.c
94+
./util/checkpatch.pl -f ./include/sdio/btmtk_sdio.h
95+
./util/checkpatch.pl -f ./include/btmtk_define.h
96+
./util/checkpatch.pl -f ./include/btmtk_drv.h
97+
./util/checkpatch.pl -f ./include/btmtk_chip_if.h
98+
./util/checkpatch.pl -f ./include/btmtk_main.h
99+
./util/checkpatch.pl -f ./include/btmtk_buffer_mode.h
100+
./util/checkpatch.pl -f ./include/btmtk_fw_log.h
101+
./util/checkpatch.pl -f ./include/btmtk_woble.h
102+
./util/checkpatch.pl -f ./include/uart/btmtk_uart.h
103+
./util/checkpatch.pl -f ./uart/btmtk_uart_main.c
104+
./util/checkpatch.pl -f ./include/usb/btmtk_usb.h
105+
./util/checkpatch.pl -f ./usb/btmtkusb.c
106+
./util/checkpatch.pl -f btmtk_fw_log.c
107+
./util/checkpatch.pl -f btmtk_main.c
108+
./util/checkpatch.pl -f btmtk_buffer_mode.c
109+
./util/checkpatch.pl -f btmtk_woble.c
110+
./util/checkpatch.pl -f btmtk_chip_reset.c
111+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#Please follow the example pattern
2+
#There are some SPACES between parameter and parameter
3+
4+
[Country Code]
5+
[Index] BR_EDR_PWR_MODE, | EDR_MAX_TX_PWR, | BLE_DEFAULT_TX_PWR, | BLE_DEFAULT_TX_PWR_2M, | BLE_LR_S2, | BLE_LR_S8
6+
7+
[AU,SA]
8+
[BT0] 1, 1.75, 1.5, 1, 1, 1
9+
[BT1] 1, 2.75, 2.5, 2, 1, 1
10+
11+
[TW,US]
12+
[BT0] 1, 14, 15, 16, 20, 20
13+
[BT1] 1, 17, 17, 17, 20, 20
14+
15+
[JP]
16+
[BT0] 0, 5.25, -3, -3, -2, -2
17+
[BT1] 0, 5.5, -2.5, -2, -2, -2
18+
19+
[DE]
20+
[BT0] 0, -32, -29, -29, -29, -29
21+
[BT1] 0, -32, -29, -29, -29, -29
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
LOCAL_PATH := $(call my-dir)
2+
3+
include $(CLEAR_VARS)
4+
LOCAL_MODULE := bt_drv_$(BT_PLATFORM).ko
5+
LOCAL_PROPRIETARY_MODULE := true
6+
LOCAL_MODULE_OWNER := mtk
7+
LOCAL_INIT_RC := init.bt_drv.rc
8+
LOCAL_SRC_FILES := $(patsubst $(LOCAL_PATH)/%,%,$(shell find $(LOCAL_PATH) -type f -name '*.[cho]')) Makefile
9+
LOCAL_REQUIRED_MODULES := conninfra.ko
10+
LOCAL_REQUIRED_MODULES += connfem.ko
11+
include $(MTK_KERNEL_MODULE)
12+
BT_OPTS := BT_PLATFORM=$(BT_PLATFORM) LOG_TAG=$(LOG_TAG)
13+
$(info $(LOG_TAG) BT_OPTS = $(BT_OPTS))
14+
$(linked_module): OPTS += $(BT_OPTS)
15+
16+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
LOCAL_PATH := $(call my-dir)
2+
3+
ifneq (true,$(strip $(TARGET_NO_KERNEL)))
4+
5+
include $(CLEAR_VARS)
6+
LOCAL_MODULE := bt_drv.ko
7+
LOCAL_PROPRIETARY_MODULE := true
8+
LOCAL_MODULE_OWNER := mtk
9+
10+
LOCAL_INIT_RC := init.bt_drv.rc
11+
LOCAL_SRC_FILES := $(patsubst $(LOCAL_PATH)/%,%,$(shell find $(LOCAL_PATH) -type f -name '*.[cho]')) Makefile
12+
LOCAL_REQUIRED_MODULES := conninfra.ko
13+
14+
include $(MTK_KERNEL_MODULE)
15+
16+
#### Copy Module.symvers from $(LOCAL_REQUIRED_MODULES) to this module #######
17+
#### For symbol link (when CONFIG_MODVERSIONS is defined)
18+
CONN_INFRA_EXPORT_SYMBOL := $(subst $(LOCAL_MODULE),$(LOCAL_REQUIRED_MODULES),$(intermediates)/LINKED)/Module.symvers
19+
$(CONN_INFRA_EXPORT_SYMBOL): $(subst $(LOCAL_MODULE),$(LOCAL_REQUIRED_MODULES),$(linked_module))
20+
BT_EXPORT_SYMBOL := $(intermediates)/LINKED/Module.symvers
21+
$(BT_EXPORT_SYMBOL).in: $(intermediates)/LINKED/% : $(CONN_INFRA_EXPORT_SYMBOL)
22+
$(copy-file-to-target)
23+
cp $(CONN_INFRA_EXPORT_SYMBOL) $(BT_EXPORT_SYMBOL)
24+
25+
$(linked_module): $(BT_EXPORT_SYMBOL).in
26+
27+
endif

connectivity/bt/mt66xx/btif/Makefile

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
###############################################################################
2+
# Bluetooth character device driver
3+
4+
###############################################################################
5+
6+
# ---------------------------------------------------
7+
# Compile Options
8+
# ---------------------------------------------------
9+
10+
ifndef TOP
11+
TOP := $(srctree)/..
12+
endif
13+
14+
ifneq ($(KERNEL_OUT),)
15+
ccflags-y += -imacros $(KERNEL_OUT)/include/generated/autoconf.h
16+
endif
17+
18+
# Force build fail on modpost warning
19+
KBUILD_MODPOST_FAIL_ON_WARNINGS := y
20+
21+
# platform
22+
23+
ifeq ($(CONFIG_WLAN_DRV_BUILD_IN),y)
24+
$(info build-in mode!)
25+
$(info _MTK_BT_CHIP = $(_MTK_BT_CHIP))
26+
# _MTK_BT_CHIP comes from conninfra setting
27+
BT_PLATFORM = $(patsubst MTK_CONSYS_MT%,%,$(strip $(_MTK_BT_CHIP)))
28+
endif
29+
30+
31+
$(info $(LOG_TAG) TARGET_BUILD_VARIANT = $(TARGET_BUILD_VARIANT))
32+
ifeq ("$(TARGET_BUILD_VARIANT)","user")
33+
ccflags-y += -D FW_LOG_DEFAULT_ON=0
34+
else
35+
ccflags-y += -D FW_LOG_DEFAULT_ON=1
36+
endif
37+
38+
39+
ccflags-y += -D CONNAC20_CHIPID=$(BT_PLATFORM)
40+
$(info $(LOG_TAG) BT_PLATFORM = $(BT_PLATFORM))
41+
$(info $(LOG_TAG) srctree = $(srctree))
42+
43+
# ---------------------------------------------------
44+
# Compile Options: set feature flag (1: enable, 0: disable)
45+
# ---------------------------------------------------
46+
47+
# build btif interface
48+
ccflags-y += -D CHIP_IF_BTIF
49+
50+
# Use device node or hci_dev as native interface
51+
ccflags-y += -D USE_DEVICE_NODE=1
52+
53+
# Customized fw update feature
54+
ccflags-y += -D CUSTOMER_FW_UPDATE=0
55+
56+
# pm_qos control
57+
ccflags-y += -D PM_QOS_CONTROL=0
58+
59+
# No function, only for build pass
60+
ccflags-y += -D CONFIG_MP_WAKEUP_SOURCE_SYSFS_STAT=1
61+
62+
# Customized feature, load 1b fw bin
63+
#ccflags-y += -D BT_CUS_FEATURE
64+
65+
# ---------------------------------------------------
66+
# Include Path
67+
# ---------------------------------------------------
68+
CONN_INFRA_SRC := $(TOP)/vendor/mediatek/kernel_modules/connectivity/conninfra
69+
CONNFEM_SRC := $(TOP)/vendor/mediatek/kernel_modules/connectivity/connfem
70+
WMT_SRC := $(TOP)/vendor/mediatek/kernel_modules/connectivity/common
71+
BTIF_SRC := $(srctree)/drivers/misc/mediatek/btif
72+
ccflags-y += -I$(srctree)/drivers/misc/mediatek/connectivity/common
73+
ccflags-y += -I$(srctree)/drivers/misc/mediatek/include/mt-plat/
74+
ccflags-y += -I$(srctree)/drivers/misc/mediatek/connectivity/power_throttling
75+
ccflags-y += -I$(srctree)/drivers/gpu/drm/mediatek/mediatek_v2/
76+
ccflags-y += -I$(CONN_INFRA_SRC)/include
77+
ccflags-y += -I$(CONN_INFRA_SRC)/debug_utility/include
78+
ccflags-y += -I$(CONN_INFRA_SRC)/debug_utility/metlog
79+
ccflags-y += -I$(CONN_INFRA_SRC)/debug_utility/
80+
ccflags-y += -I$(CONNFEM_SRC)/include
81+
ccflags-y += -I$(WMT_SRC)/debug_utility
82+
ccflags-y += -I$(BTIF_SRC)/common/inc
83+
84+
ccflags-y += -I$(src)/core/include
85+
ccflags-y += -I$(src)/connsys/connac_2_0
86+
ccflags-y += -I$(src)/../include
87+
ccflags-y += -I$(src)/../include/btif
88+
89+
# ---------------------------------------------------
90+
# Objects List
91+
# ---------------------------------------------------
92+
MODULE_NAME := bt_drv_$(BT_PLATFORM)
93+
ifeq ($(CONFIG_WLAN_DRV_BUILD_IN),y)
94+
obj-y += $(MODULE_NAME).o
95+
else
96+
obj-m += $(MODULE_NAME).o
97+
endif
98+
99+
CORE_OBJS := btmtk_dbg.o btmtk_dbg_tp_evt_if.o btmtk_irq.o btmtk_char_dev.o ../btmtk_fw_log.o ../btmtk_main.o
100+
CHIP_OBJS := btmtk_mt66xx.o
101+
HIF_OBJS := btmtk_btif_main.o btmtk_queue.o
102+
103+
$(MODULE_NAME)-objs += $(CORE_OBJS)
104+
$(MODULE_NAME)-objs += $(HIF_OBJS)
105+
$(MODULE_NAME)-objs += $(CHIP_OBJS)
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
CONFIG_MODULE_SIG=n
2+
export KERNEL_SRC := /lib/modules/$(shell uname -r)/build
3+
4+
#################### Configurations ####################
5+
# For chip interface, driver supports "usb", "sdio", "uart" and "btif"
6+
MTK_CHIP_IF := uart
7+
8+
ifeq ($(MTK_CHIP_IF), sdio)
9+
MOD_NAME = btmtksdio
10+
CFILES := btmtk_sdio.c
11+
ccflags-y += -DCHIP_IF_SDIO
12+
else ifeq ($(MTK_CHIP_IF), usb)
13+
MOD_NAME = btmtk_usb
14+
CFILES := btmtkusb.c
15+
ccflags-y += -DCHIP_IF_USB
16+
else ifeq ($(MTK_CHIP_IF), uart)
17+
MOD_NAME = btmtk_uart
18+
CFILES := btmtk_uart_main.c btmtk_mt76xx.c
19+
ccflags-y += -DCHIP_IF_UART
20+
else
21+
MOD_NAME = btmtkbtif
22+
CFILES := btmtk_btif_main.c btmtk_mt66xx.c
23+
ccflags-y += -DCHIP_IF_BTIF
24+
endif
25+
26+
CFILES += btmtk_main.c
27+
28+
ccflags-y += -I$(src)/include/ -I$(src)/
29+
30+
$(MOD_NAME)-objs := $(CFILES:.c=.o)
31+
32+
obj-m += $(MOD_NAME).o
33+
34+
35+
#VPATH = /opt/toolchains/gcc-linaro-aarch64-linux-gnu-4.9-2014.09_linux
36+
#UART_MOD_NAME = btmtk_uart
37+
#UART_CFILES := \
38+
# btmtk_uart_main.c
39+
#$(UART_MOD_NAME)-objs := $(UART_CFILES:.c=.o)
40+
###############################################################################
41+
# Common
42+
###############################################################################
43+
#obj-m := $(UART_MOD_NAME).o
44+
all:
45+
make -C $(KERNEL_SRC) M=$(PWD) modules
46+
clean:
47+
make -C $(KERNEL_SRC) M=$(PWD) clean
48+
# Check coding style
49+
# export IGNORE_CODING_STYLE_RULES := NEW_TYPEDEFS,LEADING_SPACE,CODE_INDENT,SUSPECT_CODE_INDENT
50+
ccs:
51+
./util/checkpatch.pl --no-tree --show-types --max-line-length=120 --ignore $(IGNORE_CODING_STYLE_RULES) -f btmtk_main.c
52+
./util/checkpatch.pl --no-tree --show-types --max-line-length=120 --ignore $(IGNORE_CODING_STYLE_RULES) -f btmtk_sdio.c
53+
./util/checkpatch.pl --no-tree --show-types --max-line-length=120 --ignore $(IGNORE_CODING_STYLE_RULES) -f btmtk_sdio.h
54+
./util/checkpatch.pl --no-tree --show-types --max-line-length=120 --ignore $(IGNORE_CODING_STYLE_RULES) -f btmtk_config.h
55+
./util/checkpatch.pl --no-tree --show-types --max-line-length=120 --ignore $(IGNORE_CODING_STYLE_RULES) -f btmtk_define.h
56+
./util/checkpatch.pl --no-tree --show-types --max-line-length=120 --ignore $(IGNORE_CODING_STYLE_RULES) -f btmtk_drv.h
57+

0 commit comments

Comments
 (0)