From patchwork Mon Jun 24 22:57: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: 11014333 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 A239A13AF for ; Mon, 24 Jun 2019 22:58:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9149F28B01 for ; Mon, 24 Jun 2019 22:58:12 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 854E128B0D; Mon, 24 Jun 2019 22:58:12 +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 35BFE28B01 for ; Mon, 24 Jun 2019 22:58:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726397AbfFXW6M (ORCPT ); Mon, 24 Jun 2019 18:58:12 -0400 Received: from outils.crapouillou.net ([89.234.176.41]:32884 "EHLO crapouillou.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725562AbfFXW6L (ORCPT ); Mon, 24 Jun 2019 18:58:11 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=crapouillou.net; s=mail; t=1561417089; h=from:from:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-transfer-encoding:content-transfer-encoding: in-reply-to:references; bh=c2egTmXau6Vy6CT+7W8QNurfNWl4bPuu/kCpiH6J2sg=; b=i52y9r9VxZ68Ib8uF+AQrKLF6LKrkQ+QRLxcigEevTEYr+ofDFPcBaEcoNFFGVFNQwKUTs KnM5dMxvhRPksEYnOivorOiOGEKAEm8mOKSlNOMPtpNYnJ/ja4F+mamHDoi4OjwSaYNKOl OADXfkHoOeUOvm6mbcH3krPsEZWmPOs= From: Paul Cercueil To: Daniel Lezcano , Thomas Gleixner , Ralf Baechle , Paul Burton , James Hogan , Jonathan Corbet , Michael Turquette , Stephen Boyd , Jason Cooper , Marc Zyngier , Lee Jones Cc: Mathieu Malaterre , od@zcrc.me, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mips@vger.kernel.org, linux-doc@vger.kernel.org, linux-clk@vger.kernel.org Subject: [PATCH v13 00/13] Ingenic Timer/Counter Unit patchset v13 Date: Tue, 25 Jun 2019 00:57:46 +0200 Message-Id: <20190624225759.18299-1-paul@crapouillou.net> MIME-Version: 1.0 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi, This is the version 13 of my patchset to support the Timer/Counter Unit (TCU) present in JZ47xx SoCs from Ingenic. Changelog: Patch [03/13]: - Revert back to v11. Turns out it was okay. - Remove 'interrupt-parent' of the list of required properties. Patch [05/13]: - Don't enable/disable the TCU clock on demand. Enable it in the probe and call it a day. - Register suspend callbacks to gate/ungate the TCU clock on suspend/resume. - Use pr_fmt and pr_crit instead of custom TCU_ERR() macro - Remove useless dependency on COMMON_CLK in Kconfig - Remove registration of clkdev All the other patches have not been modified. The patchset was rebased on 5.2-rc6. Cheers, -Paul