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/xlnx-rtc.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 * Xilinx Zynq Ultrascale+ MPSoC Real Time Clock
    2 
    3 RTC controller for the Xilinx Zynq MPSoC Real Time Clock
    4 Separate IRQ lines for seconds and alarm
    5 
    6 Required properties:
    7 - compatible: Should be "xlnx,zynqmp-rtc"
    8 - reg: Physical base address of the controller and length
    9        of memory mapped region.
   10 - interrupts: IRQ lines for the RTC.
   11 - interrupt-names: interrupt line names eg. "sec" "alarm"
   12 
   13 Optional:
   14 - calibration: calibration value for 1 sec period which will
   15                 be programmed directly to calibration register
   16 
   17 Example:
   18 rtc: rtc@ffa60000 {
   19         compatible = "xlnx,zynqmp-rtc";
   20         reg = <0x0 0xffa60000 0x100>;
   21         interrupt-parent = <&gic>;
   22         interrupts = <0 26 4>, <0 27 4>;
   23         interrupt-names = "alarm", "sec";
   24         calibration = <0x198233>;
   25 };

Cache object: b50a6da8e71c86fd922b9c02413a6a37


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