mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-22 17:57:05 +00:00
0f6b032d59
Pulling in the latest juno kernel patches from https://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux.git Signed-off-by: Jon Mason <jon.mason@arm.com>
202 lines
9.0 KiB
PHP
202 lines
9.0 KiB
PHP
# Kernel configuration and dts specific information
|
|
|
|
#
|
|
# Kernel configurations and dts (If not using Linux provided ones) are captured
|
|
# in this file. Update SRC_URI and do_patch for building images with custom dts
|
|
#
|
|
|
|
# We can't set FILESEXTRAPATHS once because of how the kernel classes search for
|
|
# config fragments. Discussion is ongoing as to whether this is the correct
|
|
# solution, or a workaround.
|
|
# https://bugzilla.yoctoproject.org/show_bug.cgi?id=14154
|
|
ARMBSPFILESPATHS := "${THISDIR}:${THISDIR}/files:"
|
|
|
|
# Arm platforms kmeta
|
|
SRC_URI_KMETA = "file://arm-platforms-kmeta;type=kmeta;name=arm-platforms-kmeta;destsuffix=arm-platforms-kmeta"
|
|
SRC_URI:append:fvp-base = " ${SRC_URI_KMETA}"
|
|
SRC_URI:append:fvp-base-arm32 = " ${SRC_URI_KMETA}"
|
|
SRC_URI:append:fvp-baser-aemv8r64 = " ${SRC_URI_KMETA}"
|
|
SRC_URI:append:juno = " ${SRC_URI_KMETA}"
|
|
SRC_URI:append:n1sdp = " ${SRC_URI_KMETA}"
|
|
SRC_URI:append:tc = " ${SRC_URI_KMETA}"
|
|
SRCREV:arm-platforms-kmeta = "6147e82375aa9df8f2a162d42ea6406c79c854c5"
|
|
|
|
#
|
|
# Corstone-500 KMACHINE
|
|
#
|
|
COMPATIBLE_MACHINE:corstone500 = "corstone500"
|
|
KBUILD_DEFCONFIG:corstone500 = "multi_v7_defconfig"
|
|
KCONFIG_MODE:corstone500 = "--alldefconfig"
|
|
FILESEXTRAPATHS:prepend:corstone500 := "${ARMBSPFILESPATHS}"
|
|
SRC_URI:append:corstone500 = " \
|
|
file://0001-arm-defconfig-drop-CONFIG_SND_SOC_AC97-from-multi_v7.patch \
|
|
"
|
|
|
|
#
|
|
# Corstone1000 KMACHINE
|
|
#
|
|
FILESEXTRAPATHS:prepend:corstone1000 := "${ARMBSPFILESPATHS}"
|
|
COMPATIBLE_MACHINE:corstone1000 = "${MACHINE}"
|
|
KCONFIG_MODE:corstone1000 = "--alldefconfig"
|
|
KMACHINE:corstone1000 = "corstone1000"
|
|
LINUX_KERNEL_TYPE:corstone1000 = "standard"
|
|
#disabling the rootfs cpio file compression so it is not compressed twice when bundled with the kernel
|
|
KERNEL_EXTRA_ARGS:corstone1000 += "CONFIG_INITRAMFS_COMPRESSION_NONE=y"
|
|
SRC_URI:append:corstone1000 = " \
|
|
file://defconfig \
|
|
file://0002-Add-external-system-driver.patch \
|
|
file://0003-Add-rpmsg-driver-for-corstone1000.patch \
|
|
file://0004-rpmsg-arm-fix-return-value.patch \
|
|
file://0005-rpmsg-arm-update-chrdev-to-ctrldev-registration.patch \
|
|
file://0006-Adds-workaround-for-cs1k-specific-bug.patch \
|
|
"
|
|
|
|
SRC_URI:append:corstone1000 = " ${@bb.utils.contains('MACHINE_FEATURES', \
|
|
'corstone1000_kernel_debug', \
|
|
'file://corstone1000_kernel_debug.cfg', \
|
|
'', \
|
|
d)}"
|
|
|
|
# Default kernel features not needed for corstone1000
|
|
# otherwise the extra kernel modules will increase the rootfs size
|
|
# corstone1000 has limited flash memory constraints
|
|
KERNEL_EXTRA_FEATURES:corstone1000 = ""
|
|
KERNEL_FEATURES:corstone1000 = ""
|
|
|
|
#
|
|
# FVP BASE KMACHINE
|
|
#
|
|
COMPATIBLE_MACHINE:fvp-base = "fvp-base"
|
|
KMACHINE:fvp-base = "fvp"
|
|
FILESEXTRAPATHS:prepend:fvp-base := "${ARMBSPFILESPATHS}"
|
|
SRC_URI:append:fvp-base = " file://0001-arm64-dts-fvp-Enable-virtio-rng-support.patch"
|
|
|
|
#
|
|
# FVP BASE ARM32 KMACHINE
|
|
#
|
|
COMPATIBLE_MACHINE:fvp-base-arm32 = "fvp-base-arm32"
|
|
KMACHINE:fvp-base-arm32 = "fvp-arm32"
|
|
FILESEXTRAPATHS:prepend:fvp-base-arm32 := "${ARMBSPFILESPATHS}"
|
|
SRC_URI:append:fvp-base-arm32 = " file://0001-ARM-vexpress-enable-GICv3.patch"
|
|
# We want to use the DT in the arm64 tree but the kernel build doesn't like that, so symlink it
|
|
do_compile:prepend:fvp-base-arm32() {
|
|
mkdir --parents ${S}/arch/arm/boot/dts/arm
|
|
for file in fvp-base-revc.dts rtsm_ve-motherboard.dtsi rtsm_ve-motherboard-rs2.dtsi; do
|
|
ln -fsr ${S}/arch/arm64/boot/dts/arm/$file ${S}/arch/arm/boot/dts/arm
|
|
done
|
|
}
|
|
|
|
#
|
|
# FVP BaseR AEMv8r64 Machine
|
|
#
|
|
COMPATIBLE_MACHINE:fvp-baser-aemv8r64 = "fvp-baser-aemv8r64"
|
|
FILESEXTRAPATHS:prepend:fvp-baser-aemv8r64 := "${ARMBSPFILESPATHS}"
|
|
SRC_URI:append:fvp-baser-aemv8r64 = " file://fvp-baser-aemv8r64.dts;subdir=git/arch/arm64/boot/dts/arm"
|
|
|
|
#
|
|
# Juno KMACHINE
|
|
#
|
|
COMPATIBLE_MACHINE:juno = "juno"
|
|
KBUILD_DEFCONFIG:juno = "defconfig"
|
|
KCONFIG_MODE:juno = "--alldefconfig"
|
|
FILESEXTRAPATHS:prepend:juno := "${ARMBSPFILESPATHS}"
|
|
SRC_URI:append:juno = " \
|
|
file://0001-arm64-dts-juno-Add-thermal-critical-trip-points.patch \
|
|
file://0002-arm64-dts-Update-cache-properties-for-Arm-Ltd-platfo.patch \
|
|
file://0003-arm64-dts-fvp-Add-SPE-to-Foundation-FVP.patch \
|
|
file://0004-arm64-dts-fvp-Add-information-about-L1-and-L2-caches.patch \
|
|
file://0005-ARM-dts-vexpress-align-LED-node-names-with-dtschema.patch \
|
|
"
|
|
|
|
#
|
|
# Musca B1/S2 can't run Linux
|
|
#
|
|
COMPATIBLE_MACHINE:musca-b1 = "(^$)"
|
|
COMPATIBLE_MACHINE:musca-s1 = "(^$)"
|
|
|
|
#
|
|
# N1SDP KMACHINE
|
|
#
|
|
FILESEXTRAPATHS:prepend:n1sdp := "${THISDIR}/linux-yocto-5.19/n1sdp:"
|
|
COMPATIBLE_MACHINE:n1sdp = "n1sdp"
|
|
KBUILD_DEFCONFIG:n1sdp = "defconfig"
|
|
KCONFIG_MODE:n1sdp = "--alldefconfig"
|
|
FILESEXTRAPATHS:prepend:n1sdp := "${ARMBSPFILESPATHS}"
|
|
SRC_URI:append:n1sdp = " \
|
|
file://0001-iommu-arm-smmu-v3-workaround-for-ATC_INV_SIZE_ALL-in.patch \
|
|
file://0002-n1sdp-pci_quirk-add-acs-override-for-PCI-devices.patch \
|
|
file://0003-pcie-Add-quirk-for-the-Arm-Neoverse-N1SDP-platform.patch \
|
|
file://0004-n1sdp-pcie-add-quirk-support-enabling-remote-chip-PC.patch \
|
|
file://0005-arm64-kpti-Whitelist-early-Arm-Neoverse-N1-revisions.patch \
|
|
file://0006-arm64-defconfig-disable-config-options-that-does-not.patch \
|
|
file://enable-realtek-R8169.cfg \
|
|
file://enable-usb_conn_gpio.cfg \
|
|
file://usb_xhci_pci_renesas.cfg \
|
|
"
|
|
# Since we use the intree defconfig and the preempt-rt turns off some configs
|
|
# do_kernel_configcheck will display warnings. So, lets disable it.
|
|
KCONF_AUDIT_LEVEL:n1sdp:pn-linux-yocto-rt = "0"
|
|
|
|
#
|
|
# SGI575 KMACHINE
|
|
#
|
|
COMPATIBLE_MACHINE:sgi575 = "sgi575"
|
|
KBUILD_DEFCONFIG:sgi575 = "defconfig"
|
|
KCONFIG_MODE:sgi575 = "--alldefconfig"
|
|
|
|
#
|
|
# Total Compute (TC0/TC1) KMACHINE
|
|
#
|
|
COMPATIBLE_MACHINE:tc = "(tc0|tc1)"
|
|
KCONFIG_MODE:tc = "--alldefconfig"
|
|
FILESEXTRAPATHS:prepend:tc := "${ARMBSPFILESPATHS}:${THISDIR}/linux-arm64-ack-5.15/tc:"
|
|
SRC_URI:append:tc = " \
|
|
file://gki_defconfig \
|
|
file://0001-drm-Add-component-aware-simple-encoder.patch \
|
|
file://0001-drm-komeda-Fix-handling-of-atomic-commits-in-the-ato.patch \
|
|
file://0002-drm-arm-komeda-add-RENDER-capability-to-the-device-n.patch \
|
|
file://0003-firmware-arm_ffa-Fix-uuid-argument-passed-to-ffa_par.patch \
|
|
file://0004-firmware-arm_ffa-Add-ffa_dev_get_drvdata.patch \
|
|
file://0005-firmware-arm_ffa-extern-ffa_bus_type.patch \
|
|
file://0006-firmware-arm_ffa-Fix-FFA_MEM_SHARE-and-FFA_MEM_FRAG_.patch \
|
|
file://0007-Revert-optee-use-driver-internal-tee_context-for-som.patch \
|
|
file://0008-tee-add-sec_world_id-to-struct-tee_shm.patch \
|
|
file://0009-optee-simplify-optee_release.patch \
|
|
file://0010-optee-refactor-driver-with-internal-callbacks.patch \
|
|
file://0011-optee-isolate-smc-abi.patch \
|
|
file://0012-optee-add-FF-A-support.patch \
|
|
file://0013-optee-smc_abi.c-add-missing-include-linux-mm.h.patch \
|
|
file://0014-optee-Fix-spelling-mistake-reclain-reclaim.patch \
|
|
file://0015-optee-fix-kfree-NULL-pointer.patch \
|
|
file://0016-perf-arm-cmn-Account-for-NUMA-affinity.patch \
|
|
file://0017-perf-arm-cmn-Drop-compile-test-restriction.patch \
|
|
file://0018-perf-arm-cmn-Refactor-node-ID-handling.patch \
|
|
file://0019-perf-arm-cmn-Streamline-node-iteration.patch \
|
|
file://0020-perf-arm-cmn-Refactor-DTM-handling.patch \
|
|
file://0021-perf-arm-cmn-Optimise-DTM-counter-reads.patch \
|
|
file://0022-perf-arm-cmn-Optimise-DTC-counter-accesses.patch \
|
|
file://0023-perf-arm-cmn-Move-group-validation-data-off-stack.patch \
|
|
file://0024-perf-arm-cmn-Demarcate-CMN-600-specifics.patch \
|
|
file://0025-perf-arm-cmn-Support-new-IP-features.patch \
|
|
file://0026-perf-arm-cmn-Add-CI-700-Support.patch \
|
|
file://0027-ANDROID-trusty-Backport-of-trusty-driver.patch \
|
|
file://0028-ANDROID-trusty-Remove-FFA-specific-initilization.patch \
|
|
file://0029-ANDROID-trusty-Rename-transfer-memory-function-to-le.patch \
|
|
file://0030-ANDROID-trusty-Separate-out-SMC-based-transport.patch \
|
|
file://0031-ANDROID-trusty-Modify-device-compatible-string.patch \
|
|
file://0032-ANDROID-trusty-Add-transport-descriptor.patch \
|
|
file://0033-ANDROID-trusty-Add-trusty-ffa-driver.patch \
|
|
file://0034-ANDROID-trusty-ffa-Add-support-for-FFA-memory-operat.patch \
|
|
file://0035-ANDROID-trusty-ffa-Enable-FFA-transport-for-both-mem.patch \
|
|
file://0036-ANDROID-trusty-Make-trusty-transports-configurable.patch \
|
|
file://0037-ANDROID-trusty-log-include-panic_notifier.h.patch \
|
|
file://0038-ANDROID-trusty-ipc-fix-VIRTIO_ID_TRUSTY_IPC-ID.patch \
|
|
file://0039-gki_config-add-tc-disable_mpam.patch \
|
|
file://0040-ANDROID-KVM-arm64-disable-FFA-driver-at-EL2.patch \
|
|
file://init_disassemble_info-signature-changes-causes-compile-failures.patch \
|
|
file://0041-etherdevice-Adjust-ether_addr-prototypes-to-silence-.patch \
|
|
file://0042-mm-page_alloc-fix-building-error-on-Werror-array-com.patch \
|
|
"
|
|
KERNEL_FEATURES:append:tc = " bsp/arm-platforms/tc.scc"
|
|
KERNEL_FEATURES:append:tc1 = " bsp/arm-platforms/tc-autofdo.scc"
|