* [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense
[not found] <20210402182724.20848-1-zev@bewilderbeest.net>
@ 2021-04-02 18:27 ` Zev Weiss
2021-04-07 15:18 ` Greg Kroah-Hartman
2021-04-02 18:27 ` [PATCH v4 4/4] dt-bindings: serial: 8250: add aspeed,lpc-io-reg and aspeed,lpc-interrupts Zev Weiss
1 sibling, 1 reply; 7+ messages in thread
From: Zev Weiss @ 2021-04-02 18:27 UTC (permalink / raw)
To: Joel Stanley
Cc: openbmc, linux-arm-kernel, linux-aspeed, linux-kernel,
Andrew Jeffery, Zev Weiss, Greg Kroah-Hartman, Rob Herring,
Lubomir Rintel, -, linux-serial
This property ties SIRQ polarity to SCU register bits that don't
necessarily have any direct relationship to it; the only use of it
was removed in commit c82bf6e133d30e0f9172a20807814fa28aef0f67.
Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
Reviewed-by: Joel Stanley <joel@jms.id.au>
---
Documentation/devicetree/bindings/serial/8250.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/serial/8250.yaml b/Documentation/devicetree/bindings/serial/8250.yaml
index f54cae9ff7b2..491b9297432d 100644
--- a/Documentation/devicetree/bindings/serial/8250.yaml
+++ b/Documentation/devicetree/bindings/serial/8250.yaml
@@ -188,6 +188,7 @@ properties:
offset and bit number to identify how the SIRQ polarity should be
configured. One possible data source is the LPC/eSPI mode bit. Only
applicable to aspeed,ast2500-vuart.
+ deprecated: true
required:
- reg
--
2.31.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v4 4/4] dt-bindings: serial: 8250: add aspeed,lpc-io-reg and aspeed,lpc-interrupts
[not found] <20210402182724.20848-1-zev@bewilderbeest.net>
2021-04-02 18:27 ` [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense Zev Weiss
@ 2021-04-02 18:27 ` Zev Weiss
1 sibling, 0 replies; 7+ messages in thread
From: Zev Weiss @ 2021-04-02 18:27 UTC (permalink / raw)
To: Joel Stanley
Cc: openbmc, linux-arm-kernel, linux-aspeed, linux-kernel,
Andrew Jeffery, Zev Weiss, Greg Kroah-Hartman, Rob Herring,
Lubomir Rintel, -, linux-serial
These correspond to the existing lpc_address, sirq, and sirq_polarity
sysfs attributes; the second element of aspeed,lpc-interrupts provides
a replacement for the deprecated aspeed,sirq-polarity-sense property.
Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
---
.../devicetree/bindings/serial/8250.yaml | 27 ++++++++++++++++---
1 file changed, 24 insertions(+), 3 deletions(-)
diff --git a/Documentation/devicetree/bindings/serial/8250.yaml b/Documentation/devicetree/bindings/serial/8250.yaml
index 491b9297432d..0e82b076e199 100644
--- a/Documentation/devicetree/bindings/serial/8250.yaml
+++ b/Documentation/devicetree/bindings/serial/8250.yaml
@@ -12,8 +12,13 @@ maintainers:
allOf:
- $ref: /schemas/serial.yaml#
- if:
- required:
- - aspeed,sirq-polarity-sense
+ anyOf:
+ - required:
+ - aspeed,lpc-io-reg
+ - required:
+ - aspeed,lpc-interrupts
+ - required:
+ - aspeed,sirq-polarity-sense
then:
properties:
compatible:
@@ -190,6 +195,20 @@ properties:
applicable to aspeed,ast2500-vuart.
deprecated: true
+ aspeed,lpc-io-reg:
+ $ref: '/schemas/types.yaml#/definitions/uint32'
+ description: |
+ The VUART LPC address. Only applicable to aspeed,ast2500-vuart.
+
+ aspeed,lpc-interrupts:
+ $ref: "/schemas/types.yaml#/definitions/uint32-array"
+ minItems: 2
+ maxItems: 2
+ description: |
+ A 2-cell property describing the VUART SIRQ number and SIRQ
+ polarity (IRQ_TYPE_LEVEL_LOW or IRQ_TYPE_LEVEL_HIGH). Only
+ applicable to aspeed,ast2500-vuart.
+
required:
- reg
- interrupts
@@ -221,6 +240,7 @@ examples:
};
- |
#include <dt-bindings/clock/aspeed-clock.h>
+ #include <dt-bindings/interrupt-controller/irq.h>
serial@1e787000 {
compatible = "aspeed,ast2500-vuart";
reg = <0x1e787000 0x40>;
@@ -228,7 +248,8 @@ examples:
interrupts = <8>;
clocks = <&syscon ASPEED_CLK_APB>;
no-loopback-test;
- aspeed,sirq-polarity-sense = <&syscon 0x70 25>;
+ aspeed,lpc-io-reg = <0x3f8>;
+ aspeed,lpc-interrupts = <4 IRQ_TYPE_LEVEL_LOW>;
};
...
--
2.31.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense
2021-04-02 18:27 ` [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense Zev Weiss
@ 2021-04-07 15:18 ` Greg Kroah-Hartman
2021-04-07 16:56 ` Zev Weiss
0 siblings, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2021-04-07 15:18 UTC (permalink / raw)
To: Zev Weiss
Cc: Joel Stanley, openbmc, linux-arm-kernel, linux-aspeed,
linux-kernel, Andrew Jeffery, Rob Herring, Lubomir Rintel, -,
linux-serial
On Fri, Apr 02, 2021 at 01:27:21PM -0500, Zev Weiss wrote:
> This property ties SIRQ polarity to SCU register bits that don't
> necessarily have any direct relationship to it; the only use of it
> was removed in commit c82bf6e133d30e0f9172a20807814fa28aef0f67.
Please write that as:
c82bf6e133d3 ("ARM: aspeed: g5: Do not set sirq polarity")
> Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
> Reviewed-by: Joel Stanley <joel@jms.id.au>
> ---
> Documentation/devicetree/bindings/serial/8250.yaml | 1 +
> 1 file changed, 1 insertion(+)
What changed from previous versions? That always goes below the ---
line.
Please fix up and send a v5.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense
2021-04-07 15:18 ` Greg Kroah-Hartman
@ 2021-04-07 16:56 ` Zev Weiss
2021-04-07 17:25 ` Greg Kroah-Hartman
0 siblings, 1 reply; 7+ messages in thread
From: Zev Weiss @ 2021-04-07 16:56 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Joel Stanley, openbmc, linux-arm-kernel, linux-aspeed,
linux-kernel, Andrew Jeffery, Rob Herring, Lubomir Rintel, -,
linux-serial
On Wed, Apr 07, 2021 at 10:18:31AM CDT, Greg Kroah-Hartman wrote:
>On Fri, Apr 02, 2021 at 01:27:21PM -0500, Zev Weiss wrote:
>> This property ties SIRQ polarity to SCU register bits that don't
>> necessarily have any direct relationship to it; the only use of it
>> was removed in commit c82bf6e133d30e0f9172a20807814fa28aef0f67.
>
>Please write that as:
> c82bf6e133d3 ("ARM: aspeed: g5: Do not set sirq polarity")
>
Ack, will do.
>> Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
>> Reviewed-by: Joel Stanley <joel@jms.id.au>
>> ---
>> Documentation/devicetree/bindings/serial/8250.yaml | 1 +
>> 1 file changed, 1 insertion(+)
>
>What changed from previous versions? That always goes below the ---
>line.
>
I included an overview of that in the cover letter
(https://lore.kernel.org/openbmc/20210402182724.20848-1-zev@bewilderbeest.net/);
is it desirable to also have that duplicated in the individual patches
in the series?
Zev
Zev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense
2021-04-07 16:56 ` Zev Weiss
@ 2021-04-07 17:25 ` Greg Kroah-Hartman
2021-04-07 17:55 ` Zev Weiss
0 siblings, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2021-04-07 17:25 UTC (permalink / raw)
To: Zev Weiss
Cc: Joel Stanley, openbmc, linux-arm-kernel, linux-aspeed,
linux-kernel, Andrew Jeffery, Rob Herring, Lubomir Rintel, -,
linux-serial
On Wed, Apr 07, 2021 at 11:56:04AM -0500, Zev Weiss wrote:
> On Wed, Apr 07, 2021 at 10:18:31AM CDT, Greg Kroah-Hartman wrote:
> > On Fri, Apr 02, 2021 at 01:27:21PM -0500, Zev Weiss wrote:
> > > This property ties SIRQ polarity to SCU register bits that don't
> > > necessarily have any direct relationship to it; the only use of it
> > > was removed in commit c82bf6e133d30e0f9172a20807814fa28aef0f67.
> >
> > Please write that as:
> > c82bf6e133d3 ("ARM: aspeed: g5: Do not set sirq polarity")
> >
>
> Ack, will do.
>
> > > Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
> > > Reviewed-by: Joel Stanley <joel@jms.id.au>
> > > ---
> > > Documentation/devicetree/bindings/serial/8250.yaml | 1 +
> > > 1 file changed, 1 insertion(+)
> >
> > What changed from previous versions? That always goes below the ---
> > line.
> >
>
> I included an overview of that in the cover letter (https://lore.kernel.org/openbmc/20210402182724.20848-1-zev@bewilderbeest.net/);
> is it desirable to also have that duplicated in the individual patches in
> the series?
Any reason why you didn't include all of the relevant people and mailing
lists in that cover letter? I've never seen it before :)
But yes, if you do send it to the right group, putting it in 00/XX is
fine.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense
2021-04-07 17:25 ` Greg Kroah-Hartman
@ 2021-04-07 17:55 ` Zev Weiss
2021-04-08 6:37 ` Greg Kroah-Hartman
0 siblings, 1 reply; 7+ messages in thread
From: Zev Weiss @ 2021-04-07 17:55 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Joel Stanley, openbmc, linux-arm-kernel, linux-aspeed,
linux-kernel, Andrew Jeffery, Rob Herring, Lubomir Rintel, -,
linux-serial
On Wed, Apr 07, 2021 at 12:25:09PM CDT, Greg Kroah-Hartman wrote:
>On Wed, Apr 07, 2021 at 11:56:04AM -0500, Zev Weiss wrote:
>> On Wed, Apr 07, 2021 at 10:18:31AM CDT, Greg Kroah-Hartman wrote:
>> > On Fri, Apr 02, 2021 at 01:27:21PM -0500, Zev Weiss wrote:
>> > > This property ties SIRQ polarity to SCU register bits that don't
>> > > necessarily have any direct relationship to it; the only use of it
>> > > was removed in commit c82bf6e133d30e0f9172a20807814fa28aef0f67.
>> >
>> > Please write that as:
>> > c82bf6e133d3 ("ARM: aspeed: g5: Do not set sirq polarity")
>> >
>>
>> Ack, will do.
>>
>> > > Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
>> > > Reviewed-by: Joel Stanley <joel@jms.id.au>
>> > > ---
>> > > Documentation/devicetree/bindings/serial/8250.yaml | 1 +
>> > > 1 file changed, 1 insertion(+)
>> >
>> > What changed from previous versions? That always goes below the ---
>> > line.
>> >
>>
>> I included an overview of that in the cover letter (https://lore.kernel.org/openbmc/20210402182724.20848-1-zev@bewilderbeest.net/);
>> is it desirable to also have that duplicated in the individual patches in
>> the series?
>
>Any reason why you didn't include all of the relevant people and mailing
>lists in that cover letter? I've never seen it before :)
>
Ah -- is there a good rule of thumb (or git send-email trick) for that?
Set-union of get_maintainer.pl over all the patches in the series?
Zev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense
2021-04-07 17:55 ` Zev Weiss
@ 2021-04-08 6:37 ` Greg Kroah-Hartman
0 siblings, 0 replies; 7+ messages in thread
From: Greg Kroah-Hartman @ 2021-04-08 6:37 UTC (permalink / raw)
To: Zev Weiss
Cc: Joel Stanley, openbmc, linux-arm-kernel, linux-aspeed,
linux-kernel, Andrew Jeffery, Rob Herring, Lubomir Rintel, -,
linux-serial
On Wed, Apr 07, 2021 at 12:55:29PM -0500, Zev Weiss wrote:
> On Wed, Apr 07, 2021 at 12:25:09PM CDT, Greg Kroah-Hartman wrote:
> > On Wed, Apr 07, 2021 at 11:56:04AM -0500, Zev Weiss wrote:
> > > On Wed, Apr 07, 2021 at 10:18:31AM CDT, Greg Kroah-Hartman wrote:
> > > > On Fri, Apr 02, 2021 at 01:27:21PM -0500, Zev Weiss wrote:
> > > > > This property ties SIRQ polarity to SCU register bits that don't
> > > > > necessarily have any direct relationship to it; the only use of it
> > > > > was removed in commit c82bf6e133d30e0f9172a20807814fa28aef0f67.
> > > >
> > > > Please write that as:
> > > > c82bf6e133d3 ("ARM: aspeed: g5: Do not set sirq polarity")
> > > >
> > >
> > > Ack, will do.
> > >
> > > > > Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
> > > > > Reviewed-by: Joel Stanley <joel@jms.id.au>
> > > > > ---
> > > > > Documentation/devicetree/bindings/serial/8250.yaml | 1 +
> > > > > 1 file changed, 1 insertion(+)
> > > >
> > > > What changed from previous versions? That always goes below the ---
> > > > line.
> > > >
> > >
> > > I included an overview of that in the cover letter (https://lore.kernel.org/openbmc/20210402182724.20848-1-zev@bewilderbeest.net/);
> > > is it desirable to also have that duplicated in the individual patches in
> > > the series?
> >
> > Any reason why you didn't include all of the relevant people and mailing
> > lists in that cover letter? I've never seen it before :)
> >
>
> Ah -- is there a good rule of thumb (or git send-email trick) for that?
> Set-union of get_maintainer.pl over all the patches in the series?
There might be a git send-email trick, but I don't know it :(
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-04-08 6:37 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20210402182724.20848-1-zev@bewilderbeest.net>
2021-04-02 18:27 ` [PATCH v4 1/4] dt-bindings: serial: 8250: deprecate aspeed,sirq-polarity-sense Zev Weiss
2021-04-07 15:18 ` Greg Kroah-Hartman
2021-04-07 16:56 ` Zev Weiss
2021-04-07 17:25 ` Greg Kroah-Hartman
2021-04-07 17:55 ` Zev Weiss
2021-04-08 6:37 ` Greg Kroah-Hartman
2021-04-02 18:27 ` [PATCH v4 4/4] dt-bindings: serial: 8250: add aspeed,lpc-io-reg and aspeed,lpc-interrupts Zev Weiss
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).