-
Notifications
You must be signed in to change notification settings - Fork 0
/
modules.mk
119 lines (98 loc) · 2.69 KB
/
modules.mk
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
#
# Copyright (C) 2022-2023 The LineageOS Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Nvhost podgov
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
governor_pod_scaling
# Proprietary gpu driver
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
nvgpu
# Tegra sata
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
ahci_tegra
# Realtek 8168
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
r8168
# Bluedroid power management
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
bluedroid_pm
# Tegra hdmi audio
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
snd-hda-tegra
# Tegra audio processing engine
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
snd-soc-tegra210-alt-xbar \
snd-soc-tegra210-alt-admaif \
snd-soc-tegra210-alt-sfc \
snd-soc-tegra210-alt-i2s \
snd-soc-tegra210-alt-mixer \
snd-soc-tegra210-alt-afc \
snd-soc-tegra210-alt-adx \
snd-soc-tegra210-alt-amx \
snd-soc-tegra210-alt-dmic \
snd-soc-tegra210-alt-mvc \
snd-soc-tegra210-alt-ope \
snd-soc-tegra-machine-driver
# Userspace aes crypto access
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
tegra-cryptodev
# Input cpufreq boost
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
input-cfboost
# Fan
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
pwm_fan \
therm_fan_est
# Power Monitor
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
ina3221
# TV Tuners
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
videobuf-dvb \
lgdt3306a \
si2168 \
si2157 \
lgdt3305 \
tda18272 \
em28xx-dvb \
em28xx-rc \
cx25840 \
cx231xx-dvb
# FS
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
exfat
# USB Modem
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
cdc-acm
# Nvidia Controllers
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
ozwpan \
hid-nvidia-blake \
hid-jarvis-remote
# Misc Controllers
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
hid-xinmo \
hid-betopff
# Load in first stage boot
BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD := \
pci-tegra \
usb-storage
# Copy to recovery
BOARD_RECOVERY_RAMDISK_KERNEL_MODULES_LOAD := \
exfat \
hid-nvidia-blake \
hid-jarvis-remote
BOOT_KERNEL_MODULES := $(addsuffix .ko,$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD))
RECOVERY_KERNEL_MODULES := $(addsuffix .ko,$(BOARD_RECOVERY_RAMDISK_KERNEL_MODULES_LOAD))