diff options
author | Greg Ungerer <gerg@uclinux.org> | 2011-05-17 02:45:00 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-07-24 21:20:40 -0400 |
commit | 171d809df1896c1022f9778cd2788be6c255a7dc (patch) | |
tree | d944e5178d5a206c000019ccc96d4f45d2b1b668 /arch/m68k/Kconfig | |
parent | f941f5caa0e947f4ed060a751ca4a3bf552af625 (diff) |
m68k: merge mmu and non-mmu bitops.h
The following patch merges the mmu and non-mmu versions of the m68k
bitops.h files. Now there is a good deal of difference between the two
files, but none of it is actually an mmu specific difference. It is
all about the specific m68k/coldfire varient we are targeting. So it
makes an awful lot of sense to merge these into a single bitops.h.
There is a number of ways I can see to factor this code. The approach
I have taken here is to keep the various versions of each macro/function
type together. This means that there is some ifdefery with each to handle
each CPU type.
I have added some comments in a couple of appropriate places to try
and make it clear what the differences we are dealing with are.
Specifically the instruction and addressing mode differences we have
to deal with.
The merged form keeps the same underlying optimizations for each CPU
type for all the general bit clear/set/change and find bit operations.
It does switch to using the generic le operations though, instead of
any local varients.
Build tested on ColdFire, 68328, 68360 (which is cpu32) and 68020+.
Run tested on ColdFire and ARAnyM.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/Kconfig')
-rw-r--r-- | arch/m68k/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index d66e34c718d0..284cd3771eaa 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig | |||
@@ -41,6 +41,10 @@ config NO_DMA | |||
41 | config ZONE_DMA | 41 | config ZONE_DMA |
42 | bool | 42 | bool |
43 | default y | 43 | default y |
44 | |||
45 | config CPU_HAS_NO_BITFIELDS | ||
46 | bool | ||
47 | |||
44 | config HZ | 48 | config HZ |
45 | int | 49 | int |
46 | default 1000 if CLEOPATRA | 50 | default 1000 if CLEOPATRA |