From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: "Jonathan Neuschäfer" <j.neuschaefer@gmx.net>,
linux-spi@vger.kernel.org, openbmc@lists.ozlabs.org
Cc: Lee Jones <lee@kernel.org>, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Mark Brown <broonie@kernel.org>,
Linus Walleij <linus.walleij@linaro.org>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-gpio@vger.kernel.org
Subject: Re: [PATCH 3/8] dt-bindings: spi: Add Nuvoton WPCM450 Flash Interface Unit (FIU)
Date: Sun, 6 Nov 2022 10:38:45 +0100 [thread overview]
Message-ID: <066919b1-c43d-f8ed-0191-cce8c575ee37@linaro.org> (raw)
In-Reply-To: <20221105185911.1547847-4-j.neuschaefer@gmx.net>
On 05/11/2022 19:59, Jonathan Neuschäfer wrote:
> The Flash Interface Unit (FIU) is the SPI flash controller in the
> Nuvoton WPCM450 BMC SoC. It supports four chip selects, and direct
> (memory-mapped) access to 16 MiB per chip. Larger flash chips can be
> accessed by software-defined SPI transfers.
>
> The FIU in newer NPCM7xx SoCs is not compatible with the WPCM450 FIU.
>
> Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
> ---
> .../bindings/spi/nuvoton,wpcm450-fiu.yaml | 76 +++++++++++++++++++
> 1 file changed, 76 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/spi/nuvoton,wpcm450-fiu.yaml
>
> diff --git a/Documentation/devicetree/bindings/spi/nuvoton,wpcm450-fiu.yaml b/Documentation/devicetree/bindings/spi/nuvoton,wpcm450-fiu.yaml
> new file mode 100644
> index 0000000000000..dc0ea2184f8d0
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/spi/nuvoton,wpcm450-fiu.yaml
> @@ -0,0 +1,76 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/spi/nuvoton,wpcm450-fiu.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Nuvoton WPCM450 Flash Interface Unit (FIU)
> +
> +maintainers:
> + - Jonathan Neuschäfer <j.neuschaefer@gmx.net>
> +
> +allOf:
> + - $ref: "/schemas/spi/spi-controller.yaml#"
Drop the quotes.
> +
> +properties:
> + compatible:
> + const: nuvoton,wpcm450-fiu
> +
> + reg:
> + items:
> + - description: FIU registers
> + - description: Memory-mapped flash contents
> +
> + reg-names:
> + items:
> + - const: control
> + - const: memory
> + minItems: 1
This does not match your 'reg'. Two items are required there.
> +
> + interrupts:
> + maxItems: 1
> +
> + clocks:
> + maxItems: 1
> +
> + nuvoton,shm:
> + $ref: /schemas/types.yaml#/definitions/phandle
> + description: a phandle to the SHM block (see ../arm/nuvoton,shm.yaml)
> +
> +required:
> + - compatible
> + - reg
> + - clocks
> +
> +unevaluatedProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/nuvoton,wpcm450-clk.h>
> + spi@c8000000 {
> + compatible = "nuvoton,wpcm450-fiu";
> + #address-cells = <1>;
> + #size-cells = <0>;
> + reg = <0xc8000000 0x1000>, <0xc0000000 0x4000000>;
reg is the second property.
> + reg-names = "control", "memory";
> + clocks = <&clk WPCM450_CLK_FIU>;
> + nuvoton,shm = <&shm>;
> +
> + flash@0 {
> + compatible = "jedec,spi-nor";
> + };
> + };
> +
> + shm: syscon@c8001000 {
> + compatible = "nuvoton,wpcm450-shm", "syscon";
> + reg = <0xc8001000 0x1000>;
> + };
> +
> + - |
> + #include <dt-bindings/clock/nuvoton,wpcm450-clk.h>
> + spi@c8000000 {
> + compatible = "nuvoton,wpcm450-fiu";
> + // the "memory" resource may be omitted
This is rather obvious, so what you should comment is WHY or WHEN second
resource can be omitted.
Not every instance on the hardware has it?
Just to remind - this is the description of hardware, not Linux behavior.
> + reg = <0xc8000000 0x1000>;
> + reg-names = "control";
> + };
> --
> 2.35.1
>
Best regards,
Krzysztof
next prev parent reply other threads:[~2022-11-06 9:38 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-05 18:59 [PATCH 0/8] Nuvoton WPCM450 FIU SPI flash controller Jonathan Neuschäfer
2022-11-05 18:59 ` [PATCH 1/8] pinctrl: nuvoton: wpcm450: Refactor MFSEL setting code Jonathan Neuschäfer
2022-11-05 18:59 ` [PATCH 2/8] pinctrl: nuvoton: wpcm450: Fix handling of inverted MFSEL bits Jonathan Neuschäfer
2022-11-05 18:59 ` [PATCH 3/8] dt-bindings: spi: Add Nuvoton WPCM450 Flash Interface Unit (FIU) Jonathan Neuschäfer
2022-11-06 9:38 ` Krzysztof Kozlowski [this message]
2022-11-06 14:45 ` Jonathan Neuschäfer
2022-11-07 8:09 ` Krzysztof Kozlowski
2022-11-07 12:12 ` Jonathan Neuschäfer
2022-11-06 13:27 ` Rob Herring
2022-11-05 18:59 ` [PATCH 4/8] dt-bindings: mfd: syscon: Add nuvoton,wpcm450-shm Jonathan Neuschäfer
2022-11-06 9:39 ` Krzysztof Kozlowski
2022-11-07 9:20 ` Lee Jones
2022-11-05 18:59 ` [PATCH 5/8] ARM: dts: wpcm450: Add FIU SPI controller node Jonathan Neuschäfer
2022-11-05 18:59 ` [PATCH 6/8] ARM: dts: wpcm450-supermicro-x9sci-ln4f: Add SPI flash Jonathan Neuschäfer
2022-11-05 18:59 ` [PATCH 7/8] spi: wpcm-fiu: Add driver for Nuvoton WPCM450 Flash Interface Unit (FIU) Jonathan Neuschäfer
2022-11-05 21:35 ` kernel test robot
2022-11-06 14:51 ` Jonathan Neuschäfer
2022-11-05 21:45 ` kernel test robot
2022-11-05 18:59 ` [PATCH 8/8] spi: wpcm-fiu: Add direct map support Jonathan Neuschäfer
2022-11-05 21:35 ` kernel test robot
2022-11-06 14:49 ` Jonathan Neuschäfer
2022-11-09 8:41 ` [PATCH 0/8] Nuvoton WPCM450 FIU SPI flash controller Linus Walleij
2022-11-09 10:08 ` Jonathan Neuschäfer
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=066919b1-c43d-f8ed-0191-cce8c575ee37@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=j.neuschaefer@gmx.net \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lee@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=openbmc@lists.ozlabs.org \
--cc=robh+dt@kernel.org \
/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).