Commit e1e9fad1 authored by Rob Herring (Arm)'s avatar Rob Herring (Arm) Committed by Daniel Lezcano
Browse files

dt-bindings: timer: Convert lsi,zevio-timer to DT schema



Convert the TI NSPIRE Timer binding to DT schema format. It's a
straight-forward conversion.

Signed-off-by: default avatarRob Herring (Arm) <robh@kernel.org>
Link: https://lore.kernel.org/r/20250506022257.2588136-1-robh@kernel.org


Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent f8470be8
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
TI-NSPIRE timer

Required properties:

- compatible : should be "lsi,zevio-timer".
- reg : The physical base address and size of the timer (always first).
- clocks: phandle to the source clock.

Optional properties:

- interrupts : The interrupt number of the first timer.
- reg : The interrupt acknowledgement registers
	(always after timer base address)

If any of the optional properties are not given, the timer is added as a
clock-source only.

Example:

timer {
	compatible = "lsi,zevio-timer";
	reg = <0x900D0000 0x1000>, <0x900A0020 0x8>;
	interrupts = <19>;
	clocks = <&timer_clk>;
};

Example (no clock-events):

timer {
	compatible = "lsi,zevio-timer";
	reg = <0x900D0000 0x1000>;
	clocks = <&timer_clk>;
};
+56 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/timer/lsi,zevio-timer.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: TI-NSPIRE timer

maintainers:
  - Daniel Tang <dt.tangr@gmail.com>

properties:
  compatible:
    const: lsi,zevio-timer

  reg:
    minItems: 1
    items:
      - description: Timer registers
      - description: Interrupt acknowledgement registers (optional)

  interrupts:
    maxItems: 1

  clocks:
    maxItems: 1

required:
  - compatible
  - reg
  - clocks

allOf:
  - if:
      required: [ interrupts ]
    then:
      properties:
        reg:
          minItems: 2

additionalProperties: false

examples:
  - |
    timer@900d0000 {
        compatible = "lsi,zevio-timer";
        reg = <0x900D0000 0x1000>, <0x900A0020 0x8>;
        interrupts = <19>;
        clocks = <&timer_clk>;
    };
  - |
    timer@900d0000 {
        compatible = "lsi,zevio-timer";
        reg = <0x900D0000 0x1000>;
        clocks = <&timer_clk>;
    };