mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
Merge pull request #3496 from jernejsk/linux_51_final
Allwinner: update to Linux 5.1
This commit is contained in:
commit
0fffb04df6
@ -0,0 +1,15 @@
|
|||||||
|
diff -Nur a/driver/product/kernel/drivers/gpu/arm/midgard/mali_kbase_mem_linux.c b/driver/product/kernel/drivers/gpu/arm/midgard/mali_kbase_mem_linux.c
|
||||||
|
--- a/driver/product/kernel/drivers/gpu/arm/midgard/mali_kbase_mem_linux.c 2019-04-18 22:11:29.000000000 +0200
|
||||||
|
+++ b/driver/product/kernel/drivers/gpu/arm/midgard/mali_kbase_mem_linux.c 2019-04-18 22:15:09.982940904 +0200
|
||||||
|
@@ -1661,7 +1661,11 @@
|
||||||
|
static int kbase_cpu_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
|
||||||
|
{
|
||||||
|
#else
|
||||||
|
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 17, 0))
|
||||||
|
static int kbase_cpu_vm_fault(struct vm_fault *vmf)
|
||||||
|
+#else
|
||||||
|
+static vm_fault_t kbase_cpu_vm_fault(struct vm_fault *vmf)
|
||||||
|
+#endif
|
||||||
|
{
|
||||||
|
struct vm_area_struct *vma = vmf->vma;
|
||||||
|
#endif
|
@ -0,0 +1,14 @@
|
|||||||
|
diff -Nur a/driver/src/devicedrv/mali/linux/mali_memory.c b/driver/src/devicedrv/mali/linux/mali_memory.c
|
||||||
|
--- a/driver/src/devicedrv/mali/linux/mali_memory.c 2018-09-13 08:52:20.000000000 +0200
|
||||||
|
+++ b/driver/src/devicedrv/mali/linux/mali_memory.c 2019-04-18 19:58:27.389785486 +0200
|
||||||
|
@@ -70,7 +70,9 @@
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 17, 0)
|
||||||
|
+static vm_fault_t mali_mem_vma_fault(struct vm_fault *vmf)
|
||||||
|
+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
|
||||||
|
static int mali_mem_vma_fault(struct vm_fault *vmf)
|
||||||
|
#else
|
||||||
|
static int mali_mem_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
|
@ -0,0 +1,12 @@
|
|||||||
|
diff --git a/arch/arm/boot/dts/sunxi-bananapi-m2-plus.dtsi b/arch/arm/boot/dts/sunxi-bananapi-m2-plus.dtsi
|
||||||
|
index 39263e74fbb5..0ec6109ec625 100644
|
||||||
|
--- a/arch/arm/boot/dts/sunxi-bananapi-m2-plus.dtsi
|
||||||
|
+++ b/arch/arm/boot/dts/sunxi-bananapi-m2-plus.dtsi
|
||||||
|
@@ -219,6 +219,7 @@
|
||||||
|
|
||||||
|
bluetooth {
|
||||||
|
compatible = "brcm,bcm43438-bt";
|
||||||
|
+ max-speed = <1500000>;
|
||||||
|
clocks = <&rtc 1>;
|
||||||
|
clock-names = "lpo";
|
||||||
|
vbat-supply = <®_vcc3v3>;
|
@ -125,81 +125,6 @@ index ff11cbeba205..b98add3cdedd 100644
|
|||||||
2.20.1
|
2.20.1
|
||||||
|
|
||||||
|
|
||||||
From b4ca53c594950b80d71ac320b3505a303e7f6092 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
|
||||||
Date: Mon, 28 Jan 2019 20:05:47 +0100
|
|
||||||
Subject: [PATCH 4/6] dt-bindings: sram: sunxi: Add compatible for the H6 SRAM
|
|
||||||
C1
|
|
||||||
|
|
||||||
This introduces a new compatible for the H6 SRAM C1 section, that is
|
|
||||||
compatible with the SRAM C1 section as found on the A10.
|
|
||||||
|
|
||||||
Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net>
|
|
||||||
---
|
|
||||||
Documentation/devicetree/bindings/sram/sunxi-sram.txt | 1 +
|
|
||||||
1 file changed, 1 insertion(+)
|
|
||||||
|
|
||||||
diff --git a/Documentation/devicetree/bindings/sram/sunxi-sram.txt b/Documentation/devicetree/bindings/sram/sunxi-sram.txt
|
|
||||||
index ab5a70bb9a64..380246a805f2 100644
|
|
||||||
--- a/Documentation/devicetree/bindings/sram/sunxi-sram.txt
|
|
||||||
+++ b/Documentation/devicetree/bindings/sram/sunxi-sram.txt
|
|
||||||
@@ -63,6 +63,7 @@ The valid sections compatible for H5 are:
|
|
||||||
|
|
||||||
The valid sections compatible for H6 are:
|
|
||||||
- allwinner,sun50i-h6-sram-c, allwinner,sun50i-a64-sram-c
|
|
||||||
+ - allwinner,sun50i-h6-sram-c1, allwinner,sun4i-a10-sram-c1
|
|
||||||
|
|
||||||
The valid sections compatible for F1C100s are:
|
|
||||||
- allwinner,suniv-f1c100s-sram-d, allwinner,sun4i-a10-sram-d
|
|
||||||
--
|
|
||||||
2.20.1
|
|
||||||
|
|
||||||
|
|
||||||
From 6a505c910b90581b2a980e52f9b6fcb03d234cb7 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
|
||||||
Date: Mon, 28 Jan 2019 19:53:30 +0100
|
|
||||||
Subject: [PATCH 5/6] arm64: dts: allwinner: h6: Add support for the SRAM C1
|
|
||||||
section
|
|
||||||
|
|
||||||
Add a node for H6 SRAM C1 section.
|
|
||||||
|
|
||||||
Manual calls it VE SRAM, but for consistency with older SoCs, SRAM C1
|
|
||||||
name is used.
|
|
||||||
|
|
||||||
Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net>
|
|
||||||
---
|
|
||||||
arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi | 14 ++++++++++++++
|
|
||||||
1 file changed, 14 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi b/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi
|
|
||||||
index d93a7add67e7..247dc0a5ce89 100644
|
|
||||||
--- a/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi
|
|
||||||
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi
|
|
||||||
@@ -167,6 +167,20 @@
|
|
||||||
reg = <0x0000 0x1e000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
+
|
|
||||||
+ sram_c1: sram@1a00000 {
|
|
||||||
+ compatible = "mmio-sram";
|
|
||||||
+ reg = <0x01a00000 0x200000>;
|
|
||||||
+ #address-cells = <1>;
|
|
||||||
+ #size-cells = <1>;
|
|
||||||
+ ranges = <0 0x01a00000 0x200000>;
|
|
||||||
+
|
|
||||||
+ ve_sram: sram-section@0 {
|
|
||||||
+ compatible = "allwinner,sun50i-h6-sram-c1",
|
|
||||||
+ "allwinner,sun4i-a10-sram-c1";
|
|
||||||
+ reg = <0x000000 0x200000>;
|
|
||||||
+ };
|
|
||||||
+ };
|
|
||||||
};
|
|
||||||
|
|
||||||
ccu: clock@3001000 {
|
|
||||||
--
|
|
||||||
2.20.1
|
|
||||||
|
|
||||||
|
|
||||||
From c1b3128ac98c05c0afde4e6e065d6b1f2ae1dfa7 Mon Sep 17 00:00:00 2001
|
From c1b3128ac98c05c0afde4e6e065d6b1f2ae1dfa7 Mon Sep 17 00:00:00 2001
|
||||||
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
||||||
Date: Mon, 28 Jan 2019 19:59:27 +0100
|
Date: Mon, 28 Jan 2019 19:59:27 +0100
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/arm64 5.0.8 Kernel Configuration
|
# Linux/arm64 5.1.0 Kernel Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# Compiler: gcc (Ubuntu 7.2.0-8ubuntu3.2) 7.2.0
|
# Compiler: aarch64-linux-gnu-gcc.real (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0
|
||||||
#
|
#
|
||||||
CONFIG_CC_IS_GCC=y
|
CONFIG_CC_IS_GCC=y
|
||||||
CONFIG_GCC_VERSION=70200
|
CONFIG_GCC_VERSION=80300
|
||||||
CONFIG_CLANG_VERSION=0
|
CONFIG_CLANG_VERSION=0
|
||||||
CONFIG_CC_HAS_ASM_GOTO=y
|
CONFIG_CC_HAS_ASM_GOTO=y
|
||||||
|
CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y
|
||||||
CONFIG_IRQ_WORK=y
|
CONFIG_IRQ_WORK=y
|
||||||
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
||||||
CONFIG_THREAD_INFO_IN_TASK=y
|
CONFIG_THREAD_INFO_IN_TASK=y
|
||||||
@ -180,6 +181,7 @@ CONFIG_TIMERFD=y
|
|||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
CONFIG_SHMEM=y
|
CONFIG_SHMEM=y
|
||||||
CONFIG_AIO=y
|
CONFIG_AIO=y
|
||||||
|
CONFIG_IO_URING=y
|
||||||
CONFIG_ADVISE_SYSCALLS=y
|
CONFIG_ADVISE_SYSCALLS=y
|
||||||
CONFIG_MEMBARRIER=y
|
CONFIG_MEMBARRIER=y
|
||||||
CONFIG_KALLSYMS=y
|
CONFIG_KALLSYMS=y
|
||||||
@ -247,6 +249,7 @@ CONFIG_ARCH_SUNXI=y
|
|||||||
# CONFIG_ARCH_BCM2835 is not set
|
# CONFIG_ARCH_BCM2835 is not set
|
||||||
# CONFIG_ARCH_BCM_IPROC is not set
|
# CONFIG_ARCH_BCM_IPROC is not set
|
||||||
# CONFIG_ARCH_BERLIN is not set
|
# CONFIG_ARCH_BERLIN is not set
|
||||||
|
# CONFIG_ARCH_BITMAIN is not set
|
||||||
# CONFIG_ARCH_BRCMSTB is not set
|
# CONFIG_ARCH_BRCMSTB is not set
|
||||||
# CONFIG_ARCH_EXYNOS is not set
|
# CONFIG_ARCH_EXYNOS is not set
|
||||||
# CONFIG_ARCH_K3 is not set
|
# CONFIG_ARCH_K3 is not set
|
||||||
@ -305,6 +308,7 @@ CONFIG_QCOM_QDF2400_ERRATUM_0065=y
|
|||||||
CONFIG_SOCIONEXT_SYNQUACER_PREITS=y
|
CONFIG_SOCIONEXT_SYNQUACER_PREITS=y
|
||||||
CONFIG_HISILICON_ERRATUM_161600802=y
|
CONFIG_HISILICON_ERRATUM_161600802=y
|
||||||
CONFIG_QCOM_FALKOR_ERRATUM_E1041=y
|
CONFIG_QCOM_FALKOR_ERRATUM_E1041=y
|
||||||
|
CONFIG_FUJITSU_ERRATUM_010001=y
|
||||||
CONFIG_ARM64_4K_PAGES=y
|
CONFIG_ARM64_4K_PAGES=y
|
||||||
# CONFIG_ARM64_16K_PAGES is not set
|
# CONFIG_ARM64_16K_PAGES is not set
|
||||||
# CONFIG_ARM64_64K_PAGES is not set
|
# CONFIG_ARM64_64K_PAGES is not set
|
||||||
@ -377,6 +381,7 @@ CONFIG_ARM64_CNP=y
|
|||||||
CONFIG_ARM64_PTR_AUTH=y
|
CONFIG_ARM64_PTR_AUTH=y
|
||||||
CONFIG_ARM64_SVE=y
|
CONFIG_ARM64_SVE=y
|
||||||
CONFIG_ARM64_MODULE_PLTS=y
|
CONFIG_ARM64_MODULE_PLTS=y
|
||||||
|
# CONFIG_ARM64_PSEUDO_NMI is not set
|
||||||
# CONFIG_RANDOMIZE_BASE is not set
|
# CONFIG_RANDOMIZE_BASE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -389,6 +394,7 @@ CONFIG_EFI=y
|
|||||||
CONFIG_DMI=y
|
CONFIG_DMI=y
|
||||||
CONFIG_COMPAT=y
|
CONFIG_COMPAT=y
|
||||||
CONFIG_SYSVIPC_COMPAT=y
|
CONFIG_SYSVIPC_COMPAT=y
|
||||||
|
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Power management options
|
# Power management options
|
||||||
@ -426,6 +432,7 @@ CONFIG_CPU_IDLE=y
|
|||||||
CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y
|
CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y
|
||||||
# CONFIG_CPU_IDLE_GOV_LADDER is not set
|
# CONFIG_CPU_IDLE_GOV_LADDER is not set
|
||||||
CONFIG_CPU_IDLE_GOV_MENU=y
|
CONFIG_CPU_IDLE_GOV_MENU=y
|
||||||
|
# CONFIG_CPU_IDLE_GOV_TEO is not set
|
||||||
CONFIG_DT_IDLE_STATES=y
|
CONFIG_DT_IDLE_STATES=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -472,7 +479,6 @@ CONFIG_ARM_SCPI_POWER_DOMAIN=y
|
|||||||
# CONFIG_ARM_SDE_INTERFACE is not set
|
# CONFIG_ARM_SDE_INTERFACE is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_INTEL_STRATIX10_SERVICE is not set
|
|
||||||
CONFIG_HAVE_ARM_SMCCC=y
|
CONFIG_HAVE_ARM_SMCCC=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -488,6 +494,7 @@ CONFIG_EFI_ARMSTUB_DTB_LOADER=y
|
|||||||
CONFIG_EFI_CAPSULE_LOADER=y
|
CONFIG_EFI_CAPSULE_LOADER=y
|
||||||
# CONFIG_EFI_TEST is not set
|
# CONFIG_EFI_TEST is not set
|
||||||
# CONFIG_RESET_ATTACK_MITIGATION is not set
|
# CONFIG_RESET_ATTACK_MITIGATION is not set
|
||||||
|
CONFIG_EFI_EARLYCON=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Tegra firmware driver
|
# Tegra firmware driver
|
||||||
@ -580,6 +587,7 @@ CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
|
|||||||
CONFIG_STRICT_MODULE_RWX=y
|
CONFIG_STRICT_MODULE_RWX=y
|
||||||
CONFIG_REFCOUNT_FULL=y
|
CONFIG_REFCOUNT_FULL=y
|
||||||
CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
|
CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
|
||||||
|
CONFIG_ARCH_USE_MEMREMAP_PROT=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# GCOV-based kernel profiling
|
# GCOV-based kernel profiling
|
||||||
@ -588,6 +596,7 @@ CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
|
|||||||
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
|
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
|
||||||
CONFIG_PLUGIN_HOSTCC=""
|
CONFIG_PLUGIN_HOSTCC=""
|
||||||
CONFIG_HAVE_GCC_PLUGINS=y
|
CONFIG_HAVE_GCC_PLUGINS=y
|
||||||
|
# CONFIG_GCC_PLUGINS is not set
|
||||||
CONFIG_RT_MUTEXES=y
|
CONFIG_RT_MUTEXES=y
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
@ -707,6 +716,7 @@ CONFIG_SKB_EXTENSIONS=y
|
|||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_DIAG is not set
|
# CONFIG_PACKET_DIAG is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
|
CONFIG_UNIX_SCM=y
|
||||||
# CONFIG_UNIX_DIAG is not set
|
# CONFIG_UNIX_DIAG is not set
|
||||||
# CONFIG_TLS is not set
|
# CONFIG_TLS is not set
|
||||||
CONFIG_XFRM=y
|
CONFIG_XFRM=y
|
||||||
@ -818,6 +828,7 @@ CONFIG_NF_NAT_NEEDED=y
|
|||||||
CONFIG_NF_NAT_FTP=m
|
CONFIG_NF_NAT_FTP=m
|
||||||
CONFIG_NF_NAT_TFTP=m
|
CONFIG_NF_NAT_TFTP=m
|
||||||
CONFIG_NF_NAT_REDIRECT=y
|
CONFIG_NF_NAT_REDIRECT=y
|
||||||
|
CONFIG_NF_NAT_MASQUERADE=y
|
||||||
# CONFIG_NF_TABLES is not set
|
# CONFIG_NF_TABLES is not set
|
||||||
CONFIG_NETFILTER_XTABLES=m
|
CONFIG_NETFILTER_XTABLES=m
|
||||||
|
|
||||||
@ -959,8 +970,6 @@ CONFIG_NF_DEFRAG_IPV4=m
|
|||||||
# CONFIG_NF_LOG_ARP is not set
|
# CONFIG_NF_LOG_ARP is not set
|
||||||
CONFIG_NF_LOG_IPV4=m
|
CONFIG_NF_LOG_IPV4=m
|
||||||
CONFIG_NF_REJECT_IPV4=m
|
CONFIG_NF_REJECT_IPV4=m
|
||||||
CONFIG_NF_NAT_IPV4=m
|
|
||||||
CONFIG_NF_NAT_MASQUERADE_IPV4=y
|
|
||||||
CONFIG_IP_NF_IPTABLES=m
|
CONFIG_IP_NF_IPTABLES=m
|
||||||
# CONFIG_IP_NF_MATCH_AH is not set
|
# CONFIG_IP_NF_MATCH_AH is not set
|
||||||
# CONFIG_IP_NF_MATCH_ECN is not set
|
# CONFIG_IP_NF_MATCH_ECN is not set
|
||||||
@ -989,8 +998,6 @@ CONFIG_IP_NF_MANGLE=m
|
|||||||
# CONFIG_NF_DUP_IPV6 is not set
|
# CONFIG_NF_DUP_IPV6 is not set
|
||||||
CONFIG_NF_REJECT_IPV6=m
|
CONFIG_NF_REJECT_IPV6=m
|
||||||
CONFIG_NF_LOG_IPV6=m
|
CONFIG_NF_LOG_IPV6=m
|
||||||
CONFIG_NF_NAT_IPV6=m
|
|
||||||
CONFIG_NF_NAT_MASQUERADE_IPV6=y
|
|
||||||
CONFIG_IP6_NF_IPTABLES=m
|
CONFIG_IP6_NF_IPTABLES=m
|
||||||
# CONFIG_IP6_NF_MATCH_AH is not set
|
# CONFIG_IP6_NF_MATCH_AH is not set
|
||||||
# CONFIG_IP6_NF_MATCH_EUI64 is not set
|
# CONFIG_IP6_NF_MATCH_EUI64 is not set
|
||||||
@ -1213,7 +1220,6 @@ CONFIG_NET_9P=y
|
|||||||
CONFIG_DST_CACHE=y
|
CONFIG_DST_CACHE=y
|
||||||
CONFIG_GRO_CELLS=y
|
CONFIG_GRO_CELLS=y
|
||||||
# CONFIG_NET_DEVLINK is not set
|
# CONFIG_NET_DEVLINK is not set
|
||||||
CONFIG_MAY_USE_DEVLINK=y
|
|
||||||
CONFIG_FAILOVER=y
|
CONFIG_FAILOVER=y
|
||||||
CONFIG_HAVE_EBPF_JIT=y
|
CONFIG_HAVE_EBPF_JIT=y
|
||||||
|
|
||||||
@ -1257,17 +1263,6 @@ CONFIG_REGMAP_MMIO=y
|
|||||||
CONFIG_REGMAP_IRQ=y
|
CONFIG_REGMAP_IRQ=y
|
||||||
CONFIG_DMA_SHARED_BUFFER=y
|
CONFIG_DMA_SHARED_BUFFER=y
|
||||||
# CONFIG_DMA_FENCE_TRACE is not set
|
# CONFIG_DMA_FENCE_TRACE is not set
|
||||||
CONFIG_DMA_CMA=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Default contiguous memory area size:
|
|
||||||
#
|
|
||||||
CONFIG_CMA_SIZE_MBYTES=256
|
|
||||||
CONFIG_CMA_SIZE_SEL_MBYTES=y
|
|
||||||
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
|
|
||||||
# CONFIG_CMA_SIZE_SEL_MIN is not set
|
|
||||||
# CONFIG_CMA_SIZE_SEL_MAX is not set
|
|
||||||
CONFIG_CMA_ALIGNMENT=8
|
|
||||||
CONFIG_GENERIC_ARCH_TOPOLOGY=y
|
CONFIG_GENERIC_ARCH_TOPOLOGY=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1363,9 +1358,9 @@ CONFIG_MTD_NAND_DENALI_DT=y
|
|||||||
#
|
#
|
||||||
# CONFIG_MTD_LPDDR is not set
|
# CONFIG_MTD_LPDDR is not set
|
||||||
CONFIG_MTD_SPI_NOR=y
|
CONFIG_MTD_SPI_NOR=y
|
||||||
# CONFIG_MTD_MT81xx_NOR is not set
|
|
||||||
CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
|
CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
|
||||||
# CONFIG_SPI_CADENCE_QUADSPI is not set
|
# CONFIG_SPI_CADENCE_QUADSPI is not set
|
||||||
|
# CONFIG_SPI_MTK_QUADSPI is not set
|
||||||
# CONFIG_MTD_UBI is not set
|
# CONFIG_MTD_UBI is not set
|
||||||
CONFIG_DTC=y
|
CONFIG_DTC=y
|
||||||
CONFIG_OF=y
|
CONFIG_OF=y
|
||||||
@ -1458,6 +1453,7 @@ CONFIG_EEPROM_AT25=m
|
|||||||
#
|
#
|
||||||
# VOP Bus Driver
|
# VOP Bus Driver
|
||||||
#
|
#
|
||||||
|
# CONFIG_VOP_BUS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Intel MIC Host Driver
|
# Intel MIC Host Driver
|
||||||
@ -1525,7 +1521,6 @@ CONFIG_SCSI_UFSHCD_PLATFORM=m
|
|||||||
# CONFIG_SCSI_UFS_BSG is not set
|
# CONFIG_SCSI_UFS_BSG is not set
|
||||||
# CONFIG_SCSI_DEBUG is not set
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
|
||||||
CONFIG_HAVE_PATA_PLATFORM=y
|
CONFIG_HAVE_PATA_PLATFORM=y
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
CONFIG_ATA_VERBOSE_ERROR=y
|
CONFIG_ATA_VERBOSE_ERROR=y
|
||||||
@ -1602,6 +1597,7 @@ CONFIG_DUMMY=m
|
|||||||
# CONFIG_NET_TEAM is not set
|
# CONFIG_NET_TEAM is not set
|
||||||
CONFIG_MACVLAN=m
|
CONFIG_MACVLAN=m
|
||||||
CONFIG_MACVTAP=m
|
CONFIG_MACVTAP=m
|
||||||
|
CONFIG_IPVLAN_L3S=y
|
||||||
CONFIG_IPVLAN=m
|
CONFIG_IPVLAN=m
|
||||||
# CONFIG_IPVTAP is not set
|
# CONFIG_IPVTAP is not set
|
||||||
CONFIG_VXLAN=m
|
CONFIG_VXLAN=m
|
||||||
@ -1714,6 +1710,7 @@ CONFIG_MDIO_BITBANG=y
|
|||||||
CONFIG_MDIO_BUS_MUX=y
|
CONFIG_MDIO_BUS_MUX=y
|
||||||
# CONFIG_MDIO_BUS_MUX_GPIO is not set
|
# CONFIG_MDIO_BUS_MUX_GPIO is not set
|
||||||
CONFIG_MDIO_BUS_MUX_MMIOREG=y
|
CONFIG_MDIO_BUS_MUX_MMIOREG=y
|
||||||
|
# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set
|
||||||
# CONFIG_MDIO_GPIO is not set
|
# CONFIG_MDIO_GPIO is not set
|
||||||
# CONFIG_MDIO_HISI_FEMAC is not set
|
# CONFIG_MDIO_HISI_FEMAC is not set
|
||||||
# CONFIG_MDIO_MSCC_MIIM is not set
|
# CONFIG_MDIO_MSCC_MIIM is not set
|
||||||
@ -1938,7 +1935,6 @@ CONFIG_KEYBOARD_GPIO=y
|
|||||||
# CONFIG_KEYBOARD_OMAP4 is not set
|
# CONFIG_KEYBOARD_OMAP4 is not set
|
||||||
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
|
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
|
||||||
# CONFIG_KEYBOARD_XTKBD is not set
|
# CONFIG_KEYBOARD_XTKBD is not set
|
||||||
CONFIG_KEYBOARD_CROS_EC=y
|
|
||||||
# CONFIG_KEYBOARD_CAP11XX is not set
|
# CONFIG_KEYBOARD_CAP11XX is not set
|
||||||
# CONFIG_KEYBOARD_BCM is not set
|
# CONFIG_KEYBOARD_BCM is not set
|
||||||
# CONFIG_INPUT_MOUSE is not set
|
# CONFIG_INPUT_MOUSE is not set
|
||||||
@ -2015,6 +2011,7 @@ CONFIG_INPUT_MISC=y
|
|||||||
# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
|
# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
|
||||||
# CONFIG_INPUT_BMA150 is not set
|
# CONFIG_INPUT_BMA150 is not set
|
||||||
# CONFIG_INPUT_E3X0_BUTTON is not set
|
# CONFIG_INPUT_E3X0_BUTTON is not set
|
||||||
|
# CONFIG_INPUT_MSM_VIBRATOR is not set
|
||||||
# CONFIG_INPUT_MMA8450 is not set
|
# CONFIG_INPUT_MMA8450 is not set
|
||||||
# CONFIG_INPUT_GP2A is not set
|
# CONFIG_INPUT_GP2A is not set
|
||||||
# CONFIG_INPUT_GPIO_BEEPER is not set
|
# CONFIG_INPUT_GPIO_BEEPER is not set
|
||||||
@ -2200,7 +2197,6 @@ CONFIG_I2C_RK3X=y
|
|||||||
#
|
#
|
||||||
# Other I2C/SMBus bus drivers
|
# Other I2C/SMBus bus drivers
|
||||||
#
|
#
|
||||||
CONFIG_I2C_CROS_EC_TUNNEL=y
|
|
||||||
# CONFIG_I2C_STUB is not set
|
# CONFIG_I2C_STUB is not set
|
||||||
CONFIG_I2C_SLAVE=y
|
CONFIG_I2C_SLAVE=y
|
||||||
# CONFIG_I2C_SLAVE_EEPROM is not set
|
# CONFIG_I2C_SLAVE_EEPROM is not set
|
||||||
@ -2221,12 +2217,14 @@ CONFIG_SPI_MEM=y
|
|||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
# CONFIG_SPI_CADENCE is not set
|
# CONFIG_SPI_CADENCE is not set
|
||||||
# CONFIG_SPI_DESIGNWARE is not set
|
# CONFIG_SPI_DESIGNWARE is not set
|
||||||
|
# CONFIG_SPI_NXP_FLEXSPI is not set
|
||||||
# CONFIG_SPI_GPIO is not set
|
# CONFIG_SPI_GPIO is not set
|
||||||
# CONFIG_SPI_FSL_SPI is not set
|
# CONFIG_SPI_FSL_SPI is not set
|
||||||
# CONFIG_SPI_OC_TINY is not set
|
# CONFIG_SPI_OC_TINY is not set
|
||||||
CONFIG_SPI_PL022=y
|
CONFIG_SPI_PL022=y
|
||||||
CONFIG_SPI_ROCKCHIP=y
|
CONFIG_SPI_ROCKCHIP=y
|
||||||
# CONFIG_SPI_SC18IS602 is not set
|
# CONFIG_SPI_SC18IS602 is not set
|
||||||
|
# CONFIG_SPI_SIFIVE is not set
|
||||||
# CONFIG_SPI_SUN4I is not set
|
# CONFIG_SPI_SUN4I is not set
|
||||||
# CONFIG_SPI_SUN6I is not set
|
# CONFIG_SPI_SUN6I is not set
|
||||||
# CONFIG_SPI_MXIC is not set
|
# CONFIG_SPI_MXIC is not set
|
||||||
@ -2313,12 +2311,14 @@ CONFIG_GPIO_PL061=y
|
|||||||
# CONFIG_GPIO_SYSCON is not set
|
# CONFIG_GPIO_SYSCON is not set
|
||||||
CONFIG_GPIO_XGENE=y
|
CONFIG_GPIO_XGENE=y
|
||||||
# CONFIG_GPIO_XILINX is not set
|
# CONFIG_GPIO_XILINX is not set
|
||||||
|
# CONFIG_GPIO_AMD_FCH is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# I2C GPIO expanders
|
# I2C GPIO expanders
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_ADP5588 is not set
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
# CONFIG_GPIO_ADNP is not set
|
# CONFIG_GPIO_ADNP is not set
|
||||||
|
# CONFIG_GPIO_GW_PLD is not set
|
||||||
# CONFIG_GPIO_MAX7300 is not set
|
# CONFIG_GPIO_MAX7300 is not set
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
CONFIG_GPIO_PCA953X=y
|
CONFIG_GPIO_PCA953X=y
|
||||||
@ -2329,7 +2329,6 @@ CONFIG_GPIO_PCA953X_IRQ=y
|
|||||||
#
|
#
|
||||||
# MFD GPIO expanders
|
# MFD GPIO expanders
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_BD9571MWV is not set
|
|
||||||
CONFIG_GPIO_MAX77620=y
|
CONFIG_GPIO_MAX77620=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -2394,7 +2393,6 @@ CONFIG_AXP20X_POWER=y
|
|||||||
# CONFIG_CHARGER_SMB347 is not set
|
# CONFIG_CHARGER_SMB347 is not set
|
||||||
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
|
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
|
||||||
# CONFIG_CHARGER_RT9455 is not set
|
# CONFIG_CHARGER_RT9455 is not set
|
||||||
# CONFIG_CHARGER_CROS_USBPD is not set
|
|
||||||
CONFIG_HWMON=y
|
CONFIG_HWMON=y
|
||||||
# CONFIG_HWMON_DEBUG_CHIP is not set
|
# CONFIG_HWMON_DEBUG_CHIP is not set
|
||||||
|
|
||||||
@ -2601,13 +2599,12 @@ CONFIG_MFD_CORE=y
|
|||||||
# CONFIG_MFD_ATMEL_FLEXCOM is not set
|
# CONFIG_MFD_ATMEL_FLEXCOM is not set
|
||||||
# CONFIG_MFD_ATMEL_HLCDC is not set
|
# CONFIG_MFD_ATMEL_HLCDC is not set
|
||||||
# CONFIG_MFD_BCM590XX is not set
|
# CONFIG_MFD_BCM590XX is not set
|
||||||
CONFIG_MFD_BD9571MWV=y
|
# CONFIG_MFD_BD9571MWV is not set
|
||||||
# CONFIG_MFD_AC100 is not set
|
# CONFIG_MFD_AC100 is not set
|
||||||
CONFIG_MFD_AXP20X=y
|
CONFIG_MFD_AXP20X=y
|
||||||
CONFIG_MFD_AXP20X_I2C=y
|
CONFIG_MFD_AXP20X_I2C=y
|
||||||
CONFIG_MFD_AXP20X_RSB=y
|
CONFIG_MFD_AXP20X_RSB=y
|
||||||
CONFIG_MFD_CROS_EC=y
|
# CONFIG_MFD_CROS_EC is not set
|
||||||
CONFIG_MFD_CROS_EC_CHARDEV=m
|
|
||||||
# CONFIG_MFD_MADERA is not set
|
# CONFIG_MFD_MADERA is not set
|
||||||
# CONFIG_PMIC_DA903X is not set
|
# CONFIG_PMIC_DA903X is not set
|
||||||
# CONFIG_MFD_DA9052_SPI is not set
|
# CONFIG_MFD_DA9052_SPI is not set
|
||||||
@ -2679,6 +2676,8 @@ CONFIG_MFD_SYSCON=y
|
|||||||
# CONFIG_MFD_WL1273_CORE is not set
|
# CONFIG_MFD_WL1273_CORE is not set
|
||||||
# CONFIG_MFD_LM3533 is not set
|
# CONFIG_MFD_LM3533 is not set
|
||||||
# CONFIG_MFD_TC3589X is not set
|
# CONFIG_MFD_TC3589X is not set
|
||||||
|
# CONFIG_MFD_TQMX86 is not set
|
||||||
|
# CONFIG_MFD_LOCHNAGAR is not set
|
||||||
# CONFIG_MFD_ARIZONA_I2C is not set
|
# CONFIG_MFD_ARIZONA_I2C is not set
|
||||||
# CONFIG_MFD_ARIZONA_SPI is not set
|
# CONFIG_MFD_ARIZONA_SPI is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
@ -2687,6 +2686,7 @@ CONFIG_MFD_SYSCON=y
|
|||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
# CONFIG_MFD_WM8994 is not set
|
# CONFIG_MFD_WM8994 is not set
|
||||||
# CONFIG_MFD_ROHM_BD718XX is not set
|
# CONFIG_MFD_ROHM_BD718XX is not set
|
||||||
|
# CONFIG_MFD_STPMIC1 is not set
|
||||||
CONFIG_MFD_VEXPRESS_SYSREG=y
|
CONFIG_MFD_VEXPRESS_SYSREG=y
|
||||||
# CONFIG_RAVE_SP_CORE is not set
|
# CONFIG_RAVE_SP_CORE is not set
|
||||||
CONFIG_REGULATOR=y
|
CONFIG_REGULATOR=y
|
||||||
@ -2699,7 +2699,6 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
|||||||
# CONFIG_REGULATOR_AD5398 is not set
|
# CONFIG_REGULATOR_AD5398 is not set
|
||||||
# CONFIG_REGULATOR_ANATOP is not set
|
# CONFIG_REGULATOR_ANATOP is not set
|
||||||
CONFIG_REGULATOR_AXP20X=y
|
CONFIG_REGULATOR_AXP20X=y
|
||||||
CONFIG_REGULATOR_BD9571MWV=y
|
|
||||||
# CONFIG_REGULATOR_DA9210 is not set
|
# CONFIG_REGULATOR_DA9210 is not set
|
||||||
# CONFIG_REGULATOR_DA9211 is not set
|
# CONFIG_REGULATOR_DA9211 is not set
|
||||||
CONFIG_REGULATOR_FAN53555=y
|
CONFIG_REGULATOR_FAN53555=y
|
||||||
@ -3066,10 +3065,6 @@ CONFIG_VIDEO_MT9V011=m
|
|||||||
# Miscellaneous helper chips
|
# Miscellaneous helper chips
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# Sensors used on soc_camera driver
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Media SPI Adapters
|
# Media SPI Adapters
|
||||||
#
|
#
|
||||||
@ -3259,8 +3254,13 @@ CONFIG_DRM_I2C_CH7006=m
|
|||||||
CONFIG_DRM_I2C_SIL164=m
|
CONFIG_DRM_I2C_SIL164=m
|
||||||
# CONFIG_DRM_I2C_NXP_TDA998X is not set
|
# CONFIG_DRM_I2C_NXP_TDA998X is not set
|
||||||
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
|
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM devices
|
||||||
|
#
|
||||||
# CONFIG_DRM_HDLCD is not set
|
# CONFIG_DRM_HDLCD is not set
|
||||||
# CONFIG_DRM_MALI_DISPLAY is not set
|
# CONFIG_DRM_MALI_DISPLAY is not set
|
||||||
|
# CONFIG_DRM_KOMEDA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# ACP (Audio CoProcessor) Configuration
|
# ACP (Audio CoProcessor) Configuration
|
||||||
@ -3297,6 +3297,7 @@ CONFIG_DRM_PANEL_SIMPLE=m
|
|||||||
# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
|
# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
|
||||||
# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
|
# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
|
||||||
# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
|
# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
|
||||||
|
# CONFIG_DRM_PANEL_TPO_TPG110 is not set
|
||||||
CONFIG_DRM_BRIDGE=y
|
CONFIG_DRM_BRIDGE=y
|
||||||
CONFIG_DRM_PANEL_BRIDGE=y
|
CONFIG_DRM_PANEL_BRIDGE=y
|
||||||
|
|
||||||
@ -3323,6 +3324,7 @@ CONFIG_DRM_DW_HDMI=y
|
|||||||
# CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set
|
# CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set
|
||||||
CONFIG_DRM_DW_HDMI_I2S_AUDIO=y
|
CONFIG_DRM_DW_HDMI_I2S_AUDIO=y
|
||||||
CONFIG_DRM_DW_HDMI_CEC=y
|
CONFIG_DRM_DW_HDMI_CEC=y
|
||||||
|
# CONFIG_DRM_ETNAVIV is not set
|
||||||
# CONFIG_DRM_ARCPGU is not set
|
# CONFIG_DRM_ARCPGU is not set
|
||||||
# CONFIG_DRM_HISI_KIRIN is not set
|
# CONFIG_DRM_HISI_KIRIN is not set
|
||||||
# CONFIG_DRM_MXSFB is not set
|
# CONFIG_DRM_MXSFB is not set
|
||||||
@ -3467,9 +3469,11 @@ CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
|
|||||||
# CONFIG_SND_SOC_FSL_SSI is not set
|
# CONFIG_SND_SOC_FSL_SSI is not set
|
||||||
# CONFIG_SND_SOC_FSL_SPDIF is not set
|
# CONFIG_SND_SOC_FSL_SPDIF is not set
|
||||||
# CONFIG_SND_SOC_FSL_ESAI is not set
|
# CONFIG_SND_SOC_FSL_ESAI is not set
|
||||||
|
# CONFIG_SND_SOC_FSL_MICFIL is not set
|
||||||
# CONFIG_SND_SOC_IMX_AUDMUX is not set
|
# CONFIG_SND_SOC_IMX_AUDMUX is not set
|
||||||
# CONFIG_SND_I2S_HI6210_I2S is not set
|
# CONFIG_SND_I2S_HI6210_I2S is not set
|
||||||
# CONFIG_SND_SOC_IMG is not set
|
# CONFIG_SND_SOC_IMG is not set
|
||||||
|
# CONFIG_SND_SOC_MTK_BTCVSD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# STMicroelectronics STM32 SOC audio support
|
# STMicroelectronics STM32 SOC audio support
|
||||||
@ -3486,6 +3490,8 @@ CONFIG_SND_SUN4I_I2S=y
|
|||||||
CONFIG_SND_SUN4I_SPDIF=y
|
CONFIG_SND_SUN4I_SPDIF=y
|
||||||
CONFIG_SND_SUN8I_ADDA_PR_REGMAP=y
|
CONFIG_SND_SUN8I_ADDA_PR_REGMAP=y
|
||||||
# CONFIG_SND_SOC_XILINX_I2S is not set
|
# CONFIG_SND_SOC_XILINX_I2S is not set
|
||||||
|
# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set
|
||||||
|
# CONFIG_SND_SOC_XILINX_SPDIF is not set
|
||||||
# CONFIG_SND_SOC_XTFPGA_I2S is not set
|
# CONFIG_SND_SOC_XTFPGA_I2S is not set
|
||||||
# CONFIG_ZX_TDM is not set
|
# CONFIG_ZX_TDM is not set
|
||||||
CONFIG_SND_SOC_I2C_AND_SPI=y
|
CONFIG_SND_SOC_I2C_AND_SPI=y
|
||||||
@ -3513,6 +3519,7 @@ CONFIG_SND_SOC_AK4613=m
|
|||||||
# CONFIG_SND_SOC_CS35L33 is not set
|
# CONFIG_SND_SOC_CS35L33 is not set
|
||||||
# CONFIG_SND_SOC_CS35L34 is not set
|
# CONFIG_SND_SOC_CS35L34 is not set
|
||||||
# CONFIG_SND_SOC_CS35L35 is not set
|
# CONFIG_SND_SOC_CS35L35 is not set
|
||||||
|
# CONFIG_SND_SOC_CS35L36 is not set
|
||||||
# CONFIG_SND_SOC_CS42L42 is not set
|
# CONFIG_SND_SOC_CS42L42 is not set
|
||||||
# CONFIG_SND_SOC_CS42L51_I2C is not set
|
# CONFIG_SND_SOC_CS42L51_I2C is not set
|
||||||
# CONFIG_SND_SOC_CS42L52 is not set
|
# CONFIG_SND_SOC_CS42L52 is not set
|
||||||
@ -3524,6 +3531,7 @@ CONFIG_SND_SOC_AK4613=m
|
|||||||
# CONFIG_SND_SOC_CS4271_SPI is not set
|
# CONFIG_SND_SOC_CS4271_SPI is not set
|
||||||
# CONFIG_SND_SOC_CS42XX8_I2C is not set
|
# CONFIG_SND_SOC_CS42XX8_I2C is not set
|
||||||
# CONFIG_SND_SOC_CS43130 is not set
|
# CONFIG_SND_SOC_CS43130 is not set
|
||||||
|
# CONFIG_SND_SOC_CS4341 is not set
|
||||||
# CONFIG_SND_SOC_CS4349 is not set
|
# CONFIG_SND_SOC_CS4349 is not set
|
||||||
# CONFIG_SND_SOC_CS53L30 is not set
|
# CONFIG_SND_SOC_CS53L30 is not set
|
||||||
# CONFIG_SND_SOC_DMIC is not set
|
# CONFIG_SND_SOC_DMIC is not set
|
||||||
@ -3555,6 +3563,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_PCM3168A_SPI is not set
|
# CONFIG_SND_SOC_PCM3168A_SPI is not set
|
||||||
# CONFIG_SND_SOC_PCM512x_I2C is not set
|
# CONFIG_SND_SOC_PCM512x_I2C is not set
|
||||||
# CONFIG_SND_SOC_PCM512x_SPI is not set
|
# CONFIG_SND_SOC_PCM512x_SPI is not set
|
||||||
|
# CONFIG_SND_SOC_RK3328 is not set
|
||||||
# CONFIG_SND_SOC_RT5616 is not set
|
# CONFIG_SND_SOC_RT5616 is not set
|
||||||
# CONFIG_SND_SOC_RT5631 is not set
|
# CONFIG_SND_SOC_RT5631 is not set
|
||||||
# CONFIG_SND_SOC_SGTL5000 is not set
|
# CONFIG_SND_SOC_SGTL5000 is not set
|
||||||
@ -3601,6 +3610,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_WM8804_I2C is not set
|
# CONFIG_SND_SOC_WM8804_I2C is not set
|
||||||
# CONFIG_SND_SOC_WM8804_SPI is not set
|
# CONFIG_SND_SOC_WM8804_SPI is not set
|
||||||
# CONFIG_SND_SOC_WM8903 is not set
|
# CONFIG_SND_SOC_WM8903 is not set
|
||||||
|
# CONFIG_SND_SOC_WM8904 is not set
|
||||||
# CONFIG_SND_SOC_WM8960 is not set
|
# CONFIG_SND_SOC_WM8960 is not set
|
||||||
# CONFIG_SND_SOC_WM8962 is not set
|
# CONFIG_SND_SOC_WM8962 is not set
|
||||||
# CONFIG_SND_SOC_WM8974 is not set
|
# CONFIG_SND_SOC_WM8974 is not set
|
||||||
@ -3609,6 +3619,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_ZX_AUD96P22 is not set
|
# CONFIG_SND_SOC_ZX_AUD96P22 is not set
|
||||||
# CONFIG_SND_SOC_MAX9759 is not set
|
# CONFIG_SND_SOC_MAX9759 is not set
|
||||||
# CONFIG_SND_SOC_MT6351 is not set
|
# CONFIG_SND_SOC_MT6351 is not set
|
||||||
|
# CONFIG_SND_SOC_MT6358 is not set
|
||||||
# CONFIG_SND_SOC_NAU8540 is not set
|
# CONFIG_SND_SOC_NAU8540 is not set
|
||||||
# CONFIG_SND_SOC_NAU8810 is not set
|
# CONFIG_SND_SOC_NAU8810 is not set
|
||||||
# CONFIG_SND_SOC_NAU8822 is not set
|
# CONFIG_SND_SOC_NAU8822 is not set
|
||||||
@ -3616,9 +3627,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_TPA6130A2 is not set
|
# CONFIG_SND_SOC_TPA6130A2 is not set
|
||||||
CONFIG_SND_SIMPLE_CARD_UTILS=y
|
CONFIG_SND_SIMPLE_CARD_UTILS=y
|
||||||
CONFIG_SND_SIMPLE_CARD=y
|
CONFIG_SND_SIMPLE_CARD=y
|
||||||
# CONFIG_SND_SIMPLE_SCU_CARD is not set
|
|
||||||
CONFIG_SND_AUDIO_GRAPH_CARD=y
|
CONFIG_SND_AUDIO_GRAPH_CARD=y
|
||||||
# CONFIG_SND_AUDIO_GRAPH_SCU_CARD is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# HID support
|
# HID support
|
||||||
@ -3658,12 +3667,12 @@ CONFIG_HID_EZKEY=y
|
|||||||
# CONFIG_HID_GEMBIRD is not set
|
# CONFIG_HID_GEMBIRD is not set
|
||||||
# CONFIG_HID_GFRM is not set
|
# CONFIG_HID_GFRM is not set
|
||||||
# CONFIG_HID_HOLTEK is not set
|
# CONFIG_HID_HOLTEK is not set
|
||||||
# CONFIG_HID_GOOGLE_HAMMER is not set
|
|
||||||
# CONFIG_HID_GT683R is not set
|
# CONFIG_HID_GT683R is not set
|
||||||
# CONFIG_HID_KEYTOUCH is not set
|
# CONFIG_HID_KEYTOUCH is not set
|
||||||
# CONFIG_HID_KYE is not set
|
# CONFIG_HID_KYE is not set
|
||||||
# CONFIG_HID_UCLOGIC is not set
|
# CONFIG_HID_UCLOGIC is not set
|
||||||
# CONFIG_HID_WALTOP is not set
|
# CONFIG_HID_WALTOP is not set
|
||||||
|
# CONFIG_HID_VIEWSONIC is not set
|
||||||
# CONFIG_HID_GYRATION is not set
|
# CONFIG_HID_GYRATION is not set
|
||||||
# CONFIG_HID_ICADE is not set
|
# CONFIG_HID_ICADE is not set
|
||||||
CONFIG_HID_ITE=y
|
CONFIG_HID_ITE=y
|
||||||
@ -3680,6 +3689,7 @@ CONFIG_HID_LOGITECH=y
|
|||||||
# CONFIG_LOGIG940_FF is not set
|
# CONFIG_LOGIG940_FF is not set
|
||||||
# CONFIG_LOGIWHEELS_FF is not set
|
# CONFIG_LOGIWHEELS_FF is not set
|
||||||
# CONFIG_HID_MAGICMOUSE is not set
|
# CONFIG_HID_MAGICMOUSE is not set
|
||||||
|
# CONFIG_HID_MALTRON is not set
|
||||||
# CONFIG_HID_MAYFLASH is not set
|
# CONFIG_HID_MAYFLASH is not set
|
||||||
CONFIG_HID_REDRAGON=y
|
CONFIG_HID_REDRAGON=y
|
||||||
CONFIG_HID_MICROSOFT=y
|
CONFIG_HID_MICROSOFT=y
|
||||||
@ -3748,6 +3758,7 @@ CONFIG_USB_OTG=y
|
|||||||
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
||||||
# CONFIG_USB_OTG_FSM is not set
|
# CONFIG_USB_OTG_FSM is not set
|
||||||
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
|
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
|
||||||
|
CONFIG_USB_AUTOSUSPEND_DELAY=2
|
||||||
# CONFIG_USB_MON is not set
|
# CONFIG_USB_MON is not set
|
||||||
# CONFIG_USB_WUSB_CBAF is not set
|
# CONFIG_USB_WUSB_CBAF is not set
|
||||||
|
|
||||||
@ -3761,6 +3772,7 @@ CONFIG_USB_XHCI_PLATFORM=y
|
|||||||
CONFIG_USB_EHCI_HCD=y
|
CONFIG_USB_EHCI_HCD=y
|
||||||
CONFIG_USB_EHCI_ROOT_HUB_TT=y
|
CONFIG_USB_EHCI_ROOT_HUB_TT=y
|
||||||
CONFIG_USB_EHCI_TT_NEWSCHED=y
|
CONFIG_USB_EHCI_TT_NEWSCHED=y
|
||||||
|
# CONFIG_USB_EHCI_FSL is not set
|
||||||
CONFIG_USB_EHCI_HCD_PLATFORM=y
|
CONFIG_USB_EHCI_HCD_PLATFORM=y
|
||||||
# CONFIG_USB_OXU210HP_HCD is not set
|
# CONFIG_USB_OXU210HP_HCD is not set
|
||||||
# CONFIG_USB_ISP116X_HCD is not set
|
# CONFIG_USB_ISP116X_HCD is not set
|
||||||
@ -4066,6 +4078,7 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# I2C RTC drivers
|
# I2C RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_ABB5ZES3 is not set
|
# CONFIG_RTC_DRV_ABB5ZES3 is not set
|
||||||
|
# CONFIG_RTC_DRV_ABEOZ9 is not set
|
||||||
# CONFIG_RTC_DRV_ABX80X is not set
|
# CONFIG_RTC_DRV_ABX80X is not set
|
||||||
# CONFIG_RTC_DRV_DS1307 is not set
|
# CONFIG_RTC_DRV_DS1307 is not set
|
||||||
# CONFIG_RTC_DRV_DS1374 is not set
|
# CONFIG_RTC_DRV_DS1374 is not set
|
||||||
@ -4092,8 +4105,10 @@ CONFIG_RTC_DRV_RK808=m
|
|||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
# CONFIG_RTC_DRV_RX8025 is not set
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
# CONFIG_RTC_DRV_EM3027 is not set
|
# CONFIG_RTC_DRV_EM3027 is not set
|
||||||
|
# CONFIG_RTC_DRV_RV3028 is not set
|
||||||
# CONFIG_RTC_DRV_RV8803 is not set
|
# CONFIG_RTC_DRV_RV8803 is not set
|
||||||
CONFIG_RTC_DRV_S5M=y
|
CONFIG_RTC_DRV_S5M=y
|
||||||
|
# CONFIG_RTC_DRV_SD3078 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
@ -4142,7 +4157,6 @@ CONFIG_RTC_DRV_EFI=y
|
|||||||
# CONFIG_RTC_DRV_RP5C01 is not set
|
# CONFIG_RTC_DRV_RP5C01 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
# CONFIG_RTC_DRV_ZYNQMP is not set
|
# CONFIG_RTC_DRV_ZYNQMP is not set
|
||||||
CONFIG_RTC_DRV_CROS_EC=y
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
@ -4150,6 +4164,7 @@ CONFIG_RTC_DRV_CROS_EC=y
|
|||||||
# CONFIG_RTC_DRV_PL030 is not set
|
# CONFIG_RTC_DRV_PL030 is not set
|
||||||
CONFIG_RTC_DRV_PL031=y
|
CONFIG_RTC_DRV_PL031=y
|
||||||
CONFIG_RTC_DRV_SUN6I=y
|
CONFIG_RTC_DRV_SUN6I=y
|
||||||
|
# CONFIG_RTC_DRV_CADENCE is not set
|
||||||
# CONFIG_RTC_DRV_FTRTC010 is not set
|
# CONFIG_RTC_DRV_FTRTC010 is not set
|
||||||
# CONFIG_RTC_DRV_SNVS is not set
|
# CONFIG_RTC_DRV_SNVS is not set
|
||||||
# CONFIG_RTC_DRV_R7301 is not set
|
# CONFIG_RTC_DRV_R7301 is not set
|
||||||
@ -4157,7 +4172,6 @@ CONFIG_RTC_DRV_SUN6I=y
|
|||||||
#
|
#
|
||||||
# HID Sensor RTC drivers
|
# HID Sensor RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
|
|
||||||
CONFIG_DMADEVICES=y
|
CONFIG_DMADEVICES=y
|
||||||
# CONFIG_DMADEVICES_DEBUG is not set
|
# CONFIG_DMADEVICES_DEBUG is not set
|
||||||
|
|
||||||
@ -4174,6 +4188,7 @@ CONFIG_BCM_SBA_RAID=m
|
|||||||
CONFIG_DMA_SUN6I=y
|
CONFIG_DMA_SUN6I=y
|
||||||
# CONFIG_DW_AXI_DMAC is not set
|
# CONFIG_DW_AXI_DMAC is not set
|
||||||
# CONFIG_FSL_EDMA is not set
|
# CONFIG_FSL_EDMA is not set
|
||||||
|
# CONFIG_FSL_QDMA is not set
|
||||||
# CONFIG_INTEL_IDMA64 is not set
|
# CONFIG_INTEL_IDMA64 is not set
|
||||||
CONFIG_MV_XOR_V2=y
|
CONFIG_MV_XOR_V2=y
|
||||||
CONFIG_PL330_DMA=y
|
CONFIG_PL330_DMA=y
|
||||||
@ -4226,7 +4241,6 @@ CONFIG_RTL8723BS=m
|
|||||||
#
|
#
|
||||||
# Analog to digital converters
|
# Analog to digital converters
|
||||||
#
|
#
|
||||||
# CONFIG_AD7606 is not set
|
|
||||||
# CONFIG_AD7780 is not set
|
# CONFIG_AD7780 is not set
|
||||||
# CONFIG_AD7816 is not set
|
# CONFIG_AD7816 is not set
|
||||||
# CONFIG_AD7192 is not set
|
# CONFIG_AD7192 is not set
|
||||||
@ -4241,7 +4255,6 @@ CONFIG_RTL8723BS=m
|
|||||||
# Capacitance to digital converters
|
# Capacitance to digital converters
|
||||||
#
|
#
|
||||||
# CONFIG_AD7150 is not set
|
# CONFIG_AD7150 is not set
|
||||||
# CONFIG_AD7152 is not set
|
|
||||||
# CONFIG_AD7746 is not set
|
# CONFIG_AD7746 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -4273,6 +4286,10 @@ CONFIG_STAGING_MEDIA=y
|
|||||||
CONFIG_VIDEO_SUNXI=y
|
CONFIG_VIDEO_SUNXI=y
|
||||||
CONFIG_VIDEO_SUNXI_CEDRUS=y
|
CONFIG_VIDEO_SUNXI_CEDRUS=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# soc_camera sensor drivers
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# Android
|
# Android
|
||||||
#
|
#
|
||||||
@ -4288,7 +4305,6 @@ CONFIG_VIDEO_SUNXI_CEDRUS=y
|
|||||||
# CONFIG_KS7010 is not set
|
# CONFIG_KS7010 is not set
|
||||||
# CONFIG_GREYBUS is not set
|
# CONFIG_GREYBUS is not set
|
||||||
# CONFIG_PI433 is not set
|
# CONFIG_PI433 is not set
|
||||||
# CONFIG_MTK_MMC is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Gasket devices
|
# Gasket devices
|
||||||
@ -4296,11 +4312,7 @@ CONFIG_VIDEO_SUNXI_CEDRUS=y
|
|||||||
# CONFIG_XIL_AXIS_FIFO is not set
|
# CONFIG_XIL_AXIS_FIFO is not set
|
||||||
# CONFIG_EROFS_FS is not set
|
# CONFIG_EROFS_FS is not set
|
||||||
# CONFIG_GOLDFISH is not set
|
# CONFIG_GOLDFISH is not set
|
||||||
CONFIG_CHROME_PLATFORMS=y
|
# CONFIG_CHROME_PLATFORMS is not set
|
||||||
CONFIG_CROS_EC_CTL=m
|
|
||||||
CONFIG_CROS_EC_I2C=y
|
|
||||||
CONFIG_CROS_EC_SPI=y
|
|
||||||
CONFIG_CROS_EC_PROTO=y
|
|
||||||
CONFIG_CLKDEV_LOOKUP=y
|
CONFIG_CLKDEV_LOOKUP=y
|
||||||
CONFIG_HAVE_CLK_PREPARE=y
|
CONFIG_HAVE_CLK_PREPARE=y
|
||||||
CONFIG_COMMON_CLK=y
|
CONFIG_COMMON_CLK=y
|
||||||
@ -4326,6 +4338,7 @@ CONFIG_COMMON_CLK_SCPI=y
|
|||||||
# CONFIG_COMMON_CLK_XGENE is not set
|
# CONFIG_COMMON_CLK_XGENE is not set
|
||||||
# CONFIG_COMMON_CLK_PWM is not set
|
# CONFIG_COMMON_CLK_PWM is not set
|
||||||
# CONFIG_COMMON_CLK_VC5 is not set
|
# CONFIG_COMMON_CLK_VC5 is not set
|
||||||
|
# CONFIG_COMMON_CLK_FIXED_MMIO is not set
|
||||||
CONFIG_SUNXI_CCU=y
|
CONFIG_SUNXI_CCU=y
|
||||||
CONFIG_SUN50I_A64_CCU=y
|
CONFIG_SUN50I_A64_CCU=y
|
||||||
CONFIG_SUN50I_H6_CCU=y
|
CONFIG_SUN50I_H6_CCU=y
|
||||||
@ -4428,10 +4441,10 @@ CONFIG_EXTCON=y
|
|||||||
# CONFIG_EXTCON_ADC_JACK is not set
|
# CONFIG_EXTCON_ADC_JACK is not set
|
||||||
# CONFIG_EXTCON_GPIO is not set
|
# CONFIG_EXTCON_GPIO is not set
|
||||||
# CONFIG_EXTCON_MAX3355 is not set
|
# CONFIG_EXTCON_MAX3355 is not set
|
||||||
|
# CONFIG_EXTCON_PTN5150 is not set
|
||||||
# CONFIG_EXTCON_RT8973A is not set
|
# CONFIG_EXTCON_RT8973A is not set
|
||||||
# CONFIG_EXTCON_SM5502 is not set
|
# CONFIG_EXTCON_SM5502 is not set
|
||||||
CONFIG_EXTCON_USB_GPIO=y
|
CONFIG_EXTCON_USB_GPIO=y
|
||||||
CONFIG_EXTCON_USBC_CROS_EC=y
|
|
||||||
CONFIG_MEMORY=y
|
CONFIG_MEMORY=y
|
||||||
# CONFIG_ARM_PL172_MPMC is not set
|
# CONFIG_ARM_PL172_MPMC is not set
|
||||||
CONFIG_IIO=y
|
CONFIG_IIO=y
|
||||||
@ -4439,7 +4452,6 @@ CONFIG_IIO_BUFFER=y
|
|||||||
# CONFIG_IIO_BUFFER_CB is not set
|
# CONFIG_IIO_BUFFER_CB is not set
|
||||||
# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
|
# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
|
||||||
CONFIG_IIO_KFIFO_BUF=m
|
CONFIG_IIO_KFIFO_BUF=m
|
||||||
CONFIG_IIO_TRIGGERED_BUFFER=m
|
|
||||||
# CONFIG_IIO_CONFIGFS is not set
|
# CONFIG_IIO_CONFIGFS is not set
|
||||||
CONFIG_IIO_TRIGGER=y
|
CONFIG_IIO_TRIGGER=y
|
||||||
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
||||||
@ -4488,7 +4500,10 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
|||||||
# CONFIG_AD7291 is not set
|
# CONFIG_AD7291 is not set
|
||||||
# CONFIG_AD7298 is not set
|
# CONFIG_AD7298 is not set
|
||||||
# CONFIG_AD7476 is not set
|
# CONFIG_AD7476 is not set
|
||||||
|
# CONFIG_AD7606_IFACE_PARALLEL is not set
|
||||||
|
# CONFIG_AD7606_IFACE_SPI is not set
|
||||||
# CONFIG_AD7766 is not set
|
# CONFIG_AD7766 is not set
|
||||||
|
# CONFIG_AD7768_1 is not set
|
||||||
# CONFIG_AD7791 is not set
|
# CONFIG_AD7791 is not set
|
||||||
# CONFIG_AD7793 is not set
|
# CONFIG_AD7793 is not set
|
||||||
# CONFIG_AD7887 is not set
|
# CONFIG_AD7887 is not set
|
||||||
@ -4528,6 +4543,7 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
|||||||
# CONFIG_TI_ADS1015 is not set
|
# CONFIG_TI_ADS1015 is not set
|
||||||
# CONFIG_TI_ADS7950 is not set
|
# CONFIG_TI_ADS7950 is not set
|
||||||
# CONFIG_TI_ADS8688 is not set
|
# CONFIG_TI_ADS8688 is not set
|
||||||
|
# CONFIG_TI_ADS124S08 is not set
|
||||||
# CONFIG_TI_TLC4541 is not set
|
# CONFIG_TI_TLC4541 is not set
|
||||||
# CONFIG_VF610_ADC is not set
|
# CONFIG_VF610_ADC is not set
|
||||||
|
|
||||||
@ -4548,9 +4564,10 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
|
|||||||
# CONFIG_BME680 is not set
|
# CONFIG_BME680 is not set
|
||||||
# CONFIG_CCS811 is not set
|
# CONFIG_CCS811 is not set
|
||||||
# CONFIG_IAQCORE is not set
|
# CONFIG_IAQCORE is not set
|
||||||
|
# CONFIG_PMS7003 is not set
|
||||||
|
# CONFIG_SENSIRION_SGP30 is not set
|
||||||
|
# CONFIG_SPS30 is not set
|
||||||
# CONFIG_VZ89X is not set
|
# CONFIG_VZ89X is not set
|
||||||
CONFIG_IIO_CROS_EC_SENSORS_CORE=m
|
|
||||||
CONFIG_IIO_CROS_EC_SENSORS=m
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hid Sensor IIO Common
|
# Hid Sensor IIO Common
|
||||||
@ -4599,6 +4616,7 @@ CONFIG_IIO_CROS_EC_SENSORS=m
|
|||||||
# CONFIG_TI_DAC082S085 is not set
|
# CONFIG_TI_DAC082S085 is not set
|
||||||
# CONFIG_TI_DAC5571 is not set
|
# CONFIG_TI_DAC5571 is not set
|
||||||
# CONFIG_TI_DAC7311 is not set
|
# CONFIG_TI_DAC7311 is not set
|
||||||
|
# CONFIG_TI_DAC7612 is not set
|
||||||
# CONFIG_VF610_DAC is not set
|
# CONFIG_VF610_DAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -4681,7 +4699,6 @@ CONFIG_IIO_CROS_EC_SENSORS=m
|
|||||||
# CONFIG_CM3323 is not set
|
# CONFIG_CM3323 is not set
|
||||||
# CONFIG_CM3605 is not set
|
# CONFIG_CM3605 is not set
|
||||||
# CONFIG_CM36651 is not set
|
# CONFIG_CM36651 is not set
|
||||||
CONFIG_IIO_CROS_EC_LIGHT_PROX=m
|
|
||||||
# CONFIG_GP2AP020A00F is not set
|
# CONFIG_GP2AP020A00F is not set
|
||||||
# CONFIG_SENSORS_ISL29018 is not set
|
# CONFIG_SENSORS_ISL29018 is not set
|
||||||
# CONFIG_SENSORS_ISL29028 is not set
|
# CONFIG_SENSORS_ISL29028 is not set
|
||||||
@ -4691,6 +4708,7 @@ CONFIG_IIO_CROS_EC_LIGHT_PROX=m
|
|||||||
# CONFIG_LTR501 is not set
|
# CONFIG_LTR501 is not set
|
||||||
# CONFIG_LV0104CS is not set
|
# CONFIG_LV0104CS is not set
|
||||||
# CONFIG_MAX44000 is not set
|
# CONFIG_MAX44000 is not set
|
||||||
|
# CONFIG_MAX44009 is not set
|
||||||
# CONFIG_OPT3001 is not set
|
# CONFIG_OPT3001 is not set
|
||||||
# CONFIG_PA12203001 is not set
|
# CONFIG_PA12203001 is not set
|
||||||
# CONFIG_SI1133 is not set
|
# CONFIG_SI1133 is not set
|
||||||
@ -4764,7 +4782,6 @@ CONFIG_IIO_CROS_EC_LIGHT_PROX=m
|
|||||||
#
|
#
|
||||||
# CONFIG_ABP060MG is not set
|
# CONFIG_ABP060MG is not set
|
||||||
# CONFIG_BMP280 is not set
|
# CONFIG_BMP280 is not set
|
||||||
CONFIG_IIO_CROS_EC_BARO=m
|
|
||||||
# CONFIG_HP03 is not set
|
# CONFIG_HP03 is not set
|
||||||
# CONFIG_MPL115_I2C is not set
|
# CONFIG_MPL115_I2C is not set
|
||||||
# CONFIG_MPL115_SPI is not set
|
# CONFIG_MPL115_SPI is not set
|
||||||
@ -4810,7 +4827,6 @@ CONFIG_IIO_CROS_EC_BARO=m
|
|||||||
# CONFIG_TSYS02D is not set
|
# CONFIG_TSYS02D is not set
|
||||||
CONFIG_PWM=y
|
CONFIG_PWM=y
|
||||||
CONFIG_PWM_SYSFS=y
|
CONFIG_PWM_SYSFS=y
|
||||||
CONFIG_PWM_CROS_EC=m
|
|
||||||
# CONFIG_PWM_FSL_FTM is not set
|
# CONFIG_PWM_FSL_FTM is not set
|
||||||
# CONFIG_PWM_PCA9685 is not set
|
# CONFIG_PWM_PCA9685 is not set
|
||||||
# CONFIG_PWM_SUN4I is not set
|
# CONFIG_PWM_SUN4I is not set
|
||||||
@ -4838,9 +4854,11 @@ CONFIG_RESET_SUNXI=y
|
|||||||
CONFIG_GENERIC_PHY=y
|
CONFIG_GENERIC_PHY=y
|
||||||
CONFIG_PHY_XGENE=y
|
CONFIG_PHY_XGENE=y
|
||||||
CONFIG_PHY_SUN4I_USB=y
|
CONFIG_PHY_SUN4I_USB=y
|
||||||
|
# CONFIG_PHY_SUN6I_MIPI_DPHY is not set
|
||||||
# CONFIG_PHY_SUN9I_USB is not set
|
# CONFIG_PHY_SUN9I_USB is not set
|
||||||
# CONFIG_BCM_KONA_USB2_PHY is not set
|
# CONFIG_BCM_KONA_USB2_PHY is not set
|
||||||
# CONFIG_PHY_CADENCE_DP is not set
|
# CONFIG_PHY_CADENCE_DP is not set
|
||||||
|
# CONFIG_PHY_CADENCE_DPHY is not set
|
||||||
# CONFIG_PHY_CADENCE_SIERRA is not set
|
# CONFIG_PHY_CADENCE_SIERRA is not set
|
||||||
# CONFIG_PHY_FSL_IMX8MQ_USB is not set
|
# CONFIG_PHY_FSL_IMX8MQ_USB is not set
|
||||||
# CONFIG_PHY_PXA_28NM_HSIC is not set
|
# CONFIG_PHY_PXA_28NM_HSIC is not set
|
||||||
@ -4885,11 +4903,13 @@ CONFIG_NVMEM=y
|
|||||||
CONFIG_PM_OPP=y
|
CONFIG_PM_OPP=y
|
||||||
# CONFIG_SIOX is not set
|
# CONFIG_SIOX is not set
|
||||||
# CONFIG_SLIMBUS is not set
|
# CONFIG_SLIMBUS is not set
|
||||||
|
# CONFIG_INTERCONNECT is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
CONFIG_DCACHE_WORD_ACCESS=y
|
CONFIG_DCACHE_WORD_ACCESS=y
|
||||||
|
CONFIG_VALIDATE_FS_PARSER=y
|
||||||
CONFIG_FS_IOMAP=y
|
CONFIG_FS_IOMAP=y
|
||||||
# CONFIG_EXT2_FS is not set
|
# CONFIG_EXT2_FS is not set
|
||||||
# CONFIG_EXT3_FS is not set
|
# CONFIG_EXT3_FS is not set
|
||||||
@ -4897,7 +4917,6 @@ CONFIG_EXT4_FS=y
|
|||||||
CONFIG_EXT4_USE_FOR_EXT2=y
|
CONFIG_EXT4_USE_FOR_EXT2=y
|
||||||
CONFIG_EXT4_FS_POSIX_ACL=y
|
CONFIG_EXT4_FS_POSIX_ACL=y
|
||||||
CONFIG_EXT4_FS_SECURITY=y
|
CONFIG_EXT4_FS_SECURITY=y
|
||||||
# CONFIG_EXT4_ENCRYPTION is not set
|
|
||||||
# CONFIG_EXT4_DEBUG is not set
|
# CONFIG_EXT4_DEBUG is not set
|
||||||
CONFIG_JBD2=y
|
CONFIG_JBD2=y
|
||||||
# CONFIG_JBD2_DEBUG is not set
|
# CONFIG_JBD2_DEBUG is not set
|
||||||
@ -4927,7 +4946,6 @@ CONFIG_F2FS_FS_XATTR=y
|
|||||||
CONFIG_F2FS_FS_POSIX_ACL=y
|
CONFIG_F2FS_FS_POSIX_ACL=y
|
||||||
# CONFIG_F2FS_FS_SECURITY is not set
|
# CONFIG_F2FS_FS_SECURITY is not set
|
||||||
# CONFIG_F2FS_CHECK_FS is not set
|
# CONFIG_F2FS_CHECK_FS is not set
|
||||||
# CONFIG_F2FS_FS_ENCRYPTION is not set
|
|
||||||
# CONFIG_F2FS_FAULT_INJECTION is not set
|
# CONFIG_F2FS_FAULT_INJECTION is not set
|
||||||
# CONFIG_FS_DAX is not set
|
# CONFIG_FS_DAX is not set
|
||||||
CONFIG_FS_POSIX_ACL=y
|
CONFIG_FS_POSIX_ACL=y
|
||||||
@ -5162,13 +5180,14 @@ CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
|||||||
# CONFIG_SECURITY_APPARMOR is not set
|
# CONFIG_SECURITY_APPARMOR is not set
|
||||||
# CONFIG_SECURITY_LOADPIN is not set
|
# CONFIG_SECURITY_LOADPIN is not set
|
||||||
# CONFIG_SECURITY_YAMA is not set
|
# CONFIG_SECURITY_YAMA is not set
|
||||||
|
# CONFIG_SECURITY_SAFESETID is not set
|
||||||
CONFIG_INTEGRITY=y
|
CONFIG_INTEGRITY=y
|
||||||
# CONFIG_INTEGRITY_SIGNATURE is not set
|
# CONFIG_INTEGRITY_SIGNATURE is not set
|
||||||
CONFIG_INTEGRITY_AUDIT=y
|
CONFIG_INTEGRITY_AUDIT=y
|
||||||
# CONFIG_IMA is not set
|
# CONFIG_IMA is not set
|
||||||
# CONFIG_EVM is not set
|
# CONFIG_EVM is not set
|
||||||
CONFIG_DEFAULT_SECURITY_DAC=y
|
CONFIG_DEFAULT_SECURITY_DAC=y
|
||||||
CONFIG_DEFAULT_SECURITY=""
|
CONFIG_LSM="yama,loadpin,safesetid,integrity"
|
||||||
CONFIG_XOR_BLOCKS=m
|
CONFIG_XOR_BLOCKS=m
|
||||||
CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y
|
CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y
|
||||||
CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y
|
CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y
|
||||||
@ -5399,7 +5418,8 @@ CONFIG_HAS_DMA=y
|
|||||||
CONFIG_NEED_SG_DMA_LENGTH=y
|
CONFIG_NEED_SG_DMA_LENGTH=y
|
||||||
CONFIG_NEED_DMA_MAP_STATE=y
|
CONFIG_NEED_DMA_MAP_STATE=y
|
||||||
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
|
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
|
||||||
CONFIG_HAVE_GENERIC_DMA_COHERENT=y
|
CONFIG_DMA_DECLARE_COHERENT=y
|
||||||
|
CONFIG_ARCH_HAS_SETUP_DMA_OPS=y
|
||||||
CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y
|
CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y
|
||||||
CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y
|
CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y
|
||||||
CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN=y
|
CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN=y
|
||||||
@ -5407,6 +5427,18 @@ CONFIG_ARCH_HAS_DMA_MMAP_PGPROT=y
|
|||||||
CONFIG_SWIOTLB=y
|
CONFIG_SWIOTLB=y
|
||||||
CONFIG_DMA_REMAP=y
|
CONFIG_DMA_REMAP=y
|
||||||
CONFIG_DMA_DIRECT_REMAP=y
|
CONFIG_DMA_DIRECT_REMAP=y
|
||||||
|
CONFIG_DMA_CMA=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Default contiguous memory area size:
|
||||||
|
#
|
||||||
|
CONFIG_CMA_SIZE_MBYTES=256
|
||||||
|
CONFIG_CMA_SIZE_SEL_MBYTES=y
|
||||||
|
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
|
||||||
|
# CONFIG_CMA_SIZE_SEL_MIN is not set
|
||||||
|
# CONFIG_CMA_SIZE_SEL_MAX is not set
|
||||||
|
CONFIG_CMA_ALIGNMENT=8
|
||||||
|
# CONFIG_DMA_API_DEBUG is not set
|
||||||
CONFIG_SGL_ALLOC=y
|
CONFIG_SGL_ALLOC=y
|
||||||
CONFIG_CPU_RMAP=y
|
CONFIG_CPU_RMAP=y
|
||||||
CONFIG_DQL=y
|
CONFIG_DQL=y
|
||||||
@ -5437,6 +5469,7 @@ CONFIG_SBITMAP=y
|
|||||||
# printk and dmesg options
|
# printk and dmesg options
|
||||||
#
|
#
|
||||||
CONFIG_PRINTK_TIME=y
|
CONFIG_PRINTK_TIME=y
|
||||||
|
# CONFIG_PRINTK_CALLER is not set
|
||||||
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
|
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
|
||||||
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
|
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
|
||||||
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
|
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
|
||||||
@ -5456,7 +5489,6 @@ CONFIG_FRAME_WARN=2048
|
|||||||
# CONFIG_STRIP_ASM_SYMS is not set
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_READABLE_ASM is not set
|
# CONFIG_READABLE_ASM is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
# CONFIG_PAGE_OWNER is not set
|
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
# CONFIG_DEBUG_SECTION_MISMATCH is not set
|
# CONFIG_DEBUG_SECTION_MISMATCH is not set
|
||||||
@ -5474,6 +5506,7 @@ CONFIG_DEBUG_KERNEL=y
|
|||||||
#
|
#
|
||||||
# CONFIG_PAGE_EXTENSION is not set
|
# CONFIG_PAGE_EXTENSION is not set
|
||||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||||
|
# CONFIG_PAGE_OWNER is not set
|
||||||
# CONFIG_PAGE_POISONING is not set
|
# CONFIG_PAGE_POISONING is not set
|
||||||
# CONFIG_DEBUG_RODATA_TEST is not set
|
# CONFIG_DEBUG_RODATA_TEST is not set
|
||||||
# CONFIG_DEBUG_OBJECTS is not set
|
# CONFIG_DEBUG_OBJECTS is not set
|
||||||
@ -5562,7 +5595,6 @@ CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
|
|||||||
CONFIG_HAVE_C_RECORDMCOUNT=y
|
CONFIG_HAVE_C_RECORDMCOUNT=y
|
||||||
CONFIG_TRACING_SUPPORT=y
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_FTRACE is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_DMA_API_DEBUG is not set
|
|
||||||
CONFIG_RUNTIME_TESTING_MENU=y
|
CONFIG_RUNTIME_TESTING_MENU=y
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_TEST_LIST_SORT is not set
|
# CONFIG_TEST_LIST_SORT is not set
|
||||||
@ -5585,6 +5617,7 @@ CONFIG_RUNTIME_TESTING_MENU=y
|
|||||||
# CONFIG_TEST_HASH is not set
|
# CONFIG_TEST_HASH is not set
|
||||||
# CONFIG_TEST_IDA is not set
|
# CONFIG_TEST_IDA is not set
|
||||||
# CONFIG_TEST_LKM is not set
|
# CONFIG_TEST_LKM is not set
|
||||||
|
# CONFIG_TEST_VMALLOC is not set
|
||||||
# CONFIG_TEST_USER_COPY is not set
|
# CONFIG_TEST_USER_COPY is not set
|
||||||
# CONFIG_TEST_BPF is not set
|
# CONFIG_TEST_BPF is not set
|
||||||
# CONFIG_FIND_BIT_BENCHMARK is not set
|
# CONFIG_FIND_BIT_BENCHMARK is not set
|
||||||
@ -5594,6 +5627,7 @@ CONFIG_RUNTIME_TESTING_MENU=y
|
|||||||
# CONFIG_TEST_STATIC_KEYS is not set
|
# CONFIG_TEST_STATIC_KEYS is not set
|
||||||
# CONFIG_TEST_KMOD is not set
|
# CONFIG_TEST_KMOD is not set
|
||||||
# CONFIG_TEST_MEMCAT_P is not set
|
# CONFIG_TEST_MEMCAT_P is not set
|
||||||
|
# CONFIG_TEST_STACKINIT is not set
|
||||||
CONFIG_MEMTEST=y
|
CONFIG_MEMTEST=y
|
||||||
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
|
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
@ -5601,6 +5635,7 @@ CONFIG_HAVE_ARCH_KGDB=y
|
|||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
|
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
|
||||||
# CONFIG_UBSAN is not set
|
# CONFIG_UBSAN is not set
|
||||||
|
CONFIG_UBSAN_ALIGNMENT=y
|
||||||
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
|
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
|
||||||
CONFIG_STRICT_DEVMEM=y
|
CONFIG_STRICT_DEVMEM=y
|
||||||
# CONFIG_IO_STRICT_DEVMEM is not set
|
# CONFIG_IO_STRICT_DEVMEM is not set
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/arm 5.0.8 Kernel Configuration
|
# Linux/arm 5.1.0 Kernel Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# Compiler: gcc (Ubuntu 7.2.0-8ubuntu3.2) 7.2.0
|
# Compiler: armv7ve-libreelec-linux-gnueabi-gcc-8.3.0 (GCC) 8.3.0
|
||||||
#
|
#
|
||||||
CONFIG_CC_IS_GCC=y
|
CONFIG_CC_IS_GCC=y
|
||||||
CONFIG_GCC_VERSION=70200
|
CONFIG_GCC_VERSION=80300
|
||||||
CONFIG_CLANG_VERSION=0
|
CONFIG_CLANG_VERSION=0
|
||||||
CONFIG_CC_HAS_ASM_GOTO=y
|
CONFIG_CC_HAS_ASM_GOTO=y
|
||||||
|
CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y
|
||||||
CONFIG_IRQ_WORK=y
|
CONFIG_IRQ_WORK=y
|
||||||
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
||||||
|
|
||||||
@ -178,6 +179,7 @@ CONFIG_TIMERFD=y
|
|||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
CONFIG_SHMEM=y
|
CONFIG_SHMEM=y
|
||||||
CONFIG_AIO=y
|
CONFIG_AIO=y
|
||||||
|
CONFIG_IO_URING=y
|
||||||
CONFIG_ADVISE_SYSCALLS=y
|
CONFIG_ADVISE_SYSCALLS=y
|
||||||
CONFIG_MEMBARRIER=y
|
CONFIG_MEMBARRIER=y
|
||||||
CONFIG_KALLSYMS=y
|
CONFIG_KALLSYMS=y
|
||||||
@ -278,6 +280,7 @@ CONFIG_ARCH_MULTI_V6_V7=y
|
|||||||
# CONFIG_ARCH_KEYSTONE is not set
|
# CONFIG_ARCH_KEYSTONE is not set
|
||||||
# CONFIG_ARCH_MEDIATEK is not set
|
# CONFIG_ARCH_MEDIATEK is not set
|
||||||
# CONFIG_ARCH_MESON is not set
|
# CONFIG_ARCH_MESON is not set
|
||||||
|
# CONFIG_ARCH_MILBEAUT is not set
|
||||||
# CONFIG_ARCH_MMP is not set
|
# CONFIG_ARCH_MMP is not set
|
||||||
# CONFIG_ARCH_MVEBU is not set
|
# CONFIG_ARCH_MVEBU is not set
|
||||||
# CONFIG_ARCH_NPCM is not set
|
# CONFIG_ARCH_NPCM is not set
|
||||||
@ -488,6 +491,7 @@ CONFIG_CPUFREQ_DT_PLATDEV=y
|
|||||||
CONFIG_CPU_IDLE=y
|
CONFIG_CPU_IDLE=y
|
||||||
CONFIG_CPU_IDLE_GOV_LADDER=y
|
CONFIG_CPU_IDLE_GOV_LADDER=y
|
||||||
CONFIG_CPU_IDLE_GOV_MENU=y
|
CONFIG_CPU_IDLE_GOV_MENU=y
|
||||||
|
# CONFIG_CPU_IDLE_GOV_TEO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# ARM CPU Idle Drivers
|
# ARM CPU Idle Drivers
|
||||||
@ -536,7 +540,6 @@ CONFIG_ARM_PSCI_FW=y
|
|||||||
# CONFIG_ARM_PSCI_CHECKER is not set
|
# CONFIG_ARM_PSCI_CHECKER is not set
|
||||||
# CONFIG_FIRMWARE_MEMMAP is not set
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
# CONFIG_FW_CFG_SYSFS is not set
|
# CONFIG_FW_CFG_SYSFS is not set
|
||||||
# CONFIG_INTEL_STRATIX10_SERVICE is not set
|
|
||||||
CONFIG_HAVE_ARM_SMCCC=y
|
CONFIG_HAVE_ARM_SMCCC=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -569,6 +572,7 @@ CONFIG_GENERIC_IDLE_POLL_SETUP=y
|
|||||||
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
|
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
|
||||||
CONFIG_ARCH_HAS_SET_MEMORY=y
|
CONFIG_ARCH_HAS_SET_MEMORY=y
|
||||||
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
|
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
|
||||||
|
CONFIG_ARCH_32BIT_OFF_T=y
|
||||||
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
||||||
CONFIG_HAVE_RSEQ=y
|
CONFIG_HAVE_RSEQ=y
|
||||||
CONFIG_HAVE_CLK=y
|
CONFIG_HAVE_CLK=y
|
||||||
@ -594,6 +598,7 @@ CONFIG_ARCH_MMAP_RND_BITS=8
|
|||||||
CONFIG_CLONE_BACKWARDS=y
|
CONFIG_CLONE_BACKWARDS=y
|
||||||
CONFIG_OLD_SIGSUSPEND3=y
|
CONFIG_OLD_SIGSUSPEND3=y
|
||||||
CONFIG_OLD_SIGACTION=y
|
CONFIG_OLD_SIGACTION=y
|
||||||
|
CONFIG_COMPAT_32BIT_TIME=y
|
||||||
CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y
|
CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y
|
||||||
CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y
|
CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y
|
||||||
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
|
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
|
||||||
@ -608,8 +613,9 @@ CONFIG_REFCOUNT_FULL=y
|
|||||||
#
|
#
|
||||||
# CONFIG_GCOV_KERNEL is not set
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
|
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
|
||||||
CONFIG_PLUGIN_HOSTCC=""
|
CONFIG_PLUGIN_HOSTCC="g++"
|
||||||
CONFIG_HAVE_GCC_PLUGINS=y
|
CONFIG_HAVE_GCC_PLUGINS=y
|
||||||
|
# CONFIG_GCC_PLUGINS is not set
|
||||||
CONFIG_RT_MUTEXES=y
|
CONFIG_RT_MUTEXES=y
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
@ -730,6 +736,7 @@ CONFIG_SKB_EXTENSIONS=y
|
|||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_DIAG is not set
|
# CONFIG_PACKET_DIAG is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
|
CONFIG_UNIX_SCM=y
|
||||||
# CONFIG_UNIX_DIAG is not set
|
# CONFIG_UNIX_DIAG is not set
|
||||||
# CONFIG_TLS is not set
|
# CONFIG_TLS is not set
|
||||||
CONFIG_XFRM=y
|
CONFIG_XFRM=y
|
||||||
@ -837,6 +844,7 @@ CONFIG_NF_NAT_NEEDED=y
|
|||||||
CONFIG_NF_NAT_FTP=m
|
CONFIG_NF_NAT_FTP=m
|
||||||
CONFIG_NF_NAT_TFTP=m
|
CONFIG_NF_NAT_TFTP=m
|
||||||
CONFIG_NF_NAT_REDIRECT=y
|
CONFIG_NF_NAT_REDIRECT=y
|
||||||
|
CONFIG_NF_NAT_MASQUERADE=y
|
||||||
# CONFIG_NF_TABLES is not set
|
# CONFIG_NF_TABLES is not set
|
||||||
CONFIG_NETFILTER_XTABLES=m
|
CONFIG_NETFILTER_XTABLES=m
|
||||||
|
|
||||||
@ -972,8 +980,6 @@ CONFIG_NF_DEFRAG_IPV4=m
|
|||||||
# CONFIG_NF_LOG_ARP is not set
|
# CONFIG_NF_LOG_ARP is not set
|
||||||
# CONFIG_NF_LOG_IPV4 is not set
|
# CONFIG_NF_LOG_IPV4 is not set
|
||||||
# CONFIG_NF_REJECT_IPV4 is not set
|
# CONFIG_NF_REJECT_IPV4 is not set
|
||||||
CONFIG_NF_NAT_IPV4=m
|
|
||||||
CONFIG_NF_NAT_MASQUERADE_IPV4=y
|
|
||||||
CONFIG_IP_NF_IPTABLES=m
|
CONFIG_IP_NF_IPTABLES=m
|
||||||
# CONFIG_IP_NF_MATCH_AH is not set
|
# CONFIG_IP_NF_MATCH_AH is not set
|
||||||
# CONFIG_IP_NF_MATCH_ECN is not set
|
# CONFIG_IP_NF_MATCH_ECN is not set
|
||||||
@ -997,7 +1003,6 @@ CONFIG_IP_NF_TARGET_REDIRECT=m
|
|||||||
# CONFIG_NF_DUP_IPV6 is not set
|
# CONFIG_NF_DUP_IPV6 is not set
|
||||||
# CONFIG_NF_REJECT_IPV6 is not set
|
# CONFIG_NF_REJECT_IPV6 is not set
|
||||||
# CONFIG_NF_LOG_IPV6 is not set
|
# CONFIG_NF_LOG_IPV6 is not set
|
||||||
# CONFIG_NF_NAT_IPV6 is not set
|
|
||||||
# CONFIG_IP6_NF_IPTABLES is not set
|
# CONFIG_IP6_NF_IPTABLES is not set
|
||||||
CONFIG_NF_DEFRAG_IPV6=m
|
CONFIG_NF_DEFRAG_IPV6=m
|
||||||
# CONFIG_BRIDGE_NF_EBTABLES is not set
|
# CONFIG_BRIDGE_NF_EBTABLES is not set
|
||||||
@ -1170,16 +1175,23 @@ CONFIG_BT_LEDS=y
|
|||||||
CONFIG_BT_INTEL=m
|
CONFIG_BT_INTEL=m
|
||||||
CONFIG_BT_BCM=m
|
CONFIG_BT_BCM=m
|
||||||
CONFIG_BT_RTL=m
|
CONFIG_BT_RTL=m
|
||||||
|
CONFIG_BT_QCA=m
|
||||||
CONFIG_BT_HCIBTUSB=m
|
CONFIG_BT_HCIBTUSB=m
|
||||||
# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set
|
# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set
|
||||||
CONFIG_BT_HCIBTUSB_BCM=y
|
CONFIG_BT_HCIBTUSB_BCM=y
|
||||||
CONFIG_BT_HCIBTUSB_RTL=y
|
CONFIG_BT_HCIBTUSB_RTL=y
|
||||||
CONFIG_BT_HCIBTSDIO=m
|
CONFIG_BT_HCIBTSDIO=m
|
||||||
CONFIG_BT_HCIUART=m
|
CONFIG_BT_HCIUART=m
|
||||||
|
CONFIG_BT_HCIUART_SERDEV=y
|
||||||
CONFIG_BT_HCIUART_H4=y
|
CONFIG_BT_HCIUART_H4=y
|
||||||
|
# CONFIG_BT_HCIUART_NOKIA is not set
|
||||||
CONFIG_BT_HCIUART_BCSP=y
|
CONFIG_BT_HCIUART_BCSP=y
|
||||||
CONFIG_BT_HCIUART_ATH3K=y
|
CONFIG_BT_HCIUART_ATH3K=y
|
||||||
|
CONFIG_BT_HCIUART_LL=y
|
||||||
|
CONFIG_BT_HCIUART_3WIRE=y
|
||||||
CONFIG_BT_HCIUART_INTEL=y
|
CONFIG_BT_HCIUART_INTEL=y
|
||||||
|
CONFIG_BT_HCIUART_BCM=y
|
||||||
|
CONFIG_BT_HCIUART_QCA=y
|
||||||
CONFIG_BT_HCIUART_AG6XX=y
|
CONFIG_BT_HCIUART_AG6XX=y
|
||||||
CONFIG_BT_HCIUART_MRVL=y
|
CONFIG_BT_HCIUART_MRVL=y
|
||||||
CONFIG_BT_HCIBCM203X=m
|
CONFIG_BT_HCIBCM203X=m
|
||||||
@ -1189,6 +1201,7 @@ CONFIG_BT_HCIVHCI=m
|
|||||||
CONFIG_BT_MRVL=m
|
CONFIG_BT_MRVL=m
|
||||||
CONFIG_BT_MRVL_SDIO=m
|
CONFIG_BT_MRVL_SDIO=m
|
||||||
CONFIG_BT_ATH3K=m
|
CONFIG_BT_ATH3K=m
|
||||||
|
CONFIG_BT_MTKUART=m
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_AF_KCM is not set
|
# CONFIG_AF_KCM is not set
|
||||||
CONFIG_WIRELESS=y
|
CONFIG_WIRELESS=y
|
||||||
@ -1229,7 +1242,6 @@ CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
|
|||||||
CONFIG_DST_CACHE=y
|
CONFIG_DST_CACHE=y
|
||||||
CONFIG_GRO_CELLS=y
|
CONFIG_GRO_CELLS=y
|
||||||
# CONFIG_NET_DEVLINK is not set
|
# CONFIG_NET_DEVLINK is not set
|
||||||
CONFIG_MAY_USE_DEVLINK=y
|
|
||||||
# CONFIG_FAILOVER is not set
|
# CONFIG_FAILOVER is not set
|
||||||
CONFIG_HAVE_EBPF_JIT=y
|
CONFIG_HAVE_EBPF_JIT=y
|
||||||
|
|
||||||
@ -1271,17 +1283,6 @@ CONFIG_REGMAP_MMIO=y
|
|||||||
CONFIG_REGMAP_IRQ=y
|
CONFIG_REGMAP_IRQ=y
|
||||||
CONFIG_DMA_SHARED_BUFFER=y
|
CONFIG_DMA_SHARED_BUFFER=y
|
||||||
# CONFIG_DMA_FENCE_TRACE is not set
|
# CONFIG_DMA_FENCE_TRACE is not set
|
||||||
CONFIG_DMA_CMA=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Default contiguous memory area size:
|
|
||||||
#
|
|
||||||
CONFIG_CMA_SIZE_MBYTES=256
|
|
||||||
CONFIG_CMA_SIZE_SEL_MBYTES=y
|
|
||||||
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
|
|
||||||
# CONFIG_CMA_SIZE_SEL_MIN is not set
|
|
||||||
# CONFIG_CMA_SIZE_SEL_MAX is not set
|
|
||||||
CONFIG_CMA_ALIGNMENT=8
|
|
||||||
CONFIG_GENERIC_ARCH_TOPOLOGY=y
|
CONFIG_GENERIC_ARCH_TOPOLOGY=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1390,6 +1391,7 @@ CONFIG_EEPROM_93CX6=m
|
|||||||
#
|
#
|
||||||
# VOP Bus Driver
|
# VOP Bus Driver
|
||||||
#
|
#
|
||||||
|
# CONFIG_VOP_BUS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Intel MIC Host Driver
|
# Intel MIC Host Driver
|
||||||
@ -1450,7 +1452,6 @@ CONFIG_SCSI_LOWLEVEL=y
|
|||||||
# CONFIG_SCSI_UFSHCD is not set
|
# CONFIG_SCSI_UFSHCD is not set
|
||||||
# CONFIG_SCSI_DEBUG is not set
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
CONFIG_ATA_VERBOSE_ERROR=y
|
CONFIG_ATA_VERBOSE_ERROR=y
|
||||||
CONFIG_SATA_PMP=y
|
CONFIG_SATA_PMP=y
|
||||||
@ -1524,6 +1525,7 @@ CONFIG_DUMMY=m
|
|||||||
# CONFIG_NET_TEAM is not set
|
# CONFIG_NET_TEAM is not set
|
||||||
CONFIG_MACVLAN=m
|
CONFIG_MACVLAN=m
|
||||||
# CONFIG_MACVTAP is not set
|
# CONFIG_MACVTAP is not set
|
||||||
|
CONFIG_IPVLAN_L3S=y
|
||||||
CONFIG_IPVLAN=m
|
CONFIG_IPVLAN=m
|
||||||
# CONFIG_IPVTAP is not set
|
# CONFIG_IPVTAP is not set
|
||||||
CONFIG_VXLAN=m
|
CONFIG_VXLAN=m
|
||||||
@ -1587,6 +1589,7 @@ CONFIG_NET_VENDOR_NI=y
|
|||||||
# CONFIG_ETHOC is not set
|
# CONFIG_ETHOC is not set
|
||||||
CONFIG_NET_VENDOR_QUALCOMM=y
|
CONFIG_NET_VENDOR_QUALCOMM=y
|
||||||
# CONFIG_QCA7000_SPI is not set
|
# CONFIG_QCA7000_SPI is not set
|
||||||
|
# CONFIG_QCA7000_UART is not set
|
||||||
# CONFIG_QCOM_EMAC is not set
|
# CONFIG_QCOM_EMAC is not set
|
||||||
# CONFIG_RMNET is not set
|
# CONFIG_RMNET is not set
|
||||||
CONFIG_NET_VENDOR_RENESAS=y
|
CONFIG_NET_VENDOR_RENESAS=y
|
||||||
@ -1614,6 +1617,7 @@ CONFIG_MDIO_BUS=y
|
|||||||
CONFIG_MDIO_BUS_MUX=y
|
CONFIG_MDIO_BUS_MUX=y
|
||||||
# CONFIG_MDIO_BUS_MUX_GPIO is not set
|
# CONFIG_MDIO_BUS_MUX_GPIO is not set
|
||||||
# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
|
# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
|
||||||
|
# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set
|
||||||
# CONFIG_MDIO_HISI_FEMAC is not set
|
# CONFIG_MDIO_HISI_FEMAC is not set
|
||||||
# CONFIG_MDIO_MSCC_MIIM is not set
|
# CONFIG_MDIO_MSCC_MIIM is not set
|
||||||
CONFIG_MDIO_SUN4I=y
|
CONFIG_MDIO_SUN4I=y
|
||||||
@ -1909,6 +1913,7 @@ CONFIG_INPUT_MISC=y
|
|||||||
# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
|
# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
|
||||||
# CONFIG_INPUT_BMA150 is not set
|
# CONFIG_INPUT_BMA150 is not set
|
||||||
# CONFIG_INPUT_E3X0_BUTTON is not set
|
# CONFIG_INPUT_E3X0_BUTTON is not set
|
||||||
|
# CONFIG_INPUT_MSM_VIBRATOR is not set
|
||||||
# CONFIG_INPUT_MMA8450 is not set
|
# CONFIG_INPUT_MMA8450 is not set
|
||||||
# CONFIG_INPUT_GP2A is not set
|
# CONFIG_INPUT_GP2A is not set
|
||||||
# CONFIG_INPUT_GPIO_BEEPER is not set
|
# CONFIG_INPUT_GPIO_BEEPER is not set
|
||||||
@ -2010,7 +2015,8 @@ CONFIG_SERIAL_CORE_CONSOLE=y
|
|||||||
# CONFIG_SERIAL_FSL_LPUART is not set
|
# CONFIG_SERIAL_FSL_LPUART is not set
|
||||||
# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
|
# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
|
||||||
# CONFIG_SERIAL_ST_ASC is not set
|
# CONFIG_SERIAL_ST_ASC is not set
|
||||||
# CONFIG_SERIAL_DEV_BUS is not set
|
CONFIG_SERIAL_DEV_BUS=y
|
||||||
|
CONFIG_SERIAL_DEV_CTRL_TTYPORT=y
|
||||||
# CONFIG_TTY_PRINTK is not set
|
# CONFIG_TTY_PRINTK is not set
|
||||||
# CONFIG_HVC_DCC is not set
|
# CONFIG_HVC_DCC is not set
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
@ -2093,11 +2099,13 @@ CONFIG_SPI_MASTER=y
|
|||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
# CONFIG_SPI_CADENCE is not set
|
# CONFIG_SPI_CADENCE is not set
|
||||||
# CONFIG_SPI_DESIGNWARE is not set
|
# CONFIG_SPI_DESIGNWARE is not set
|
||||||
|
# CONFIG_SPI_NXP_FLEXSPI is not set
|
||||||
# CONFIG_SPI_GPIO is not set
|
# CONFIG_SPI_GPIO is not set
|
||||||
# CONFIG_SPI_FSL_SPI is not set
|
# CONFIG_SPI_FSL_SPI is not set
|
||||||
# CONFIG_SPI_OC_TINY is not set
|
# CONFIG_SPI_OC_TINY is not set
|
||||||
# CONFIG_SPI_ROCKCHIP is not set
|
# CONFIG_SPI_ROCKCHIP is not set
|
||||||
# CONFIG_SPI_SC18IS602 is not set
|
# CONFIG_SPI_SC18IS602 is not set
|
||||||
|
# CONFIG_SPI_SIFIVE is not set
|
||||||
CONFIG_SPI_SUN4I=y
|
CONFIG_SPI_SUN4I=y
|
||||||
CONFIG_SPI_SUN6I=y
|
CONFIG_SPI_SUN6I=y
|
||||||
# CONFIG_SPI_MXIC is not set
|
# CONFIG_SPI_MXIC is not set
|
||||||
@ -2182,12 +2190,14 @@ CONFIG_GPIO_SYSFS=y
|
|||||||
# CONFIG_GPIO_SYSCON is not set
|
# CONFIG_GPIO_SYSCON is not set
|
||||||
# CONFIG_GPIO_XILINX is not set
|
# CONFIG_GPIO_XILINX is not set
|
||||||
# CONFIG_GPIO_ZEVIO is not set
|
# CONFIG_GPIO_ZEVIO is not set
|
||||||
|
# CONFIG_GPIO_AMD_FCH is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# I2C GPIO expanders
|
# I2C GPIO expanders
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_ADP5588 is not set
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
# CONFIG_GPIO_ADNP is not set
|
# CONFIG_GPIO_ADNP is not set
|
||||||
|
# CONFIG_GPIO_GW_PLD is not set
|
||||||
# CONFIG_GPIO_MAX7300 is not set
|
# CONFIG_GPIO_MAX7300 is not set
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
@ -2540,6 +2550,8 @@ CONFIG_MFD_SYSCON=y
|
|||||||
# CONFIG_MFD_T7L66XB is not set
|
# CONFIG_MFD_T7L66XB is not set
|
||||||
# CONFIG_MFD_TC6387XB is not set
|
# CONFIG_MFD_TC6387XB is not set
|
||||||
# CONFIG_MFD_TC6393XB is not set
|
# CONFIG_MFD_TC6393XB is not set
|
||||||
|
# CONFIG_MFD_TQMX86 is not set
|
||||||
|
# CONFIG_MFD_LOCHNAGAR is not set
|
||||||
# CONFIG_MFD_ARIZONA_I2C is not set
|
# CONFIG_MFD_ARIZONA_I2C is not set
|
||||||
# CONFIG_MFD_ARIZONA_SPI is not set
|
# CONFIG_MFD_ARIZONA_SPI is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
@ -2548,6 +2560,8 @@ CONFIG_MFD_SYSCON=y
|
|||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
# CONFIG_MFD_WM8994 is not set
|
# CONFIG_MFD_WM8994 is not set
|
||||||
# CONFIG_MFD_ROHM_BD718XX is not set
|
# CONFIG_MFD_ROHM_BD718XX is not set
|
||||||
|
# CONFIG_MFD_STPMIC1 is not set
|
||||||
|
# CONFIG_RAVE_SP_CORE is not set
|
||||||
CONFIG_REGULATOR=y
|
CONFIG_REGULATOR=y
|
||||||
# CONFIG_REGULATOR_DEBUG is not set
|
# CONFIG_REGULATOR_DEBUG is not set
|
||||||
CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
||||||
@ -2901,10 +2915,6 @@ CONFIG_VIDEO_OV7640=m
|
|||||||
# Miscellaneous helper chips
|
# Miscellaneous helper chips
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# Sensors used on soc_camera driver
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Media SPI Adapters
|
# Media SPI Adapters
|
||||||
#
|
#
|
||||||
@ -3087,8 +3097,13 @@ CONFIG_DRM_KMS_CMA_HELPER=y
|
|||||||
# CONFIG_DRM_I2C_SIL164 is not set
|
# CONFIG_DRM_I2C_SIL164 is not set
|
||||||
# CONFIG_DRM_I2C_NXP_TDA998X is not set
|
# CONFIG_DRM_I2C_NXP_TDA998X is not set
|
||||||
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
|
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM devices
|
||||||
|
#
|
||||||
# CONFIG_DRM_HDLCD is not set
|
# CONFIG_DRM_HDLCD is not set
|
||||||
# CONFIG_DRM_MALI_DISPLAY is not set
|
# CONFIG_DRM_MALI_DISPLAY is not set
|
||||||
|
# CONFIG_DRM_KOMEDA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# ACP (Audio CoProcessor) Configuration
|
# ACP (Audio CoProcessor) Configuration
|
||||||
@ -3157,6 +3172,7 @@ CONFIG_DRM_DW_HDMI=y
|
|||||||
CONFIG_DRM_DW_HDMI_I2S_AUDIO=y
|
CONFIG_DRM_DW_HDMI_I2S_AUDIO=y
|
||||||
CONFIG_DRM_DW_HDMI_CEC=y
|
CONFIG_DRM_DW_HDMI_CEC=y
|
||||||
# CONFIG_DRM_STI is not set
|
# CONFIG_DRM_STI is not set
|
||||||
|
# CONFIG_DRM_ETNAVIV is not set
|
||||||
# CONFIG_DRM_ARCPGU is not set
|
# CONFIG_DRM_ARCPGU is not set
|
||||||
# CONFIG_DRM_MXSFB is not set
|
# CONFIG_DRM_MXSFB is not set
|
||||||
# CONFIG_DRM_TINYDRM is not set
|
# CONFIG_DRM_TINYDRM is not set
|
||||||
@ -3272,9 +3288,11 @@ CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
|
|||||||
# CONFIG_SND_SOC_FSL_SSI is not set
|
# CONFIG_SND_SOC_FSL_SSI is not set
|
||||||
# CONFIG_SND_SOC_FSL_SPDIF is not set
|
# CONFIG_SND_SOC_FSL_SPDIF is not set
|
||||||
# CONFIG_SND_SOC_FSL_ESAI is not set
|
# CONFIG_SND_SOC_FSL_ESAI is not set
|
||||||
|
# CONFIG_SND_SOC_FSL_MICFIL is not set
|
||||||
# CONFIG_SND_SOC_IMX_AUDMUX is not set
|
# CONFIG_SND_SOC_IMX_AUDMUX is not set
|
||||||
# CONFIG_SND_I2S_HI6210_I2S is not set
|
# CONFIG_SND_I2S_HI6210_I2S is not set
|
||||||
# CONFIG_SND_SOC_IMG is not set
|
# CONFIG_SND_SOC_IMG is not set
|
||||||
|
# CONFIG_SND_SOC_MTK_BTCVSD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# STMicroelectronics STM32 SOC audio support
|
# STMicroelectronics STM32 SOC audio support
|
||||||
@ -3290,6 +3308,8 @@ CONFIG_SND_SUN4I_I2S=y
|
|||||||
CONFIG_SND_SUN4I_SPDIF=y
|
CONFIG_SND_SUN4I_SPDIF=y
|
||||||
CONFIG_SND_SUN8I_ADDA_PR_REGMAP=y
|
CONFIG_SND_SUN8I_ADDA_PR_REGMAP=y
|
||||||
# CONFIG_SND_SOC_XILINX_I2S is not set
|
# CONFIG_SND_SOC_XILINX_I2S is not set
|
||||||
|
# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set
|
||||||
|
# CONFIG_SND_SOC_XILINX_SPDIF is not set
|
||||||
# CONFIG_SND_SOC_XTFPGA_I2S is not set
|
# CONFIG_SND_SOC_XTFPGA_I2S is not set
|
||||||
# CONFIG_ZX_TDM is not set
|
# CONFIG_ZX_TDM is not set
|
||||||
CONFIG_SND_SOC_I2C_AND_SPI=y
|
CONFIG_SND_SOC_I2C_AND_SPI=y
|
||||||
@ -3317,6 +3337,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y
|
|||||||
# CONFIG_SND_SOC_CS35L33 is not set
|
# CONFIG_SND_SOC_CS35L33 is not set
|
||||||
# CONFIG_SND_SOC_CS35L34 is not set
|
# CONFIG_SND_SOC_CS35L34 is not set
|
||||||
# CONFIG_SND_SOC_CS35L35 is not set
|
# CONFIG_SND_SOC_CS35L35 is not set
|
||||||
|
# CONFIG_SND_SOC_CS35L36 is not set
|
||||||
# CONFIG_SND_SOC_CS42L42 is not set
|
# CONFIG_SND_SOC_CS42L42 is not set
|
||||||
# CONFIG_SND_SOC_CS42L51_I2C is not set
|
# CONFIG_SND_SOC_CS42L51_I2C is not set
|
||||||
# CONFIG_SND_SOC_CS42L52 is not set
|
# CONFIG_SND_SOC_CS42L52 is not set
|
||||||
@ -3328,6 +3349,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y
|
|||||||
# CONFIG_SND_SOC_CS4271_SPI is not set
|
# CONFIG_SND_SOC_CS4271_SPI is not set
|
||||||
# CONFIG_SND_SOC_CS42XX8_I2C is not set
|
# CONFIG_SND_SOC_CS42XX8_I2C is not set
|
||||||
# CONFIG_SND_SOC_CS43130 is not set
|
# CONFIG_SND_SOC_CS43130 is not set
|
||||||
|
# CONFIG_SND_SOC_CS4341 is not set
|
||||||
# CONFIG_SND_SOC_CS4349 is not set
|
# CONFIG_SND_SOC_CS4349 is not set
|
||||||
# CONFIG_SND_SOC_CS53L30 is not set
|
# CONFIG_SND_SOC_CS53L30 is not set
|
||||||
# CONFIG_SND_SOC_DMIC is not set
|
# CONFIG_SND_SOC_DMIC is not set
|
||||||
@ -3358,6 +3380,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_PCM3168A_SPI is not set
|
# CONFIG_SND_SOC_PCM3168A_SPI is not set
|
||||||
# CONFIG_SND_SOC_PCM512x_I2C is not set
|
# CONFIG_SND_SOC_PCM512x_I2C is not set
|
||||||
# CONFIG_SND_SOC_PCM512x_SPI is not set
|
# CONFIG_SND_SOC_PCM512x_SPI is not set
|
||||||
|
# CONFIG_SND_SOC_RK3328 is not set
|
||||||
# CONFIG_SND_SOC_RT5616 is not set
|
# CONFIG_SND_SOC_RT5616 is not set
|
||||||
# CONFIG_SND_SOC_RT5631 is not set
|
# CONFIG_SND_SOC_RT5631 is not set
|
||||||
# CONFIG_SND_SOC_SGTL5000 is not set
|
# CONFIG_SND_SOC_SGTL5000 is not set
|
||||||
@ -3404,6 +3427,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_WM8804_I2C is not set
|
# CONFIG_SND_SOC_WM8804_I2C is not set
|
||||||
# CONFIG_SND_SOC_WM8804_SPI is not set
|
# CONFIG_SND_SOC_WM8804_SPI is not set
|
||||||
# CONFIG_SND_SOC_WM8903 is not set
|
# CONFIG_SND_SOC_WM8903 is not set
|
||||||
|
# CONFIG_SND_SOC_WM8904 is not set
|
||||||
# CONFIG_SND_SOC_WM8960 is not set
|
# CONFIG_SND_SOC_WM8960 is not set
|
||||||
# CONFIG_SND_SOC_WM8962 is not set
|
# CONFIG_SND_SOC_WM8962 is not set
|
||||||
# CONFIG_SND_SOC_WM8974 is not set
|
# CONFIG_SND_SOC_WM8974 is not set
|
||||||
@ -3412,6 +3436,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_ZX_AUD96P22 is not set
|
# CONFIG_SND_SOC_ZX_AUD96P22 is not set
|
||||||
# CONFIG_SND_SOC_MAX9759 is not set
|
# CONFIG_SND_SOC_MAX9759 is not set
|
||||||
# CONFIG_SND_SOC_MT6351 is not set
|
# CONFIG_SND_SOC_MT6351 is not set
|
||||||
|
# CONFIG_SND_SOC_MT6358 is not set
|
||||||
# CONFIG_SND_SOC_NAU8540 is not set
|
# CONFIG_SND_SOC_NAU8540 is not set
|
||||||
# CONFIG_SND_SOC_NAU8810 is not set
|
# CONFIG_SND_SOC_NAU8810 is not set
|
||||||
# CONFIG_SND_SOC_NAU8822 is not set
|
# CONFIG_SND_SOC_NAU8822 is not set
|
||||||
@ -3419,9 +3444,7 @@ CONFIG_SND_SOC_HDMI_CODEC=y
|
|||||||
# CONFIG_SND_SOC_TPA6130A2 is not set
|
# CONFIG_SND_SOC_TPA6130A2 is not set
|
||||||
CONFIG_SND_SIMPLE_CARD_UTILS=y
|
CONFIG_SND_SIMPLE_CARD_UTILS=y
|
||||||
CONFIG_SND_SIMPLE_CARD=y
|
CONFIG_SND_SIMPLE_CARD=y
|
||||||
CONFIG_SND_SIMPLE_SCU_CARD=y
|
|
||||||
CONFIG_SND_AUDIO_GRAPH_CARD=y
|
CONFIG_SND_AUDIO_GRAPH_CARD=y
|
||||||
CONFIG_SND_AUDIO_GRAPH_SCU_CARD=y
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# HID support
|
# HID support
|
||||||
@ -3466,6 +3489,7 @@ CONFIG_HID_EZKEY=y
|
|||||||
# CONFIG_HID_KYE is not set
|
# CONFIG_HID_KYE is not set
|
||||||
# CONFIG_HID_UCLOGIC is not set
|
# CONFIG_HID_UCLOGIC is not set
|
||||||
# CONFIG_HID_WALTOP is not set
|
# CONFIG_HID_WALTOP is not set
|
||||||
|
# CONFIG_HID_VIEWSONIC is not set
|
||||||
# CONFIG_HID_GYRATION is not set
|
# CONFIG_HID_GYRATION is not set
|
||||||
# CONFIG_HID_ICADE is not set
|
# CONFIG_HID_ICADE is not set
|
||||||
# CONFIG_HID_ITE is not set
|
# CONFIG_HID_ITE is not set
|
||||||
@ -3482,6 +3506,7 @@ CONFIG_HID_LOGITECH=y
|
|||||||
# CONFIG_LOGIG940_FF is not set
|
# CONFIG_LOGIG940_FF is not set
|
||||||
# CONFIG_LOGIWHEELS_FF is not set
|
# CONFIG_LOGIWHEELS_FF is not set
|
||||||
# CONFIG_HID_MAGICMOUSE is not set
|
# CONFIG_HID_MAGICMOUSE is not set
|
||||||
|
# CONFIG_HID_MALTRON is not set
|
||||||
# CONFIG_HID_MAYFLASH is not set
|
# CONFIG_HID_MAYFLASH is not set
|
||||||
# CONFIG_HID_REDRAGON is not set
|
# CONFIG_HID_REDRAGON is not set
|
||||||
CONFIG_HID_MICROSOFT=y
|
CONFIG_HID_MICROSOFT=y
|
||||||
@ -3549,6 +3574,7 @@ CONFIG_USB_DEFAULT_PERSIST=y
|
|||||||
# CONFIG_USB_OTG_WHITELIST is not set
|
# CONFIG_USB_OTG_WHITELIST is not set
|
||||||
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
||||||
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
|
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
|
||||||
|
CONFIG_USB_AUTOSUSPEND_DELAY=2
|
||||||
CONFIG_USB_MON=m
|
CONFIG_USB_MON=m
|
||||||
# CONFIG_USB_WUSB_CBAF is not set
|
# CONFIG_USB_WUSB_CBAF is not set
|
||||||
|
|
||||||
@ -3560,6 +3586,7 @@ CONFIG_USB_MON=m
|
|||||||
CONFIG_USB_EHCI_HCD=y
|
CONFIG_USB_EHCI_HCD=y
|
||||||
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
|
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
|
||||||
CONFIG_USB_EHCI_TT_NEWSCHED=y
|
CONFIG_USB_EHCI_TT_NEWSCHED=y
|
||||||
|
# CONFIG_USB_EHCI_FSL is not set
|
||||||
CONFIG_USB_EHCI_HCD_PLATFORM=y
|
CONFIG_USB_EHCI_HCD_PLATFORM=y
|
||||||
# CONFIG_USB_OXU210HP_HCD is not set
|
# CONFIG_USB_OXU210HP_HCD is not set
|
||||||
# CONFIG_USB_ISP116X_HCD is not set
|
# CONFIG_USB_ISP116X_HCD is not set
|
||||||
@ -3871,6 +3898,7 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# I2C RTC drivers
|
# I2C RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_ABB5ZES3 is not set
|
# CONFIG_RTC_DRV_ABB5ZES3 is not set
|
||||||
|
# CONFIG_RTC_DRV_ABEOZ9 is not set
|
||||||
# CONFIG_RTC_DRV_ABX80X is not set
|
# CONFIG_RTC_DRV_ABX80X is not set
|
||||||
# CONFIG_RTC_DRV_DS1307 is not set
|
# CONFIG_RTC_DRV_DS1307 is not set
|
||||||
# CONFIG_RTC_DRV_DS1374 is not set
|
# CONFIG_RTC_DRV_DS1374 is not set
|
||||||
@ -3895,7 +3923,9 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
# CONFIG_RTC_DRV_RX8025 is not set
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
# CONFIG_RTC_DRV_EM3027 is not set
|
# CONFIG_RTC_DRV_EM3027 is not set
|
||||||
|
# CONFIG_RTC_DRV_RV3028 is not set
|
||||||
# CONFIG_RTC_DRV_RV8803 is not set
|
# CONFIG_RTC_DRV_RV8803 is not set
|
||||||
|
# CONFIG_RTC_DRV_SD3078 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
@ -3948,6 +3978,7 @@ CONFIG_RTC_I2C_AND_SPI=y
|
|||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_SUN6I=y
|
CONFIG_RTC_DRV_SUN6I=y
|
||||||
|
# CONFIG_RTC_DRV_CADENCE is not set
|
||||||
# CONFIG_RTC_DRV_FTRTC010 is not set
|
# CONFIG_RTC_DRV_FTRTC010 is not set
|
||||||
# CONFIG_RTC_DRV_SNVS is not set
|
# CONFIG_RTC_DRV_SNVS is not set
|
||||||
# CONFIG_RTC_DRV_R7301 is not set
|
# CONFIG_RTC_DRV_R7301 is not set
|
||||||
@ -3955,7 +3986,6 @@ CONFIG_RTC_DRV_SUN6I=y
|
|||||||
#
|
#
|
||||||
# HID Sensor RTC drivers
|
# HID Sensor RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
|
|
||||||
CONFIG_DMADEVICES=y
|
CONFIG_DMADEVICES=y
|
||||||
# CONFIG_DMADEVICES_DEBUG is not set
|
# CONFIG_DMADEVICES_DEBUG is not set
|
||||||
|
|
||||||
@ -3969,6 +3999,7 @@ CONFIG_DMA_OF=y
|
|||||||
CONFIG_DMA_SUN6I=y
|
CONFIG_DMA_SUN6I=y
|
||||||
# CONFIG_DW_AXI_DMAC is not set
|
# CONFIG_DW_AXI_DMAC is not set
|
||||||
# CONFIG_FSL_EDMA is not set
|
# CONFIG_FSL_EDMA is not set
|
||||||
|
# CONFIG_FSL_QDMA is not set
|
||||||
# CONFIG_INTEL_IDMA64 is not set
|
# CONFIG_INTEL_IDMA64 is not set
|
||||||
# CONFIG_NBPFAXI_DMA is not set
|
# CONFIG_NBPFAXI_DMA is not set
|
||||||
# CONFIG_QCOM_HIDMA_MGMT is not set
|
# CONFIG_QCOM_HIDMA_MGMT is not set
|
||||||
@ -4017,7 +4048,6 @@ CONFIG_STAGING=y
|
|||||||
#
|
#
|
||||||
# Analog to digital converters
|
# Analog to digital converters
|
||||||
#
|
#
|
||||||
# CONFIG_AD7606 is not set
|
|
||||||
# CONFIG_AD7780 is not set
|
# CONFIG_AD7780 is not set
|
||||||
# CONFIG_AD7816 is not set
|
# CONFIG_AD7816 is not set
|
||||||
# CONFIG_AD7192 is not set
|
# CONFIG_AD7192 is not set
|
||||||
@ -4032,7 +4062,6 @@ CONFIG_STAGING=y
|
|||||||
# Capacitance to digital converters
|
# Capacitance to digital converters
|
||||||
#
|
#
|
||||||
# CONFIG_AD7150 is not set
|
# CONFIG_AD7150 is not set
|
||||||
# CONFIG_AD7152 is not set
|
|
||||||
# CONFIG_AD7746 is not set
|
# CONFIG_AD7746 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -4064,6 +4093,10 @@ CONFIG_STAGING_MEDIA=y
|
|||||||
CONFIG_VIDEO_SUNXI=y
|
CONFIG_VIDEO_SUNXI=y
|
||||||
CONFIG_VIDEO_SUNXI_CEDRUS=y
|
CONFIG_VIDEO_SUNXI_CEDRUS=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# soc_camera sensor drivers
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# Android
|
# Android
|
||||||
#
|
#
|
||||||
@ -4079,7 +4112,6 @@ CONFIG_VIDEO_SUNXI_CEDRUS=y
|
|||||||
# CONFIG_KS7010 is not set
|
# CONFIG_KS7010 is not set
|
||||||
# CONFIG_GREYBUS is not set
|
# CONFIG_GREYBUS is not set
|
||||||
# CONFIG_PI433 is not set
|
# CONFIG_PI433 is not set
|
||||||
# CONFIG_MTK_MMC is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Gasket devices
|
# Gasket devices
|
||||||
@ -4108,6 +4140,7 @@ CONFIG_COMMON_CLK=y
|
|||||||
# CONFIG_CLK_QORIQ is not set
|
# CONFIG_CLK_QORIQ is not set
|
||||||
# CONFIG_COMMON_CLK_PWM is not set
|
# CONFIG_COMMON_CLK_PWM is not set
|
||||||
# CONFIG_COMMON_CLK_VC5 is not set
|
# CONFIG_COMMON_CLK_VC5 is not set
|
||||||
|
# CONFIG_COMMON_CLK_FIXED_MMIO is not set
|
||||||
CONFIG_SUNXI_CCU=y
|
CONFIG_SUNXI_CCU=y
|
||||||
CONFIG_SUN8I_A23_CCU=y
|
CONFIG_SUN8I_A23_CCU=y
|
||||||
CONFIG_SUN8I_A33_CCU=y
|
CONFIG_SUN8I_A33_CCU=y
|
||||||
@ -4197,6 +4230,7 @@ CONFIG_EXTCON=y
|
|||||||
# CONFIG_EXTCON_ADC_JACK is not set
|
# CONFIG_EXTCON_ADC_JACK is not set
|
||||||
# CONFIG_EXTCON_GPIO is not set
|
# CONFIG_EXTCON_GPIO is not set
|
||||||
# CONFIG_EXTCON_MAX3355 is not set
|
# CONFIG_EXTCON_MAX3355 is not set
|
||||||
|
# CONFIG_EXTCON_PTN5150 is not set
|
||||||
# CONFIG_EXTCON_RT8973A is not set
|
# CONFIG_EXTCON_RT8973A is not set
|
||||||
# CONFIG_EXTCON_SM5502 is not set
|
# CONFIG_EXTCON_SM5502 is not set
|
||||||
# CONFIG_EXTCON_USB_GPIO is not set
|
# CONFIG_EXTCON_USB_GPIO is not set
|
||||||
@ -4253,7 +4287,10 @@ CONFIG_IIO_SW_TRIGGER=y
|
|||||||
# CONFIG_AD7291 is not set
|
# CONFIG_AD7291 is not set
|
||||||
# CONFIG_AD7298 is not set
|
# CONFIG_AD7298 is not set
|
||||||
# CONFIG_AD7476 is not set
|
# CONFIG_AD7476 is not set
|
||||||
|
# CONFIG_AD7606_IFACE_PARALLEL is not set
|
||||||
|
# CONFIG_AD7606_IFACE_SPI is not set
|
||||||
# CONFIG_AD7766 is not set
|
# CONFIG_AD7766 is not set
|
||||||
|
# CONFIG_AD7768_1 is not set
|
||||||
# CONFIG_AD7791 is not set
|
# CONFIG_AD7791 is not set
|
||||||
# CONFIG_AD7793 is not set
|
# CONFIG_AD7793 is not set
|
||||||
# CONFIG_AD7887 is not set
|
# CONFIG_AD7887 is not set
|
||||||
@ -4291,6 +4328,7 @@ CONFIG_SUN4I_GPADC=y
|
|||||||
# CONFIG_TI_ADS1015 is not set
|
# CONFIG_TI_ADS1015 is not set
|
||||||
# CONFIG_TI_ADS7950 is not set
|
# CONFIG_TI_ADS7950 is not set
|
||||||
# CONFIG_TI_ADS8688 is not set
|
# CONFIG_TI_ADS8688 is not set
|
||||||
|
# CONFIG_TI_ADS124S08 is not set
|
||||||
# CONFIG_TI_TLC4541 is not set
|
# CONFIG_TI_TLC4541 is not set
|
||||||
# CONFIG_VF610_ADC is not set
|
# CONFIG_VF610_ADC is not set
|
||||||
|
|
||||||
@ -4311,6 +4349,9 @@ CONFIG_SUN4I_GPADC=y
|
|||||||
# CONFIG_BME680 is not set
|
# CONFIG_BME680 is not set
|
||||||
# CONFIG_CCS811 is not set
|
# CONFIG_CCS811 is not set
|
||||||
# CONFIG_IAQCORE is not set
|
# CONFIG_IAQCORE is not set
|
||||||
|
# CONFIG_PMS7003 is not set
|
||||||
|
# CONFIG_SENSIRION_SGP30 is not set
|
||||||
|
# CONFIG_SPS30 is not set
|
||||||
# CONFIG_VZ89X is not set
|
# CONFIG_VZ89X is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -4360,6 +4401,7 @@ CONFIG_SUN4I_GPADC=y
|
|||||||
# CONFIG_TI_DAC082S085 is not set
|
# CONFIG_TI_DAC082S085 is not set
|
||||||
# CONFIG_TI_DAC5571 is not set
|
# CONFIG_TI_DAC5571 is not set
|
||||||
# CONFIG_TI_DAC7311 is not set
|
# CONFIG_TI_DAC7311 is not set
|
||||||
|
# CONFIG_TI_DAC7612 is not set
|
||||||
# CONFIG_VF610_DAC is not set
|
# CONFIG_VF610_DAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -4451,6 +4493,7 @@ CONFIG_SUN4I_GPADC=y
|
|||||||
# CONFIG_LTR501 is not set
|
# CONFIG_LTR501 is not set
|
||||||
# CONFIG_LV0104CS is not set
|
# CONFIG_LV0104CS is not set
|
||||||
# CONFIG_MAX44000 is not set
|
# CONFIG_MAX44000 is not set
|
||||||
|
# CONFIG_MAX44009 is not set
|
||||||
# CONFIG_OPT3001 is not set
|
# CONFIG_OPT3001 is not set
|
||||||
# CONFIG_PA12203001 is not set
|
# CONFIG_PA12203001 is not set
|
||||||
# CONFIG_SI1133 is not set
|
# CONFIG_SI1133 is not set
|
||||||
@ -4585,10 +4628,13 @@ CONFIG_RESET_SUNXI=y
|
|||||||
# PHY Subsystem
|
# PHY Subsystem
|
||||||
#
|
#
|
||||||
CONFIG_GENERIC_PHY=y
|
CONFIG_GENERIC_PHY=y
|
||||||
|
CONFIG_GENERIC_PHY_MIPI_DPHY=y
|
||||||
CONFIG_PHY_SUN4I_USB=y
|
CONFIG_PHY_SUN4I_USB=y
|
||||||
|
CONFIG_PHY_SUN6I_MIPI_DPHY=y
|
||||||
CONFIG_PHY_SUN9I_USB=y
|
CONFIG_PHY_SUN9I_USB=y
|
||||||
# CONFIG_BCM_KONA_USB2_PHY is not set
|
# CONFIG_BCM_KONA_USB2_PHY is not set
|
||||||
# CONFIG_PHY_CADENCE_DP is not set
|
# CONFIG_PHY_CADENCE_DP is not set
|
||||||
|
# CONFIG_PHY_CADENCE_DPHY is not set
|
||||||
# CONFIG_PHY_CADENCE_SIERRA is not set
|
# CONFIG_PHY_CADENCE_SIERRA is not set
|
||||||
# CONFIG_PHY_FSL_IMX8MQ_USB is not set
|
# CONFIG_PHY_FSL_IMX8MQ_USB is not set
|
||||||
# CONFIG_PHY_PXA_28NM_HSIC is not set
|
# CONFIG_PHY_PXA_28NM_HSIC is not set
|
||||||
@ -4626,11 +4672,13 @@ CONFIG_NVMEM_SUNXI_SID=y
|
|||||||
CONFIG_PM_OPP=y
|
CONFIG_PM_OPP=y
|
||||||
# CONFIG_SIOX is not set
|
# CONFIG_SIOX is not set
|
||||||
# CONFIG_SLIMBUS is not set
|
# CONFIG_SLIMBUS is not set
|
||||||
|
# CONFIG_INTERCONNECT is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
CONFIG_DCACHE_WORD_ACCESS=y
|
CONFIG_DCACHE_WORD_ACCESS=y
|
||||||
|
CONFIG_VALIDATE_FS_PARSER=y
|
||||||
CONFIG_FS_IOMAP=y
|
CONFIG_FS_IOMAP=y
|
||||||
# CONFIG_EXT2_FS is not set
|
# CONFIG_EXT2_FS is not set
|
||||||
# CONFIG_EXT3_FS is not set
|
# CONFIG_EXT3_FS is not set
|
||||||
@ -4638,7 +4686,6 @@ CONFIG_EXT4_FS=y
|
|||||||
CONFIG_EXT4_USE_FOR_EXT2=y
|
CONFIG_EXT4_USE_FOR_EXT2=y
|
||||||
CONFIG_EXT4_FS_POSIX_ACL=y
|
CONFIG_EXT4_FS_POSIX_ACL=y
|
||||||
CONFIG_EXT4_FS_SECURITY=y
|
CONFIG_EXT4_FS_SECURITY=y
|
||||||
# CONFIG_EXT4_ENCRYPTION is not set
|
|
||||||
# CONFIG_EXT4_DEBUG is not set
|
# CONFIG_EXT4_DEBUG is not set
|
||||||
CONFIG_JBD2=y
|
CONFIG_JBD2=y
|
||||||
# CONFIG_JBD2_DEBUG is not set
|
# CONFIG_JBD2_DEBUG is not set
|
||||||
@ -4669,7 +4716,6 @@ CONFIG_F2FS_FS_XATTR=y
|
|||||||
CONFIG_F2FS_FS_POSIX_ACL=y
|
CONFIG_F2FS_FS_POSIX_ACL=y
|
||||||
# CONFIG_F2FS_FS_SECURITY is not set
|
# CONFIG_F2FS_FS_SECURITY is not set
|
||||||
# CONFIG_F2FS_CHECK_FS is not set
|
# CONFIG_F2FS_CHECK_FS is not set
|
||||||
# CONFIG_F2FS_FS_ENCRYPTION is not set
|
|
||||||
# CONFIG_F2FS_FAULT_INJECTION is not set
|
# CONFIG_F2FS_FAULT_INJECTION is not set
|
||||||
CONFIG_FS_POSIX_ACL=y
|
CONFIG_FS_POSIX_ACL=y
|
||||||
CONFIG_EXPORTFS=y
|
CONFIG_EXPORTFS=y
|
||||||
@ -4868,7 +4914,7 @@ CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
|||||||
# CONFIG_FORTIFY_SOURCE is not set
|
# CONFIG_FORTIFY_SOURCE is not set
|
||||||
# CONFIG_STATIC_USERMODEHELPER is not set
|
# CONFIG_STATIC_USERMODEHELPER is not set
|
||||||
CONFIG_DEFAULT_SECURITY_DAC=y
|
CONFIG_DEFAULT_SECURITY_DAC=y
|
||||||
CONFIG_DEFAULT_SECURITY=""
|
CONFIG_LSM="yama,loadpin,safesetid,integrity"
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -5084,8 +5130,22 @@ CONFIG_HAS_IOMEM=y
|
|||||||
CONFIG_HAS_IOPORT_MAP=y
|
CONFIG_HAS_IOPORT_MAP=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
CONFIG_NEED_DMA_MAP_STATE=y
|
CONFIG_NEED_DMA_MAP_STATE=y
|
||||||
CONFIG_HAVE_GENERIC_DMA_COHERENT=y
|
CONFIG_DMA_DECLARE_COHERENT=y
|
||||||
|
CONFIG_ARCH_HAS_SETUP_DMA_OPS=y
|
||||||
|
CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y
|
||||||
CONFIG_DMA_REMAP=y
|
CONFIG_DMA_REMAP=y
|
||||||
|
CONFIG_DMA_CMA=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Default contiguous memory area size:
|
||||||
|
#
|
||||||
|
CONFIG_CMA_SIZE_MBYTES=256
|
||||||
|
CONFIG_CMA_SIZE_SEL_MBYTES=y
|
||||||
|
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
|
||||||
|
# CONFIG_CMA_SIZE_SEL_MIN is not set
|
||||||
|
# CONFIG_CMA_SIZE_SEL_MAX is not set
|
||||||
|
CONFIG_CMA_ALIGNMENT=8
|
||||||
|
# CONFIG_DMA_API_DEBUG is not set
|
||||||
CONFIG_SGL_ALLOC=y
|
CONFIG_SGL_ALLOC=y
|
||||||
CONFIG_CPU_RMAP=y
|
CONFIG_CPU_RMAP=y
|
||||||
CONFIG_DQL=y
|
CONFIG_DQL=y
|
||||||
@ -5115,6 +5175,7 @@ CONFIG_SBITMAP=y
|
|||||||
# printk and dmesg options
|
# printk and dmesg options
|
||||||
#
|
#
|
||||||
CONFIG_PRINTK_TIME=y
|
CONFIG_PRINTK_TIME=y
|
||||||
|
# CONFIG_PRINTK_CALLER is not set
|
||||||
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
|
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
|
||||||
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
|
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
|
||||||
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
|
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
|
||||||
@ -5130,7 +5191,6 @@ CONFIG_FRAME_WARN=1024
|
|||||||
# CONFIG_STRIP_ASM_SYMS is not set
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_READABLE_ASM is not set
|
# CONFIG_READABLE_ASM is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
# CONFIG_PAGE_OWNER is not set
|
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
# CONFIG_DEBUG_SECTION_MISMATCH is not set
|
# CONFIG_DEBUG_SECTION_MISMATCH is not set
|
||||||
@ -5146,6 +5206,7 @@ CONFIG_DEBUG_KERNEL=y
|
|||||||
#
|
#
|
||||||
# CONFIG_PAGE_EXTENSION is not set
|
# CONFIG_PAGE_EXTENSION is not set
|
||||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||||
|
# CONFIG_PAGE_OWNER is not set
|
||||||
# CONFIG_PAGE_POISONING is not set
|
# CONFIG_PAGE_POISONING is not set
|
||||||
# CONFIG_DEBUG_RODATA_TEST is not set
|
# CONFIG_DEBUG_RODATA_TEST is not set
|
||||||
# CONFIG_DEBUG_OBJECTS is not set
|
# CONFIG_DEBUG_OBJECTS is not set
|
||||||
@ -5230,7 +5291,6 @@ CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
|
|||||||
CONFIG_HAVE_C_RECORDMCOUNT=y
|
CONFIG_HAVE_C_RECORDMCOUNT=y
|
||||||
CONFIG_TRACING_SUPPORT=y
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_FTRACE is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_DMA_API_DEBUG is not set
|
|
||||||
CONFIG_RUNTIME_TESTING_MENU=y
|
CONFIG_RUNTIME_TESTING_MENU=y
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_TEST_LIST_SORT is not set
|
# CONFIG_TEST_LIST_SORT is not set
|
||||||
@ -5253,6 +5313,7 @@ CONFIG_RUNTIME_TESTING_MENU=y
|
|||||||
# CONFIG_TEST_HASH is not set
|
# CONFIG_TEST_HASH is not set
|
||||||
# CONFIG_TEST_IDA is not set
|
# CONFIG_TEST_IDA is not set
|
||||||
# CONFIG_TEST_LKM is not set
|
# CONFIG_TEST_LKM is not set
|
||||||
|
# CONFIG_TEST_VMALLOC is not set
|
||||||
# CONFIG_TEST_USER_COPY is not set
|
# CONFIG_TEST_USER_COPY is not set
|
||||||
# CONFIG_TEST_BPF is not set
|
# CONFIG_TEST_BPF is not set
|
||||||
# CONFIG_FIND_BIT_BENCHMARK is not set
|
# CONFIG_FIND_BIT_BENCHMARK is not set
|
||||||
@ -5262,12 +5323,14 @@ CONFIG_RUNTIME_TESTING_MENU=y
|
|||||||
# CONFIG_TEST_STATIC_KEYS is not set
|
# CONFIG_TEST_STATIC_KEYS is not set
|
||||||
# CONFIG_TEST_KMOD is not set
|
# CONFIG_TEST_KMOD is not set
|
||||||
# CONFIG_TEST_MEMCAT_P is not set
|
# CONFIG_TEST_MEMCAT_P is not set
|
||||||
|
# CONFIG_TEST_STACKINIT is not set
|
||||||
# CONFIG_MEMTEST is not set
|
# CONFIG_MEMTEST is not set
|
||||||
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
|
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
# CONFIG_UBSAN is not set
|
# CONFIG_UBSAN is not set
|
||||||
|
CONFIG_UBSAN_ALIGNMENT=y
|
||||||
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
|
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
|
||||||
# CONFIG_STRICT_DEVMEM is not set
|
# CONFIG_STRICT_DEVMEM is not set
|
||||||
# CONFIG_ARM_PTDUMP_DEBUGFS is not set
|
# CONFIG_ARM_PTDUMP_DEBUGFS is not set
|
||||||
|
@ -401,9 +401,9 @@ index ccb5aa8468e0..e78be449e763 100644
|
|||||||
--- a/include/drm/bridge/dw_hdmi.h
|
--- a/include/drm/bridge/dw_hdmi.h
|
||||||
+++ b/include/drm/bridge/dw_hdmi.h
|
+++ b/include/drm/bridge/dw_hdmi.h
|
||||||
@@ -156,6 +156,8 @@ void dw_hdmi_setup_rx_sense(struct dw_hdmi *hdmi, bool hpd, bool rx_sense);
|
@@ -156,6 +156,8 @@ void dw_hdmi_setup_rx_sense(struct dw_hdmi *hdmi, bool hpd, bool rx_sense);
|
||||||
void dw_hdmi_set_sample_rate(struct dw_hdmi *hdmi, unsigned int rate);
|
|
||||||
void dw_hdmi_audio_enable(struct dw_hdmi *hdmi);
|
void dw_hdmi_audio_enable(struct dw_hdmi *hdmi);
|
||||||
void dw_hdmi_audio_disable(struct dw_hdmi *hdmi);
|
void dw_hdmi_audio_disable(struct dw_hdmi *hdmi);
|
||||||
|
void dw_hdmi_set_high_tmds_clock_ratio(struct dw_hdmi *hdmi);
|
||||||
+void dw_hdmi_set_update_eld(struct dw_hdmi *hdmi,
|
+void dw_hdmi_set_update_eld(struct dw_hdmi *hdmi,
|
||||||
+ void (*update_eld)(struct device *dev, u8 *eld));
|
+ void (*update_eld)(struct device *dev, u8 *eld));
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,91 @@
|
|||||||
|
From e3a864e94eb7b22812d7d9b80403aaba7ade8e49 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
||||||
|
Date: Wed, 8 May 2019 23:36:51 +0200
|
||||||
|
Subject: [PATCH] Revert "media: vb2: keep track of timestamp status"
|
||||||
|
|
||||||
|
This reverts commit 7e4e71624491d8a8befe62b43138beb0ab696006.
|
||||||
|
---
|
||||||
|
drivers/media/common/videobuf2/videobuf2-core.c | 3 ---
|
||||||
|
drivers/media/common/videobuf2/videobuf2-v4l2.c | 3 +--
|
||||||
|
drivers/media/v4l2-core/v4l2-mem2mem.c | 1 -
|
||||||
|
include/media/videobuf2-core.h | 3 ---
|
||||||
|
4 files changed, 1 insertion(+), 9 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/drivers/media/common/videobuf2/videobuf2-core.c b/drivers/media/common/videobuf2/videobuf2-core.c
|
||||||
|
index 3cf25abf5807..3b0c6d3dd1e3 100644
|
||||||
|
--- a/drivers/media/common/videobuf2/videobuf2-core.c
|
||||||
|
+++ b/drivers/media/common/videobuf2/videobuf2-core.c
|
||||||
|
@@ -1041,7 +1041,6 @@ static int __prepare_userptr(struct vb2_buffer *vb)
|
||||||
|
if (vb->planes[plane].mem_priv) {
|
||||||
|
if (!reacquired) {
|
||||||
|
reacquired = true;
|
||||||
|
- vb->copied_timestamp = 0;
|
||||||
|
call_void_vb_qop(vb, buf_cleanup, vb);
|
||||||
|
}
|
||||||
|
call_void_memop(vb, put_userptr, vb->planes[plane].mem_priv);
|
||||||
|
@@ -1166,7 +1165,6 @@ static int __prepare_dmabuf(struct vb2_buffer *vb)
|
||||||
|
|
||||||
|
if (!reacquired) {
|
||||||
|
reacquired = true;
|
||||||
|
- vb->copied_timestamp = 0;
|
||||||
|
call_void_vb_qop(vb, buf_cleanup, vb);
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -1957,7 +1955,6 @@ static void __vb2_queue_cancel(struct vb2_queue *q)
|
||||||
|
if (vb->request)
|
||||||
|
media_request_put(vb->request);
|
||||||
|
vb->request = NULL;
|
||||||
|
- vb->copied_timestamp = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
diff --git a/drivers/media/common/videobuf2/videobuf2-v4l2.c b/drivers/media/common/videobuf2/videobuf2-v4l2.c
|
||||||
|
index fb9ac7696fc6..ba57dee66592 100644
|
||||||
|
--- a/drivers/media/common/videobuf2/videobuf2-v4l2.c
|
||||||
|
+++ b/drivers/media/common/videobuf2/videobuf2-v4l2.c
|
||||||
|
@@ -608,8 +608,7 @@ int vb2_find_timestamp(const struct vb2_queue *q, u64 timestamp,
|
||||||
|
unsigned int i;
|
||||||
|
|
||||||
|
for (i = start_idx; i < q->num_buffers; i++)
|
||||||
|
- if (q->bufs[i]->copied_timestamp &&
|
||||||
|
- q->bufs[i]->timestamp == timestamp)
|
||||||
|
+ if (q->bufs[i]->timestamp == timestamp)
|
||||||
|
return i;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
diff --git a/drivers/media/v4l2-core/v4l2-mem2mem.c b/drivers/media/v4l2-core/v4l2-mem2mem.c
|
||||||
|
index 3392833d9541..82ef90af3de1 100644
|
||||||
|
--- a/drivers/media/v4l2-core/v4l2-mem2mem.c
|
||||||
|
+++ b/drivers/media/v4l2-core/v4l2-mem2mem.c
|
||||||
|
@@ -989,7 +989,6 @@ void v4l2_m2m_buf_copy_metadata(const struct vb2_v4l2_buffer *out_vb,
|
||||||
|
cap_vb->field = out_vb->field;
|
||||||
|
cap_vb->flags &= ~mask;
|
||||||
|
cap_vb->flags |= out_vb->flags & mask;
|
||||||
|
- cap_vb->vb2_buf.copied_timestamp = 1;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(v4l2_m2m_buf_copy_metadata);
|
||||||
|
|
||||||
|
diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2-core.h
|
||||||
|
index 22f3ff76a8b5..7cdeadb6b596 100644
|
||||||
|
--- a/include/media/videobuf2-core.h
|
||||||
|
+++ b/include/media/videobuf2-core.h
|
||||||
|
@@ -260,8 +260,6 @@ struct vb2_buffer {
|
||||||
|
* prepared: this buffer has been prepared, i.e. the
|
||||||
|
* buf_prepare op was called. It is cleared again
|
||||||
|
* after the 'buf_finish' op is called.
|
||||||
|
- * copied_timestamp: the timestamp of this capture buffer was copied
|
||||||
|
- * from an output buffer.
|
||||||
|
* queued_entry: entry on the queued buffers list, which holds
|
||||||
|
* all buffers queued from userspace
|
||||||
|
* done_entry: entry on the list that stores all buffers ready
|
||||||
|
@@ -271,7 +269,6 @@ struct vb2_buffer {
|
||||||
|
enum vb2_buffer_state state;
|
||||||
|
unsigned int synced:1;
|
||||||
|
unsigned int prepared:1;
|
||||||
|
- unsigned int copied_timestamp:1;
|
||||||
|
|
||||||
|
struct vb2_plane planes[VB2_MAX_PLANES];
|
||||||
|
struct list_head queued_entry;
|
||||||
|
--
|
||||||
|
2.21.0
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user