1*7d0873ebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*7d0873ebSEmmanuel Vadot%YAML 1.2 3*7d0873ebSEmmanuel Vadot--- 4*7d0873ebSEmmanuel Vadot$id: http://devicetree.org/schemas/rtc/marvell,pxa-rtc.yaml# 5*7d0873ebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*7d0873ebSEmmanuel Vadot 7*7d0873ebSEmmanuel Vadottitle: PXA Real Time Clock 8*7d0873ebSEmmanuel Vadot 9*7d0873ebSEmmanuel Vadotmaintainers: 10*7d0873ebSEmmanuel Vadot - Javier Carrasco <javier.carrasco.cruz@gmail.com> 11*7d0873ebSEmmanuel Vadot 12*7d0873ebSEmmanuel VadotallOf: 13*7d0873ebSEmmanuel Vadot - $ref: rtc.yaml# 14*7d0873ebSEmmanuel Vadot 15*7d0873ebSEmmanuel Vadotproperties: 16*7d0873ebSEmmanuel Vadot compatible: 17*7d0873ebSEmmanuel Vadot const: marvell,pxa-rtc 18*7d0873ebSEmmanuel Vadot 19*7d0873ebSEmmanuel Vadot reg: 20*7d0873ebSEmmanuel Vadot maxItems: 1 21*7d0873ebSEmmanuel Vadot 22*7d0873ebSEmmanuel Vadot interrupts: 23*7d0873ebSEmmanuel Vadot items: 24*7d0873ebSEmmanuel Vadot - description: 1 Hz 25*7d0873ebSEmmanuel Vadot - description: Alarm 26*7d0873ebSEmmanuel Vadot 27*7d0873ebSEmmanuel Vadotrequired: 28*7d0873ebSEmmanuel Vadot - compatible 29*7d0873ebSEmmanuel Vadot - reg 30*7d0873ebSEmmanuel Vadot - interrupts 31*7d0873ebSEmmanuel Vadot 32*7d0873ebSEmmanuel VadotunevaluatedProperties: false 33*7d0873ebSEmmanuel Vadot 34*7d0873ebSEmmanuel Vadotexamples: 35*7d0873ebSEmmanuel Vadot - | 36*7d0873ebSEmmanuel Vadot rtc@40900000 { 37*7d0873ebSEmmanuel Vadot compatible = "marvell,pxa-rtc"; 38*7d0873ebSEmmanuel Vadot reg = <0x40900000 0x3c>; 39*7d0873ebSEmmanuel Vadot interrupts = <30>, <31>; 40*7d0873ebSEmmanuel Vadot }; 41