diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-28 11:41:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-28 11:41:57 -0500 |
commit | 78a768b6ca40e104442ade090226ed4ee0e6cebf (patch) | |
tree | f20e2d78107edd3f4247350b5e6d2e2560bff9d8 /arch/m68k | |
parent | d8204ee2ad1c9babd7e33d4c118ec99a78a8442e (diff) | |
parent | add8240eedb586b9d885c324db7f98fc1a470f9f (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
m68knommu: fix 5329 ColdFire periphal addressing
uclinux: add process name to allocation error message
m68knommu: correct the mii calculations for 532x ColdFire FEC
m68knommu: add ColdFire M532x to the FEC configuration options
m68knommu: fix syscall restarting
m68knommu: remove the obsolete and long unused comempci chip support
m68knommu: remove the no longer used PCI support option
m68knommu: remove obsolete and unused eLIA board
m68knommu: set NO_DMA
m68knommu: fix cache flushing for the 527x ColdFire processors
m68knommu: fix ColdFire 5272 serial baud rates in mcf.c
m68knommu: use one exist from execption
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/include/asm/cacheflush_no.h | 11 | ||||
-rw-r--r-- | arch/m68k/include/asm/dma-mapping_no.h | 4 | ||||
-rw-r--r-- | arch/m68k/include/asm/system_no.h | 2 |
3 files changed, 10 insertions, 7 deletions
diff --git a/arch/m68k/include/asm/cacheflush_no.h b/arch/m68k/include/asm/cacheflush_no.h index 87e5dc0413b4..c65f00a94553 100644 --- a/arch/m68k/include/asm/cacheflush_no.h +++ b/arch/m68k/include/asm/cacheflush_no.h | |||
@@ -51,13 +51,20 @@ static inline void __flush_cache_all(void) | |||
51 | "movec %%d0,%%CACR\n\t" | 51 | "movec %%d0,%%CACR\n\t" |
52 | : : : "d0", "a0" ); | 52 | : : : "d0", "a0" ); |
53 | #endif /* CONFIG_M5407 */ | 53 | #endif /* CONFIG_M5407 */ |
54 | #if defined(CONFIG_M527x) || defined(CONFIG_M528x) | 54 | #if defined(CONFIG_M523x) || defined(CONFIG_M527x) |
55 | __asm__ __volatile__ ( | ||
56 | "movel #0x81400100, %%d0\n\t" | ||
57 | "movec %%d0, %%CACR\n\t" | ||
58 | "nop\n\t" | ||
59 | : : : "d0" ); | ||
60 | #endif /* CONFIG_M523x || CONFIG_M527x */ | ||
61 | #if defined(CONFIG_M528x) | ||
55 | __asm__ __volatile__ ( | 62 | __asm__ __volatile__ ( |
56 | "movel #0x81000200, %%d0\n\t" | 63 | "movel #0x81000200, %%d0\n\t" |
57 | "movec %%d0, %%CACR\n\t" | 64 | "movec %%d0, %%CACR\n\t" |
58 | "nop\n\t" | 65 | "nop\n\t" |
59 | : : : "d0" ); | 66 | : : : "d0" ); |
60 | #endif /* CONFIG_M527x || CONFIG_M528x */ | 67 | #endif /* CONFIG_M528x */ |
61 | #if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || defined(CONFIG_M5272) | 68 | #if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || defined(CONFIG_M5272) |
62 | __asm__ __volatile__ ( | 69 | __asm__ __volatile__ ( |
63 | "movel #0x81000100, %%d0\n\t" | 70 | "movel #0x81000100, %%d0\n\t" |
diff --git a/arch/m68k/include/asm/dma-mapping_no.h b/arch/m68k/include/asm/dma-mapping_no.h index 6aeab18e58bd..1748f2bca940 100644 --- a/arch/m68k/include/asm/dma-mapping_no.h +++ b/arch/m68k/include/asm/dma-mapping_no.h | |||
@@ -1,10 +1,6 @@ | |||
1 | #ifndef _M68KNOMMU_DMA_MAPPING_H | 1 | #ifndef _M68KNOMMU_DMA_MAPPING_H |
2 | #define _M68KNOMMU_DMA_MAPPING_H | 2 | #define _M68KNOMMU_DMA_MAPPING_H |
3 | 3 | ||
4 | #ifdef CONFIG_PCI | ||
5 | #include <asm-generic/dma-mapping.h> | ||
6 | #else | ||
7 | #include <asm-generic/dma-mapping-broken.h> | 4 | #include <asm-generic/dma-mapping-broken.h> |
8 | #endif | ||
9 | 5 | ||
10 | #endif /* _M68KNOMMU_DMA_MAPPING_H */ | 6 | #endif /* _M68KNOMMU_DMA_MAPPING_H */ |
diff --git a/arch/m68k/include/asm/system_no.h b/arch/m68k/include/asm/system_no.h index 40f49de69821..4496c0aa8379 100644 --- a/arch/m68k/include/asm/system_no.h +++ b/arch/m68k/include/asm/system_no.h | |||
@@ -230,7 +230,7 @@ static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int siz | |||
230 | jmp 0xf0000400; \ | 230 | jmp 0xf0000400; \ |
231 | "); \ | 231 | "); \ |
232 | }) | 232 | }) |
233 | #elif defined(CONFIG_NETtel) || defined(CONFIG_eLIA) || \ | 233 | #elif defined(CONFIG_NETtel) || \ |
234 | defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA) | 234 | defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA) |
235 | #define HARD_RESET_NOW() ({ \ | 235 | #define HARD_RESET_NOW() ({ \ |
236 | asm(" \ | 236 | asm(" \ |