linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] peci: aspeed: Add AST2600 compatible
@ 2019-10-02  6:11 Chia-Wei, Wang
  2019-10-02  6:11 ` [PATCH 1/2] peci: aspeed: Add AST2600 compatible string Chia-Wei, Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Chia-Wei, Wang @ 2019-10-02  6:11 UTC (permalink / raw)
  To: jae.hyun.yoo
  Cc: jason.m.bills, robh+dt, mark.rutland, joel, andrew, linux-aspeed,
	openbmc, devicetree, linux-arm-kernel, linux-kernel,
	chiawei_wang, ryan_chen

Update the Aspeed PECI driver with the AST2600 compatible string.
A new comptabile string is needed for the extended HW feature of
AST2600.

Chia-Wei, Wang (2):
  peci: aspeed: Add AST2600 compatible string
  dt-bindings: peci: aspeed: Add AST2600 compatible

 Documentation/devicetree/bindings/peci/peci-aspeed.txt | 1 +
 drivers/peci/peci-aspeed.c                             | 1 +
 2 files changed, 2 insertions(+)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/2] peci: aspeed: Add AST2600 compatible string
  2019-10-02  6:11 [PATCH 0/2] peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
@ 2019-10-02  6:11 ` Chia-Wei, Wang
  2019-10-02  6:12 ` [PATCH 2/2] dt-bindings: peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
  2019-10-02 18:11 ` [PATCH 0/2] " Jae Hyun Yoo
  2 siblings, 0 replies; 10+ messages in thread
From: Chia-Wei, Wang @ 2019-10-02  6:11 UTC (permalink / raw)
  To: jae.hyun.yoo
  Cc: jason.m.bills, robh+dt, mark.rutland, joel, andrew, linux-aspeed,
	openbmc, devicetree, linux-arm-kernel, linux-kernel,
	chiawei_wang, ryan_chen

The AST2600 SoC contains the same register set as AST25xx.

Signed-off-by: Chia-Wei, Wang <chiawei_wang@aspeedtech.com>
---
 drivers/peci/peci-aspeed.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/peci/peci-aspeed.c b/drivers/peci/peci-aspeed.c
index 51cb2563ceb6..4eed119dc83b 100644
--- a/drivers/peci/peci-aspeed.c
+++ b/drivers/peci/peci-aspeed.c
@@ -485,6 +485,7 @@ static int aspeed_peci_remove(struct platform_device *pdev)
 static const struct of_device_id aspeed_peci_of_table[] = {
 	{ .compatible = "aspeed,ast2400-peci", },
 	{ .compatible = "aspeed,ast2500-peci", },
+	{ .compatible = "aspeed,ast2600-peci", },
 	{ }
 };
 MODULE_DEVICE_TABLE(of, aspeed_peci_of_table);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/2] dt-bindings: peci: aspeed: Add AST2600 compatible
  2019-10-02  6:11 [PATCH 0/2] peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
  2019-10-02  6:11 ` [PATCH 1/2] peci: aspeed: Add AST2600 compatible string Chia-Wei, Wang
@ 2019-10-02  6:12 ` Chia-Wei, Wang
  2019-10-15 19:01   ` Rob Herring
  2019-10-02 18:11 ` [PATCH 0/2] " Jae Hyun Yoo
  2 siblings, 1 reply; 10+ messages in thread
From: Chia-Wei, Wang @ 2019-10-02  6:12 UTC (permalink / raw)
  To: jae.hyun.yoo
  Cc: jason.m.bills, robh+dt, mark.rutland, joel, andrew, linux-aspeed,
	openbmc, devicetree, linux-arm-kernel, linux-kernel,
	chiawei_wang, ryan_chen

Document the AST2600 PECI controller compatible string.

Signed-off-by: Chia-Wei, Wang <chiawei_wang@aspeedtech.com>
---
 Documentation/devicetree/bindings/peci/peci-aspeed.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/peci/peci-aspeed.txt b/Documentation/devicetree/bindings/peci/peci-aspeed.txt
index cdca73a3b7d8..cddd2d2aa58f 100644
--- a/Documentation/devicetree/bindings/peci/peci-aspeed.txt
+++ b/Documentation/devicetree/bindings/peci/peci-aspeed.txt
@@ -4,6 +4,7 @@ Required properties:
 - compatible        : Should be one of:
 			"aspeed,ast2400-peci"
 			"aspeed,ast2500-peci"
+			"aspeed,ast2600-peci"
 - reg               : Should contain PECI controller registers location and
 		      length.
 - #address-cells    : Should be <1> required to define a client address.
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 0/2] peci: aspeed: Add AST2600 compatible
  2019-10-02  6:11 [PATCH 0/2] peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
  2019-10-02  6:11 ` [PATCH 1/2] peci: aspeed: Add AST2600 compatible string Chia-Wei, Wang
  2019-10-02  6:12 ` [PATCH 2/2] dt-bindings: peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
@ 2019-10-02 18:11 ` Jae Hyun Yoo
  2019-10-02 22:05   ` Joel Stanley
  2 siblings, 1 reply; 10+ messages in thread
From: Jae Hyun Yoo @ 2019-10-02 18:11 UTC (permalink / raw)
  To: Chia-Wei, Wang
  Cc: jason.m.bills, robh+dt, mark.rutland, joel, andrew, linux-aspeed,
	openbmc, devicetree, linux-arm-kernel, linux-kernel, ryan_chen

Hi Chia-Wei,

On 10/1/2019 11:11 PM, Chia-Wei, Wang wrote:
> Update the Aspeed PECI driver with the AST2600 compatible string.
> A new comptabile string is needed for the extended HW feature of
> AST2600.
> 
> Chia-Wei, Wang (2):
>    peci: aspeed: Add AST2600 compatible string
>    dt-bindings: peci: aspeed: Add AST2600 compatible
> 
>   Documentation/devicetree/bindings/peci/peci-aspeed.txt | 1 +
>   drivers/peci/peci-aspeed.c                             | 1 +
>   2 files changed, 2 insertions(+)
> 

PECI subsystem isn't in linux upstream yet so you should submit it into
OpenBMC dev-5.3 tree only.

Cheers,

Jae

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 0/2] peci: aspeed: Add AST2600 compatible
  2019-10-02 18:11 ` [PATCH 0/2] " Jae Hyun Yoo
@ 2019-10-02 22:05   ` Joel Stanley
  2019-10-02 23:42     ` Jae Hyun Yoo
  0 siblings, 1 reply; 10+ messages in thread
From: Joel Stanley @ 2019-10-02 22:05 UTC (permalink / raw)
  To: Jae Hyun Yoo
  Cc: Chia-Wei, Wang, Jason M Biils, Rob Herring, Mark Rutland,
	Andrew Jeffery, linux-aspeed, OpenBMC Maillist, devicetree,
	Linux ARM, Linux Kernel Mailing List, Ryan Chen

On Wed, 2 Oct 2019 at 18:11, Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> wrote:
>
> Hi Chia-Wei,
>
> On 10/1/2019 11:11 PM, Chia-Wei, Wang wrote:
> > Update the Aspeed PECI driver with the AST2600 compatible string.
> > A new comptabile string is needed for the extended HW feature of
> > AST2600.
> >
> > Chia-Wei, Wang (2):
> >    peci: aspeed: Add AST2600 compatible string
> >    dt-bindings: peci: aspeed: Add AST2600 compatible
> >
> >   Documentation/devicetree/bindings/peci/peci-aspeed.txt | 1 +
> >   drivers/peci/peci-aspeed.c                             | 1 +
> >   2 files changed, 2 insertions(+)
> >
>
> PECI subsystem isn't in linux upstream yet so you should submit it into
> OpenBMC dev-5.3 tree only.

OpenBMC has been carrying the out of tree patches for some time now. I
haven't seen a new version posted for a while. Do you have a timeline
for when you plan to submit it upstream?

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 0/2] peci: aspeed: Add AST2600 compatible
  2019-10-02 22:05   ` Joel Stanley
@ 2019-10-02 23:42     ` Jae Hyun Yoo
  2019-10-03  2:35       ` ChiaWei Wang
  0 siblings, 1 reply; 10+ messages in thread
From: Jae Hyun Yoo @ 2019-10-02 23:42 UTC (permalink / raw)
  To: Joel Stanley
  Cc: Chia-Wei, Wang, Jason M Biils, Rob Herring, Mark Rutland,
	Andrew Jeffery, linux-aspeed, OpenBMC Maillist, devicetree,
	Linux ARM, Linux Kernel Mailing List, Ryan Chen

On 10/2/2019 3:05 PM, Joel Stanley wrote:
> On Wed, 2 Oct 2019 at 18:11, Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> wrote:
>>
>> Hi Chia-Wei,
>>
>> On 10/1/2019 11:11 PM, Chia-Wei, Wang wrote:
>>> Update the Aspeed PECI driver with the AST2600 compatible string.
>>> A new comptabile string is needed for the extended HW feature of
>>> AST2600.
>>>
>>> Chia-Wei, Wang (2):
>>>     peci: aspeed: Add AST2600 compatible string
>>>     dt-bindings: peci: aspeed: Add AST2600 compatible
>>>
>>>    Documentation/devicetree/bindings/peci/peci-aspeed.txt | 1 +
>>>    drivers/peci/peci-aspeed.c                             | 1 +
>>>    2 files changed, 2 insertions(+)
>>>
>>
>> PECI subsystem isn't in linux upstream yet so you should submit it into
>> OpenBMC dev-5.3 tree only.
> 
> OpenBMC has been carrying the out of tree patches for some time now. I
> haven't seen a new version posted for a while. Do you have a timeline
> for when you plan to submit it upstream?

Thanks for your effort for carrying the out of tree patches in OpenBMC.
I don't have a exact timeline but I'm gonna upstream it as soon as it
gets ready.

Thanks,

Jae

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH 0/2] peci: aspeed: Add AST2600 compatible
  2019-10-02 23:42     ` Jae Hyun Yoo
@ 2019-10-03  2:35       ` ChiaWei Wang
  2019-10-03 16:20         ` Jae Hyun Yoo
  0 siblings, 1 reply; 10+ messages in thread
From: ChiaWei Wang @ 2019-10-03  2:35 UTC (permalink / raw)
  To: Jae Hyun Yoo, Joel Stanley
  Cc: Jason M Biils, Rob Herring, Mark Rutland, Andrew Jeffery,
	linux-aspeed, OpenBMC Maillist, devicetree, Linux ARM,
	Linux Kernel Mailing List, Ryan Chen

Hi Jae Hyun,

Thanks for the feedback.
For now should I use GitHub pull-request to submit the patches of PECI-related change to OpenBMC dev-5.3 tree only?

Regards,
Chiawei

************* Email Confidentiality Notice ********************
DISCLAIMER:
This message (and any attachments) may contain legally privileged and/or other confidential information. If you have received it in error, please notify the sender by reply e-mail and immediately delete the e-mail and any attachments without copying or disclosing the contents. Thank you.


-----Original Message-----
From: Jae Hyun Yoo [mailto:jae.hyun.yoo@linux.intel.com] 
Sent: Thursday, October 3, 2019 7:43 AM
To: Joel Stanley <joel@jms.id.au>
Cc: ChiaWei Wang <chiawei_wang@aspeedtech.com>; Jason M Biils <jason.m.bills@linux.intel.com>; Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Andrew Jeffery <andrew@aj.id.au>; linux-aspeed <linux-aspeed@lists.ozlabs.org>; OpenBMC Maillist <openbmc@lists.ozlabs.org>; devicetree <devicetree@vger.kernel.org>; Linux ARM <linux-arm-kernel@lists.infradead.org>; Linux Kernel Mailing List <linux-kernel@vger.kernel.org>; Ryan Chen <ryan_chen@aspeedtech.com>
Subject: Re: [PATCH 0/2] peci: aspeed: Add AST2600 compatible

On 10/2/2019 3:05 PM, Joel Stanley wrote:
> On Wed, 2 Oct 2019 at 18:11, Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> wrote:
>>
>> Hi Chia-Wei,
>>
>> On 10/1/2019 11:11 PM, Chia-Wei, Wang wrote:
>>> Update the Aspeed PECI driver with the AST2600 compatible string.
>>> A new comptabile string is needed for the extended HW feature of 
>>> AST2600.
>>>
>>> Chia-Wei, Wang (2):
>>>     peci: aspeed: Add AST2600 compatible string
>>>     dt-bindings: peci: aspeed: Add AST2600 compatible
>>>
>>>    Documentation/devicetree/bindings/peci/peci-aspeed.txt | 1 +
>>>    drivers/peci/peci-aspeed.c                             | 1 +
>>>    2 files changed, 2 insertions(+)
>>>
>>
>> PECI subsystem isn't in linux upstream yet so you should submit it 
>> into OpenBMC dev-5.3 tree only.
> 
> OpenBMC has been carrying the out of tree patches for some time now. I 
> haven't seen a new version posted for a while. Do you have a timeline 
> for when you plan to submit it upstream?

Thanks for your effort for carrying the out of tree patches in OpenBMC.
I don't have a exact timeline but I'm gonna upstream it as soon as it gets ready.

Thanks,

Jae

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 0/2] peci: aspeed: Add AST2600 compatible
  2019-10-03  2:35       ` ChiaWei Wang
@ 2019-10-03 16:20         ` Jae Hyun Yoo
  2019-10-04  1:34           ` ChiaWei Wang
  0 siblings, 1 reply; 10+ messages in thread
From: Jae Hyun Yoo @ 2019-10-03 16:20 UTC (permalink / raw)
  To: ChiaWei Wang, Joel Stanley
  Cc: Jason M Biils, Rob Herring, Mark Rutland, Andrew Jeffery,
	linux-aspeed, OpenBMC Maillist, devicetree, Linux ARM,
	Linux Kernel Mailing List, Ryan Chen

On 10/2/2019 7:35 PM, ChiaWei Wang wrote:
> Hi Jae Hyun,
> 
> Thanks for the feedback.
> For now should I use GitHub pull-request to submit the patches of PECI-related change to OpenBMC dev-5.3 tree only?

You could submit this patch series to OpenBMC mailing list with
[PATCH linux dev-5.3] prefix.

Thanks,

Jae

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH 0/2] peci: aspeed: Add AST2600 compatible
  2019-10-03 16:20         ` Jae Hyun Yoo
@ 2019-10-04  1:34           ` ChiaWei Wang
  0 siblings, 0 replies; 10+ messages in thread
From: ChiaWei Wang @ 2019-10-04  1:34 UTC (permalink / raw)
  To: Jae Hyun Yoo, Joel Stanley
  Cc: Jason M Biils, Rob Herring, Mark Rutland, Andrew Jeffery,
	linux-aspeed, OpenBMC Maillist, devicetree, Linux ARM,
	Linux Kernel Mailing List, Ryan Chen

Sure. We will re-submit the patches with the revision suggested.
Thanks.

Regards,
Chiawei

************* Email Confidentiality Notice ********************
DISCLAIMER:
This message (and any attachments) may contain legally privileged and/or other confidential information. If you have received it in error, please notify the sender by reply e-mail and immediately delete the e-mail and any attachments without copying or disclosing the contents. Thank you.


-----Original Message-----
From: Jae Hyun Yoo [mailto:jae.hyun.yoo@linux.intel.com] 
Sent: Friday, October 4, 2019 12:20 AM
To: ChiaWei Wang <chiawei_wang@aspeedtech.com>; Joel Stanley <joel@jms.id.au>
Cc: Jason M Biils <jason.m.bills@linux.intel.com>; Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Andrew Jeffery <andrew@aj.id.au>; linux-aspeed <linux-aspeed@lists.ozlabs.org>; OpenBMC Maillist <openbmc@lists.ozlabs.org>; devicetree <devicetree@vger.kernel.org>; Linux ARM <linux-arm-kernel@lists.infradead.org>; Linux Kernel Mailing List <linux-kernel@vger.kernel.org>; Ryan Chen <ryan_chen@aspeedtech.com>
Subject: Re: [PATCH 0/2] peci: aspeed: Add AST2600 compatible

On 10/2/2019 7:35 PM, ChiaWei Wang wrote:
> Hi Jae Hyun,
> 
> Thanks for the feedback.
> For now should I use GitHub pull-request to submit the patches of PECI-related change to OpenBMC dev-5.3 tree only?

You could submit this patch series to OpenBMC mailing list with [PATCH linux dev-5.3] prefix.

Thanks,

Jae

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/2] dt-bindings: peci: aspeed: Add AST2600 compatible
  2019-10-02  6:12 ` [PATCH 2/2] dt-bindings: peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
@ 2019-10-15 19:01   ` Rob Herring
  0 siblings, 0 replies; 10+ messages in thread
From: Rob Herring @ 2019-10-15 19:01 UTC (permalink / raw)
  To: Chia-Wei, Wang
  Cc: jae.hyun.yoo, mark.rutland, devicetree, ryan_chen, linux-aspeed,
	andrew, openbmc, linux-kernel, robh+dt, joel, jason.m.bills,
	chiawei_wang, linux-arm-kernel

On Wed, 2 Oct 2019 14:12:00 +0800, "Chia-Wei, Wang" wrote:
> Document the AST2600 PECI controller compatible string.
> 
> Signed-off-by: Chia-Wei, Wang <chiawei_wang@aspeedtech.com>
> ---
>  Documentation/devicetree/bindings/peci/peci-aspeed.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Rob Herring <robh@kernel.org>

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-10-15 19:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-02  6:11 [PATCH 0/2] peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
2019-10-02  6:11 ` [PATCH 1/2] peci: aspeed: Add AST2600 compatible string Chia-Wei, Wang
2019-10-02  6:12 ` [PATCH 2/2] dt-bindings: peci: aspeed: Add AST2600 compatible Chia-Wei, Wang
2019-10-15 19:01   ` Rob Herring
2019-10-02 18:11 ` [PATCH 0/2] " Jae Hyun Yoo
2019-10-02 22:05   ` Joel Stanley
2019-10-02 23:42     ` Jae Hyun Yoo
2019-10-03  2:35       ` ChiaWei Wang
2019-10-03 16:20         ` Jae Hyun Yoo
2019-10-04  1:34           ` ChiaWei Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).