1 /* $NetBSD: machdep.h,v 1.2 2002/01/07 22:58:08 chris Exp $ */ 2 3 #ifndef _ARM32_BOOT_MACHDEP_H_ 4 #define _ARM32_BOOT_MACHDEP_H_ 5 6 /* misc prototypes used by the many arm machdeps */ 7 void halt __P((void)); 8 vsize_t map_chunk __P((vaddr_t, vaddr_t, vaddr_t, paddr_t, vsize_t, u_int, 9 u_int)); 10 void parse_mi_bootargs __P((char *)); 11 void data_abort_handler __P((trapframe_t *)); 12 void prefetch_abort_handler __P((trapframe_t *)); 13 void dumpsys __P((void)); 14 15 /* 16 * note that we use void * as all the platforms have different ideas on what 17 * the structure is 18 */ 19 u_int initarm __P((void *)); 20 21 /* from arm/arm32/intr.c */ 22 void dosoftints __P((void)); 23 void set_spl_masks __P((void)); 24 #ifdef DIAGNOSTIC 25 void dump_spl_masks __P((void)); 26 #endif 27 #endif 28