All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH linux] ARM: dts: aspeed-g4: add serial gpio driver entry
@ 2017-11-27 20:07 Patrick Venture
  2017-11-27 20:10 ` Patrick Venture
  0 siblings, 1 reply; 3+ messages in thread
From: Patrick Venture @ 2017-11-27 20:07 UTC (permalink / raw)
  To: venture, joel; +Cc: openbmc

Adds the serial gpio driver entry for the aspeed
ast2400.

Signed-off-by: Patrick Venture <venture@google.com>
---
 arch/arm/boot/dts/aspeed-g4.dtsi | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/boot/dts/aspeed-g4.dtsi b/arch/arm/boot/dts/aspeed-g4.dtsi
index 424d843ec1da..b82ebefcb025 100644
--- a/arch/arm/boot/dts/aspeed-g4.dtsi
+++ b/arch/arm/boot/dts/aspeed-g4.dtsi
@@ -238,6 +238,15 @@
 				clocks = <&clk_hpll>;
 			};
 
+			sgpio: gpio@0x1e780200 {
+				#gpio-cells = <2>;
+				gpio-controller;
+				compatible = "aspeed,ast2400-sgpio";
+				reg = <0x1e780200 0x100>;
+				interrupts = <40>;
+				interrupt-controller;
+			};
+
 			timer: timer@1e782000 {
 				compatible = "aspeed,ast2400-timer";
 				reg = <0x1e782000 0x90>;
-- 
2.15.0.417.g466bffb3ac-goog

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

* Re: [PATCH linux] ARM: dts: aspeed-g4: add serial gpio driver entry
  2017-11-27 20:07 [PATCH linux] ARM: dts: aspeed-g4: add serial gpio driver entry Patrick Venture
@ 2017-11-27 20:10 ` Patrick Venture
  2017-12-08  6:26   ` Joel Stanley
  0 siblings, 1 reply; 3+ messages in thread
From: Patrick Venture @ 2017-11-27 20:10 UTC (permalink / raw)
  To: Patrick Venture, Joel Stanley; +Cc: OpenBMC Maillist

There isn't yet a binding for this, but if it's acceptable. I'm going
to submit a gpio driver strictly for the serial gpio once I can test
on an ast2500.  I'm presently finalizing the ast2400 version of the
driver.

- Patrick

On Mon, Nov 27, 2017 at 12:07 PM, Patrick Venture <venture@google.com> wrote:
> Adds the serial gpio driver entry for the aspeed
> ast2400.
>
> Signed-off-by: Patrick Venture <venture@google.com>
> ---
>  arch/arm/boot/dts/aspeed-g4.dtsi | 9 +++++++++
>  1 file changed, 9 insertions(+)
>
> diff --git a/arch/arm/boot/dts/aspeed-g4.dtsi b/arch/arm/boot/dts/aspeed-g4.dtsi
> index 424d843ec1da..b82ebefcb025 100644
> --- a/arch/arm/boot/dts/aspeed-g4.dtsi
> +++ b/arch/arm/boot/dts/aspeed-g4.dtsi
> @@ -238,6 +238,15 @@
>                                 clocks = <&clk_hpll>;
>                         };
>
> +                       sgpio: gpio@0x1e780200 {
> +                               #gpio-cells = <2>;
> +                               gpio-controller;
> +                               compatible = "aspeed,ast2400-sgpio";
> +                               reg = <0x1e780200 0x100>;
> +                               interrupts = <40>;
> +                               interrupt-controller;
> +                       };
> +
>                         timer: timer@1e782000 {
>                                 compatible = "aspeed,ast2400-timer";
>                                 reg = <0x1e782000 0x90>;
> --
> 2.15.0.417.g466bffb3ac-goog
>

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

* Re: [PATCH linux] ARM: dts: aspeed-g4: add serial gpio driver entry
  2017-11-27 20:10 ` Patrick Venture
@ 2017-12-08  6:26   ` Joel Stanley
  0 siblings, 0 replies; 3+ messages in thread
From: Joel Stanley @ 2017-12-08  6:26 UTC (permalink / raw)
  To: Patrick Venture; +Cc: OpenBMC Maillist

On Tue, Nov 28, 2017 at 6:40 AM, Patrick Venture <venture@google.com> wrote:
> There isn't yet a binding for this, but if it's acceptable. I'm going
> to submit a gpio driver strictly for the serial gpio once I can test
> on an ast2500.  I'm presently finalizing the ast2400 version of the
> driver.

We can stage the device tree change in the openbmc tree if it helps
your development.

Applied to dev-4.10.

Cheers,

Joel

>
> - Patrick
>
> On Mon, Nov 27, 2017 at 12:07 PM, Patrick Venture <venture@google.com> wrote:
>> Adds the serial gpio driver entry for the aspeed
>> ast2400.
>>
>> Signed-off-by: Patrick Venture <venture@google.com>
>> ---
>>  arch/arm/boot/dts/aspeed-g4.dtsi | 9 +++++++++
>>  1 file changed, 9 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/aspeed-g4.dtsi b/arch/arm/boot/dts/aspeed-g4.dtsi
>> index 424d843ec1da..b82ebefcb025 100644
>> --- a/arch/arm/boot/dts/aspeed-g4.dtsi
>> +++ b/arch/arm/boot/dts/aspeed-g4.dtsi
>> @@ -238,6 +238,15 @@
>>                                 clocks = <&clk_hpll>;
>>                         };
>>
>> +                       sgpio: gpio@0x1e780200 {
>> +                               #gpio-cells = <2>;
>> +                               gpio-controller;
>> +                               compatible = "aspeed,ast2400-sgpio";
>> +                               reg = <0x1e780200 0x100>;
>> +                               interrupts = <40>;
>> +                               interrupt-controller;
>> +                       };
>> +
>>                         timer: timer@1e782000 {
>>                                 compatible = "aspeed,ast2400-timer";
>>                                 reg = <0x1e782000 0x90>;
>> --
>> 2.15.0.417.g466bffb3ac-goog
>>

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

end of thread, other threads:[~2017-12-08  6:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-27 20:07 [PATCH linux] ARM: dts: aspeed-g4: add serial gpio driver entry Patrick Venture
2017-11-27 20:10 ` Patrick Venture
2017-12-08  6:26   ` Joel Stanley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.