[PATCH 2/2] net: pcnet: Switch to PCI memory access
Daniel Schwierzeck
daniel.schwierzeck at gmail.com
Sat May 2 17:03:26 CEST 2020
Am 02.05.20 um 17:00 schrieb Daniel Schwierzeck:
> Hi Marek,
>
> Am 18.04.20 um 05:15 schrieb Marek Vasut:
>> Replace the PCI IO access with PCI memory access, the card
>> supports both, but the former does not work with QEMU SH4.
>>
>> Signed-off-by: Marek Vasut <marek.vasut+renesas at gmail.com>
>> Cc: Daniel Schwierzeck <daniel.schwierzeck at gmail.com>
>> Cc: Joe Hershberger <joe.hershberger at ni.com>
>> ---
>> Note: It would be good to test this on the mips malta
>> ---
>> drivers/net/pcnet.c | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
...
>
>
> Contrary to SH there is a difference between memory access and IO access
> on MIPS. So you have to replace also all inw()/outw() with
> readw()/writew() like so:
>
> static u16 pcnet_read_csr(struct eth_device *dev, int index)
> {
> - writew(index, dev->iobase + PCNET_RAP);
> - return readw(dev->iobase + PCNET_RDP);
> + void __iomem *base = (void __iomem *)dev->iobase;
> + writew(index, base + PCNET_RAP);
> + return readw(base + PCNET_RDP);
> }
sorry wrong diff, I meant:
static u16 pcnet_read_csr(struct eth_device *dev, int index)
{
- outw(index, dev->iobase + PCNET_RAP);
- return inw(dev->iobase + PCNET_RDP);
+ void __iomem *base = (void __iomem *)dev->iobase;
+ writew(index, base + PCNET_RAP);
+ return readw(base + PCNET_RDP);
}
--
- Daniel
More information about the U-Boot
mailing list