kernel: Move arches to use common unaligned access
Unaligned access is ok for the following arches:
cris, m68k, mn10300, powerpc, s390, x86
Arches that use the memmove implementation for native endian, and
the byteshifting for the opposite endianness.
h8300, m32r, xtensa
Packed struct for native endian, byteshifting for other endian:
alpha, blackfin, ia64, parisc, sparc, sparc64, mips, sh
m86knommu is generic_be for Coldfire, otherwise unaligned access is ok.
frv, arm chooses endianness based on compiler settings, uses the byteshifting
versions. Remove the unaligned trap handler from frv as it is now unused.
v850 is le, uses the byteshifting versions for both be and le.
Remove the now unused asm-generic implementation.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: David S. Miller <davem@davemloft.net>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-04-29 10:03:30 +02:00
|
|
|
#ifndef _ASM_SH_UNALIGNED_H
|
|
|
|
#define _ASM_SH_UNALIGNED_H
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-11-25 16:29:58 +01:00
|
|
|
#ifdef CONFIG_CPU_SH4A
|
|
|
|
/* SH-4A can handle unaligned loads in a relatively neutered fashion. */
|
|
|
|
#include <asm/unaligned-sh4a.h>
|
|
|
|
#else
|
|
|
|
/* Otherwise, SH can't handle unaligned accesses. */
|
2009-06-14 16:24:43 +02:00
|
|
|
#include <asm-generic/unaligned.h>
|
2008-11-25 16:29:58 +01:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
kernel: Move arches to use common unaligned access
Unaligned access is ok for the following arches:
cris, m68k, mn10300, powerpc, s390, x86
Arches that use the memmove implementation for native endian, and
the byteshifting for the opposite endianness.
h8300, m32r, xtensa
Packed struct for native endian, byteshifting for other endian:
alpha, blackfin, ia64, parisc, sparc, sparc64, mips, sh
m86knommu is generic_be for Coldfire, otherwise unaligned access is ok.
frv, arm chooses endianness based on compiler settings, uses the byteshifting
versions. Remove the unaligned trap handler from frv as it is now unused.
v850 is le, uses the byteshifting versions for both be and le.
Remove the now unused asm-generic implementation.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: David S. Miller <davem@davemloft.net>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-04-29 10:03:30 +02:00
|
|
|
#endif /* _ASM_SH_UNALIGNED_H */
|