diff options
author | Dom Cobley <popcornmix@gmail.com> | 2024-10-23 19:09:18 +0100 |
---|---|---|
committer | Phil Elwell <8911409+pelwell@users.noreply.github.com> | 2024-11-05 19:17:36 +0000 |
commit | 624eb357e1a16385b3d6171e9194e4c5f8d4fd5f (patch) | |
tree | 6c4a14a9ab56711ff17c930b1ae0c249432c50d7 /arch | |
parent | ff0fe12ab875d587348b6f2b9e73ae928049ebee (diff) | |
download | linux-rpi-624eb357e1a16385b3d6171e9194e4c5f8d4fd5f.tar.gz linux-rpi-624eb357e1a16385b3d6171e9194e4c5f8d4fd5f.tar.bz2 linux-rpi-624eb357e1a16385b3d6171e9194e4c5f8d4fd5f.zip |
dts: 2712: Drop some numa options from bootargs
iommu_dma_numa_policy=interleave is not valid in the current tree
It generates an unknown setting will be passed to usespace warning
system_heap.max_order=0 is wanted when numa is enabled, but may not
be when it is disabled.
Add it on firmware side when we know if numa=fake=<n> is used.
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi b/arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi index 25e37b99b054..65abbb450daf 100644 --- a/arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi +++ b/arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi @@ -99,7 +99,7 @@ / { chosen: chosen { - bootargs = "reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe cgroup_disable=memory numa_policy=interleave iommu_dma_numa_policy=interleave system_heap.max_order=0"; + bootargs = "reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe cgroup_disable=memory numa_policy=interleave"; stdout-path = "serial10:115200n8"; }; |