Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / timer / intel,ixp4xx-timer.yaml
blob1a721d8af67a5450021a5a9ba310ee0684654bff
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2 # Copyright 2018 Linaro Ltd.
3 %YAML 1.2
4 ---
5 $id: "http://devicetree.org/schemas/timer/intel,ixp4xx-timer.yaml#"
6 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
8 title: Intel IXP4xx XScale Networking Processors Timers
10 maintainers:
11   - Linus Walleij <linus.walleij@linaro.org>
13 description: This timer is found in the Intel IXP4xx processors.
15 properties:
16   compatible:
17     items:
18       - const: intel,ixp4xx-timer
20   reg:
21     description: Should contain registers location and length
23   interrupts:
24     minItems: 1
25     maxItems: 2
26     items:
27       - description: Timer 1 interrupt
28       - description: Timer 2 interrupt
30 required:
31   - compatible
32   - reg
33   - interrupts
35 additionalProperties: false
37 examples:
38   - |
39     #include <dt-bindings/interrupt-controller/irq.h>
40     timer@c8005000 {
41         compatible = "intel,ixp4xx-timer";
42         reg = <0xc8005000 0x100>;
43         interrupts = <5 IRQ_TYPE_LEVEL_HIGH>;
44     };