From patchwork Sat Mar 2 23:33:46 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 10836793 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2B3F01575 for ; Sat, 2 Mar 2019 23:34:37 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 074962A549 for ; Sat, 2 Mar 2019 23:34:37 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D668D2A567; Sat, 2 Mar 2019 23:34:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4F3E02A549 for ; Sat, 2 Mar 2019 23:34:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726979AbfCBXeb (ORCPT ); Sat, 2 Mar 2019 18:34:31 -0500 Received: from outils.crapouillou.net ([89.234.176.41]:60526 "EHLO crapouillou.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726592AbfCBXea (ORCPT ); Sat, 2 Mar 2019 18:34:30 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=crapouillou.net; s=mail; t=1551569666; h=from:from:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=QVQst8EK/PLgJUiLMusS3TTp/grRh57aTCc3Y4+nxow=; b=DRS+s+mMTaz+z61e1VoVE0VgrH+2cUs3Tt1IbgUOxZ2j71NZIVrdEAn58BJXoHD+ggB3Sb Fj0OKsUt8IkUUzW7sqr3Z94k+3TnE29zb2xAzYOnSdgJNGMn+Rist+x9mpkqfxgnn77Yoy RDrh+dF/2Lqf6wbv/BVUYWnU8pEvNqw= From: Paul Cercueil To: Thierry Reding , Daniel Lezcano , Thomas Gleixner , Ralf Baechle , Paul Burton , James Hogan , Jonathan Corbet , =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= Cc: Mathieu Malaterre , od@zcrc.me, linux-pwm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-watchdog@vger.kernel.org, linux-mips@vger.kernel.org, linux-doc@vger.kernel.org, linux-clk@vger.kernel.org Subject: [5.2][PATCH v10 00/27] Ingenic TCU patchset Date: Sat, 2 Mar 2019 20:33:46 -0300 Message-Id: <20190302233413.14813-1-paul@crapouillou.net> Sender: linux-watchdog-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-watchdog@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi, This is the Ingenic JZ47xx TCU patchset version 10. Changes from v9: - [04/27]: - The clocksource is now created unconditionally, even if the SoC has the better OS Timer. This gives the choice back to the user. - Simplify the set_rate/set_parent callbacks for the clocks - Probe platform driver at subsys_initcall() instead of using builtin_platform_driver_probe(), to ensure that the devices are populated before the children drivers (e.g. OS Timer driver) are probed. - [05/27]: Fix incorrect mask used with regmap_update_bits, which caused the clocksource to be unstable on JZ4770 and JZ4780. - [13/27]: Update commit message to reflect why "select REGMAP" was removed. - [14/27]: Use a new algorithm that does not use clk_round_rate(). - [23/27] and [25/27]: Revert behaviour to what was in V8. It has been tested and reported to be working, on the JZ4725B by me, on the JZ4740 by Artur Rojek, and on the JZ4780 by Mathieu Malaterre. I'd like this patchset to go through the MIPS tree, that will allow other unrelated cleanups to follow. Thanks, - Paul