1# Copyright 2025 Linumiz GmbH
2# SPDX-License-Identifier: Apache-2.0
3
4description: TI MSPM0 Timer
5
6compatible: "ti,mspm0-timer"
7
8include: base.yaml
9
10properties:
11  reg:
12    required: true
13
14  interrupts:
15    required: true
16
17  ti,clk-prescaler:
18    type: int
19    required: true
20    description: |
21      TIMCLK clock source prescaler value.
22      Valid range [0 ... 255].
23
24  ti,clk-div:
25    type: int
26    required: true
27    default: 1
28    enum:
29      - 1
30      - 2
31      - 3
32      - 4
33      - 5
34      - 6
35      - 7
36      - 8
37    description: |
38      Clock divider selction value.
39