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-altera.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 * Altera I2C Controller
    2 * This is Altera's synthesizable logic block I2C Controller for use
    3 * in Altera's FPGAs.
    4 
    5 Required properties :
    6  - compatible : should be "altr,softip-i2c-v1.0"
    7  - reg        : Offset and length of the register set for the device
    8  - interrupts : <IRQ> where IRQ is the interrupt number.
    9  - clocks     : phandle to input clock.
   10  - #address-cells = <1>;
   11  - #size-cells = <0>;
   12 
   13 Recommended properties :
   14  - clock-frequency : desired I2C bus clock frequency in Hz.
   15 
   16 Optional properties :
   17  - fifo-size : Size of the RX and TX FIFOs in bytes.
   18  - Child nodes conforming to i2c bus binding
   19 
   20 Example :
   21 
   22         i2c@100080000 {
   23                 compatible = "altr,softip-i2c-v1.0";
   24                 reg = <0x00000001 0x00080000 0x00000040>;
   25                 interrupt-parent = <&intc>;
   26                 interrupts = <0 43 4>;
   27                 clocks = <&clk_0>;
   28                 clock-frequency = <100000>;
   29                 #address-cells = <1>;
   30                 #size-cells = <0>;
   31                 fifo-size = <4>;
   32 
   33                 eeprom@51 {
   34                         compatible = "atmel,24c32";
   35                         reg = <0x51>;
   36                         pagesize = <32>;
   37                 };
   38         };
   39 

Cache object: 65181300c5f9ad97ed9c3048b0138490


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