From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 68FD0C4646B for ; Mon, 24 Jun 2019 22:58:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 415BF20663 for ; Mon, 24 Jun 2019 22:58:13 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=crapouillou.net header.i=@crapouillou.net header.b="i52y9r9V" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727393AbfFXW6M (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 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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