diff options
author | Greg Ungerer <gerg@snapgear.com> | 2005-09-08 19:32:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-08 20:27:35 -0400 |
commit | 1bdd89db117a55c77a854829ff507d6d68ab6485 (patch) | |
tree | c09698f854627d280eeda42e6b25cba67c6fe8b3 /include/asm-m68knommu/coldfire.h | |
parent | 910ce396a88b84b99377f7c46888a1ff9a86ded3 (diff) |
[PATCH] m68knommu: defines to support the ColdFire 523x processor
Add processor level and clock support defines for the ColdFire 523x
processor.
Signed-off-by: Greg Ungerer <gerg@uclinux.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-m68knommu/coldfire.h')
-rw-r--r-- | include/asm-m68knommu/coldfire.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-m68knommu/coldfire.h b/include/asm-m68knommu/coldfire.h index 16f32cc80c40..1df3f666a28e 100644 --- a/include/asm-m68knommu/coldfire.h +++ b/include/asm-m68knommu/coldfire.h | |||
@@ -22,7 +22,7 @@ | |||
22 | #define MCF_MBAR2 0x80000000 | 22 | #define MCF_MBAR2 0x80000000 |
23 | #define MCF_IPSBAR 0x40000000 | 23 | #define MCF_IPSBAR 0x40000000 |
24 | 24 | ||
25 | #if defined(CONFIG_M527x) || defined(CONFIG_M528x) | 25 | #if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) |
26 | #undef MCF_MBAR | 26 | #undef MCF_MBAR |
27 | #define MCF_MBAR MCF_IPSBAR | 27 | #define MCF_MBAR MCF_IPSBAR |
28 | #endif | 28 | #endif |
@@ -54,6 +54,8 @@ | |||
54 | #define MCF_CLK 54000000 | 54 | #define MCF_CLK 54000000 |
55 | #elif defined(CONFIG_CLOCK_60MHz) | 55 | #elif defined(CONFIG_CLOCK_60MHz) |
56 | #define MCF_CLK 60000000 | 56 | #define MCF_CLK 60000000 |
57 | #elif defined(CONFIG_CLOCK_62_5MHz) | ||
58 | #define MCF_CLK 62500000 | ||
57 | #elif defined(CONFIG_CLOCK_64MHz) | 59 | #elif defined(CONFIG_CLOCK_64MHz) |
58 | #define MCF_CLK 64000000 | 60 | #define MCF_CLK 64000000 |
59 | #elif defined(CONFIG_CLOCK_66MHz) | 61 | #elif defined(CONFIG_CLOCK_66MHz) |
@@ -76,7 +78,7 @@ | |||
76 | * One some ColdFire family members the bus clock (used by internal | 78 | * One some ColdFire family members the bus clock (used by internal |
77 | * peripherals) is not the same as the CPU clock. | 79 | * peripherals) is not the same as the CPU clock. |
78 | */ | 80 | */ |
79 | #if defined(CONFIG_M5249) || defined(CONFIG_M527x) | 81 | #if defined(CONFIG_M523x) || defined(CONFIG_M5249) || defined(CONFIG_M527x) |
80 | #define MCF_BUSCLK (MCF_CLK / 2) | 82 | #define MCF_BUSCLK (MCF_CLK / 2) |
81 | #else | 83 | #else |
82 | #define MCF_BUSCLK MCF_CLK | 84 | #define MCF_BUSCLK MCF_CLK |