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