]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ARM: dts: microchip: sama7d65: Add cache configuration for cpu node
authorMihai Sain <mihai.sain@microchip.com>
Thu, 19 Jun 2025 07:06:35 +0000 (10:06 +0300)
committerClaudiu Beznea <claudiu.beznea@tuxon.dev>
Sat, 5 Jul 2025 07:43:30 +0000 (10:43 +0300)
Describe the cache memories according with datasheet chapter 15.2:

- L1 cache configuration with 32KB for both data and instruction cache.
- L2 cache configuration with 256KB unified cache.

Before this patch the kernel reported the warning:

[    0.161955] cacheinfo: Unable to detect cache hierarchy for CPU 0

Signed-off-by: Mihai Sain <mihai.sain@microchip.com>
Link: https://lore.kernel.org/r/20250619070636.8844-2-mihai.sain@microchip.com
Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
arch/arm/boot/dts/microchip/sama7d65.dtsi

index 7f3d67099b7d8b2847936212b4e5af508193c66a..c191acc2c89f2ed9a78004b0310c2894607d2cfc 100644 (file)
                        device_type = "cpu";
                        clocks = <&pmc PMC_TYPE_CORE PMC_CPUPLL>;
                        clock-names = "cpu";
+                       d-cache-size = <0x8000>;        // L1, 32 KB
+                       i-cache-size = <0x8000>;        // L1, 32 KB
+                       next-level-cache = <&L2>;
+
+                       L2: l2-cache {
+                               compatible = "cache";
+                               cache-level = <2>;
+                               cache-size = <0x40000>; // L2, 256 KB
+                               cache-unified;
+                       };
                };
        };