Oliver Gaskell | a819049 | 2024-09-12 16:50:52 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: (GPL-2.0+) |
| 2 | %YAML 1.2 |
| 3 | --- |
| 4 | $id: http://devicetree.org/schemas/timer/adi,sc5xx-gptimer.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: Analog Devices SC5XX Series SoC Timer Peripherals |
| 8 | |
| 9 | maintainers: |
| 10 | - Vasileios Bimpikas <vasileios.bimpikas@analog.com> |
| 11 | - Utsav Agarwal <utsav.agarwal@analog.com> |
| 12 | - Arturs Artamonovs <arturs.artamonovs@analog.com> |
| 13 | |
| 14 | properties: |
| 15 | compatible: |
| 16 | const: adi,sc5xx-gptimer |
| 17 | |
| 18 | reg: |
| 19 | minItems: 2 |
| 20 | maxItems: 2 |
| 21 | |
| 22 | clocks: |
| 23 | minItems: 1 |
| 24 | maxItems: 1 |
| 25 | |
| 26 | required: |
| 27 | - compatible |
| 28 | - reg |
| 29 | - clocks |
| 30 | |
| 31 | additionalProperties: false |
| 32 | |
| 33 | examples: |
| 34 | - | |
| 35 | timer0: timer@31018000 { |
| 36 | compatible = "adi,sc5xx-gptimer"; |
| 37 | reg = <0x31018004 0x100>, |
| 38 | <0x31018060 0x100>; |
| 39 | status = "okay"; |
| 40 | bootph-all; |
| 41 | }; |
| 42 | |