Message ID | 20190722081229.22422-3-maxime.ripard@bootlin.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [01/11] dt-bindings: timer: Convert Allwinner A10 Timer to a schema | expand |
Hi Daniel, Thomas, On Mon, Jul 22, 2019 at 10:12:21AM +0200, Maxime Ripard wrote: > Newer Allwinner SoCs have different number of interrupts, let's add > different compatibles for all of them to deal with this properly. > > Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> Ping? Maxime -- Maxime Ripard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
On 22/07/2019 10:12, Maxime Ripard wrote: > Newer Allwinner SoCs have different number of interrupts, let's add > different compatibles for all of them to deal with this properly. > > Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> > --- > drivers/clocksource/timer-sun4i.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/clocksource/timer-sun4i.c b/drivers/clocksource/timer-sun4i.c > index 65f38f6ca714..0ba8155b8287 100644 > --- a/drivers/clocksource/timer-sun4i.c > +++ b/drivers/clocksource/timer-sun4i.c > @@ -219,5 +219,9 @@ static int __init sun4i_timer_init(struct device_node *node) > } > TIMER_OF_DECLARE(sun4i, "allwinner,sun4i-a10-timer", > sun4i_timer_init); > +TIMER_OF_DECLARE(sun8i_a23, "allwinner,sun8i-a23-timer", > + sun4i_timer_init); > +TIMER_OF_DECLARE(sun8i_v3s, "allwinner,sun8i-v3s-timer", > + sun4i_timer_init); > TIMER_OF_DECLARE(suniv, "allwinner,suniv-f1c100s-timer", > sun4i_timer_init); >
Hi, On Mon, Aug 12, 2019 at 10:59:51AM +0200, Daniel Lezcano wrote: > On 22/07/2019 10:12, Maxime Ripard wrote: > > Newer Allwinner SoCs have different number of interrupts, let's add > > different compatibles for all of them to deal with this properly. > > > > Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> > > Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> Thanks! Can you merge this through your tree (along with the bindings)? I'll merge the DT patches Maxime -- Maxime Ripard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
On 12/08/2019 11:16, Maxime Ripard wrote: > Hi, > > On Mon, Aug 12, 2019 at 10:59:51AM +0200, Daniel Lezcano wrote: >> On 22/07/2019 10:12, Maxime Ripard wrote: >>> Newer Allwinner SoCs have different number of interrupts, let's add >>> different compatibles for all of them to deal with this properly. >>> >>> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> >> >> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> > > Thanks! > > Can you merge this through your tree (along with the bindings)? I'll > merge the DT patches patches 1-4 then ?
On Mon, Aug 12, 2019 at 11:21:50AM +0200, Daniel Lezcano wrote: > On 12/08/2019 11:16, Maxime Ripard wrote: > > Hi, > > > > On Mon, Aug 12, 2019 at 10:59:51AM +0200, Daniel Lezcano wrote: > >> On 22/07/2019 10:12, Maxime Ripard wrote: > >>> Newer Allwinner SoCs have different number of interrupts, let's add > >>> different compatibles for all of them to deal with this properly. > >>> > >>> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> > >> > >> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> > > > > Thanks! > > > > Can you merge this through your tree (along with the bindings)? I'll > > merge the DT patches > > patches 1-4 then ? Yep, thanks! Maxime -- Maxime Ripard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
On Mon, Aug 12, 2019 at 01:24:11PM +0200, Maxime Ripard wrote: > On Mon, Aug 12, 2019 at 11:21:50AM +0200, Daniel Lezcano wrote: > > On 12/08/2019 11:16, Maxime Ripard wrote: > > > Hi, > > > > > > On Mon, Aug 12, 2019 at 10:59:51AM +0200, Daniel Lezcano wrote: > > >> On 22/07/2019 10:12, Maxime Ripard wrote: > > >>> Newer Allwinner SoCs have different number of interrupts, let's add > > >>> different compatibles for all of them to deal with this properly. > > >>> > > >>> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> > > >> > > >> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> > > > > > > Thanks! > > > > > > Can you merge this through your tree (along with the bindings)? I'll > > > merge the DT patches > > > > patches 1-4 then ? > > Yep, thanks! Ping? Maxime -- Maxime Ripard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
On 19/08/2019 15:30, Maxime Ripard wrote: > On Mon, Aug 12, 2019 at 01:24:11PM +0200, Maxime Ripard wrote: >> On Mon, Aug 12, 2019 at 11:21:50AM +0200, Daniel Lezcano wrote: >>> On 12/08/2019 11:16, Maxime Ripard wrote: >>>> Hi, >>>> >>>> On Mon, Aug 12, 2019 at 10:59:51AM +0200, Daniel Lezcano wrote: >>>>> On 22/07/2019 10:12, Maxime Ripard wrote: >>>>>> Newer Allwinner SoCs have different number of interrupts, let's add >>>>>> different compatibles for all of them to deal with this properly. >>>>>> >>>>>> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> >>>>> >>>>> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> >>>> >>>> Thanks! >>>> >>>> Can you merge this through your tree (along with the bindings)? I'll >>>> merge the DT patches >>> >>> patches 1-4 then ? >> >> Yep, thanks! > > Ping? They are applied :)
On Mon, Aug 19, 2019 at 03:45:40PM +0200, Daniel Lezcano wrote: > On 19/08/2019 15:30, Maxime Ripard wrote: > > On Mon, Aug 12, 2019 at 01:24:11PM +0200, Maxime Ripard wrote: > >> On Mon, Aug 12, 2019 at 11:21:50AM +0200, Daniel Lezcano wrote: > >>> On 12/08/2019 11:16, Maxime Ripard wrote: > >>>> Hi, > >>>> > >>>> On Mon, Aug 12, 2019 at 10:59:51AM +0200, Daniel Lezcano wrote: > >>>>> On 22/07/2019 10:12, Maxime Ripard wrote: > >>>>>> Newer Allwinner SoCs have different number of interrupts, let's add > >>>>>> different compatibles for all of them to deal with this properly. > >>>>>> > >>>>>> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> > >>>>> > >>>>> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> > >>>> > >>>> Thanks! > >>>> > >>>> Can you merge this through your tree (along with the bindings)? I'll > >>>> merge the DT patches > >>> > >>> patches 1-4 then ? > >> > >> Yep, thanks! > > > > Ping? > > They are applied :) Oh, my bad :) Where is your tree these days? I couldn't find it in linux-next either :/ Thanks! Maxime -- Maxime Ripard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
On 19/08/2019 21:13, Maxime Ripard wrote: > On Mon, Aug 19, 2019 at 03:45:40PM +0200, Daniel Lezcano wrote: >> On 19/08/2019 15:30, Maxime Ripard wrote: >>> On Mon, Aug 12, 2019 at 01:24:11PM +0200, Maxime Ripard wrote: >>>> On Mon, Aug 12, 2019 at 11:21:50AM +0200, Daniel Lezcano wrote: >>>>> On 12/08/2019 11:16, Maxime Ripard wrote: >>>>>> Hi, >>>>>> >>>>>> On Mon, Aug 12, 2019 at 10:59:51AM +0200, Daniel Lezcano wrote: >>>>>>> On 22/07/2019 10:12, Maxime Ripard wrote: >>>>>>>> Newer Allwinner SoCs have different number of interrupts, let's add >>>>>>>> different compatibles for all of them to deal with this properly. >>>>>>>> >>>>>>>> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> >>>>>>> >>>>>>> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> >>>>>> >>>>>> Thanks! >>>>>> >>>>>> Can you merge this through your tree (along with the bindings)? I'll >>>>>> merge the DT patches >>>>> >>>>> patches 1-4 then ? >>>> >>>> Yep, thanks! >>> >>> Ping? >> >> They are applied :) > > Oh, my bad :) Actually, I should have tell you they were applied. > Where is your tree these days? I couldn't find it in linux-next either https://git.linaro.org/people/daniel.lezcano/linux.git/log/?h=clockevents/next
diff --git a/drivers/clocksource/timer-sun4i.c b/drivers/clocksource/timer-sun4i.c index 65f38f6ca714..0ba8155b8287 100644 --- a/drivers/clocksource/timer-sun4i.c +++ b/drivers/clocksource/timer-sun4i.c @@ -219,5 +219,9 @@ static int __init sun4i_timer_init(struct device_node *node) } TIMER_OF_DECLARE(sun4i, "allwinner,sun4i-a10-timer", sun4i_timer_init); +TIMER_OF_DECLARE(sun8i_a23, "allwinner,sun8i-a23-timer", + sun4i_timer_init); +TIMER_OF_DECLARE(sun8i_v3s, "allwinner,sun8i-v3s-timer", + sun4i_timer_init); TIMER_OF_DECLARE(suniv, "allwinner,suniv-f1c100s-timer", sun4i_timer_init);
Newer Allwinner SoCs have different number of interrupts, let's add different compatibles for all of them to deal with this properly. Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> --- drivers/clocksource/timer-sun4i.c | 4 ++++ 1 file changed, 4 insertions(+)