summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/mtd/microchip,mchp23k256.yaml
blob: 32e9124594ac708258b601caebf95dbfa8798ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/mtd/microchip,mchp23k256.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Microchip 23K256 SPI SRAM

maintainers:
  - Richard Weinberger <richard@nod.at>

description:
  The Microchip 23K256 is a 256 Kbit (32 Kbyte) serial SRAM with an
  SPI interface,supporting clock frequencies up to 20 MHz. It features
  a 32-byte page size for writes and supports byte, page, and
  sequential access modes.

allOf:
  - $ref: /schemas/spi/spi-peripheral-props.yaml#

properties:
  compatible:
    enum:
      - microchip,mchp23k256
      - microchip,mchp23lcv1024

  reg:
    maxItems: 1

required:
  - reg
  - compatible
  - spi-max-frequency

unevaluatedProperties: false

examples:
  - |
    spi {
        #address-cells = <1>;
        #size-cells = <0>;

        sram@0 {
            compatible = "microchip,mchp23k256";
            reg = <0>;
            spi-max-frequency = <20000000>;
        };
    };
...