/*
- *     Define master clock frequency. This is essentially done at config
- *     time now. No point enumerating dozens of possible clock options
- *     here. Also the peripheral clock (bus clock) divide ratio is set
- *     at config time too.
+ *     Define master clock frequency. This is done at config time now.
+ *     No point enumerating dozens of possible clock options here. And
+ *     in any case new boards come along from time to time that have yet
+ *     another different clocking frequency.
  */
 #ifdef CONFIG_CLOCK_SET
 #define        MCF_CLK         CONFIG_CLOCK_FREQ
-#define        MCF_BUSCLK      (CONFIG_CLOCK_FREQ / CONFIG_CLOCK_DIV)
 #else
 #error "Don't know what your ColdFire CPU clock frequency is??"
 #endif
 
 
 #define        CPU_NAME                "COLDFIRE(m5206)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              MCF_CLK
 
 #include <asm/m52xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m520x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m523x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m5249)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m5272)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              MCF_CLK
 
 #include <asm/m52xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m527x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m528x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              MCF_CLK
 
 #include <asm/m52xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m5307)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m53xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m532x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 3)
 
 #include <asm/m53xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m5407)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m54xxacr.h>
 
 
 
 #define        CPU_NAME                "COLDFIRE(m54xx)"
 #define        CPU_INSTR_PER_JIFFY     2
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m54xxacr.h>
 
 
          if it is fitted (there are some exceptions). This value will be
          specific to the exact CPU that you are using.
 
-config CLOCK_DIV
-       int "Set the core/bus clock divide ratio"
-       default "1"
-       depends on CLOCK_SET
-       help
-         On many SoC style CPUs the master CPU clock is also used to drive 
-         on-chip peripherals. The clock that is distributed to these
-         peripherals is sometimes a fixed ratio of the master clock
-         frequency. If so then set this to the divider ratio of the
-         master clock to the peripheral clock. If not sure then select 1.
-
 config OLDMASK
        bool "Old mask 5307 (1H55J) silicon"
        depends on M5307