From mboxrd@z Thu Jan 1 00:00:00 1970 From: robert.jarzmik@free.fr (Robert Jarzmik) Date: Mon, 21 Jul 2014 20:15:16 +0200 Subject: [PATCH v3 4/4] arm: pxa: add non device-tree timer link to clocksource In-Reply-To: <53CD25A4.7030606@linaro.org> (Daniel Lezcano's message of "Mon, 21 Jul 2014 16:37:24 +0200") References: <1405356724-32207-1-git-send-email-robert.jarzmik@free.fr> <1405356724-32207-4-git-send-email-robert.jarzmik@free.fr> <53CD25A4.7030606@linaro.org> Message-ID: <87oawivarv.fsf@free.fr> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Daniel Lezcano writes: > On 07/14/2014 06:52 PM, Robert Jarzmik wrote: >> As clocksource pxa_timer was moved to clocksource framework, the >> pxa_timer initialization needs to be a bit amended, to pass the >> necessary informations to clocksource, ie : >> - the timer interrupt (mach specific) >> - the timer registers base (ditto) >> - the timer clockrate >> >> Signed-off-by: Robert Jarzmik >> >> --- >> Since V2: Arnd's comment : moved extern declaration into .h file >> --- > > Shall I take the patches 4-5 also ? Mmm you mean patch 4 I think. Then I'd like you too, because it's linked in the serie, and without it the former non-DT platforms break, hence I'd like all the serie to go through 1 tree. Yet we'd need Haojian's ack here. Haojian, would you give your blessing on the serie and agree that Daniel carries all the patches including patch 4/4 ? Cheers. -- Robert From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Jarzmik Subject: Re: [PATCH v3 4/4] arm: pxa: add non device-tree timer link to clocksource Date: Mon, 21 Jul 2014 20:15:16 +0200 Message-ID: <87oawivarv.fsf@free.fr> References: <1405356724-32207-1-git-send-email-robert.jarzmik@free.fr> <1405356724-32207-4-git-send-email-robert.jarzmik@free.fr> <53CD25A4.7030606@linaro.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <53CD25A4.7030606-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> (Daniel Lezcano's message of "Mon, 21 Jul 2014 16:37:24 +0200") Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Haojian Zhuang , Daniel Lezcano Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Thomas Gleixner List-Id: devicetree@vger.kernel.org Daniel Lezcano writes: > On 07/14/2014 06:52 PM, Robert Jarzmik wrote: >> As clocksource pxa_timer was moved to clocksource framework, the >> pxa_timer initialization needs to be a bit amended, to pass the >> necessary informations to clocksource, ie : >> - the timer interrupt (mach specific) >> - the timer registers base (ditto) >> - the timer clockrate >> >> Signed-off-by: Robert Jarzmik >> >> --- >> Since V2: Arnd's comment : moved extern declaration into .h file >> --- > > Shall I take the patches 4-5 also ? Mmm you mean patch 4 I think. Then I'd like you too, because it's linked in the serie, and without it the former non-DT platforms break, hence I'd like all the serie to go through 1 tree. Yet we'd need Haojian's ack here. Haojian, would you give your blessing on the serie and agree that Daniel carries all the patches including patch 4/4 ? Cheers. -- Robert -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933428AbaGUSP2 (ORCPT ); Mon, 21 Jul 2014 14:15:28 -0400 Received: from smtp09.smtpout.orange.fr ([80.12.242.131]:29776 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933347AbaGUSP0 (ORCPT ); Mon, 21 Jul 2014 14:15:26 -0400 X-ME-Helo: beldin X-ME-Date: Mon, 21 Jul 2014 20:15:25 +0200 X-ME-IP: 90.16.82.155 From: Robert Jarzmik To: Haojian Zhuang , Daniel Lezcano Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Thomas Gleixner Subject: Re: [PATCH v3 4/4] arm: pxa: add non device-tree timer link to clocksource References: <1405356724-32207-1-git-send-email-robert.jarzmik@free.fr> <1405356724-32207-4-git-send-email-robert.jarzmik@free.fr> <53CD25A4.7030606@linaro.org> X-URL: http://belgarath.falguerolles.org/ Date: Mon, 21 Jul 2014 20:15:16 +0200 In-Reply-To: <53CD25A4.7030606@linaro.org> (Daniel Lezcano's message of "Mon, 21 Jul 2014 16:37:24 +0200") Message-ID: <87oawivarv.fsf@free.fr> User-Agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Daniel Lezcano writes: > On 07/14/2014 06:52 PM, Robert Jarzmik wrote: >> As clocksource pxa_timer was moved to clocksource framework, the >> pxa_timer initialization needs to be a bit amended, to pass the >> necessary informations to clocksource, ie : >> - the timer interrupt (mach specific) >> - the timer registers base (ditto) >> - the timer clockrate >> >> Signed-off-by: Robert Jarzmik >> >> --- >> Since V2: Arnd's comment : moved extern declaration into .h file >> --- > > Shall I take the patches 4-5 also ? Mmm you mean patch 4 I think. Then I'd like you too, because it's linked in the serie, and without it the former non-DT platforms break, hence I'd like all the serie to go through 1 tree. Yet we'd need Haojian's ack here. Haojian, would you give your blessing on the serie and agree that Daniel carries all the patches including patch 4/4 ? Cheers. -- Robert