linux/io.h: add generic ioremap()/iounmap() defines
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Tue, 28 Jun 2016 01:48:42 +0000 (10:48 +0900)
committerTom Rini <trini@konsulko.com>
Thu, 14 Jul 2016 22:22:26 +0000 (18:22 -0400)
commit9a387128e341debb6d7e32df8e0f72669a3a079b
tree855db996d332cc0edcbcd4adcd65dd163fa585e3
parentc74b8fcdd7193cfcaf8b3c6dab9a59c6feb8a49a
linux/io.h: add generic ioremap()/iounmap() defines

For most of architectures in U-Boot, virtual address is straight
mapped to physical address.  So, it makes sense to have generic
defines of ioremap and friends in <linux/io.h>.

All of them are just empty and will disappear at compile time, but
they will be helpful to implement drivers which are counterparts of
Linux ones.

I notice MIPS already has its own implementation, so I added a
Kconfig symbol CONFIG_HAVE_ARCH_IOREMAP which MIPS (and maybe
Sandbox as well) can select.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
arch/Kconfig
include/linux/io.h