diff options
Diffstat (limited to 'arch/m68k/include/asm/machdep.h')
-rw-r--r-- | arch/m68k/include/asm/machdep.h | 49 |
1 files changed, 44 insertions, 5 deletions
diff --git a/arch/m68k/include/asm/machdep.h b/arch/m68k/include/asm/machdep.h index fc24b6fc5508..789f3b2de0e9 100644 --- a/arch/m68k/include/asm/machdep.h +++ b/arch/m68k/include/asm/machdep.h | |||
@@ -1,5 +1,44 @@ | |||
1 | #ifdef __uClinux__ | 1 | #ifndef _M68K_MACHDEP_H |
2 | #include "machdep_no.h" | 2 | #define _M68K_MACHDEP_H |
3 | #else | 3 | |
4 | #include "machdep_mm.h" | 4 | #include <linux/seq_file.h> |
5 | #endif | 5 | #include <linux/interrupt.h> |
6 | |||
7 | struct pt_regs; | ||
8 | struct mktime; | ||
9 | struct rtc_time; | ||
10 | struct rtc_pll_info; | ||
11 | struct buffer_head; | ||
12 | |||
13 | extern void (*mach_sched_init) (irq_handler_t handler); | ||
14 | /* machine dependent irq functions */ | ||
15 | extern void (*mach_init_IRQ) (void); | ||
16 | extern void (*mach_get_model) (char *model); | ||
17 | extern void (*mach_get_hardware_list) (struct seq_file *m); | ||
18 | /* machine dependent timer functions */ | ||
19 | extern unsigned long (*mach_gettimeoffset)(void); | ||
20 | extern int (*mach_hwclk)(int, struct rtc_time*); | ||
21 | extern unsigned int (*mach_get_ss)(void); | ||
22 | extern int (*mach_get_rtc_pll)(struct rtc_pll_info *); | ||
23 | extern int (*mach_set_rtc_pll)(struct rtc_pll_info *); | ||
24 | extern int (*mach_set_clock_mmss)(unsigned long); | ||
25 | extern void (*mach_gettod)(int *year, int *mon, int *day, int *hour, | ||
26 | int *min, int *sec); | ||
27 | extern void (*mach_reset)( void ); | ||
28 | extern void (*mach_halt)( void ); | ||
29 | extern void (*mach_power_off)( void ); | ||
30 | extern unsigned long (*mach_hd_init) (unsigned long, unsigned long); | ||
31 | extern void (*mach_hd_setup)(char *, int *); | ||
32 | extern long mach_max_dma_address; | ||
33 | extern void (*mach_heartbeat) (int); | ||
34 | extern void (*mach_l2_flush) (int); | ||
35 | extern void (*mach_beep) (unsigned int, unsigned int); | ||
36 | |||
37 | /* Hardware clock functions */ | ||
38 | extern void hw_timer_init(void); | ||
39 | extern unsigned long hw_timer_offset(void); | ||
40 | extern irqreturn_t arch_timer_interrupt(int irq, void *dummy); | ||
41 | |||
42 | extern void config_BSP(char *command, int len); | ||
43 | |||
44 | #endif /* _M68K_MACHDEP_H */ | ||