The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/i2c/i2c-fsi.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Device-tree bindings for FSI-attached I2C master and busses
    2 -----------------------------------------------------------
    3 
    4 Required properties:
    5  - compatible = "ibm,i2c-fsi";
    6  - reg = < address size >;              : The FSI CFAM address and address
    7                                           space size.
    8  - #address-cells = <1>;                : Number of address cells in child
    9                                           nodes.
   10  - #size-cells = <0>;                   : Number of size cells in child nodes.
   11  - child nodes                          : Nodes to describe busses off the I2C
   12                                           master.
   13 
   14 Child node required properties:
   15  - reg = < port number >                : The port number on the I2C master.
   16 
   17 Child node optional properties:
   18  - child nodes                          : Nodes to describe devices on the I2C
   19                                           bus.
   20 
   21 Examples:
   22 
   23     i2c@1800 {
   24         compatible = "ibm,i2c-fsi";
   25         reg = < 0x1800 0x400 >;
   26         #address-cells = <1>;
   27         #size-cells = <0>;
   28 
   29         i2c-bus@0 {
   30             reg = <0>;
   31         };
   32 
   33         i2c-bus@1 {
   34             reg = <1>;
   35 
   36             eeprom@50 {
   37                 compatible = "vendor,dev-name";
   38             };
   39         };
   40     };

Cache object: a9d65f0a868c72359fbf0a7f74d82081


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.