brintos

brintos / linux-shallow public Read only

0
0
Text · 696 B · 43d6868 Raw
41 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/marvell,pxa-rtc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: PXA Real Time Clock8 9maintainers:10  - Javier Carrasco <javier.carrasco.cruz@gmail.com>11 12allOf:13  - $ref: rtc.yaml#14 15properties:16  compatible:17    const: marvell,pxa-rtc18 19  reg:20    maxItems: 121 22  interrupts:23    items:24      - description: 1 Hz25      - description: Alarm26 27required:28  - compatible29  - reg30  - interrupts31 32unevaluatedProperties: false33 34examples:35  - |36    rtc@40900000 {37        compatible = "marvell,pxa-rtc";38        reg = <0x40900000 0x3c>;39        interrupts = <30>, <31>;40    };41