1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/img,pistachio-gptimer.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Pistachio general-purpose timer 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Ezequiel Garcia <ezequiel.garcia@imgtec.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotproperties: 13*ae5de77eSEmmanuel Vadot compatible: 14*ae5de77eSEmmanuel Vadot const: img,pistachio-gptimer 15*ae5de77eSEmmanuel Vadot 16*ae5de77eSEmmanuel Vadot reg: 17*ae5de77eSEmmanuel Vadot maxItems: 1 18*ae5de77eSEmmanuel Vadot 19*ae5de77eSEmmanuel Vadot interrupts: 20*ae5de77eSEmmanuel Vadot items: 21*ae5de77eSEmmanuel Vadot - description: Timer0 interrupt 22*ae5de77eSEmmanuel Vadot - description: Timer1 interrupt 23*ae5de77eSEmmanuel Vadot - description: Timer2 interrupt 24*ae5de77eSEmmanuel Vadot - description: Timer3 interrupt 25*ae5de77eSEmmanuel Vadot 26*ae5de77eSEmmanuel Vadot clocks: 27*ae5de77eSEmmanuel Vadot items: 28*ae5de77eSEmmanuel Vadot - description: Fast counter clock 29*ae5de77eSEmmanuel Vadot - description: Slow counter clock 30*ae5de77eSEmmanuel Vadot - description: Interface clock 31*ae5de77eSEmmanuel Vadot 32*ae5de77eSEmmanuel Vadot clock-names: 33*ae5de77eSEmmanuel Vadot items: 34*ae5de77eSEmmanuel Vadot - const: fast 35*ae5de77eSEmmanuel Vadot - const: slow 36*ae5de77eSEmmanuel Vadot - const: sys 37*ae5de77eSEmmanuel Vadot 38*ae5de77eSEmmanuel Vadot img,cr-periph: 39*ae5de77eSEmmanuel Vadot description: Peripheral control syscon phandle 40*ae5de77eSEmmanuel Vadot $ref: /schemas/types.yaml#/definitions/phandle 41*ae5de77eSEmmanuel Vadot 42*ae5de77eSEmmanuel Vadotrequired: 43*ae5de77eSEmmanuel Vadot - compatible 44*ae5de77eSEmmanuel Vadot - reg 45*ae5de77eSEmmanuel Vadot - interrupts 46*ae5de77eSEmmanuel Vadot - clocks 47*ae5de77eSEmmanuel Vadot - clock-names 48*ae5de77eSEmmanuel Vadot - img,cr-periph 49*ae5de77eSEmmanuel Vadot 50*ae5de77eSEmmanuel VadotadditionalProperties: false 51*ae5de77eSEmmanuel Vadot 52*ae5de77eSEmmanuel Vadotexamples: 53*ae5de77eSEmmanuel Vadot - | 54*ae5de77eSEmmanuel Vadot #include <dt-bindings/interrupt-controller/mips-gic.h> 55*ae5de77eSEmmanuel Vadot #include <dt-bindings/clock/pistachio-clk.h> 56*ae5de77eSEmmanuel Vadot 57*ae5de77eSEmmanuel Vadot timer@18102000 { 58*ae5de77eSEmmanuel Vadot compatible = "img,pistachio-gptimer"; 59*ae5de77eSEmmanuel Vadot reg = <0x18102000 0x100>; 60*ae5de77eSEmmanuel Vadot interrupts = <GIC_SHARED 60 IRQ_TYPE_LEVEL_HIGH>, 61*ae5de77eSEmmanuel Vadot <GIC_SHARED 61 IRQ_TYPE_LEVEL_HIGH>, 62*ae5de77eSEmmanuel Vadot <GIC_SHARED 62 IRQ_TYPE_LEVEL_HIGH>, 63*ae5de77eSEmmanuel Vadot <GIC_SHARED 63 IRQ_TYPE_LEVEL_HIGH>; 64*ae5de77eSEmmanuel Vadot clocks = <&clk_periph PERIPH_CLK_COUNTER_FAST>, 65*ae5de77eSEmmanuel Vadot <&clk_periph PERIPH_CLK_COUNTER_SLOW>, 66*ae5de77eSEmmanuel Vadot <&cr_periph SYS_CLK_TIMER>; 67*ae5de77eSEmmanuel Vadot clock-names = "fast", "slow", "sys"; 68*ae5de77eSEmmanuel Vadot img,cr-periph = <&cr_periph>; 69*ae5de77eSEmmanuel Vadot }; 70