From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752303AbdLNDO0 (ORCPT ); Wed, 13 Dec 2017 22:14:26 -0500 Received: from mail-sh2.amlogic.com ([58.32.228.45]:40424 "EHLO mail-sh2.amlogic.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751975AbdLNDOY (ORCPT ); Wed, 13 Dec 2017 22:14:24 -0500 Subject: Re: [PATCH 2/3] reset: meson-axg: add compatible string for Meson-AXG SoC To: Philipp Zabel , Rob Herring References: <20171110084650.31325-1-yixun.lan@amlogic.com> <20171110084650.31325-2-yixun.lan@amlogic.com> <3b61170c-c352-6b23-ab19-82c76954a911@amlogic.com> <1513180898.9445.3.camel@pengutronix.de> CC: , Neil Armstrong , Jerome Brunet , Carlo Caione , Kevin Hilman , , , From: Yixun Lan Message-ID: <88516bd6-ee9d-cbdc-07ae-a663c9f838b6@amlogic.com> Date: Thu, 14 Dec 2017 11:14:41 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <1513180898.9445.3.camel@pengutronix.de> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.18.20.164] X-ClientProxiedBy: mail-sh2.amlogic.com (10.18.11.6) To mail-sh2.amlogic.com (10.18.11.6) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/14/17 00:01, Philipp Zabel wrote: > Hi Yixun, > > On Wed, 2017-12-13 at 22:07 +0800, Yixun Lan wrote: >> Hi Philipp >> >> On 11/10/2017 04:46 PM, Yixun Lan wrote: >>> Try to add compatible string explictly to support new Meson-AXG SoC. >>> >>> Signed-off-by: Yixun Lan >>> --- >>> drivers/reset/reset-meson.c | 2 ++ >>> 1 file changed, 2 insertions(+) >>> >>> diff --git a/drivers/reset/reset-meson.c b/drivers/reset/reset-meson.c >>> index c419a3753d00..93cbee1ae8ef 100644 >>> --- a/drivers/reset/reset-meson.c >>> +++ b/drivers/reset/reset-meson.c >>> @@ -139,6 +139,8 @@ static const struct of_device_id meson_reset_dt_ids[] = { >>> .data = &meson_reset_meson8_ops, }, >>> { .compatible = "amlogic,meson-gxbb-reset", >>> .data = &meson_reset_gx_ops, }, >>> + { .compatible = "amlogic,meson-axg-reset", >>> + .data = &meson_reset_gx_ops, }, >>> { /* sentinel */ }, >>> }; >>> >>> >> >> it's generally a ping to the status of these two patches[1], are they >> ready to go? or do you have any comment? or do you want me to send >> another version with Neil's Reviewed-by added[1] > > I forgot to update you on the status. I have put both patches on the > reset/next branch with Neil's R-b, they are in linux-next: > > 0e5721f76252 ("reset: meson-axg: add compatible string for Meson-AXG SoC") > c16292578ffa ("dt-bindings: reset: Add bindings for the Meson-AXG SoC Reset Controller") > > I'll include them with the next pull request. > Hi Philipp great & thanks. Hi Kevin: could you take the DT part[1] via your tree, also with Neil's Reviewed-by added? I've checked, it could apply cleanly to your v4.16/dt64 branch many thanks Yixun [1] http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005280.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: yixun.lan@amlogic.com (Yixun Lan) Date: Thu, 14 Dec 2017 11:14:41 +0800 Subject: [PATCH 2/3] reset: meson-axg: add compatible string for Meson-AXG SoC In-Reply-To: <1513180898.9445.3.camel@pengutronix.de> References: <20171110084650.31325-1-yixun.lan@amlogic.com> <20171110084650.31325-2-yixun.lan@amlogic.com> <3b61170c-c352-6b23-ab19-82c76954a911@amlogic.com> <1513180898.9445.3.camel@pengutronix.de> Message-ID: <88516bd6-ee9d-cbdc-07ae-a663c9f838b6@amlogic.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 12/14/17 00:01, Philipp Zabel wrote: > Hi Yixun, > > On Wed, 2017-12-13 at 22:07 +0800, Yixun Lan wrote: >> Hi Philipp >> >> On 11/10/2017 04:46 PM, Yixun Lan wrote: >>> Try to add compatible string explictly to support new Meson-AXG SoC. >>> >>> Signed-off-by: Yixun Lan >>> --- >>> drivers/reset/reset-meson.c | 2 ++ >>> 1 file changed, 2 insertions(+) >>> >>> diff --git a/drivers/reset/reset-meson.c b/drivers/reset/reset-meson.c >>> index c419a3753d00..93cbee1ae8ef 100644 >>> --- a/drivers/reset/reset-meson.c >>> +++ b/drivers/reset/reset-meson.c >>> @@ -139,6 +139,8 @@ static const struct of_device_id meson_reset_dt_ids[] = { >>> .data = &meson_reset_meson8_ops, }, >>> { .compatible = "amlogic,meson-gxbb-reset", >>> .data = &meson_reset_gx_ops, }, >>> + { .compatible = "amlogic,meson-axg-reset", >>> + .data = &meson_reset_gx_ops, }, >>> { /* sentinel */ }, >>> }; >>> >>> >> >> it's generally a ping to the status of these two patches[1], are they >> ready to go? or do you have any comment? or do you want me to send >> another version with Neil's Reviewed-by added[1] > > I forgot to update you on the status. I have put both patches on the > reset/next branch with Neil's R-b, they are in linux-next: > > 0e5721f76252 ("reset: meson-axg: add compatible string for Meson-AXG SoC") > c16292578ffa ("dt-bindings: reset: Add bindings for the Meson-AXG SoC Reset Controller") > > I'll include them with the next pull request. > Hi Philipp great & thanks. Hi Kevin: could you take the DT part[1] via your tree, also with Neil's Reviewed-by added? I've checked, it could apply cleanly to your v4.16/dt64 branch many thanks Yixun [1] http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005280.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: yixun.lan@amlogic.com (Yixun Lan) Date: Thu, 14 Dec 2017 11:14:41 +0800 Subject: [PATCH 2/3] reset: meson-axg: add compatible string for Meson-AXG SoC In-Reply-To: <1513180898.9445.3.camel@pengutronix.de> References: <20171110084650.31325-1-yixun.lan@amlogic.com> <20171110084650.31325-2-yixun.lan@amlogic.com> <3b61170c-c352-6b23-ab19-82c76954a911@amlogic.com> <1513180898.9445.3.camel@pengutronix.de> Message-ID: <88516bd6-ee9d-cbdc-07ae-a663c9f838b6@amlogic.com> To: linus-amlogic@lists.infradead.org List-Id: linus-amlogic.lists.infradead.org On 12/14/17 00:01, Philipp Zabel wrote: > Hi Yixun, > > On Wed, 2017-12-13 at 22:07 +0800, Yixun Lan wrote: >> Hi Philipp >> >> On 11/10/2017 04:46 PM, Yixun Lan wrote: >>> Try to add compatible string explictly to support new Meson-AXG SoC. >>> >>> Signed-off-by: Yixun Lan >>> --- >>> drivers/reset/reset-meson.c | 2 ++ >>> 1 file changed, 2 insertions(+) >>> >>> diff --git a/drivers/reset/reset-meson.c b/drivers/reset/reset-meson.c >>> index c419a3753d00..93cbee1ae8ef 100644 >>> --- a/drivers/reset/reset-meson.c >>> +++ b/drivers/reset/reset-meson.c >>> @@ -139,6 +139,8 @@ static const struct of_device_id meson_reset_dt_ids[] = { >>> .data = &meson_reset_meson8_ops, }, >>> { .compatible = "amlogic,meson-gxbb-reset", >>> .data = &meson_reset_gx_ops, }, >>> + { .compatible = "amlogic,meson-axg-reset", >>> + .data = &meson_reset_gx_ops, }, >>> { /* sentinel */ }, >>> }; >>> >>> >> >> it's generally a ping to the status of these two patches[1], are they >> ready to go? or do you have any comment? or do you want me to send >> another version with Neil's Reviewed-by added[1] > > I forgot to update you on the status. I have put both patches on the > reset/next branch with Neil's R-b, they are in linux-next: > > 0e5721f76252 ("reset: meson-axg: add compatible string for Meson-AXG SoC") > c16292578ffa ("dt-bindings: reset: Add bindings for the Meson-AXG SoC Reset Controller") > > I'll include them with the next pull request. > Hi Philipp great & thanks. Hi Kevin: could you take the DT part[1] via your tree, also with Neil's Reviewed-by added? I've checked, it could apply cleanly to your v4.16/dt64 branch many thanks Yixun [1] http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005280.html