-
Notifications
You must be signed in to change notification settings - Fork 0
/
modules.mk
102 lines (84 loc) · 2.44 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
#
# 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.
#
# Tegra pcie host
BOARD_VENDOR_KERNEL_MODULES_LOAD := \
pci-tegra
# Nvhost podgov
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
governor_pod_scaling
# Proprietary gpu driver
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
nvgpu
# Sphynx specific backlight driver
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
lp855x_bl
# Realtek 8168
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
r8168
# Bluedroid power management
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
bluedroid_pm
# Sphynx specific audio drivers
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
snd-soc-max98357a \
snd-soc-rt5677 \
snd-soc-nau8825
# 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-rt5677-mobile
# 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
# USB Storage
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
usb-storage
# USB Modem
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
cdc-acm
# Misc Controllers
BOARD_VENDOR_KERNEL_MODULES_LOAD += \
hid-xinmo \
hid-betopff
# Copy to recovery
BOARD_RECOVERY_RAMDISK_KERNEL_MODULES_LOAD := \
hid-nvidia-blake \
hid-jarvis-remote \
usb-storage
RECOVERY_KERNEL_MODULES := $(addsuffix .ko,$(BOARD_RECOVERY_RAMDISK_KERNEL_MODULES_LOAD))