Message ID | 1465985607-21231-3-git-send-email-narmstrong@baylibre.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 06/15/2016 12:13 PM, Neil Armstrong wrote: > Add DT bindings for the Oxford Semiconductor RPS dual Timer. > > Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> > --- Waiting for Rob's acked before picking the series. Thanks ! -- Daniel
On 06/15/2016 12:23 PM, Daniel Lezcano wrote: > On 06/15/2016 12:13 PM, Neil Armstrong wrote: >> Add DT bindings for the Oxford Semiconductor RPS dual Timer. >> >> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> >> --- > > Waiting for Rob's acked before picking the series. Ok, Rob already acked this patch in the V2. I will take these patches in my tree. Thanks. -- Daniel
On 06/15/2016 12:26 PM, Daniel Lezcano wrote: > On 06/15/2016 12:23 PM, Daniel Lezcano wrote: >> On 06/15/2016 12:13 PM, Neil Armstrong wrote: >>> Add DT bindings for the Oxford Semiconductor RPS dual Timer. >>> >>> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> >>> --- >> >> Waiting for Rob's acked before picking the series. > > Ok, Rob already acked this patch in the V2. > > I will take these patches in my tree. > > Thanks. > > -- Daniel > Yes, I must fix this, I keep dropping these Acks. Thanks Daniel, Neil
On 06/15/2016 12:26 PM, Daniel Lezcano wrote: > On 06/15/2016 12:23 PM, Daniel Lezcano wrote: >> On 06/15/2016 12:13 PM, Neil Armstrong wrote: >>> Add DT bindings for the Oxford Semiconductor RPS dual Timer. >>> >>> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> >>> --- >> >> Waiting for Rob's acked before picking the series. > > Ok, Rob already acked this patch in the V2. > > I will take these patches in my tree. > > Thanks. > > -- Daniel > OK, Do I need to send a v4, a simple patch fixing the Kconfig or can you change it while pushing to your branch ? Thanks, Neil
On 06/16/2016 05:01 PM, Neil Armstrong wrote: > On 06/15/2016 12:26 PM, Daniel Lezcano wrote: >> On 06/15/2016 12:23 PM, Daniel Lezcano wrote: >>> On 06/15/2016 12:13 PM, Neil Armstrong wrote: >>>> Add DT bindings for the Oxford Semiconductor RPS dual Timer. >>>> >>>> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> >>>> --- >>> >>> Waiting for Rob's acked before picking the series. >> >> Ok, Rob already acked this patch in the V2. >> >> I will take these patches in my tree. >> >> Thanks. >> >> -- Daniel >> > > OK, Do I need to send a v4, a simple patch fixing the Kconfig or can you change it while pushing to your branch ? I will do the change myself, that will be simpler. -- Daniel
diff --git a/Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt b/Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt new file mode 100644 index 0000000..3ca89cd --- /dev/null +++ b/Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt @@ -0,0 +1,17 @@ +Oxford Semiconductor OXNAS SoCs Family RPS Timer +================================================ + +Required properties: +- compatible: Should be "oxsemi,ox810se-rps-timer" +- reg : Specifies base physical address and size of the registers. +- interrupts : The interrupts of the two timers +- clocks : The phandle of the timer clock source + +example: + +timer0: timer@200 { + compatible = "oxsemi,ox810se-rps-timer"; + reg = <0x200 0x40>; + clocks = <&rpsclk>; + interrupts = <4 5>; +};
Add DT bindings for the Oxford Semiconductor RPS dual Timer. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- .../devicetree/bindings/timer/oxsemi,rps-timer.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt