Commit c4695119 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] amd64 iomem initial annotations

Signed-off-by: default avatarAl Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3106ac94
...@@ -111,7 +111,7 @@ static int remap_area_pages(unsigned long address, unsigned long phys_addr, ...@@ -111,7 +111,7 @@ static int remap_area_pages(unsigned long address, unsigned long phys_addr,
* have to convert them into an offset in a page-aligned mapping, but the * have to convert them into an offset in a page-aligned mapping, but the
* caller shouldn't need to know that small detail. * caller shouldn't need to know that small detail.
*/ */
void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags) void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags)
{ {
void * addr; void * addr;
struct vm_struct * area; struct vm_struct * area;
...@@ -126,7 +126,7 @@ void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flag ...@@ -126,7 +126,7 @@ void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flag
* Don't remap the low PCI/ISA area, it's always mapped.. * Don't remap the low PCI/ISA area, it's always mapped..
*/ */
if (phys_addr >= 0xA0000 && last_addr < 0x100000) if (phys_addr >= 0xA0000 && last_addr < 0x100000)
return phys_to_virt(phys_addr); return (__force void __iomem *)phys_to_virt(phys_addr);
/* /*
* Don't allow anybody to remap normal RAM that we're using.. * Don't allow anybody to remap normal RAM that we're using..
...@@ -164,7 +164,7 @@ void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flag ...@@ -164,7 +164,7 @@ void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flag
vunmap(addr); vunmap(addr);
return NULL; return NULL;
} }
return (void *) (offset + (char *)addr); return (__force void __iomem *) (offset + (char *)addr);
} }
/** /**
...@@ -189,9 +189,9 @@ void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flag ...@@ -189,9 +189,9 @@ void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flag
* Must be freed with iounmap. * Must be freed with iounmap.
*/ */
void *ioremap_nocache (unsigned long phys_addr, unsigned long size) void __iomem *ioremap_nocache (unsigned long phys_addr, unsigned long size)
{ {
void *p = __ioremap(phys_addr, size, _PAGE_PCD); void __iomem *p = __ioremap(phys_addr, size, _PAGE_PCD);
if (!p) if (!p)
return p; return p;
...@@ -212,7 +212,7 @@ void *ioremap_nocache (unsigned long phys_addr, unsigned long size) ...@@ -212,7 +212,7 @@ void *ioremap_nocache (unsigned long phys_addr, unsigned long size)
return p; return p;
} }
void iounmap(void *addr) void iounmap(void __iomem *addr)
{ {
struct vm_struct *p; struct vm_struct *p;
if (addr <= high_memory) if (addr <= high_memory)
......
...@@ -135,9 +135,9 @@ extern inline void * phys_to_virt(unsigned long address) ...@@ -135,9 +135,9 @@ extern inline void * phys_to_virt(unsigned long address)
#define page_to_phys(page) ((page - mem_map) << PAGE_SHIFT) #define page_to_phys(page) ((page - mem_map) << PAGE_SHIFT)
#endif #endif
extern void * __ioremap(unsigned long offset, unsigned long size, unsigned long flags); extern void __iomem *__ioremap(unsigned long offset, unsigned long size, unsigned long flags);
extern inline void * ioremap (unsigned long offset, unsigned long size) extern inline void __iomem * ioremap (unsigned long offset, unsigned long size)
{ {
return __ioremap(offset, size, 0); return __ioremap(offset, size, 0);
} }
...@@ -147,8 +147,8 @@ extern inline void * ioremap (unsigned long offset, unsigned long size) ...@@ -147,8 +147,8 @@ extern inline void * ioremap (unsigned long offset, unsigned long size)
* it's useful if some control registers are in such an area and write combining * it's useful if some control registers are in such an area and write combining
* or read caching is not desirable: * or read caching is not desirable:
*/ */
extern void * ioremap_nocache (unsigned long offset, unsigned long size); extern void __iomem * ioremap_nocache (unsigned long offset, unsigned long size);
extern void iounmap(void *addr); extern void iounmap(void __iomem *addr);
/* /*
* ISA I/O bus memory addresses are 1:1 with the physical address. * ISA I/O bus memory addresses are 1:1 with the physical address.
...@@ -173,10 +173,10 @@ extern void iounmap(void *addr); ...@@ -173,10 +173,10 @@ extern void iounmap(void *addr);
* memory location directly. * memory location directly.
*/ */
#define readb(addr) (*(volatile unsigned char *) (addr)) #define readb(addr) (*(__force volatile __u8 *) (__u8 __iomem *)(addr))
#define readw(addr) (*(volatile unsigned short *) (addr)) #define readw(addr) (*(__force volatile __u16 *) (__u16 __iomem *)(addr))
#define readl(addr) (*(volatile unsigned int *) (addr)) #define readl(addr) (*(__force volatile __u32 *) (__u32 __iomem *)(addr))
#define readq(addr) (*(volatile unsigned long *) (addr)) #define readq(addr) (*(__force volatile __u64 *) (__u64 __iomem *)(addr))
#define readb_relaxed(a) readb(a) #define readb_relaxed(a) readb(a)
#define readw_relaxed(a) readw(a) #define readw_relaxed(a) readw(a)
#define readl_relaxed(a) readl(a) #define readl_relaxed(a) readl(a)
...@@ -187,29 +187,29 @@ extern void iounmap(void *addr); ...@@ -187,29 +187,29 @@ extern void iounmap(void *addr);
#define __raw_readq readq #define __raw_readq readq
#ifdef CONFIG_UNORDERED_IO #ifdef CONFIG_UNORDERED_IO
static inline void __writel(u32 val, void *addr) static inline void __writel(__u32 val, void __iomem *addr)
{ {
volatile u32 *target = addr; volatile __u32 __iomem *target = addr;
asm volatile("movnti %1,%0" asm volatile("movnti %1,%0"
: "=m" (*target) : "=m" (*target)
: "r" (val) : "memory"); : "r" (val) : "memory");
} }
static inline void __writeq(u64 val, void *addr) static inline void __writeq(__u64 val, void __iomem *addr)
{ {
volatile u64 *target = addr; volatile __u64 *target = addr;
asm volatile("movnti %1,%0" asm volatile("movnti %1,%0"
: "=m" (*target) : "=m" (*target)
: "r" (val) : "memory"); : "r" (val) : "memory");
} }
#define writeq(val,addr) __writeq((val),(void *)(addr)) #define writeq(val,addr) __writeq((val),(void __iomem *)(addr))
#define writel(val,addr) __writel((val),(void *)(addr)) #define writel(val,addr) __writel((val),(void __iomem *)(addr))
#else #else
#define writel(b,addr) (*(volatile unsigned int *) (addr) = (b)) #define writel(b,addr) (*(__force volatile __u32 *)(__u32 __iomem *)(addr) = (b))
#define writeq(b,addr) (*(volatile unsigned long *) (addr) = (b)) #define writeq(b,addr) (*(__force volatile __u64 *)(__u64 __iomem *)(addr) = (b))
#endif #endif
#define writeb(b,addr) (*(volatile unsigned char *) (addr) = (b)) #define writeb(b,addr) (*(__force volatile __u8 *)(__u8 __iomem *)(addr) = (b))
#define writew(b,addr) (*(volatile unsigned short *) (addr) = (b)) #define writew(b,addr) (*(__force volatile __u16 *)(__u16 __iomem *)(addr) = (b))
#define __raw_writeb writeb #define __raw_writeb writeb
#define __raw_writew writew #define __raw_writew writew
#define __raw_writel writel #define __raw_writel writel
...@@ -219,10 +219,10 @@ void *__memcpy_fromio(void*,unsigned long,unsigned); ...@@ -219,10 +219,10 @@ void *__memcpy_fromio(void*,unsigned long,unsigned);
void *__memcpy_toio(unsigned long,const void*,unsigned); void *__memcpy_toio(unsigned long,const void*,unsigned);
#define memcpy_fromio(to,from,len) \ #define memcpy_fromio(to,from,len) \
__memcpy_fromio((to),(unsigned long)(from),(len)) __memcpy_fromio((to),(unsigned long)(void __iomem *)(from),(len))
#define memcpy_toio(to,from,len) \ #define memcpy_toio(to,from,len) \
__memcpy_toio((unsigned long)(to),(from),(len)) __memcpy_toio((unsigned long)(void __iomem *)(to),(from),(len))
#define memset_io(a,b,c) memset((void *)(a),(b),(c)) #define memset_io(a,b,c) memset((__force void *)(void __iomem *)(a),(b),(c))
/* /*
* ISA space is 'always mapped' on a typical x86 system, no need to * ISA space is 'always mapped' on a typical x86 system, no need to
...@@ -232,7 +232,7 @@ void *__memcpy_toio(unsigned long,const void*,unsigned); ...@@ -232,7 +232,7 @@ void *__memcpy_toio(unsigned long,const void*,unsigned);
* used as the IO-area pointer (it can be iounmapped as well, so the * used as the IO-area pointer (it can be iounmapped as well, so the
* analogy with PCI is quite large): * analogy with PCI is quite large):
*/ */
#define __ISA_IO_base ((char *)(PAGE_OFFSET)) #define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET))
#define isa_readb(a) readb(__ISA_IO_base + (a)) #define isa_readb(a) readb(__ISA_IO_base + (a))
#define isa_readw(a) readw(__ISA_IO_base + (a)) #define isa_readw(a) readw(__ISA_IO_base + (a))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment