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/rtc/epson,rx6110.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 Epson RX6110 Real Time Clock
    2 ============================
    3 
    4 The Epson RX6110 can be used with SPI or I2C busses. The kind of
    5 bus depends on the SPISEL pin and can not be configured via software.
    6 
    7 I2C mode
    8 --------
    9 
   10 Required properties:
   11   - compatible: should be: "epson,rx6110"
   12   - reg : the I2C address of the device for I2C
   13 
   14 Example:
   15 
   16         rtc: rtc@32 {
   17                 compatible = "epson,rx6110"
   18                 reg = <0x32>;
   19         };
   20 
   21 SPI mode
   22 --------
   23 
   24 Required properties:
   25   - compatible: should be: "epson,rx6110"
   26   - reg: chip select number
   27   - spi-cs-high: RX6110 needs chipselect high
   28   - spi-cpha: RX6110 works with SPI shifted clock phase
   29   - spi-cpol: RX6110 works with SPI inverse clock polarity
   30 
   31 Example:
   32 
   33         rtc: rtc@3 {
   34                 compatible = "epson,rx6110"
   35                 reg = <3>
   36                 spi-cs-high;
   37                 spi-cpha;
   38                 spi-cpol;
   39         };

Cache object: 294a44e76689636255f96822b04cb11f


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