Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rtc/nxp,pcf8563.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Philips PCF8563/Epson RTC8564 Real Time Clock
0008 
0009 maintainers:
0010   - Alexandre Belloni <alexandre.belloni@bootlin.com>
0011 
0012 allOf:
0013   - $ref: rtc.yaml#
0014 
0015 properties:
0016   compatible:
0017     enum:
0018       - epson,rtc8564
0019       - microcrystal,rv8564
0020       - nxp,pca8565
0021       - nxp,pcf8563
0022       - nxp,pcf85263
0023       - nxp,pcf85363
0024 
0025   reg:
0026     maxItems: 1
0027 
0028   "#clock-cells":
0029     const: 0
0030 
0031   clock-output-names:
0032     maxItems: 1
0033 
0034   interrupts:
0035     maxItems: 1
0036 
0037   start-year: true
0038   wakeup-source: true
0039 
0040 required:
0041   - compatible
0042   - reg
0043 
0044 additionalProperties: false
0045 
0046 examples:
0047   - |
0048     i2c {
0049         #address-cells = <1>;
0050         #size-cells = <0>;
0051 
0052         rtc@51 {
0053             compatible = "nxp,pcf8563";
0054             reg = <0x51>;
0055             #clock-cells = <0>;
0056         };
0057     };
0058 ...