Re: [PATCH v2] net: designware: Support high memory nodes

2024-02-12 Thread Tom Rini
On Sat, 02 Dec 2023 10:39:49 +0100, Nils Le Roux wrote: > Some platforms (such as the Lichee Pi 4A) have their dwmac device > addressable only in high memory space. Storing the node's base address > on 32 bits is not possible in such case. > > Use platform's physical address type to store the

Re: [PATCH v2] net: designware: Support high memory nodes

2024-02-12 Thread Tom Rini
On Mon, Feb 12, 2024 at 07:56:40PM +, Andre Przywara wrote: > On Mon, 12 Feb 2024 13:40:31 -0500 > Tom Rini wrote: > > > On Sat, Feb 10, 2024 at 05:37:03PM +, Andre Przywara wrote: > > > > > On Mon, 4 Dec 2023 01:09:30 + > > > Andre Przywara wrote: > > > > > > Hi Joe, Ramon, Tom,

Re: [PATCH v2] net: designware: Support high memory nodes

2024-02-12 Thread Andre Przywara
On Mon, 12 Feb 2024 13:40:31 -0500 Tom Rini wrote: > On Sat, Feb 10, 2024 at 05:37:03PM +, Andre Przywara wrote: > > > On Mon, 4 Dec 2023 01:09:30 + > > Andre Przywara wrote: > > > > Hi Joe, Ramon, Tom, > > > > for some reason patchwork put this on my plate, but it looks like > >

Re: [PATCH v2] net: designware: Support high memory nodes

2024-02-12 Thread Tom Rini
On Sat, Feb 10, 2024 at 05:37:03PM +, Andre Przywara wrote: > On Mon, 4 Dec 2023 01:09:30 + > Andre Przywara wrote: > > Hi Joe, Ramon, Tom, > > for some reason patchwork put this on my plate, but it looks like > genuine network code to me, and the problem definitely doesn't affect >

Re: [PATCH v2] net: designware: Support high memory nodes

2024-02-10 Thread Andre Przywara
On Mon, 4 Dec 2023 01:09:30 + Andre Przywara wrote: Hi Joe, Ramon, Tom, for some reason patchwork put this on my plate, but it looks like genuine network code to me, and the problem definitely doesn't affect sunxi. As tagged below, I am happy with this change, so if there are no objections,

Re: [PATCH v2] net: designware: Support high memory nodes

2023-12-03 Thread Andre Przywara
On Sat, 2 Dec 2023 10:39:49 +0100 Nils Le Roux wrote: Hi Nils, > Some platforms (such as the Lichee Pi 4A) have their dwmac device > addressable only in high memory space. Storing the node's base address > on 32 bits is not possible in such case. > > Use platform's physical address type to

[PATCH v2] net: designware: Support high memory nodes

2023-12-02 Thread Nils Le Roux
Some platforms (such as the Lichee Pi 4A) have their dwmac device addressable only in high memory space. Storing the node's base address on 32 bits is not possible in such case. Use platform's physical address type to store the base address. Signed-off-by: Nils Le Roux Cc: Andre Przywara ---