URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [include/] [asm-m68knommu/] [coldfire.h] - Rev 1765
Compare with Previous | Blame | View Log
/****************************************************************************/ /* * coldfire.h -- Motorola ColdFire CPU sepecific defines * * (C) Copyright 1999-2000, Greg Ungerer (gerg@moreton.com.au) */ /****************************************************************************/ #ifndef coldfire_h #define coldfire_h /****************************************************************************/ #include <linux/config.h> /* * Define the processor support peripherals base address. * This is generally setup by the boards start up code. */ #define MCF_MBAR 0x10000000 /* * Define master clock frequency. */ #if defined(CONFIG_M5206) #define MCF_CLK 25000000 #elif defined(CONFIG_M5206e) #ifdef CONFIG_NETtel #define MCF_CLK 40000000 #else #define MCF_CLK 54000000 #endif #elif defined(CONFIG_M5307) #define MCF_CLK 45000000 #elif defined(CONFIG_M5204) #define MCF_CLK 25000000 #endif /****************************************************************************/ #endif /* coldfire_h */