From: Longbin Li Date: Tue, 4 Mar 2025 08:35:42 +0000 (+0800) Subject: dt-bindings: spi: add SG2044 SPI NOR controller driver X-Git-Tag: v6.15-rc1~182^2~15^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9f95e2dff3fe6a5f4cec786a106558bb8f268a16;p=thirdparty%2Flinux.git dt-bindings: spi: add SG2044 SPI NOR controller driver Add SPI NOR driver for SG2044, including read, write operations. Signed-off-by: Longbin Li Reviewed-by: Rob Herring (Arm) Link: https://patch.msgid.link/20250304083548.10101-2-looong.bin@gmail.com Signed-off-by: Mark Brown --- diff --git a/Documentation/devicetree/bindings/spi/spi-sg2044-nor.yaml b/Documentation/devicetree/bindings/spi/spi-sg2044-nor.yaml new file mode 100644 index 0000000000000..948ff7a096433 --- /dev/null +++ b/Documentation/devicetree/bindings/spi/spi-sg2044-nor.yaml @@ -0,0 +1,52 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/spi/spi-sg2044-nor.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: SG2044 SPI NOR controller + +maintainers: + - Longbin Li + +allOf: + - $ref: spi-controller.yaml# + +properties: + compatible: + const: sophgo,sg2044-spifmc-nor + + reg: + maxItems: 1 + + clocks: + maxItems: 1 + + interrupts: + maxItems: 1 + + resets: + maxItems: 1 + +required: + - compatible + - reg + - clocks + - interrupts + - resets + +unevaluatedProperties: false + +examples: + - | + #include + + spi@1000000 { + compatible = "sophgo,sg2044-spifmc-nor"; + reg = <0x1000000 0x4000000>; + #address-cells = <1>; + #size-cells = <0>; + clocks = <&clk 0>; + interrupts = <37 IRQ_TYPE_LEVEL_HIGH>; + resets = <&rst 0>; + };