]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
m68knommu: remove ColdFire CLOCK_DIV config option
authorGreg Ungerer <gerg@uclinux.org>
Wed, 9 Mar 2011 04:19:08 +0000 (14:19 +1000)
committerGreg Ungerer <gerg@uclinux.org>
Tue, 15 Mar 2011 11:01:57 +0000 (21:01 +1000)
The reality is that you do not need the abiltity to configure the
clock divider for ColdFire CPUs. It is a fixed ratio on any given
ColdFire family member. It is not the same for all ColdFire parts,
but it is always the same in a model range. So hard define the divider
for each supported ColdFire CPU type and remove the Kconfig option.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
13 files changed:
arch/m68k/include/asm/coldfire.h
arch/m68k/include/asm/m5206sim.h
arch/m68k/include/asm/m520xsim.h
arch/m68k/include/asm/m523xsim.h
arch/m68k/include/asm/m5249sim.h
arch/m68k/include/asm/m5272sim.h
arch/m68k/include/asm/m527xsim.h
arch/m68k/include/asm/m528xsim.h
arch/m68k/include/asm/m5307sim.h
arch/m68k/include/asm/m532xsim.h
arch/m68k/include/asm/m5407sim.h
arch/m68k/include/asm/m54xxsim.h
arch/m68knommu/Kconfig

index 98d1d25101f247d2da905668f659249069a187de..c94557b914482dfa7d272eaf73e9aa0951c7354d 100644 (file)
 
 
 /*
- *     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
index dfd6d3f73584ed9d93c5628f05d8a86023ff7d57..9015eadd5c003cf3bebb89cfa2407dd2083b927f 100644 (file)
@@ -14,6 +14,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m5206)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              MCF_CLK
 
 #include <asm/m52xxacr.h>
 
index 87f8ce73b318f2346680034f0aa7122f49f2f16d..ee89801eec9d2b12e08a9f5950d8fbfd27268f98 100644 (file)
@@ -13,6 +13,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m520x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
index 3f3dbf01a10963a5ae96a4f5e9535ef655bc68a9..3852f074fddd9f3ebe066e2ba44a4063162e7c55 100644 (file)
@@ -13,6 +13,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m523x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
index 33b0b4df07caa95101754a6edc3da656df6b4e0f..805714ca8d7d2cde705975963ac3d02954fff3e5 100644 (file)
@@ -13,6 +13,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m5249)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
index 57ca4de1f9114bc99a9de422474e35fde4210b5b..759c2b07a994938975a8c50aebd04e9d6d850d99 100644 (file)
@@ -14,6 +14,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m5272)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              MCF_CLK
 
 #include <asm/m52xxacr.h>
 
index 838fb2b1e88b8f40e4af488253dbabd91185991e..c23046ee3a51c4d33f9efe5a3e5aa218b2b222fa 100644 (file)
@@ -13,6 +13,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m527x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m52xxacr.h>
 
index 47324f2258a783ef57e8e9f31a797560f4423510..d798bd5df56c28dcdae4142015ed250629917fd1 100644 (file)
@@ -13,6 +13,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m528x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              MCF_CLK
 
 #include <asm/m52xxacr.h>
 
index e4365f2e5c29b59ce3b3c1d403fb90b146eeff2c..4c94c01f36c4d76b9fe2325200257b1d5474f523 100644 (file)
@@ -16,6 +16,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m5307)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m53xxacr.h>
 
index 0dea126f3fcf4e444c65de79a6c80dd5bf178341..ba4cc784f574a41837cf7a4ade8a3a6656917c96 100644 (file)
@@ -11,6 +11,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m532x)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 3)
 
 #include <asm/m53xxacr.h>
 
index c1eba01d26b0c8eb205fe5245114f915464ce858..762c58c89050379dba783adbcedbef8c6f9664bd 100644 (file)
@@ -16,6 +16,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m5407)"
 #define        CPU_INSTR_PER_JIFFY     3
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m54xxacr.h>
 
index cc5d94d215b4f698c24f60c69f6131773c7279cc..daaae276bb09aa594b1ad378cd6dac3aca59d66f 100644 (file)
@@ -7,6 +7,7 @@
 
 #define        CPU_NAME                "COLDFIRE(m54xx)"
 #define        CPU_INSTR_PER_JIFFY     2
+#define        MCF_BUSCLK              (MCF_CLK / 2)
 
 #include <asm/m54xxacr.h>
 
index 2e6fe63b7a0f6a15f69fb5bc93396673bdbfb486..b5424cf948e64430ccdd635c17c1fdfa892e42b8 100644 (file)
@@ -260,17 +260,6 @@ config CLOCK_FREQ
          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