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/atmel,at91rm9200-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
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/rtc/atmel,at91rm9200-rtc.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Atmel AT91 RTC Device Tree Bindings
    8 
    9 allOf:
   10   - $ref: "rtc.yaml#"
   11 
   12 maintainers:
   13   - Alexandre Belloni <alexandre.belloni@bootlin.com>
   14 
   15 properties:
   16   compatible:
   17     enum:
   18       - atmel,at91rm9200-rtc
   19       - atmel,at91sam9x5-rtc
   20       - atmel,sama5d4-rtc
   21       - atmel,sama5d2-rtc
   22       - microchip,sam9x60-rtc
   23       - microchip,sama7g5-rtc
   24 
   25   reg:
   26     maxItems: 1
   27 
   28   interrupts:
   29     maxItems: 1
   30 
   31   clocks:
   32     maxItems: 1
   33 
   34 required:
   35   - compatible
   36   - reg
   37   - interrupts
   38   - clocks
   39 
   40 additionalProperties: false
   41 
   42 examples:
   43   - |
   44     rtc@fffffe00 {
   45         compatible = "atmel,at91rm9200-rtc";
   46         reg = <0xfffffe00 0x100>;
   47         interrupts = <1 4 7>;
   48         clocks = <&clk32k>;
   49     };
   50 ...

Cache object: d568342d709b0bd5167f0a59d82772a2


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