1 /***************************************************************************/
4 * linux/arch/m68knommu/platform/5206/config.c
6 * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
7 * Copyright (C) 2000-2001, Lineo Inc. (www.lineo.com)
10 /***************************************************************************/
12 #include <linux/config.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/param.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
20 #include <asm/traps.h>
21 #include <asm/machdep.h>
22 #include <asm/coldfire.h>
23 #include <asm/mcftimer.h>
24 #include <asm/mcfsim.h>
25 #include <asm/mcfdma.h>
27 /***************************************************************************/
29 void coldfire_tick(void);
30 void coldfire_timer_init(irqreturn_t (*handler
)(int, void *, struct pt_regs
*));
31 unsigned long coldfire_timer_offset(void);
32 void coldfire_trap_init(void);
33 void coldfire_reset(void);
35 /***************************************************************************/
38 * DMA channel base address table.
40 unsigned int dma_base_addr
[MAX_M68K_DMA_CHANNELS
] = {
41 MCF_MBAR
+ MCFDMA_BASE0
,
42 MCF_MBAR
+ MCFDMA_BASE1
,
45 unsigned int dma_device_address
[MAX_M68K_DMA_CHANNELS
];
47 /***************************************************************************/
49 void mcf_autovector(unsigned int vec
)
51 volatile unsigned char *mbar
;
54 if ((vec
>= 25) && (vec
<= 31)) {
56 mbar
= (volatile unsigned char *) MCF_MBAR
;
57 icr
= MCFSIM_ICR_AUTOVEC
| (vec
<< 3);
58 *(mbar
+ MCFSIM_ICR1
+ vec
) = icr
;
59 vec
= 0x1 << (vec
+ 1);
60 mcf_setimr(mcf_getimr() & ~vec
);
64 /***************************************************************************/
66 void mcf_settimericr(unsigned int timer
, unsigned int level
)
68 volatile unsigned char *icrp
;
69 unsigned int icr
, imr
;
73 case 2: icr
= MCFSIM_TIMER2ICR
; imr
= MCFSIM_IMR_TIMER2
; break;
74 default: icr
= MCFSIM_TIMER1ICR
; imr
= MCFSIM_IMR_TIMER1
; break;
77 icrp
= (volatile unsigned char *) (MCF_MBAR
+ icr
);
78 *icrp
= MCFSIM_ICR_AUTOVEC
| (level
<< 2) | MCFSIM_ICR_PRI3
;
79 mcf_setimr(mcf_getimr() & ~imr
);
83 /***************************************************************************/
85 int mcf_timerirqpending(int timer
)
90 case 1: imr
= MCFSIM_IMR_TIMER1
; break;
91 case 2: imr
= MCFSIM_IMR_TIMER2
; break;
94 return (mcf_getipr() & imr
);
97 /***************************************************************************/
99 void config_BSP(char *commandp
, int size
)
101 mcf_setimr(MCFSIM_IMR_MASKALL
);
103 #if defined(CONFIG_BOOTPARAM)
104 strncpy(commandp
, CONFIG_BOOTPARAM_STRING
, size
);
105 commandp
[size
-1] = 0;
107 memset(commandp
, 0, size
);
110 mach_sched_init
= coldfire_timer_init
;
111 mach_tick
= coldfire_tick
;
112 mach_gettimeoffset
= coldfire_timer_offset
;
113 mach_trap_init
= coldfire_trap_init
;
114 mach_reset
= coldfire_reset
;
117 /***************************************************************************/