From: Thomas Chou Date: Sat, 3 Oct 2015 13:02:30 +0000 (+0800) Subject: nios2: map physical address to uncached virtual address X-Git-Tag: v2016.01-rc1~214 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=37e24499b9a65e88568c8e5fed38c5d71f306305;p=u-boot nios2: map physical address to uncached virtual address Add ioremap() to map physical address to uncached virtual address. We need this to convert the reg address from the device tree. The order of headers inclusion in interrupts.c is changed because common.h will include board header that contains IO_REGION_BASE. In the future, the IO_REGION_BASE should be decided from the device tree. tree Signed-off-by: Thomas Chou Acked-by: Marek Vasut Reviewed-by: Simon Glass --- diff --git a/arch/nios2/cpu/interrupts.c b/arch/nios2/cpu/interrupts.c index 9d85eb03a6..1599674353 100644 --- a/arch/nios2/cpu/interrupts.c +++ b/arch/nios2/cpu/interrupts.c @@ -8,12 +8,12 @@ * SPDX-License-Identifier: GPL-2.0+ */ +#include +#include #include #include #include #include -#include -#include /*************************************************************************/ struct irq_action { diff --git a/arch/nios2/include/asm/io.h b/arch/nios2/include/asm/io.h index 69ab23e5f0..b4bd20f475 100644 --- a/arch/nios2/include/asm/io.h +++ b/arch/nios2/include/asm/io.h @@ -42,6 +42,11 @@ static inline phys_addr_t virt_to_phys(void * vaddr) return (phys_addr_t)(vaddr); } +static inline void *ioremap(unsigned long physaddr, unsigned long size) +{ + return (void *)(IO_REGION_BASE | physaddr); +} + extern unsigned char inb (unsigned char *port); extern unsigned short inw (unsigned short *port); extern unsigned inl (unsigned port);