[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220406195946.2019-1-csharper2005@gmail.com>
Date: Wed, 6 Apr 2022 19:59:46 +0000
From: Mikhail Zhilkin <csharper2005@...il.com>
To: Miquel Raynal <miquel.raynal@...tlin.com>,
Richard Weinberger <richard@....at>,
Vignesh Raghavendra <vigneshr@...com>,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>
Cc: NOGUCHI Hiroshi <drvlabo@...il.com>, Karim <Karimdplay@...il.com>,
M <x1@...root.org>, Mikhail Zhilkin <csharper2005@...il.com>,
linux-mtd@...ts.infradead.org, linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org
Subject: [PATCH v2 1/2] dt-bindings: mtd: partitions: Add binding for Sercomm parser
Add YAML binding for Sercomm partition parser.
Signed-off-by: Mikhail Zhilkin <csharper2005@...il.com>
---
.../mtd/partitions/sercomm,sc-partitions.yaml | 70 +++++++++++++++++++
1 file changed, 70 insertions(+)
create mode 100644 Documentation/devicetree/bindings/mtd/partitions/sercomm,sc-partitions.yaml
diff --git a/Documentation/devicetree/bindings/mtd/partitions/sercomm,sc-partitions.yaml b/Documentation/devicetree/bindings/mtd/partitions/sercomm,sc-partitions.yaml
new file mode 100644
index 000000000000..07ea5596200c
--- /dev/null
+++ b/Documentation/devicetree/bindings/mtd/partitions/sercomm,sc-partitions.yaml
@@ -0,0 +1,70 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/mtd/partitions/sercomm,sc-partitions.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Sercomm Partitions
+
+description: |
+ Sercomm is one of hardware manufacturers providing SoCs used in home routers.
+ The Sercomm partition map table contains information about non-standard
+ partition offsets and sizes (depending on the bad blocks presence and their
+ locations). Partition map is used by many Sercomm-based Ralink devices
+ (e.g. Beeline, Netgear).
+
+maintainers:
+ - Mikhail Zhilkin <csharper2005@...il.com>
+
+properties:
+ compatible:
+ const: sercomm,sc-partitions
+
+ scpart-id:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ description: Partition id in Sercomm partition map
+
+required:
+ - compatible
+ - scpart-id
+
+additionalProperties: false
+
+examples:
+ - |
+ partitions
+ compatible = "sercomm,sc-partitions", "fixed-partitions";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ partition@0 {
+ label = "u-boot";
+ reg = <0x0 0x100000>;
+ scpart-id = <0>;
+ read-only;
+ };
+
+ partition@...000 {
+ label = "dynamic partition map";
+ reg = <0x100000 0x100000>;
+ scpart-id = <1>;
+ };
+
+ factory: partition@...000 {
+ label = "Factory";
+ reg = <0x200000 0x100000>;
+ scpart-id = <2>;
+ read-only;
+
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_factory_21000: macaddr@...00 {
+ reg = <0x21000 0x6>;
+ };
+ };
+
+ /* ... */
+
+ };
--
2.25.1
Powered by blists - more mailing lists