diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2023-04-22 00:31:50 +0200 |
---|---|---|
committer | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2023-05-16 18:29:24 +0200 |
commit | 7a242135a44d32a6a8563fc74f11d5a100b7cf0a (patch) | |
tree | 542596492adcf2bcc76fd8628e0db4e6a310ea15 | |
parent | a0936e9edf16750867b65c8f2017352f1ea3dea8 (diff) | |
download | linux-7a242135a44d32a6a8563fc74f11d5a100b7cf0a.tar.gz linux-7a242135a44d32a6a8563fc74f11d5a100b7cf0a.tar.bz2 linux-7a242135a44d32a6a8563fc74f11d5a100b7cf0a.zip |
arm64: dts: realtek: add missing cache properties
As all level 2 and level 3 caches are unified, add required
cache-unified and cache-level properties to fix warnings like:
rtd1293-ds418j.dtb: l2-cache: 'cache-level' is a required property
rtd1293-ds418j.dtb: l2-cache: 'cache-unified' is a required property
Link: https://lore.kernel.org/r/20230421223151.115243-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
-rw-r--r-- | arch/arm64/boot/dts/realtek/rtd1293.dtsi | 2 | ||||
-rw-r--r-- | arch/arm64/boot/dts/realtek/rtd1295.dtsi | 2 | ||||
-rw-r--r-- | arch/arm64/boot/dts/realtek/rtd1296.dtsi | 2 | ||||
-rw-r--r-- | arch/arm64/boot/dts/realtek/rtd1395.dtsi | 2 | ||||
-rw-r--r-- | arch/arm64/boot/dts/realtek/rtd16xx.dtsi | 4 |
5 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/realtek/rtd1293.dtsi b/arch/arm64/boot/dts/realtek/rtd1293.dtsi index 2d92b56ac94d..d0c9387ac17a 100644 --- a/arch/arm64/boot/dts/realtek/rtd1293.dtsi +++ b/arch/arm64/boot/dts/realtek/rtd1293.dtsi @@ -30,6 +30,8 @@ l2: l2-cache { compatible = "cache"; + cache-level = <2>; + cache-unified; }; }; diff --git a/arch/arm64/boot/dts/realtek/rtd1295.dtsi b/arch/arm64/boot/dts/realtek/rtd1295.dtsi index 1402abe80ea1..b7f63102f2dd 100644 --- a/arch/arm64/boot/dts/realtek/rtd1295.dtsi +++ b/arch/arm64/boot/dts/realtek/rtd1295.dtsi @@ -44,6 +44,8 @@ l2: l2-cache { compatible = "cache"; + cache-level = <2>; + cache-unified; }; }; diff --git a/arch/arm64/boot/dts/realtek/rtd1296.dtsi b/arch/arm64/boot/dts/realtek/rtd1296.dtsi index fb864a139c97..4f805f576cef 100644 --- a/arch/arm64/boot/dts/realtek/rtd1296.dtsi +++ b/arch/arm64/boot/dts/realtek/rtd1296.dtsi @@ -44,6 +44,8 @@ l2: l2-cache { compatible = "cache"; + cache-level = <2>; + cache-unified; }; }; diff --git a/arch/arm64/boot/dts/realtek/rtd1395.dtsi b/arch/arm64/boot/dts/realtek/rtd1395.dtsi index 05c9216a87ee..2efe5b25c83c 100644 --- a/arch/arm64/boot/dts/realtek/rtd1395.dtsi +++ b/arch/arm64/boot/dts/realtek/rtd1395.dtsi @@ -44,6 +44,8 @@ l2: l2-cache { compatible = "cache"; + cache-level = <2>; + cache-unified; }; }; diff --git a/arch/arm64/boot/dts/realtek/rtd16xx.dtsi b/arch/arm64/boot/dts/realtek/rtd16xx.dtsi index bf4d9e917925..34802cc62983 100644 --- a/arch/arm64/boot/dts/realtek/rtd16xx.dtsi +++ b/arch/arm64/boot/dts/realtek/rtd16xx.dtsi @@ -88,11 +88,15 @@ l2: l2-cache { compatible = "cache"; next-level-cache = <&l3>; + cache-level = <2>; + cache-unified; }; l3: l3-cache { compatible = "cache"; + cache-level = <3>; + cache-unified; }; }; |