]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mtd: fix wrong usage of ioremap_nocache() in uclinux.c map driver
authorGreg Ungerer <gerg@uclinux.org>
Thu, 19 Jul 2012 05:42:45 +0000 (15:42 +1000)
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Sat, 25 Aug 2012 11:33:11 +0000 (14:33 +0300)
commit2ed1911991fb9e168e4186775c2da36d30d0241f
treecc16d8146058c8c8d21789604567909a9408109b
parent46226a1df359e966281422c8a6cc476d1f3b5450
mtd: fix wrong usage of ioremap_nocache() in uclinux.c map driver

The uclinux.c mapping driver uses ioremap_nocache() to map its physical
mapping address to a system virtual address. Problem is that the region
it is mapping is not device memory. It is ordinary system RAM. On most
non-MMU systems this doesn't matter, and the mapping is always a 1:1
translation of the address. On paged memory systems on some architectures
the page table mappings are not compatible between normal RAM and device
memory.

If we want to use the uclinux.c mapping driver on real MMU enabled systems
we should be using the kernel virtual address that the mapping is at. For
architectures that support the traditional initrd they use phys_to_virt or
__va to convert the physical start initrd address to a kernel usable virtual
address. The uclinux filesystem mapping is even more restrictive than the
typical initrd, it always follows the kernels own bss section (so always in
directly mapped memory). Therefore we can use the usual phys_to_virt to
translate the physical start address to a virtual address.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
drivers/mtd/maps/uclinux.c