blob: 98d1d25101f247d2da905668f659249069a187de [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/****************************************************************************/
2
3/*
4 * coldfire.h -- Motorola ColdFire CPU sepecific defines
5 *
Greg Ungerer31f4fde2006-06-26 10:58:09 +10006 * (C) Copyright 1999-2006, Greg Ungerer (gerg@snapgear.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (C) Copyright 2000, Lineo (www.lineo.com)
8 */
9
10/****************************************************************************/
11#ifndef coldfire_h
12#define coldfire_h
13/****************************************************************************/
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/*
Greg Ungerer31f4fde2006-06-26 10:58:09 +100017 * Define master clock frequency. This is essentially done at config
18 * time now. No point enumerating dozens of possible clock options
19 * here. Also the peripheral clock (bus clock) divide ratio is set
20 * at config time too.
21 */
22#ifdef CONFIG_CLOCK_SET
23#define MCF_CLK CONFIG_CLOCK_FREQ
24#define MCF_BUSCLK (CONFIG_CLOCK_FREQ / CONFIG_CLOCK_DIV)
25#else
26#error "Don't know what your ColdFire CPU clock frequency is??"
27#endif
28
29/*
Greg Ungererb195c472011-03-06 01:01:31 +100030 * Define the processor internal peripherals base address.
31 *
32 * The majority of ColdFire parts use an MBAR register to set
33 * the base address. Some have an IPSBAR register instead, and it
34 * has slightly different rules on its size and alignment. Some
35 * parts have fixed addresses and the internal peripherals cannot
Greg Ungererd4852a32011-03-06 21:53:28 +100036 * be relocated in the CPU address space.
Greg Ungererb195c472011-03-06 01:01:31 +100037 *
Greg Ungererd4852a32011-03-06 21:53:28 +100038 * The value of MBAR or IPSBAR is config time selectable, we no
39 * longer hard define it here. No MBAR or IPSBAR will be defined if
40 * this part has a fixed peripheral address map.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Greg Ungererd4852a32011-03-06 21:53:28 +100042#ifdef CONFIG_MBAR
43#define MCF_MBAR CONFIG_MBAR
44#endif
45#ifdef CONFIG_IPSBAR
46#define MCF_IPSBAR CONFIG_IPSBAR
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
48
49/****************************************************************************/
50#endif /* coldfire_h */