mirror of
https://github.com/torvalds/linux.git
synced 2024-11-04 11:04:38 +00:00
x86: Clean up mem*io functions.
Iomem has no special significance on x86. Use the standard mem* functions instead of trying to call other versions. Some fixups are needed to match the function prototypes. Signed-off-by: Brian Gerst <brgerst@gmail.com> LKML-Reference: <1265380629-3212-6-git-send-email-brgerst@gmail.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
2b4df4d4f7
commit
6175ddf06b
@ -19,11 +19,6 @@
|
|||||||
#define _ASM_X86_DESC_H 1
|
#define _ASM_X86_DESC_H 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_X86_64
|
|
||||||
#define _LINUX_STRING_H_ 1
|
|
||||||
#define __LINUX_BITMAP_H 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <linux/linkage.h>
|
#include <linux/linkage.h>
|
||||||
#include <linux/screen_info.h>
|
#include <linux/screen_info.h>
|
||||||
#include <linux/elf.h>
|
#include <linux/elf.h>
|
||||||
@ -131,8 +126,8 @@ static void error(char *m);
|
|||||||
static struct boot_params *real_mode; /* Pointer to real-mode data */
|
static struct boot_params *real_mode; /* Pointer to real-mode data */
|
||||||
static int quiet;
|
static int quiet;
|
||||||
|
|
||||||
static void *memset(void *s, int c, unsigned n);
|
void *memset(void *s, int c, size_t n);
|
||||||
void *memcpy(void *dest, const void *src, unsigned n);
|
void *memcpy(void *dest, const void *src, size_t n);
|
||||||
|
|
||||||
static void __putstr(int, const char *);
|
static void __putstr(int, const char *);
|
||||||
#define putstr(__x) __putstr(0, __x)
|
#define putstr(__x) __putstr(0, __x)
|
||||||
@ -223,7 +218,7 @@ static void __putstr(int error, const char *s)
|
|||||||
outb(0xff & (pos >> 1), vidport+1);
|
outb(0xff & (pos >> 1), vidport+1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *memset(void *s, int c, unsigned n)
|
void *memset(void *s, int c, size_t n)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char *ss = s;
|
char *ss = s;
|
||||||
@ -233,7 +228,7 @@ static void *memset(void *s, int c, unsigned n)
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
void *memcpy(void *dest, const void *src, unsigned n)
|
void *memcpy(void *dest, const void *src, size_t n)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
const char *s = src;
|
const char *s = src;
|
||||||
|
@ -49,21 +49,21 @@
|
|||||||
#define xlate_dev_kmem_ptr(p) p
|
#define xlate_dev_kmem_ptr(p) p
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
memset_io(volatile void __iomem *addr, unsigned char val, int count)
|
memset_io(volatile void __iomem *addr, unsigned char val, size_t count)
|
||||||
{
|
{
|
||||||
memset((void __force *)addr, val, count);
|
memset((void __force *)addr, val, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
memcpy_fromio(void *dst, const volatile void __iomem *src, int count)
|
memcpy_fromio(void *dst, const volatile void __iomem *src, size_t count)
|
||||||
{
|
{
|
||||||
__memcpy(dst, (const void __force *)src, count);
|
memcpy(dst, (const void __force *)src, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
memcpy_toio(volatile void __iomem *dst, const void *src, int count)
|
memcpy_toio(volatile void __iomem *dst, const void *src, size_t count)
|
||||||
{
|
{
|
||||||
__memcpy((void __force *)dst, src, count);
|
memcpy((void __force *)dst, src, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef _ASM_X86_IO_64_H
|
#ifndef _ASM_X86_IO_64_H
|
||||||
#define _ASM_X86_IO_64_H
|
#define _ASM_X86_IO_64_H
|
||||||
|
|
||||||
|
#include <linux/string.h>
|
||||||
|
#include <linux/compiler.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This file contains the definitions for the x86 IO instructions
|
* This file contains the definitions for the x86 IO instructions
|
||||||
@ -46,20 +48,22 @@
|
|||||||
*/
|
*/
|
||||||
#define xlate_dev_kmem_ptr(p) p
|
#define xlate_dev_kmem_ptr(p) p
|
||||||
|
|
||||||
void memset_io(volatile void __iomem *a, int b, size_t c);
|
static inline void
|
||||||
|
memset_io(volatile void __iomem *addr, unsigned char val, size_t count)
|
||||||
void __memcpy_fromio(void *, unsigned long, unsigned);
|
|
||||||
static inline void memcpy_fromio(void *to, const volatile void __iomem *from,
|
|
||||||
unsigned len)
|
|
||||||
{
|
{
|
||||||
__memcpy_fromio(to, (unsigned long)from, len);
|
memset((void __force *)addr, val, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
void __memcpy_toio(unsigned long, const void *, unsigned);
|
static inline void
|
||||||
static inline void memcpy_toio(volatile void __iomem *to, const void *from,
|
memcpy_fromio(void *dst, const volatile void __iomem *src, size_t count)
|
||||||
unsigned len)
|
|
||||||
{
|
{
|
||||||
__memcpy_toio((unsigned long)to, from, len);
|
memcpy(dst, (const void __force *)src, count);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
memcpy_toio(volatile void __iomem *dst, const void *src, size_t count)
|
||||||
|
{
|
||||||
|
memcpy((void __force *)dst, src, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -34,7 +34,7 @@ ifneq ($(CONFIG_X86_CMPXCHG64),y)
|
|||||||
endif
|
endif
|
||||||
lib-$(CONFIG_X86_USE_3DNOW) += mmx_32.o
|
lib-$(CONFIG_X86_USE_3DNOW) += mmx_32.o
|
||||||
else
|
else
|
||||||
obj-y += io_64.o iomap_copy_64.o
|
obj-y += iomap_copy_64.o
|
||||||
lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o
|
lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o
|
||||||
lib-y += thunk_64.o clear_page_64.o copy_page_64.o
|
lib-y += thunk_64.o clear_page_64.o copy_page_64.o
|
||||||
lib-y += memmove_64.o memset_64.o
|
lib-y += memmove_64.o memset_64.o
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
#include <linux/string.h>
|
|
||||||
#include <linux/module.h>
|
|
||||||
#include <asm/io.h>
|
|
||||||
|
|
||||||
void __memcpy_toio(unsigned long dst, const void *src, unsigned len)
|
|
||||||
{
|
|
||||||
__inline_memcpy((void *)dst, src, len);
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(__memcpy_toio);
|
|
||||||
|
|
||||||
void __memcpy_fromio(void *dst, unsigned long src, unsigned len)
|
|
||||||
{
|
|
||||||
__inline_memcpy(dst, (const void *)src, len);
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(__memcpy_fromio);
|
|
||||||
|
|
||||||
void memset_io(volatile void __iomem *a, int b, size_t c)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* TODO: memset can mangle the IO patterns quite a bit.
|
|
||||||
* perhaps it would be better to use a dumb one:
|
|
||||||
*/
|
|
||||||
memset((void *)a, b, c);
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(memset_io);
|
|
Loading…
Reference in New Issue
Block a user