Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.18 42 lines 1.4 kB view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _M68K_MACHDEP_H 3#define _M68K_MACHDEP_H 4 5#include <linux/seq_file.h> 6#include <linux/interrupt.h> 7#include <linux/time.h> 8 9struct pt_regs; 10struct mktime; 11struct rtc_time; 12struct rtc_pll_info; 13struct buffer_head; 14 15extern void (*mach_sched_init) (irq_handler_t handler); 16/* machine dependent irq functions */ 17extern void (*mach_init_IRQ) (void); 18extern void (*mach_get_model) (char *model); 19extern void (*mach_get_hardware_list) (struct seq_file *m); 20/* machine dependent timer functions */ 21extern int (*mach_hwclk)(int, struct rtc_time*); 22extern unsigned int (*mach_get_ss)(void); 23extern int (*mach_get_rtc_pll)(struct rtc_pll_info *); 24extern int (*mach_set_rtc_pll)(struct rtc_pll_info *); 25extern int (*mach_set_clock_mmss)(unsigned long); 26extern void (*mach_reset)( void ); 27extern void (*mach_halt)( void ); 28extern void (*mach_power_off)( void ); 29extern unsigned long (*mach_hd_init) (unsigned long, unsigned long); 30extern void (*mach_hd_setup)(char *, int *); 31extern long mach_max_dma_address; 32extern void (*mach_heartbeat) (int); 33extern void (*mach_l2_flush) (int); 34extern void (*mach_beep) (unsigned int, unsigned int); 35 36/* Hardware clock functions */ 37extern void hw_timer_init(irq_handler_t handler); 38extern unsigned long hw_timer_offset(void); 39 40extern void config_BSP(char *command, int len); 41 42#endif /* _M68K_MACHDEP_H */