Re: net: macb: fail when there's no PHY

2020-12-04 Thread Alexander Dahl
Hello Grant, sorry if I just hijack your conversation, but I'm curious, because we are using the same SoC. Adding linux-arm-kernel to Cc for the general performance issues and linux-mtd for the ECC questions. O:-) Am Donnerstag, 3. Dezember 2020, 23:20:38 CET schrieb Grant Edwards: > On 2020-1

Re: Request for Comment: LED device naming for netdev LEDs

2020-09-28 Thread Alexander Dahl
Hei hei, On Mon, Sep 28, 2020 at 05:52:09PM +0200, Marek Behun wrote: > On Mon, 28 Sep 2020 15:04:10 +0200 > Alexander Dahl wrote: > > > Hei Marek, > > > > Am Sonntag, 27. September 2020, 02:52:58 CEST schrieb Marek Behun: > > > On Sun, 27 Sep 2020 00:

Re: Request for Comment: LED device naming for netdev LEDs

2020-09-28 Thread Alexander Dahl
Hei Marek, Am Sonntag, 27. September 2020, 02:52:58 CEST schrieb Marek Behun: > On Sun, 27 Sep 2020 00:40:25 +0200 > > Marek Behun wrote: > > What I am wondering is how should we select a name for the device part > > of the LED for network devices, when network namespaces are enabled. > > > > a

Re: [PATCH] net: macb: remove redundant assignment to variable work_done

2017-11-01 Thread Alexander Dahl
of 4.14-rc7 and tested it on an at91sam9g20 based platform. Tested-by: Alexander Dahl Greets Alex

[RFC 3/3] net: macb: Use sram for rx buffers

2017-07-12 Thread Alexander Dahl
which are also usable for DMA but directly connected through the AHB without the path through the EBI. This way there are no lost ethernet frames anymore. (If there's too much load however packets can still be dropped by the kernel.) Signed-off-by: Alexander Dahl --- drivers/net/ethernet/cade

[RFC 1/3] net: macb: Add register descriptions

2017-07-12 Thread Alexander Dahl
Analog to the already present long register names for GEM, add those for MACB. Taken from the AT91SAM9G20 complete datasheet. Signed-off-by: Alexander Dahl --- drivers/net/ethernet/cadence/macb.h | 66 ++--- 1 file changed, 33 insertions(+), 33 deletions(-) diff

[RFC 2/3] net: macb: Add buffer descriptor names

2017-07-12 Thread Alexander Dahl
Documentation of the EMAC buffer descriptor bitfields. Taken from the AT91SAM9G20 complete datasheet. Signed-off-by: Alexander Dahl --- drivers/net/ethernet/cadence/macb.h | 50 ++--- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/drivers/net

[RFC 0/3] net: macb: Use SRAM on SoC for RX rings and buffers

2017-07-12 Thread Alexander Dahl
Hei hei, this is a small patch series for a problem we encoutered with a board based on an AT91SAM9G20 SoC. I talked about it a few days ago on the #armlinux IRC channel with Alexandre Belloni and Florian Fainelli. The current state of those patches is 'prove of concept', but if this is useful for