IB/srp: Let srp_abort() return FAST_IO_FAIL if TL offline
[linux/fpc-iii.git] / Documentation / devicetree / bindings / mfd / cros-ec.txt
blobe0e59c58a1f92120864af95355655abb2805c34b
1 ChromeOS Embedded Controller
3 Google's ChromeOS EC is a Cortex-M device which talks to the AP and
4 implements various function such as keyboard and battery charging.
6 The EC can be connect through various means (I2C, SPI, LPC) and the
7 compatible string used depends on the inteface. Each connection method has
8 its own driver which connects to the top level interface-agnostic EC driver.
9 Other Linux driver (such as cros-ec-keyb for the matrix keyboard) connect to
10 the top-level driver.
12 Required properties (I2C):
13 - compatible: "google,cros-ec-i2c"
14 - reg: I2C slave address
16 Required properties (SPI):
17 - compatible: "google,cros-ec-spi"
18 - reg: SPI chip select
20 Required properties (LPC):
21 - compatible: "google,cros-ec-lpc"
22 - reg: List of (IO address, size) pairs defining the interface uses
25 Example for I2C:
27 i2c@12CA0000 {
28         cros-ec@1e {
29                 reg = <0x1e>;
30                 compatible = "google,cros-ec-i2c";
31                 interrupts = <14 0>;
32                 interrupt-parent = <&wakeup_eint>;
33                 wakeup-source;
34         };
37 Example for SPI:
39 spi@131b0000 {
40         ec@0 {
41                 compatible = "google,cros-ec-spi";
42                 reg = <0x0>;
43                 interrupts = <14 0>;
44                 interrupt-parent = <&wakeup_eint>;
45                 wakeup-source;
46                 spi-max-frequency = <5000000>;
47                 controller-data {
48                 cs-gpio = <&gpf0 3 4 3 0>;
49                 samsung,spi-cs;
50                 samsung,spi-feedback-delay = <2>;
51                 };
52         };
56 Example for LPC is not supplied as it is not yet implemented.