Skip to content
Snippets Groups Projects
Commit 39e020ef authored by Zubair Lutfullah Kakakhel's avatar Zubair Lutfullah Kakakhel Committed by Daniel Schwierzeck
Browse files

net: emaclite: Use ioremap_nocache


Virtual to physical mapping isn't necessarily 1:1 for all architectures

Using ioremap_nocache allows for the arch code to translate the
physical address to a virtual address.

Signed-off-by: default avatarZubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Reviewed-by: default avatarPaul Burton <paul.burton@imgtec.com>
Reviewed-by: default avatarDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Acked-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 9b1b6d42
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <fdtdec.h> #include <fdtdec.h>
#include <asm-generic/errno.h> #include <asm-generic/errno.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <asm/io.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
...@@ -595,7 +596,8 @@ static int emaclite_ofdata_to_platdata(struct udevice *dev) ...@@ -595,7 +596,8 @@ static int emaclite_ofdata_to_platdata(struct udevice *dev)
int offset = 0; int offset = 0;
pdata->iobase = (phys_addr_t)dev_get_addr(dev); pdata->iobase = (phys_addr_t)dev_get_addr(dev);
emaclite->regs = (struct emaclite_regs *)pdata->iobase; emaclite->regs = (struct emaclite_regs *)ioremap_nocache(pdata->iobase,
0x10000);
emaclite->phyaddr = -1; emaclite->phyaddr = -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment