[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <51DD3773.1050408@keymile.com>
Date: Wed, 10 Jul 2013 12:29:07 +0200
From: Gerlando Falauto <gerlando.falauto@...mile.com>
To: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com>
CC: Jonas Gorski <jogo@...nwrt.org>,
Lennert Buytenhek <buytenh@...tstofly.org>,
netdev@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] net: mv643xx_eth: fix DT port device name
Hi Sebastian, Jonas,
first of all thank you for your HUGE efforts in this area.
On 07/08/2013 12:05 AM, Jonas Gorski wrote:
> On Sun, 7 Jul 2013 23:43:41 +0200
> Jonas Gorski <jogo@...nwrt.org> wrote:
>
>> On Sun, 7 Jul 2013 22:33:51 +0200
>> Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> wrote:
>>
>>> Device tree support added to Marvell MV643xx ethernet driver registers
>>> port devices from port device nodes found on the corresponding controller
>>> node. The current port device name will cause the second controller to
>>> fail on registration because of two identical device names. This fixes
>>> the issue by taking the device node's name also as port device name.
>>>
>>> Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com>
>>> Reported-by: Jonas Gorski <jogo@...nwrt.org>
>>> ---
>>> Cc: Lennert Buytenhek <buytenh@...tstofly.org>
>>> Cc: Jonas Gorski <jogo@...nwrt.org>
>>> Cc: netdev@...r.kernel.org
>>> Cc: linux-arm-kernel@...ts.infradead.org
>>> Cc: linux-kernel@...r.kernel.org
>>> ---
>>> drivers/net/ethernet/marvell/mv643xx_eth.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/net/ethernet/marvell/mv643xx_eth.c b/drivers/net/ethernet/marvell/mv643xx_eth.c
>>> index 6495bea..1f3a03d 100644
>>> --- a/drivers/net/ethernet/marvell/mv643xx_eth.c
>>> +++ b/drivers/net/ethernet/marvell/mv643xx_eth.c
>>> @@ -2521,7 +2521,7 @@ static int mv643xx_eth_shared_of_add_port(struct platform_device *pdev,
>>> of_property_read_u32(pnp, "duplex", &ppd.duplex);
>>> }
>>>
>>> - ppdev = platform_device_alloc(MV643XX_ETH_NAME, ppd.port_number);
>>> + ppdev = platform_device_alloc(pnp->name, ppd.port_number);
>>> if (!ppdev)
>>> return -ENOMEM;
>>> ppdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
>>
>> This breaks ethernet completely, as there is no platform driver
>> registered for pnp->name ("ethernetX-port"), only for MV643XX_ETH_NAME.
>
> Looking back at our conversation, this is my fault.
> I actually did not change this part as you asked, but I saw the
> alloc/del issue with port 0, then added the counter and also only
> replaced the ppd.port_number in the alloc with it. I had completely
> forgotten at that time to replace the device name; else I would
> have caught it back then.
>
> I only caught it now because I tried your patch and wondered why there
> wasn't anything registered, not because I saw the problem by review.
>
The way I understand it, you are "manually" creating platform devices
off the port subnodes (which, incidentally, have a compatible =
"marvell,kirkwood-eth-port" property), but matching with the driver is
indeed performed by device name.
Hence Sebastian's first patch breaks everything and Jonas' latest one
fixes it. Is that correct? Is there any more work ongoing in this area?
One more question: if my understanding above is correct, what's the
reason for NOT having an of_device_id[] table, which looks like was
present in Florian Fainelli's first proposal [1]?
I'm also willing to help testing your present/future kirkwood patches if
you like. Please just put me on Cc:
Thank you,
Gerlando
[1] http://lists.openwall.net/netdev/2013/04/04/42
> Sorry for that.
>
> Regards
> Jonas
>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists