From: Alexey Charkov <alchark@gmail.com>
To: Mark Brown <broonie@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Tudor Ambarus <tudor.ambarus@linaro.org>,
Pratyush Yadav <pratyush@kernel.org>,
Michael Walle <mwalle@kernel.org>,
Miquel Raynal <miquel.raynal@bootlin.com>,
Richard Weinberger <richard@nod.at>,
Vignesh Raghavendra <vigneshr@ti.com>,
Krzysztof Kozlowski <krzk@kernel.org>
Cc: linux-spi@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
Alexey Charkov <alchark@gmail.com>
Subject: [PATCH 1/3] dt-bindings: spi: Add VIA/WonderMedia serial flash controller
Date: Sat, 10 May 2025 23:42:21 +0400 [thread overview]
Message-ID: <20250510-wmt-sflash-v1-1-02a1ac6adf12@gmail.com> (raw)
In-Reply-To: <20250510-wmt-sflash-v1-0-02a1ac6adf12@gmail.com>
Add a binding for the serial flash controller found on VIA/WonderMedia
SoCs, which provides semi-transparent access to SPI NOR chips by
mapping their contents to the physical CPU address space.
Signed-off-by: Alexey Charkov <alchark@gmail.com>
---
.../devicetree/bindings/spi/via,vt8500-sflash.yaml | 122 +++++++++++++++++++++
MAINTAINERS | 1 +
2 files changed, 123 insertions(+)
diff --git a/Documentation/devicetree/bindings/spi/via,vt8500-sflash.yaml b/Documentation/devicetree/bindings/spi/via,vt8500-sflash.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d2ea0dacdd56118c0cb5a1cb510ceb7591e1e5ca
--- /dev/null
+++ b/Documentation/devicetree/bindings/spi/via,vt8500-sflash.yaml
@@ -0,0 +1,122 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/spi/via,vt8500-sflash.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: VIA/WonderMedia serial flash controller
+
+description:
+ This controller is used on VIA/WonderMedia SoCs such as VIA VT8500,
+ WonderMedia WM8850 and similar. It provides a semi-transparent interface
+ for reading and writing SPI NOR chip contents via a physical memory map,
+ abstracting away all SPI communication, while also providing a direct
+ mechanism for issuing "programmable commands" to the underlying SPI chip
+
+maintainers:
+ - Alexey Charkov <alchark@gmail.com>
+
+properties:
+ compatible:
+ enum:
+ - via,vt8500-sflash
+ - wm,wm8505-sflash
+ - wm,wm8650-sflash
+ - wm,wm8750-sflash
+ - wm,wm8850-sflash
+
+ reg:
+ items:
+ - description: MMIO registers region of the controller
+ - description:
+ Physical memory region within which the controller will map the
+ flash contents of chip 0 for reading and writing. If the flash
+ size is smaller than this region, it will be mapped at its end.
+ Note that if this chip is used as the boot device (as is most
+ often the case), the boot ROM maps it at the very end of the
+ CPU address space (i.e. ending at 0xffffffff)
+ - description:
+ Physical memory region within which the controller will map the
+ flash contents of chip 1 for reading and writing. If the flash
+ size is smaller than this region, it will be mapped at its end
+
+ reg-names:
+ items:
+ - const: io
+ - const: chip0-mmap
+ - const: chip1-mmap
+
+ clocks:
+ maxItems: 1
+
+ "#address-cells":
+ const: 1
+
+ "#size-cells":
+ const: 0
+
+patternProperties:
+ "^flash@[0-1]$":
+ type: object
+ additionalProperties: true
+
+ properties:
+ reg:
+ minimum: 0
+ maximum: 1
+
+required:
+ - compatible
+ - reg
+ - reg-names
+ - clocks
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ sflash: spi-nor-controller@d8002000 {
+ compatible = "wm,wm8850-sflash";
+ reg = <0xd8002000 0x400>,
+ <0xff800000 0x800000>,
+ <0xef800000 0x800000>;
+ reg-names = "io", "chip0-mmap", "chip1-mmap";
+ clocks = <&clksf>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ flash@0 {
+ compatible = "jedec,spi-nor";
+ reg = <0>;
+
+ partitions {
+ compatible = "fixed-partitions";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ partition@0 {
+ label = "U-boot";
+ reg = <0 0x50000>;
+ read-only;
+ };
+
+ partition@1 {
+ label = "U-boot environment 1";
+ reg = <0x50000 0x10000>;
+ };
+
+ partition@2 {
+ label = "U-boot environment 2";
+ reg = <0x60000 0x10000>;
+ };
+
+ partition@3 {
+ label = "W-load";
+ reg = <0x70000 0x10000>;
+ read-only;
+ };
+ };
+ };
+ };
+
+...
diff --git a/MAINTAINERS b/MAINTAINERS
index 6dbdf02d6b0c9357ad1da520a0f6c16b7f38f879..f09c457bbfc5ef71a3f8379c111bac52b767cbbc 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3475,6 +3475,7 @@ F: Documentation/devicetree/bindings/hwinfo/via,vt8500-scc-id.yaml
F: Documentation/devicetree/bindings/i2c/wm,wm8505-i2c.yaml
F: Documentation/devicetree/bindings/interrupt-controller/via,vt8500-intc.yaml
F: Documentation/devicetree/bindings/pwm/via,vt8500-pwm.yaml
+F: Documentation/devicetree/bindings/spi/via,vt8500-sflash.yaml
F: arch/arm/boot/dts/vt8500/
F: arch/arm/mach-vt8500/
F: drivers/clocksource/timer-vt8500.c
--
2.49.0
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
next prev parent reply other threads:[~2025-05-10 19:47 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-10 19:42 [PATCH 0/3] mtd: spi-nor: Add VIA/WonderMedia serial flash controller driver Alexey Charkov
2025-05-10 19:42 ` Alexey Charkov [this message]
2025-05-14 20:41 ` [PATCH 1/3] dt-bindings: spi: Add VIA/WonderMedia serial flash controller Rob Herring
2025-05-15 19:50 ` Alexey Charkov
2025-06-06 8:29 ` Krzysztof Kozlowski
2025-06-06 9:06 ` Alexey Charkov
2025-06-09 9:07 ` Miquel Raynal
2025-06-09 9:15 ` Alexey Charkov
2025-05-10 19:42 ` [PATCH 2/3] mtd: spi-nor: Add a driver for the " Alexey Charkov
2025-05-11 11:13 ` kernel test robot
2025-05-11 12:16 ` kernel test robot
2025-05-12 9:20 ` Pratyush Yadav
2025-05-12 17:50 ` Alexey Charkov
2025-07-24 13:51 ` Pratyush Yadav
2025-07-28 7:09 ` Mika Westerberg
2025-05-10 19:42 ` [PATCH 3/3] ARM: dts: vt8500: Add serial flash controller and its clock Alexey Charkov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250510-wmt-sflash-v1-1-02a1ac6adf12@gmail.com \
--to=alchark@gmail.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-spi@vger.kernel.org \
--cc=miquel.raynal@bootlin.com \
--cc=mwalle@kernel.org \
--cc=pratyush@kernel.org \
--cc=richard@nod.at \
--cc=robh@kernel.org \
--cc=tudor.ambarus@linaro.org \
--cc=vigneshr@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).