]> git.baikalelectronics.ru Git - kernel.git/commit
ARM: implement debug_ll_io_init()
authorRob Herring <robherring2@gmail.com>
Mon, 22 Oct 2012 17:42:54 +0000 (11:42 -0600)
committerOlof Johansson <olof@lixom.net>
Mon, 5 Nov 2012 17:35:59 +0000 (09:35 -0800)
commit6a5a7ebf756474793530525357369512e7a8d50a
tree59a47c99384d1fdee84defe425f759dcd889c6bd
parent110a3aabcda3103953ddf3a66926d7280f13deed
ARM: implement debug_ll_io_init()

When using DEBUG_LL, the UART's (or other HW's) registers are mapped
into early page tables based on the results of assembly macro addruart.
Later, when the page tables are replaced, the same virtual address must
remain valid. Historically, this has been ensured by using defines from
<mach/iomap.h> in both the implementation of addruart, and the machine's
.map_io() function. However, with the move to single zImage, we wish to
remove <mach/iomap.h>. To enable this, the macro addruart may be used
when constructing the late page tables too; addruart is exposed as a
C function debug_ll_addr(), and used to set up the required mapping in
debug_ll_io_init(), which may called on an opt-in basis from a machine's
.map_io() function.

Signed-off-by: Rob Herring <rob.herring@calxeda.com>
[swarren: Mask map.virtual with PAGE_MASK. Checked for NULL results from
 debug_ll_addr (e.g. when selected UART isn't valid). Fixed compile when
 either !CONFIG_DEBUG_LL or CONFIG_DEBUG_SEMIHOSTING.]
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
arch/arm/include/asm/mach/map.h
arch/arm/kernel/debug.S
arch/arm/mm/mmu.c