1*c66ec88fSEmmanuel VadotMarvell Orion SoC timer 2*c66ec88fSEmmanuel Vadot 3*c66ec88fSEmmanuel VadotRequired properties: 4*c66ec88fSEmmanuel Vadot- compatible: shall be "marvell,orion-timer" 5*c66ec88fSEmmanuel Vadot- reg: base address of the timer register starting with TIMERS CONTROL register 6*c66ec88fSEmmanuel Vadot- interrupts: should contain the interrupts for Timer0 and Timer1 7*c66ec88fSEmmanuel Vadot- clocks: phandle of timer reference clock (tclk) 8*c66ec88fSEmmanuel Vadot 9*c66ec88fSEmmanuel VadotExample: 10*c66ec88fSEmmanuel Vadot timer: timer { 11*c66ec88fSEmmanuel Vadot compatible = "marvell,orion-timer"; 12*c66ec88fSEmmanuel Vadot reg = <0x20300 0x20>; 13*c66ec88fSEmmanuel Vadot interrupt-parent = <&bridge_intc>; 14*c66ec88fSEmmanuel Vadot interrupts = <1>, <2>; 15*c66ec88fSEmmanuel Vadot clocks = <&core_clk 0>; 16*c66ec88fSEmmanuel Vadot }; 17