[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240423072639.143450-3-joshua.yeong@starfivetech.com>
Date: Tue, 23 Apr 2024 15:26:39 +0800
From: Joshua Yeong <joshua.yeong@...rfivetech.com>
To: robh@...nel.org,
krzk+dt@...nel.org,
conor+dt@...nel.org,
conor@...nel.org,
paul.walmsley@...ive.com,
palmer@...belt.com,
aou@...s.berkeley.edu,
joshua.yeong@...rfivetech.com,
leyfoon.tan@...rfivetech.com,
jeeheng.sia@...rfivetech.com
Cc: devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org,
linux-riscv@...ts.infradead.org
Subject: [PATCH v2 2/2] dt-bindings: cache: Add docs for StarFive Starlink cache controller
Add DT binding documentation used by StarFive's
JH8100 SoC Starlink cache controller.
Signed-off-by: Joshua Yeong <joshua.yeong@...rfivetech.com>
---
.../cache/starfive,jh8100-starlink-cache.yaml | 62 +++++++++++++++++++
1 file changed, 62 insertions(+)
create mode 100644 Documentation/devicetree/bindings/cache/starfive,jh8100-starlink-cache.yaml
diff --git a/Documentation/devicetree/bindings/cache/starfive,jh8100-starlink-cache.yaml b/Documentation/devicetree/bindings/cache/starfive,jh8100-starlink-cache.yaml
new file mode 100644
index 000000000000..a8f39baca6cf
--- /dev/null
+++ b/Documentation/devicetree/bindings/cache/starfive,jh8100-starlink-cache.yaml
@@ -0,0 +1,62 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/cache/starfive,starlink-500-cache.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: StarFive StarLink-500 Cache Controller
+
+maintainers:
+ - Joshua Yeong <joshua.yeong@...rfivetech.com>
+
+description:
+ StarFive's JH8100 StarLink Cache Controller manages the L3 cache shared
+ between clusters of CPU cores. The cache driver enables RISC-V non-standard
+ cache management as an alternative to instructions in the RISC-V Zicbom
+ extension.
+
+allOf:
+ - $ref: /schemas/cache-controller.yaml#
+
+# We need a select here so we don't match all nodes with 'cache'
+select:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - starfive,jh8100-starlink-cache
+
+ required:
+ - compatible
+
+properties:
+ compatible:
+ items:
+ - const: starfive,jh8100-starlink-cache
+ - const: cache
+
+ reg:
+ maxItems: 1
+
+unevaluatedProperties: false
+
+required:
+ - compatible
+ - reg
+ - cache-block-size
+ - cache-level
+ - cache-sets
+ - cache-size
+ - cache-unified
+
+examples:
+ - |
+ cache-controller@...00000 {
+ compatible = "starfive,jh8100-starlink-cache", "cache";
+ reg = <0x15000000 0x278>;
+ cache-block-size = <64>;
+ cache-level = <3>;
+ cache-sets = <8192>;
+ cache-size = <0x400000>;
+ cache-unified;
+ };
--
2.25.1
Powered by blists - more mailing lists