* [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
@ 2008-01-16 9:37 Stefan Roese
2008-01-16 9:39 ` David Gibson
` (2 more replies)
0 siblings, 3 replies; 18+ messages in thread
From: Stefan Roese @ 2008-01-16 9:37 UTC (permalink / raw)
To: linuxppc-dev, netdev
With the removal the the "rgmii-interface" device_type property from the
dts files, the newemac driver needs an update to only rely on compatible
property.
Signed-off-by: Stefan Roese <sr@denx.de>
---
drivers/net/ibm_newemac/rgmii.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/drivers/net/ibm_newemac/rgmii.c b/drivers/net/ibm_newemac/rgmii.c
index 9bc1132..5757788 100644
--- a/drivers/net/ibm_newemac/rgmii.c
+++ b/drivers/net/ibm_newemac/rgmii.c
@@ -302,7 +302,6 @@ static int __devexit rgmii_remove(struct of_device *ofdev)
static struct of_device_id rgmii_match[] =
{
{
- .type = "rgmii-interface",
.compatible = "ibm,rgmii",
},
{
--
1.5.4.rc3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-01-16 9:37 [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table Stefan Roese
@ 2008-01-16 9:39 ` David Gibson
2008-01-16 9:53 ` Benjamin Herrenschmidt
2008-01-17 20:53 ` Benjamin Herrenschmidt
2 siblings, 0 replies; 18+ messages in thread
From: David Gibson @ 2008-01-16 9:39 UTC (permalink / raw)
To: Stefan Roese; +Cc: linuxppc-dev, netdev
On Wed, Jan 16, 2008 at 10:37:10AM +0100, Stefan Roese wrote:
> With the removal the the "rgmii-interface" device_type property from the
> dts files, the newemac driver needs an update to only rely on compatible
> property.
In fact, this patch should go in before the one changing the dts
files.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-01-16 9:37 [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table Stefan Roese
2008-01-16 9:39 ` David Gibson
@ 2008-01-16 9:53 ` Benjamin Herrenschmidt
2008-01-16 15:01 ` Josh Boyer
2008-01-17 20:53 ` Benjamin Herrenschmidt
2 siblings, 1 reply; 18+ messages in thread
From: Benjamin Herrenschmidt @ 2008-01-16 9:53 UTC (permalink / raw)
To: Stefan Roese; +Cc: linuxppc-dev, netdev
On Wed, 2008-01-16 at 10:37 +0100, Stefan Roese wrote:
> With the removal the the "rgmii-interface" device_type property from the
> dts files, the newemac driver needs an update to only rely on compatible
> property.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
I need to test if it works on CAB, can't change the DT on those. I'll
let you know tomorrow.
> ---
> drivers/net/ibm_newemac/rgmii.c | 1 -
> 1 files changed, 0 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/net/ibm_newemac/rgmii.c b/drivers/net/ibm_newemac/rgmii.c
> index 9bc1132..5757788 100644
> --- a/drivers/net/ibm_newemac/rgmii.c
> +++ b/drivers/net/ibm_newemac/rgmii.c
> @@ -302,7 +302,6 @@ static int __devexit rgmii_remove(struct of_device *ofdev)
> static struct of_device_id rgmii_match[] =
> {
> {
> - .type = "rgmii-interface",
> .compatible = "ibm,rgmii",
> },
> {
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-01-16 9:53 ` Benjamin Herrenschmidt
@ 2008-01-16 15:01 ` Josh Boyer
2008-01-30 6:16 ` Stefan Roese
0 siblings, 1 reply; 18+ messages in thread
From: Josh Boyer @ 2008-01-16 15:01 UTC (permalink / raw)
To: benh; +Cc: linuxppc-dev, Stefan Roese, netdev
On Wed, 16 Jan 2008 20:53:59 +1100
Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
>
> On Wed, 2008-01-16 at 10:37 +0100, Stefan Roese wrote:
> > With the removal the the "rgmii-interface" device_type property from the
> > dts files, the newemac driver needs an update to only rely on compatible
> > property.
> >
> > Signed-off-by: Stefan Roese <sr@denx.de>
>
> I need to test if it works on CAB, can't change the DT on those. I'll
> let you know tomorrow.
This should be fine on CAB. The rgmii node has:
compatible = "ibm,rgmii-axon", "ibm,rgmii"
so the match should still catch on the latter.
josh
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-01-16 15:01 ` Josh Boyer
@ 2008-01-30 6:16 ` Stefan Roese
2008-01-30 23:14 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 18+ messages in thread
From: Stefan Roese @ 2008-01-30 6:16 UTC (permalink / raw)
To: linuxppc-dev, benh; +Cc: netdev
On Wednesday 16 January 2008, Josh Boyer wrote:
> On Wed, 16 Jan 2008 20:53:59 +1100
>
> Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
> > On Wed, 2008-01-16 at 10:37 +0100, Stefan Roese wrote:
> > > With the removal the the "rgmii-interface" device_type property from
> > > the dts files, the newemac driver needs an update to only rely on
> > > compatible property.
> > >
> > > Signed-off-by: Stefan Roese <sr@denx.de>
> >
> > I need to test if it works on CAB, can't change the DT on those. I'll
> > let you know tomorrow.
>
> This should be fine on CAB. The rgmii node has:
>
> compatible = "ibm,rgmii-axon", "ibm,rgmii"
>
> so the match should still catch on the latter.
How about this patch? Ben, if you think this is ok then we should make sure
that it goes in in this merge-window, since the other dts patch relies on it.
Thanks.
Best regards,
Stefan
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-01-30 6:16 ` Stefan Roese
@ 2008-01-30 23:14 ` Benjamin Herrenschmidt
2008-02-05 21:12 ` Josh Boyer
0 siblings, 1 reply; 18+ messages in thread
From: Benjamin Herrenschmidt @ 2008-01-30 23:14 UTC (permalink / raw)
To: Stefan Roese; +Cc: linuxppc-dev, netdev
On Wed, 2008-01-30 at 07:16 +0100, Stefan Roese wrote:
> On Wednesday 16 January 2008, Josh Boyer wrote:
> > On Wed, 16 Jan 2008 20:53:59 +1100
> >
> > Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
> > > On Wed, 2008-01-16 at 10:37 +0100, Stefan Roese wrote:
> > > > With the removal the the "rgmii-interface" device_type property from
> > > > the dts files, the newemac driver needs an update to only rely on
> > > > compatible property.
> > > >
> > > > Signed-off-by: Stefan Roese <sr@denx.de>
> > >
> > > I need to test if it works on CAB, can't change the DT on those. I'll
> > > let you know tomorrow.
> >
> > This should be fine on CAB. The rgmii node has:
> >
> > compatible = "ibm,rgmii-axon", "ibm,rgmii"
> >
> > so the match should still catch on the latter.
>
> How about this patch? Ben, if you think this is ok then we should make sure
> that it goes in in this merge-window, since the other dts patch relies on it.
It's fine.
Ben.
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-01-30 23:14 ` Benjamin Herrenschmidt
@ 2008-02-05 21:12 ` Josh Boyer
2008-02-05 21:18 ` Benjamin Herrenschmidt
2008-02-06 12:12 ` Jeff Garzik
0 siblings, 2 replies; 18+ messages in thread
From: Josh Boyer @ 2008-02-05 21:12 UTC (permalink / raw)
To: jgarzik; +Cc: Stefan Roese, netdev, linuxppc-dev
On Thu, 31 Jan 2008 10:14:58 +1100
Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
>
> On Wed, 2008-01-30 at 07:16 +0100, Stefan Roese wrote:
> > On Wednesday 16 January 2008, Josh Boyer wrote:
> > > On Wed, 16 Jan 2008 20:53:59 +1100
> > >
> > > Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
> > > > On Wed, 2008-01-16 at 10:37 +0100, Stefan Roese wrote:
> > > > > With the removal the the "rgmii-interface" device_type property from
> > > > > the dts files, the newemac driver needs an update to only rely on
> > > > > compatible property.
> > > > >
> > > > > Signed-off-by: Stefan Roese <sr@denx.de>
> > > >
> > > > I need to test if it works on CAB, can't change the DT on those. I'll
> > > > let you know tomorrow.
> > >
> > > This should be fine on CAB. The rgmii node has:
> > >
> > > compatible = "ibm,rgmii-axon", "ibm,rgmii"
> > >
> > > so the match should still catch on the latter.
> >
> > How about this patch? Ben, if you think this is ok then we should make sure
> > that it goes in in this merge-window, since the other dts patch relies on it.
>
> It's fine.
Jeff, any chance this can get into .25 soon? I have another patch
queued up behind this one that requires it, and I don't see it in any
of your trees or branches.
Or, if you aren't opposed, I can take it through Paul's tree with your
Ack.
josh
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-05 21:12 ` Josh Boyer
@ 2008-02-05 21:18 ` Benjamin Herrenschmidt
2008-02-06 12:12 ` Jeff Garzik
1 sibling, 0 replies; 18+ messages in thread
From: Benjamin Herrenschmidt @ 2008-02-05 21:18 UTC (permalink / raw)
To: Josh Boyer; +Cc: linuxppc-dev, Stefan Roese, jgarzik, netdev
> Jeff, any chance this can get into .25 soon? I have another patch
> queued up behind this one that requires it, and I don't see it in any
> of your trees or branches.
>
> Or, if you aren't opposed, I can take it through Paul's tree with your
> Ack.
In case my "it's fine" wasn't enough, here's an:
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-05 21:12 ` Josh Boyer
2008-02-05 21:18 ` Benjamin Herrenschmidt
@ 2008-02-06 12:12 ` Jeff Garzik
2008-02-06 12:16 ` Stefan Roese
1 sibling, 1 reply; 18+ messages in thread
From: Jeff Garzik @ 2008-02-06 12:12 UTC (permalink / raw)
To: Josh Boyer; +Cc: Stefan Roese, netdev, linuxppc-dev
Josh Boyer wrote:
> On Thu, 31 Jan 2008 10:14:58 +1100
> Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
>
>> On Wed, 2008-01-30 at 07:16 +0100, Stefan Roese wrote:
>>> On Wednesday 16 January 2008, Josh Boyer wrote:
>>>> On Wed, 16 Jan 2008 20:53:59 +1100
>>>>
>>>> Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
>>>>> On Wed, 2008-01-16 at 10:37 +0100, Stefan Roese wrote:
>>>>>> With the removal the the "rgmii-interface" device_type property from
>>>>>> the dts files, the newemac driver needs an update to only rely on
>>>>>> compatible property.
>>>>>>
>>>>>> Signed-off-by: Stefan Roese <sr@denx.de>
>>>>> I need to test if it works on CAB, can't change the DT on those. I'll
>>>>> let you know tomorrow.
>>>> This should be fine on CAB. The rgmii node has:
>>>>
>>>> compatible = "ibm,rgmii-axon", "ibm,rgmii"
>>>>
>>>> so the match should still catch on the latter.
>>> How about this patch? Ben, if you think this is ok then we should make sure
>>> that it goes in in this merge-window, since the other dts patch relies on it.
>> It's fine.
>
> Jeff, any chance this can get into .25 soon? I have another patch
> queued up behind this one that requires it, and I don't see it in any
> of your trees or branches.
>
> Or, if you aren't opposed, I can take it through Paul's tree with your
> Ack.
can you resend? I don't see it in the pile
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-06 12:12 ` Jeff Garzik
@ 2008-02-06 12:16 ` Stefan Roese
0 siblings, 0 replies; 18+ messages in thread
From: Stefan Roese @ 2008-02-06 12:16 UTC (permalink / raw)
To: linuxppc-dev; +Cc: Jeff Garzik, netdev
On Wednesday 06 February 2008, Jeff Garzik wrote:
> > Jeff, any chance this can get into .25 soon? I have another patch
> > queued up behind this one that requires it, and I don't see it in any
> > of your trees or branches.
> >
> > Or, if you aren't opposed, I can take it through Paul's tree with your
> > Ack.
>
> can you resend? I don't see it in the pile
Will do.
Best regards,
Stefan
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-01-16 9:37 [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table Stefan Roese
2008-01-16 9:39 ` David Gibson
2008-01-16 9:53 ` Benjamin Herrenschmidt
@ 2008-01-17 20:53 ` Benjamin Herrenschmidt
2 siblings, 0 replies; 18+ messages in thread
From: Benjamin Herrenschmidt @ 2008-01-17 20:53 UTC (permalink / raw)
To: Stefan Roese; +Cc: linuxppc-dev, netdev
On Wed, 2008-01-16 at 10:37 +0100, Stefan Roese wrote:
> With the removal the the "rgmii-interface" device_type property from the
> dts files, the newemac driver needs an update to only rely on compatible
> property.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> ---
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Jeff, please stick that into your queue for 2.6.25, thanks !
Ben.
> drivers/net/ibm_newemac/rgmii.c | 1 -
> 1 files changed, 0 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/net/ibm_newemac/rgmii.c b/drivers/net/ibm_newemac/rgmii.c
> index 9bc1132..5757788 100644
> --- a/drivers/net/ibm_newemac/rgmii.c
> +++ b/drivers/net/ibm_newemac/rgmii.c
> @@ -302,7 +302,6 @@ static int __devexit rgmii_remove(struct of_device *ofdev)
> static struct of_device_id rgmii_match[] =
> {
> {
> - .type = "rgmii-interface",
> .compatible = "ibm,rgmii",
> },
> {
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
@ 2008-02-06 12:21 Stefan Roese
2008-02-06 12:49 ` Josh Boyer
2008-02-06 16:01 ` Olof Johansson
0 siblings, 2 replies; 18+ messages in thread
From: Stefan Roese @ 2008-02-06 12:21 UTC (permalink / raw)
To: jeff; +Cc: linuxppc-dev, netdev
With the removal the the "rgmii-interface" device_type property from the
dts files, the newemac driver needs an update to only rely on compatible
property.
Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
drivers/net/ibm_newemac/rgmii.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/drivers/net/ibm_newemac/rgmii.c b/drivers/net/ibm_newemac/rgmii.c
index 9bc1132..5757788 100644
--- a/drivers/net/ibm_newemac/rgmii.c
+++ b/drivers/net/ibm_newemac/rgmii.c
@@ -302,7 +302,6 @@ static int __devexit rgmii_remove(struct of_device *ofdev)
static struct of_device_id rgmii_match[] =
{
{
- .type = "rgmii-interface",
.compatible = "ibm,rgmii",
},
{
--
1.5.4.rc3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-06 12:21 Stefan Roese
@ 2008-02-06 12:49 ` Josh Boyer
2008-02-11 16:08 ` Jeff Garzik
2008-02-06 16:01 ` Olof Johansson
1 sibling, 1 reply; 18+ messages in thread
From: Josh Boyer @ 2008-02-06 12:49 UTC (permalink / raw)
To: Stefan Roese; +Cc: linuxppc-dev, netdev, jeff
On Wed, 6 Feb 2008 13:21:59 +0100
Stefan Roese <sr@denx.de> wrote:
> With the removal the the "rgmii-interface" device_type property from the
> dts files, the newemac driver needs an update to only rely on compatible
> property.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
josh
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-06 12:49 ` Josh Boyer
@ 2008-02-11 16:08 ` Jeff Garzik
0 siblings, 0 replies; 18+ messages in thread
From: Jeff Garzik @ 2008-02-11 16:08 UTC (permalink / raw)
To: Josh Boyer; +Cc: linuxppc-dev, netdev, Stefan Roese
Josh Boyer wrote:
> On Wed, 6 Feb 2008 13:21:59 +0100
> Stefan Roese <sr@denx.de> wrote:
>
>> With the removal the the "rgmii-interface" device_type property from the
>> dts files, the newemac driver needs an update to only rely on compatible
>> property.
>>
>> Signed-off-by: Stefan Roese <sr@denx.de>
>> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
>
> Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
upon further reflection, ACK, take this via ppc tree
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-06 12:21 Stefan Roese
2008-02-06 12:49 ` Josh Boyer
@ 2008-02-06 16:01 ` Olof Johansson
2008-02-06 16:23 ` Josh Boyer
1 sibling, 1 reply; 18+ messages in thread
From: Olof Johansson @ 2008-02-06 16:01 UTC (permalink / raw)
To: Stefan Roese; +Cc: linuxppc-dev, jeff, netdev
On Wed, Feb 06, 2008 at 01:21:59PM +0100, Stefan Roese wrote:
> With the removal the the "rgmii-interface" device_type property from the
> dts files, the newemac driver needs an update to only rely on compatible
> property.
What about systems using an older dts, such as one kexec:ing from an
older kernel?
Just because the device tree source is distributed in the kernel tree
doesn't mean it can give up backwards compatibility.
-Olof
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-06 16:01 ` Olof Johansson
@ 2008-02-06 16:23 ` Josh Boyer
2008-02-06 16:35 ` Olof Johansson
0 siblings, 1 reply; 18+ messages in thread
From: Josh Boyer @ 2008-02-06 16:23 UTC (permalink / raw)
To: Olof Johansson; +Cc: linuxppc-dev, Stefan Roese, jeff, netdev
On Wed, 6 Feb 2008 10:01:57 -0600
Olof Johansson <olof@lixom.net> wrote:
> On Wed, Feb 06, 2008 at 01:21:59PM +0100, Stefan Roese wrote:
> > With the removal the the "rgmii-interface" device_type property from the
> > dts files, the newemac driver needs an update to only rely on compatible
> > property.
>
> What about systems using an older dts, such as one kexec:ing from an
> older kernel?
Like what? Kexec doesn't work on 4xx yet.
> Just because the device tree source is distributed in the kernel tree
> doesn't mean it can give up backwards compatibility.
We checked Axon, which is the only non-DTS machine that uses EMAC and
it will work fine with this change.
josh
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-06 16:23 ` Josh Boyer
@ 2008-02-06 16:35 ` Olof Johansson
2008-02-07 2:47 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 18+ messages in thread
From: Olof Johansson @ 2008-02-06 16:35 UTC (permalink / raw)
To: Josh Boyer; +Cc: linuxppc-dev, Stefan Roese, jeff, netdev
On Wed, Feb 06, 2008 at 10:23:40AM -0600, Josh Boyer wrote:
> On Wed, 6 Feb 2008 10:01:57 -0600
> Olof Johansson <olof@lixom.net> wrote:
>
> > On Wed, Feb 06, 2008 at 01:21:59PM +0100, Stefan Roese wrote:
> > > With the removal the the "rgmii-interface" device_type property from the
> > > dts files, the newemac driver needs an update to only rely on compatible
> > > property.
> >
> > What about systems using an older dts, such as one kexec:ing from an
> > older kernel?
>
> Like what? Kexec doesn't work on 4xx yet.
Sure, but similar restrictions would apply for customers who have a
flashed device tree that want to boot a newer kernel. Deprecating old
device tree support is something that should be done very carefully.
> > Just because the device tree source is distributed in the kernel tree
> > doesn't mean it can give up backwards compatibility.
>
> We checked Axon, which is the only non-DTS machine that uses EMAC and
> it will work fine with this change.
Ah, ok. I remember discussions about this patch before then, sounds like
it's safe. I just triggered on the dts-centric patch description.
Objections withdrawn. :)
-Olof
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table
2008-02-06 16:35 ` Olof Johansson
@ 2008-02-07 2:47 ` Benjamin Herrenschmidt
0 siblings, 0 replies; 18+ messages in thread
From: Benjamin Herrenschmidt @ 2008-02-07 2:47 UTC (permalink / raw)
To: Olof Johansson; +Cc: linuxppc-dev, Stefan Roese, jeff, netdev
On Wed, 2008-02-06 at 10:35 -0600, Olof Johansson wrote:
> On Wed, Feb 06, 2008 at 10:23:40AM -0600, Josh Boyer wrote:
> > On Wed, 6 Feb 2008 10:01:57 -0600
> > Olof Johansson <olof@lixom.net> wrote:
> >
> > > On Wed, Feb 06, 2008 at 01:21:59PM +0100, Stefan Roese wrote:
> > > > With the removal the the "rgmii-interface" device_type property from the
> > > > dts files, the newemac driver needs an update to only rely on compatible
> > > > property.
> > >
> > > What about systems using an older dts, such as one kexec:ing from an
> > > older kernel?
> >
> > Like what? Kexec doesn't work on 4xx yet.
>
> Sure, but similar restrictions would apply for customers who have a
> flashed device tree that want to boot a newer kernel. Deprecating old
> device tree support is something that should be done very carefully.
In that case, we -know- there was no such thing as the proper support
for 4xx in powerpc isn't really there before 2.6.25 anyway. The only
other is Cell/Axon which we verified still works.
Ben.
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2008-02-11 16:08 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-16 9:37 [PATCH] net: NEWEMAC: Remove "rgmii-interface" from rgmii matching table Stefan Roese
2008-01-16 9:39 ` David Gibson
2008-01-16 9:53 ` Benjamin Herrenschmidt
2008-01-16 15:01 ` Josh Boyer
2008-01-30 6:16 ` Stefan Roese
2008-01-30 23:14 ` Benjamin Herrenschmidt
2008-02-05 21:12 ` Josh Boyer
2008-02-05 21:18 ` Benjamin Herrenschmidt
2008-02-06 12:12 ` Jeff Garzik
2008-02-06 12:16 ` Stefan Roese
2008-01-17 20:53 ` Benjamin Herrenschmidt
-- strict thread matches above, loose matches on Subject: below --
2008-02-06 12:21 Stefan Roese
2008-02-06 12:49 ` Josh Boyer
2008-02-11 16:08 ` Jeff Garzik
2008-02-06 16:01 ` Olof Johansson
2008-02-06 16:23 ` Josh Boyer
2008-02-06 16:35 ` Olof Johansson
2008-02-07 2:47 ` Benjamin Herrenschmidt
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).