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/renesas,riic.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 configuration for Renesas RIIC driver
    2 
    3 Required properties:
    4 - compatible      :
    5         "renesas,riic-r7s72100" if the device is a part of a R7S72100 SoC.
    6         "renesas,riic-r7s9210" if the device is a part of a R7S9210 SoC.
    7         "renesas,riic-rz" for a generic RZ/A compatible device.
    8 - reg             : address start and address range size of device
    9 - interrupts      : 8 interrupts (TEI, RI, TI, SPI, STI, NAKI, ALI, TMOI)
   10 - clock-frequency : frequency of bus clock in Hz
   11 - #address-cells  : should be <1>
   12 - #size-cells     : should be <0>
   13 
   14 Pinctrl properties might be needed, too. See there.
   15 
   16 Example:
   17 
   18         i2c0: i2c@fcfee000 {
   19                 compatible = "renesas,riic-r7s72100", "renesas,riic-rz";
   20                 reg = <0xfcfee000 0x44>;
   21                 interrupts = <0 157 IRQ_TYPE_LEVEL_HIGH>,
   22                              <0 158 IRQ_TYPE_EDGE_RISING>,
   23                              <0 159 IRQ_TYPE_EDGE_RISING>,
   24                              <0 160 IRQ_TYPE_LEVEL_HIGH>,
   25                              <0 161 IRQ_TYPE_LEVEL_HIGH>,
   26                              <0 162 IRQ_TYPE_LEVEL_HIGH>,
   27                              <0 163 IRQ_TYPE_LEVEL_HIGH>,
   28                              <0 164 IRQ_TYPE_LEVEL_HIGH>;
   29                 clock-frequency = <100000>;
   30                 #address-cells = <1>;
   31                 #size-cells = <0>;
   32         };

Cache object: 56498ed3e3fc6bfaef8dcecc9530ae4c


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