Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
From 91d6b1cc31959340b8651348587ed35e198e3818 Mon Sep 17 00:00:00 2001
From: Abhishek Talavara <abhishek.talavara@arm.com>
Date: Wed, 29 Jul 2026 00:00:00 +0000
Subject: [PATCH] add DT kselftest ignore list and platform drivers

Add known bus/container compatible strings to the Devicetree kselftest
ignore list. These nodes are not expected to bind to standalone device
drivers and should not be reported as unprobed devices.

Signed-off-by: Abhishek Talavara <abhishek.talavara@arm.com>
---
tools/testing/selftests/dt/compatible_ignore_list | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/tools/testing/selftests/dt/compatible_ignore_list b/tools/testing/selftests/dt/compatible_ignore_list
index e14afde401b4..51dfd5bde2cf 100644
--- a/tools/testing/selftests/dt/compatible_ignore_list
+++ b/tools/testing/selftests/dt/compatible_ignore_list
@@ -1 +1,6 @@
+fsl,aips-bus
+fsl,spba-bus
+qemu,platform
simple-mfd
+simple-bus
+virtio,mmio
--
2.25.1
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=32
CONFIG_ARM_PSCI_FW=y
CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y
CONFIG_ARM_PSCI_CHECKER=y
CONFIG_FW_CFG_SYSFS=y
CONFIG_FW_CFG_SYSFS_CMDLINE=y
CONFIG_MXS_DMA=y
CONFIG_SENSORS_IIO_HWMON=y
CONFIG_REGULATOR_DA9121=y
CONFIG_POWER_RESET_VEXPRESS=y

# Enable KV260 USB support - Status: Upstreamed to official genericarm64 kernel meta data
CONFIG_USB_ONBOARD_DEV_USB5744=y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ KBRANCH:class-devupstream = "v6.18/base"

SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH};protocol=https \
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.18;destsuffix=${KMETA};protocol=https \
file://0001-disable-psci-checker.patch;patch=1 "
file://0001-disable-psci-checker.patch;patch=1 \
file://0001-dt-ignore-compatibles.patch;patch=1 "

LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
LINUX_VERSION ?= "6.18.6"
Expand Down
Loading