57 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/nxp,pcf8563.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Philips PCF8563/Epson RTC8564 Real Time Clock8 9maintainers:10 - Alexandre Belloni <alexandre.belloni@bootlin.com>11 12allOf:13 - $ref: rtc.yaml#14 15properties:16 compatible:17 enum:18 - epson,rtc856419 - microcrystal,rv856420 - nxp,pca856521 - nxp,pcf856322 23 reg:24 maxItems: 125 26 "#clock-cells":27 const: 028 29 clock-output-names:30 maxItems: 131 32 interrupts:33 maxItems: 134 35 start-year: true36 wakeup-source: true37 38required:39 - compatible40 - reg41 42additionalProperties: false43 44examples:45 - |46 i2c {47 #address-cells = <1>;48 #size-cells = <0>;49 50 rtc@51 {51 compatible = "nxp,pcf8563";52 reg = <0x51>;53 #clock-cells = <0>;54 };55 };56...57