0001 Zodiac Inflight Innovations RAVE EEPROM Bindings
0002
0003 RAVE SP EEPROM device is a "MFD cell" device exposing physical EEPROM
0004 attached to RAVE Supervisory Processor. It is expected that its Device
0005 Tree node is specified as a child of the node corresponding to the
0006 parent RAVE SP device (as documented in
0007 Documentation/devicetree/bindings/mfd/zii,rave-sp.txt)
0008
0009 Required properties:
0010
0011 - compatible: Should be "zii,rave-sp-eeprom"
0012
0013 Optional properties:
0014
0015 - zii,eeprom-name: Unique EEPROM identifier describing its function in the
0016 system. Will be used as created NVMEM deivce's name.
0017
0018 Data cells:
0019
0020 Data cells are child nodes of eerpom node, bindings for which are
0021 documented in Documentation/devicetree/bindings/nvmem/nvmem.txt
0022
0023 Example:
0024
0025 rave-sp {
0026 compatible = "zii,rave-sp-rdu1";
0027 current-speed = <38400>;
0028
0029 eeprom@a4 {
0030 compatible = "zii,rave-sp-eeprom";
0031 reg = <0xa4 0x4000>;
0032 #address-cells = <1>;
0033 #size-cells = <1>;
0034 zii,eeprom-name = "main-eeprom";
0035
0036 wdt_timeout: wdt-timeout@81 {
0037 reg = <0x81 2>;
0038 };
0039 };
0040 }