Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rtc/nuvoton,nct3018y.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: NUVOTON NCT3018Y Real Time Clock
0008 
0009 allOf:
0010   - $ref: "rtc.yaml#"
0011 
0012 maintainers:
0013   - Medad CChien <ctcchien@nuvoton.com>
0014   - Mia Lin <mimi05633@gmail.com>
0015 
0016 properties:
0017   compatible:
0018     const: nuvoton,nct3018y
0019 
0020   reg:
0021     maxItems: 1
0022 
0023   start-year: true
0024 
0025   reset-source: true
0026 
0027 required:
0028   - compatible
0029   - reg
0030 
0031 additionalProperties: false
0032 
0033 examples:
0034   - |
0035     i2c {
0036         #address-cells = <1>;
0037         #size-cells = <0>;
0038 
0039         rtc@6f {
0040             compatible = "nuvoton,nct3018y";
0041             reg = <0x6f>;
0042         };
0043     };
0044 
0045 ...