Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936445AbcKXMBg (ORCPT ); Thu, 24 Nov 2016 07:01:36 -0500 Received: from gloria.sntech.de ([95.129.55.99]:47943 "EHLO gloria.sntech.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756613AbcKXMBe (ORCPT ); Thu, 24 Nov 2016 07:01:34 -0500 From: Heiko =?ISO-8859-1?Q?St=FCbner?= To: Alexander Kochetkov Cc: daniel.lezcano@linaro.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org Subject: Re: [PATCH 1/9] clocksource/drivers/rockchip_timer: split bc_timer into rk_timer and rk_clock_event_device Date: Thu, 24 Nov 2016 13:01:31 +0100 Message-ID: <47746094.VbGlCfGZW0@diego> User-Agent: KMail/4.14.10 (Linux/4.6.0-1-amd64; KDE/4.14.22; x86_64; ; ) In-Reply-To: <1479922177-20136-1-git-send-email-al.kochet@gmail.com> References: <1479922177-20136-1-git-send-email-al.kochet@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1115 Lines: 32 Hi Alexander, I haven't looked to deep into your patches yet, but what is missing is the general goal of your whole series. git format-patch has this nice "--cover-letter" option that creates obviously a cover-letter where you can describe what your series wants to achieve. For those reading along, I guess what you want to achieve should be what I describe below, so of course no need to resend just for this :-) ----- The clock supplying the arm-global-timer on the rk3188 is coming from the the cpu clock itself and thus changes its rate everytime cpufreq adjusts the cpu frequency making this timer unsuitable as a stable clocksource. The rk3188, rk3288 and following socs share a separate timer block already handled by the rockchip-timer driver. Therefore adapt this driver to also be able to act as clocksource on rk3188. ----- Right? Heiko Am Mittwoch, 23. November 2016, 20:29:29 schrieb Alexander Kochetkov: > Move ce field out of struct bc_timer into struct rk_clock_event_device, > rename struct bc_timer to struct rk_timer. > > Signed-off-by: Alexander Kochetkov