From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752459AbcGLNqd (ORCPT ); Tue, 12 Jul 2016 09:46:33 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:45988 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750725AbcGLNqb (ORCPT ); Tue, 12 Jul 2016 09:46:31 -0400 Subject: Re: [PATCH v8 1/9] clk: ti: am335x/am4372: Add tbclk to pwm node To: Michael Turquette , , , , , , , , , , , , , , , References: <1462291015-1919-1-git-send-email-fcooper@ti.com> <1462291015-1919-2-git-send-email-fcooper@ti.com> <146827561017.73491.3564276289319851088@resonance> From: "Franklin S Cooper Jr." Message-ID: <5784F48A.50805@ti.com> Date: Tue, 12 Jul 2016 08:45:46 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0 MIME-Version: 1.0 In-Reply-To: <146827561017.73491.3564276289319851088@resonance> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 07/11/2016 05:20 PM, Michael Turquette wrote: > Quoting Franklin S Cooper Jr (2016-05-03 08:56:47) >> Add tblck to the pwm nodes. This insures that the ehrpwm driver has access > > s/tblck/tbclk/ > > I see you have acks already. What tree should this patch go through? I believe it went through Tero's tree. I currently see it in linux-next. > > Regards, > Mike > >> to the time-based clk. >> >> Do not remove similar entries for ehrpwm node. Later patches will switch >> from using ehrpwm node name to pwm. But to maintain ABI compatibility we >> shouldn't remove the old entries. >> >> Signed-off-by: Franklin S Cooper Jr >> Acked-by: Stephen Boyd >> Acked-by: Tero Kristo >> --- >> drivers/clk/ti/clk-33xx.c | 3 +++ >> drivers/clk/ti/clk-43xx.c | 6 ++++++ >> 2 files changed, 9 insertions(+) >> >> diff --git a/drivers/clk/ti/clk-33xx.c b/drivers/clk/ti/clk-33xx.c >> index ef2ec64..0e47d95 100644 >> --- a/drivers/clk/ti/clk-33xx.c >> +++ b/drivers/clk/ti/clk-33xx.c >> @@ -108,6 +108,9 @@ static struct ti_dt_clk am33xx_clks[] = { >> DT_CLK("48300200.ehrpwm", "tbclk", "ehrpwm0_tbclk"), >> DT_CLK("48302200.ehrpwm", "tbclk", "ehrpwm1_tbclk"), >> DT_CLK("48304200.ehrpwm", "tbclk", "ehrpwm2_tbclk"), >> + DT_CLK("48300200.pwm", "tbclk", "ehrpwm0_tbclk"), >> + DT_CLK("48302200.pwm", "tbclk", "ehrpwm1_tbclk"), >> + DT_CLK("48304200.pwm", "tbclk", "ehrpwm2_tbclk"), >> { .node_name = NULL }, >> }; >> >> diff --git a/drivers/clk/ti/clk-43xx.c b/drivers/clk/ti/clk-43xx.c >> index 097fc90..7255aa8 100644 >> --- a/drivers/clk/ti/clk-43xx.c >> +++ b/drivers/clk/ti/clk-43xx.c >> @@ -115,6 +115,12 @@ static struct ti_dt_clk am43xx_clks[] = { >> DT_CLK("48306200.ehrpwm", "tbclk", "ehrpwm3_tbclk"), >> DT_CLK("48308200.ehrpwm", "tbclk", "ehrpwm4_tbclk"), >> DT_CLK("4830a200.ehrpwm", "tbclk", "ehrpwm5_tbclk"), >> + DT_CLK("48300200.pwm", "tbclk", "ehrpwm0_tbclk"), >> + DT_CLK("48302200.pwm", "tbclk", "ehrpwm1_tbclk"), >> + DT_CLK("48304200.pwm", "tbclk", "ehrpwm2_tbclk"), >> + DT_CLK("48306200.pwm", "tbclk", "ehrpwm3_tbclk"), >> + DT_CLK("48308200.pwm", "tbclk", "ehrpwm4_tbclk"), >> + DT_CLK("4830a200.pwm", "tbclk", "ehrpwm5_tbclk"), >> { .node_name = NULL }, >> }; >> >> -- >> 2.7.0 >>