1# Copyright 2024 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4description: IRTC
5
6compatible: "nxp,irtc"
7
8include:
9  - name: rtc.yaml
10  - name: rtc-device.yaml
11
12properties:
13  reg:
14    required: true
15
16  clock-src:
17    type: int
18    required: true
19    enum:
20      - 0
21      - 1
22    description: |
23      The input clock select for IRTC.
24      0 <- 16.384 kHz
25      1 <- 32.768 kHz
26
27  output-clk-en:
28    type: int
29    default: 0
30    enum:
31      - 0
32      - 1
33      - 2
34      - 3
35    description: |
36      Enable clock as an output for other peripherals to use.
37      0 <- No clock output
38      1 <- Fine 1Hz
39      2 <- Buffered Oscillator Clock
40      3 <- Coarse 1Hz
41      Default value ensures the output clock is turned off.
42      This is the reset value.
43