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,zynqmp-rtc.yaml

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 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/rtc/xlnx,zynqmp-rtc.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Xilinx Zynq Ultrascale+ MPSoC Real Time Clock
    8 
    9 description:
   10   RTC controller for the Xilinx Zynq MPSoC Real Time Clock.
   11   The RTC controller has separate IRQ lines for seconds and alarm.
   12 
   13 maintainers:
   14   - Michal Simek <michal.simek@xilinx.com>
   15 
   16 allOf:
   17   - $ref: rtc.yaml#
   18 
   19 properties:
   20   compatible:
   21     const: xlnx,zynqmp-rtc
   22 
   23   reg:
   24     maxItems: 1
   25 
   26   clocks:
   27     maxItems: 1
   28 
   29   clock-names:
   30     items:
   31       - const: rtc
   32 
   33   interrupts:
   34     maxItems: 2
   35 
   36   interrupt-names:
   37     items:
   38       - const: alarm
   39       - const: sec
   40 
   41   calibration:
   42     description: |
   43       calibration value for 1 sec period which will
   44       be programmed directly to calibration register.
   45     $ref: /schemas/types.yaml#/definitions/uint32
   46     minimum: 0x1
   47     maximum: 0x1FFFFF
   48     default: 0x198233
   49     deprecated: true
   50 
   51 required:
   52   - compatible
   53   - reg
   54   - interrupts
   55   - interrupt-names
   56 
   57 additionalProperties: false
   58 
   59 examples:
   60   - |
   61     soc {
   62       #address-cells = <2>;
   63       #size-cells = <2>;
   64 
   65       rtc: rtc@ffa60000 {
   66         compatible = "xlnx,zynqmp-rtc";
   67         reg = <0x0 0xffa60000 0x0 0x100>;
   68         interrupt-parent = <&gic>;
   69         interrupts = <0 26 4>, <0 27 4>;
   70         interrupt-names = "alarm", "sec";
   71         calibration = <0x198233>;
   72         clock-names = "rtc";
   73         clocks = <&rtc_clk>;
   74       };
   75     };

Cache object: 1e5404ecfd4c13c61c55a8292691f483


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