~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/eeprom/at25.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/devicetree/bindings/eeprom/at25.yaml (Version linux-6.12-rc7) and /Documentation/devicetree/bindings/eeprom/at25.yaml (Version linux-6.2.16)


  1 # SPDX-License-Identifier: GPL-2.0-only OR BSD      1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2 %YAML 1.2                                           2 %YAML 1.2
  3 ---                                                 3 ---
  4 $id: http://devicetree.org/schemas/eeprom/at25 !!   4 $id: "http://devicetree.org/schemas/eeprom/at25.yaml#"
  5 $schema: http://devicetree.org/meta-schemas/co !!   5 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
  6                                                     6 
  7 title: SPI EEPROMs or FRAMs compatible with At      7 title: SPI EEPROMs or FRAMs compatible with Atmel's AT25
  8                                                     8 
  9 maintainers:                                        9 maintainers:
 10   - Christian Eggers <ceggers@arri.de>              10   - Christian Eggers <ceggers@arri.de>
 11                                                    11 
 12 properties:                                        12 properties:
 13   $nodename:                                       13   $nodename:
 14     anyOf:                                         14     anyOf:
 15       - pattern: "^eeprom@[0-9a-f]{1,2}$"          15       - pattern: "^eeprom@[0-9a-f]{1,2}$"
 16       - pattern: "^fram@[0-9a-f]{1,2}$"            16       - pattern: "^fram@[0-9a-f]{1,2}$"
 17                                                    17 
 18   # There are multiple known vendors who manuf     18   # There are multiple known vendors who manufacture EEPROM chips compatible
 19   # with Atmel's AT25. The compatible string r     19   # with Atmel's AT25. The compatible string requires two items where the
 20   # 'vendor' and 'model' parts of the first ar     20   # 'vendor' and 'model' parts of the first are the actual chip and the second
 21   # item is fixed to "atmel,at25". Some existi     21   # item is fixed to "atmel,at25". Some existing bindings only have the
 22   # "atmel,at25" part and should be fixed by s     22   # "atmel,at25" part and should be fixed by somebody who knows vendor and
 23   # product.                                       23   # product.
 24   compatible:                                      24   compatible:
 25     oneOf:                                         25     oneOf:
 26       - items:                                     26       - items:
 27           - enum:                                  27           - enum:
 28               - anvo,anv32e61w                     28               - anvo,anv32e61w
 29               - atmel,at25256B                     29               - atmel,at25256B
 30               - fujitsu,mb85rs1mt                  30               - fujitsu,mb85rs1mt
 31               - fujitsu,mb85rs256              << 
 32               - fujitsu,mb85rs64                   31               - fujitsu,mb85rs64
 33               - microchip,at25160bn                32               - microchip,at25160bn
 34               - microchip,25lc040                  33               - microchip,25lc040
 35               - st,m95m02                          34               - st,m95m02
 36               - st,m95256                          35               - st,m95256
 37               - st,m95640                      << 
 38               - cypress,fm25                       36               - cypress,fm25
 39                                                    37 
 40           - const: atmel,at25                      38           - const: atmel,at25
 41                                                    39 
 42       # Please don't use this alternative for      40       # Please don't use this alternative for new bindings.
 43       - items:                                     41       - items:
 44           - const: atmel,at25                      42           - const: atmel,at25
 45                                                    43 
 46   reg:                                             44   reg:
 47     maxItems: 1                                    45     maxItems: 1
 48                                                    46 
 49   pagesize:                                        47   pagesize:
 50     $ref: /schemas/types.yaml#/definitions/uin     48     $ref: /schemas/types.yaml#/definitions/uint32
 51     enum: [1, 8, 16, 32, 64, 128, 256, 512, 10     49     enum: [1, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072]
 52     description:                                   50     description:
 53       Size of the eeprom page. FRAMs don't hav     51       Size of the eeprom page. FRAMs don't have pages.
 54                                                    52 
 55   size:                                            53   size:
 56     $ref: /schemas/types.yaml#/definitions/uin     54     $ref: /schemas/types.yaml#/definitions/uint32
 57     description:                                   55     description:
 58       Total eeprom size in bytes.                  56       Total eeprom size in bytes.
 59                                                    57 
 60   address-width:                                   58   address-width:
 61     $ref: /schemas/types.yaml#/definitions/uin     59     $ref: /schemas/types.yaml#/definitions/uint32
 62     enum: [ 8, 9, 16, 24 ]                         60     enum: [ 8, 9, 16, 24 ]
 63     description:                                   61     description:
 64       Number of address bits.                      62       Number of address bits.
 65       For 9 bits, the MSB of the address is se     63       For 9 bits, the MSB of the address is sent as bit 3 of the instruction
 66       byte, before the address byte.               64       byte, before the address byte.
 67                                                    65 
 68   spi-cpha: true                                   66   spi-cpha: true
 69                                                    67 
 70   spi-cpol: true                                   68   spi-cpol: true
 71                                                    69 
 72   read-only:                                       70   read-only:
 73     description:                                   71     description:
 74       Disable writes to the eeprom.                72       Disable writes to the eeprom.
 75     type: boolean                                  73     type: boolean
 76                                                    74 
 77   wp-gpios:                                        75   wp-gpios:
 78     maxItems: 1                                    76     maxItems: 1
 79     description:                                   77     description:
 80       GPIO to which the write-protect pin of t     78       GPIO to which the write-protect pin of the chip is connected.
 81                                                    79 
 82   # Deprecated: at25,byte-len, at25,addr-mode,     80   # Deprecated: at25,byte-len, at25,addr-mode, at25,page-size
 83   at25,byte-len:                                   81   at25,byte-len:
 84     $ref: /schemas/types.yaml#/definitions/uin     82     $ref: /schemas/types.yaml#/definitions/uint32
 85     description:                                   83     description:
 86       Total eeprom size in bytes. Deprecated,      84       Total eeprom size in bytes. Deprecated, use "size" property instead.
 87     deprecated: true                               85     deprecated: true
 88                                                    86 
 89   at25,addr-mode:                                  87   at25,addr-mode:
 90     $ref: /schemas/types.yaml#/definitions/uin     88     $ref: /schemas/types.yaml#/definitions/uint32
 91     description:                                   89     description:
 92       Addr-mode flags, as defined in include/l     90       Addr-mode flags, as defined in include/linux/spi/eeprom.h.
 93       Deprecated, use "address-width" property     91       Deprecated, use "address-width" property instead.
 94     deprecated: true                               92     deprecated: true
 95                                                    93 
 96   at25,page-size:                                  94   at25,page-size:
 97     $ref: /schemas/types.yaml#/definitions/uin     95     $ref: /schemas/types.yaml#/definitions/uint32
 98     description:                                   96     description:
 99       Size of the eeprom page. Deprecated, use     97       Size of the eeprom page. Deprecated, use "pagesize" property instead.
100     deprecated: true                               98     deprecated: true
101                                                    99 
102 required:                                         100 required:
103   - compatible                                    101   - compatible
104   - reg                                           102   - reg
105   - spi-max-frequency                             103   - spi-max-frequency
106                                                   104 
107 allOf:                                            105 allOf:
108   - $ref: /schemas/spi/spi-peripheral-props.ya    106   - $ref: /schemas/spi/spi-peripheral-props.yaml#
109   - $ref: /schemas/nvmem/nvmem.yaml               107   - $ref: /schemas/nvmem/nvmem.yaml
110   - if:                                           108   - if:
111       properties:                                 109       properties:
112         compatible:                               110         compatible:
113           not:                                    111           not:
114             contains:                             112             contains:
115               const: cypress,fm25                 113               const: cypress,fm25
116     then:                                         114     then:
117       required:                                   115       required:
118         - pagesize                                116         - pagesize
119         - size                                    117         - size
120         - address-width                           118         - address-width
121                                                   119 
122 unevaluatedProperties: false                      120 unevaluatedProperties: false
123                                                   121 
124 examples:                                         122 examples:
125   - |                                             123   - |
126     #include <dt-bindings/gpio/gpio.h>            124     #include <dt-bindings/gpio/gpio.h>
127     spi {                                      !! 125     spi0 {
128         #address-cells = <1>;                     126         #address-cells = <1>;
129         #size-cells = <0>;                        127         #size-cells = <0>;
130                                                   128 
131         eeprom@0 {                                129         eeprom@0 {
132             compatible = "st,m95256", "atmel,a    130             compatible = "st,m95256", "atmel,at25";
133             reg = <0>;                            131             reg = <0>;
134             spi-max-frequency = <5000000>;        132             spi-max-frequency = <5000000>;
135             spi-cpha;                             133             spi-cpha;
136             spi-cpol;                             134             spi-cpol;
137             wp-gpios = <&gpio1 3 0>;              135             wp-gpios = <&gpio1 3 0>;
138                                                   136 
139             pagesize = <64>;                      137             pagesize = <64>;
140             size = <32768>;                       138             size = <32768>;
141             address-width = <16>;                 139             address-width = <16>;
142         };                                        140         };
143                                                   141 
144         fram@1 {                                  142         fram@1 {
145             compatible = "cypress,fm25", "atme    143             compatible = "cypress,fm25", "atmel,at25";
146             reg = <1>;                            144             reg = <1>;
147             spi-max-frequency = <40000000>;       145             spi-max-frequency = <40000000>;
148         };                                        146         };
149     };                                            147     };
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php