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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 42049EB8FAE for ; Wed, 6 Sep 2023 02:47:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237136AbjIFCrE (ORCPT ); Tue, 5 Sep 2023 22:47:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56362 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231272AbjIFCrA (ORCPT ); Tue, 5 Sep 2023 22:47:00 -0400 Received: from out-214.mta0.migadu.com (out-214.mta0.migadu.com [IPv6:2001:41d0:1004:224b::d6]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1EB3DCE for ; Tue, 5 Sep 2023 19:46:55 -0700 (PDT) Date: Wed, 6 Sep 2023 12:46:19 +1000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jookia.org; s=key1; t=1693968412; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=VHfD1siejuFfvAeKP3/DP7NOiriyePjucPZcxImIuXo=; b=htl8/RL+wFkHtHTJephAZFm4zLDHo0zIzf0usoGMjPKWHxg8GtY90XbJxlS1RAQ9d5BzaK gKYQXdUxTmKcSf/grLIMwgYUT722diAQXj9AkJYxmmmqNjURvVtpSI/XvjsayXE02gzUzI ialFsaH4oxyF3fTj7sOrgwhTdj1adRWzMns7Q5fOOGV7EaHL6RJVg5SeO4n0476Wz7ydy4 I920EyYh6j5yxQUz88m0ioNX9vgSj/j3OHx7MLNYzBlx29Gl4swFZ30fI9S3eb31JHC2FW XIXzuYww44oqx6a/u6EGtCX6y4XQJyiRtSx4vgGgVb0uTzs3VzSY5JSBDrVRHw== X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: John Watts To: Aleksandr Shubin Cc: linux-kernel@vger.kernel.org, Thierry Reding , Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Paul Walmsley , Palmer Dabbelt , Albert Ou , Philipp Zabel , Cristian Ciocaltea , linux-pwm@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-riscv@lists.infradead.org Subject: Re: [PATCH v6 0/3] Add support for Allwinner PWM on D1/T113s/R329 SoCs Message-ID: References: <20230824114038.891493-1-privatesub2@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230824114038.891493-1-privatesub2@gmail.com> X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Thu, Aug 24, 2023 at 02:40:24PM +0300, Aleksandr Shubin wrote: > Hi, > > This series adds support for PWM controller on new > Allwinner's SoCs, such as D1, T113s and R329. The implemented driver > provides basic functionality for control PWM channels. I have tested this patch and earlier versions successfully on a Mango Pi MQ Dual and verified it outputs a PWM signal. John.