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-img-scb.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 IMG Serial Control Bus (SCB) I2C Controller
    2 
    3 Required Properties:
    4 - compatible: "img,scb-i2c"
    5 - reg: Physical base address and length of controller registers
    6 - interrupts: Interrupt number used by the controller
    7 - clocks : Should contain a clock specifier for each entry in clock-names
    8 - clock-names : Should contain the following entries:
    9                 "scb", for the SCB core clock.
   10                 "sys", for the system clock.
   11 - clock-frequency: The I2C bus frequency in Hz
   12 - #address-cells: Should be <1>
   13 - #size-cells: Should be <0>
   14 
   15 Example:
   16 
   17 i2c@18100000 {
   18         compatible = "img,scb-i2c";
   19         reg = <0x18100000 0x200>;
   20         interrupts = <GIC_SHARED 2 IRQ_TYPE_LEVEL_HIGH>;
   21         clocks = <&i2c0_clk>, <&system_clk>;
   22         clock-names = "scb", "sys";
   23         clock-frequency = <400000>;
   24         #address-cells = <1>;
   25         #size-cells = <0>;
   26 };

Cache object: 426c01476313ad3f79bbb7f2c695baeb


[ 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.