diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-04-25 03:31:15 -0700 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-05-22 06:48:08 +0000 |
commit | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch) | |
tree | ca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/u-boot/doc/device-tree-bindings/misc/cros-ec.txt | |
parent | a14b48d18a9ed03ec191cf16b162206998a895ce (diff) |
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to
kvmfornfv repo and make use of the updated latest qemu for the
execution of all testcase
Change-Id: I1280af507a857675c7f81d30c95255635667bdd7
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/u-boot/doc/device-tree-bindings/misc/cros-ec.txt')
-rw-r--r-- | qemu/roms/u-boot/doc/device-tree-bindings/misc/cros-ec.txt | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/qemu/roms/u-boot/doc/device-tree-bindings/misc/cros-ec.txt b/qemu/roms/u-boot/doc/device-tree-bindings/misc/cros-ec.txt deleted file mode 100644 index 07ea7cdea..000000000 --- a/qemu/roms/u-boot/doc/device-tree-bindings/misc/cros-ec.txt +++ /dev/null @@ -1,38 +0,0 @@ -Chrome OS CROS_EC Binding -====================== - -The device tree node which describes the operation of the CROS_EC interface -is as follows: - -Required properties : -- compatible = "google,cros-ec" - -Optional properties : -- spi-max-frequency : Sets the maximum frequency (in Hz) for SPI bus - operation -- i2c-max-frequency : Sets the maximum frequency (in Hz) for I2C bus - operation -- ec-interrupt : Selects the EC interrupt, defined as a GPIO according - to the platform -- optimise-flash-write : Boolean property - if present then flash blocks - containing all 0xff will not be written, since we assume that the EC - uses that pattern for erased blocks - -The CROS_EC node should appear as a subnode of the interrupt that connects it -to the EC (e.g. i2c, spi, lpc). The reg property (as usual) will indicate -the unit address on that bus. - - -Example -======= - - spi@131b0000 { - cros-ec@0 { - reg = <0>; - compatible = "google,cros-ec"; - spi-max-frequency = <5000000>; - ec-interrupt = <&gpio 174 1>; - optimise-flash-write; - status = "disabled"; - }; - }; |