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/rtc-meson.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 * Amlogic Meson6, Meson8, Meson8b and Meson8m2 RTC
    2 
    3 Required properties:
    4 - compatible: should be one of the following describing the hardware:
    5         * "amlogic,meson6-rtc"
    6         * "amlogic,meson8-rtc"
    7         * "amlogic,meson8b-rtc"
    8         * "amlogic,meson8m2-rtc"
    9 
   10 - reg: physical register space for the controller's memory mapped registers.
   11 - interrupts: the interrupt line of the RTC block.
   12 - clocks: reference to the external 32.768kHz crystal oscillator.
   13 - vdd-supply: reference to the power supply of the RTC block.
   14 - resets: reset controller reference to allow reset of the controller
   15 
   16 Optional properties for the battery-backed non-volatile memory:
   17 - #address-cells: should be 1 to address the battery-backed non-volatile memory
   18 - #size-cells: should be 1 to reference the battery-backed non-volatile memory
   19 
   20 Optional child nodes:
   21 - see ../nvmem/nvmem.txt
   22 
   23 Example:
   24 
   25         rtc: rtc@740 {
   26                 compatible = "amlogic,meson6-rtc";
   27                 reg = <0x740 0x14>;
   28                 interrupts = <GIC_SPI 72 IRQ_TYPE_EDGE_RISING>;
   29                 clocks = <&rtc32k_xtal>;
   30                 vdd-supply = <&rtc_vdd>;
   31                 resets = <&reset RESET_RTC>;
   32 
   33                 #address-cells = <1>;
   34                 #size-cells = <1>;
   35         };

Cache object: 663eede732e96fc05d04d92ed0523672


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