linux-amlogic.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH u-boot 0/2] net: designware: add meson meson compatibles
@ 2018-11-09 14:20 Neil Armstrong
  2018-11-09 14:20 ` [PATCH u-boot 1/2] net: designware: add meson meson gxbb compatible Neil Armstrong
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Neil Armstrong @ 2018-11-09 14:20 UTC (permalink / raw)
  To: linus-amlogic

Add the compatible strings in the Synopsys DWMAC driver for :
- The Amlogic GXBB (and other GX) SoC
- The Amlogic AXG (and other GX) SoC

Neil Armstrong (2):
  net: designware: add meson meson gxbb comptatible
  net: designware: add meson meson axg compatible

 drivers/net/designware.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.7.4

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

* [PATCH u-boot 1/2] net: designware: add meson meson gxbb compatible
  2018-11-09 14:20 [PATCH u-boot 0/2] net: designware: add meson meson compatibles Neil Armstrong
@ 2018-11-09 14:20 ` Neil Armstrong
  2018-11-09 14:21 ` [PATCH u-boot 2/2] net: designware: add meson meson axg compatible Neil Armstrong
  2019-01-02 21:01 ` [U-Boot] [PATCH u-boot 0/2] net: designware: add meson meson compatibles Joe Hershberger
  2 siblings, 0 replies; 5+ messages in thread
From: Neil Armstrong @ 2018-11-09 14:20 UTC (permalink / raw)
  To: linus-amlogic

Add the compatible string for the Amlogic GXBB SoC family.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 drivers/net/designware.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/designware.c b/drivers/net/designware.c
index 19db0a8..cdcc03f 100644
--- a/drivers/net/designware.c
+++ b/drivers/net/designware.c
@@ -838,6 +838,7 @@ static const struct udevice_id designware_eth_ids[] = {
 	{ .compatible = "altr,socfpga-stmmac" },
 	{ .compatible = "amlogic,meson6-dwmac" },
 	{ .compatible = "amlogic,meson-gx-dwmac" },
+	{ .compatible = "amlogic,meson-gxbb-dwmac" },
 	{ .compatible = "st,stm32-dwmac" },
 	{ }
 };
-- 
2.7.4

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

* [PATCH u-boot 2/2] net: designware: add meson meson axg compatible
  2018-11-09 14:20 [PATCH u-boot 0/2] net: designware: add meson meson compatibles Neil Armstrong
  2018-11-09 14:20 ` [PATCH u-boot 1/2] net: designware: add meson meson gxbb compatible Neil Armstrong
@ 2018-11-09 14:21 ` Neil Armstrong
  2019-01-02 21:01 ` [U-Boot] [PATCH u-boot 0/2] net: designware: add meson meson compatibles Joe Hershberger
  2 siblings, 0 replies; 5+ messages in thread
From: Neil Armstrong @ 2018-11-09 14:21 UTC (permalink / raw)
  To: linus-amlogic

Add the compatible string for the upcoming Amlogic AXG SoC family.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 drivers/net/designware.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/designware.c b/drivers/net/designware.c
index cdcc03f..4fa26ab 100644
--- a/drivers/net/designware.c
+++ b/drivers/net/designware.c
@@ -839,6 +839,7 @@ static const struct udevice_id designware_eth_ids[] = {
 	{ .compatible = "amlogic,meson6-dwmac" },
 	{ .compatible = "amlogic,meson-gx-dwmac" },
 	{ .compatible = "amlogic,meson-gxbb-dwmac" },
+	{ .compatible = "amlogic,meson-axg-dwmac" },
 	{ .compatible = "st,stm32-dwmac" },
 	{ }
 };
-- 
2.7.4

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

* Re: [U-Boot] [PATCH u-boot 0/2] net: designware: add meson meson compatibles
  2018-11-09 14:20 [PATCH u-boot 0/2] net: designware: add meson meson compatibles Neil Armstrong
  2018-11-09 14:20 ` [PATCH u-boot 1/2] net: designware: add meson meson gxbb compatible Neil Armstrong
  2018-11-09 14:21 ` [PATCH u-boot 2/2] net: designware: add meson meson axg compatible Neil Armstrong
@ 2019-01-02 21:01 ` Joe Hershberger
  2019-01-03  8:41   ` Neil Armstrong
  2 siblings, 1 reply; 5+ messages in thread
From: Joe Hershberger @ 2019-01-02 21:01 UTC (permalink / raw)
  To: Neil Armstrong; +Cc: u-boot, linux-amlogic, Joseph Hershberger

On Fri, Nov 9, 2018 at 8:21 AM Neil Armstrong <narmstrong@baylibre.com> wrote:
>
> Add the compatible strings in the Synopsys DWMAC driver for :
> - The Amlogic GXBB (and other GX) SoC
> - The Amlogic AXG (and other GX) SoC
>
> Neil Armstrong (2):
>   net: designware: add meson meson gxbb comptatible
>   net: designware: add meson meson axg compatible

Hi Neil,

Trying to catch up on patches - I don't see this series in patchwork -
should it be?

Thanks,
-Joe
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [U-Boot] [PATCH u-boot 0/2] net: designware: add meson meson compatibles
  2019-01-02 21:01 ` [U-Boot] [PATCH u-boot 0/2] net: designware: add meson meson compatibles Joe Hershberger
@ 2019-01-03  8:41   ` Neil Armstrong
  0 siblings, 0 replies; 5+ messages in thread
From: Neil Armstrong @ 2019-01-03  8:41 UTC (permalink / raw)
  To: joe.hershberger; +Cc: u-boot, linux-amlogic, Joseph Hershberger

Hi Joe,

On 02/01/2019 22:01, Joe Hershberger wrote:
> On Fri, Nov 9, 2018 at 8:21 AM Neil Armstrong <narmstrong@baylibre.com> wrote:
>>
>> Add the compatible strings in the Synopsys DWMAC driver for :
>> - The Amlogic GXBB (and other GX) SoC
>> - The Amlogic AXG (and other GX) SoC
>>
>> Neil Armstrong (2):
>>   net: designware: add meson meson gxbb comptatible
>>   net: designware: add meson meson axg compatible
> 
> Hi Neil,
> 
> Trying to catch up on patches - I don't see this series in patchwork -
> should it be?

I pushed them along the u-boot-amlogic-20181126 pull-request to tom.

Neil

> 
> Thanks,
> -Joe
> 


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

end of thread, other threads:[~2019-01-03  8:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-09 14:20 [PATCH u-boot 0/2] net: designware: add meson meson compatibles Neil Armstrong
2018-11-09 14:20 ` [PATCH u-boot 1/2] net: designware: add meson meson gxbb compatible Neil Armstrong
2018-11-09 14:21 ` [PATCH u-boot 2/2] net: designware: add meson meson axg compatible Neil Armstrong
2019-01-02 21:01 ` [U-Boot] [PATCH u-boot 0/2] net: designware: add meson meson compatibles Joe Hershberger
2019-01-03  8:41   ` Neil Armstrong

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).