Pull cpuidle into release branch
[pandora-kernel.git] / arch / m68knommu / platform / 520x / config.c
1 /***************************************************************************/
2
3 /*
4  *  linux/arch/m68knommu/platform/520x/config.c
5  *
6  *  Copyright (C) 2005,      Freescale (www.freescale.com)
7  *  Copyright (C) 2005,      Intec Automation (mike@steroidmicros.com)
8  *  Copyright (C) 1999-2003, Greg Ungerer (gerg@snapgear.com)
9  *  Copyright (C) 2001-2003, SnapGear Inc. (www.snapgear.com)
10  */
11
12 /***************************************************************************/
13
14 #include <linux/kernel.h>
15 #include <linux/param.h>
16 #include <linux/interrupt.h>
17 #include <asm/machdep.h>
18 #include <asm/dma.h>
19
20 /***************************************************************************/
21
22 /*
23  *      DMA channel base address table.
24  */
25 unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS];
26 unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS];
27
28 /***************************************************************************/
29
30 void coldfire_reset(void);
31
32 /***************************************************************************/
33
34 /*
35  *  Program the vector to be an auto-vectored.
36  */
37
38 void mcf_autovector(unsigned int vec)
39 {
40     /* Everything is auto-vectored on the 520x devices */
41 }
42
43 /***************************************************************************/
44
45 void config_BSP(char *commandp, int size)
46 {
47         mach_reset = coldfire_reset;
48 }
49
50 /***************************************************************************/