From: Julien Grall Date: Fri, 10 May 2013 16:24:33 +0000 (+0100) Subject: xen/arm: Add helpers ioreadl/iowritel X-Git-Tag: 4.3.0-rc2~44 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=11eedee7ccbc8c49b4035d342ffd3524ba0684a5;p=people%2Fiwj%2Fxen.git xen/arm: Add helpers ioreadl/iowritel Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/include/asm-arm/arm32/io.h b/xen/include/asm-arm/arm32/io.h new file mode 100644 index 0000000000..ec7e0ff9a2 --- /dev/null +++ b/xen/include/asm-arm/arm32/io.h @@ -0,0 +1,46 @@ +/* + * Based on linux arch/arm/include/asm/io.h + * + * Copyright (C) 1996-2000 Russell King + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * Modifications: + * 16-Sep-1996 RMK Inlined the inx/outx functions & optimised for both + * constant addresses and variable addresses. + * 04-Dec-1997 RMK Moved a lot of this stuff to the new architecture + * specific IO header files. + * 27-Mar-1999 PJB Second parameter of memcpy_toio is const.. + * 04-Apr-1999 PJB Added check_signature. + * 12-Dec-1999 RMK More cleanups + * 18-Jun-2000 RMK Removed virt_to_* and friends definitions + * 05-Oct-2004 BJD Moved memory string functions to use void __iomem + */ +#ifndef _ARM_ARM32_IO_H +#define _ARM_ARM32_IO_H + +#include + +static inline uint32_t ioreadl(const volatile void __iomem *addr) +{ + uint32_t val; + + asm volatile("ldr %1, %0" + : "+Qo" (*(volatile uint32_t __force *)addr), + "=r" (val)); + dsb(); + + return val; +} + +static inline void iowritel(const volatile void __iomem *addr, uint32_t val) +{ + dsb(); + asm volatile("str %1, %0" + : "+Qo" (*(volatile uint32_t __force *)addr) + : "r" (val)); +} + +#endif /* _ARM_ARM32_IO_H */ diff --git a/xen/include/asm-arm/arm64/io.h b/xen/include/asm-arm/arm64/io.h new file mode 100644 index 0000000000..ec041cdbc4 --- /dev/null +++ b/xen/include/asm-arm/arm64/io.h @@ -0,0 +1,38 @@ +/* + * Based on linux arch/arm64/include/asm/io.h + * + * Copyright (C) 1996-2000 Russell King + * Copyright (C) 2012 ARM Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#ifndef _ARM_ARM64_IO_H +#define _ARM_ARM64_IO_H + +static inline uint32_t ioreadl(const volatile void __iomem *addr) +{ + uint32_t val; + + asm volatile("ldr %w0, [%1]" : "=r" (val) : "r" (addr)); + dsb(); + + return val; +} + +static inline void iowritel(const volatile void __iomem *addr, uint32_t val) +{ + dsb(); + asm volatile("str %w0, [%1]" : : "r" (val), "r" (addr)); +} + +#endif /* _ARM_ARM64_IO_H */ diff --git a/xen/include/asm-arm/mm.h b/xen/include/asm-arm/mm.h index 63e1069aef..5e7c5a36be 100644 --- a/xen/include/asm-arm/mm.h +++ b/xen/include/asm-arm/mm.h @@ -6,6 +6,14 @@ #include #include +#if defined(CONFIG_ARM_32) +# include +#elif defined(CONFIG_ARM_64) +# include +#else +# error "unknown ARM variant" +#endif + /* Align Xen to a 2 MiB boundary. */ #define XEN_PADDR_ALIGN (1 << 21)