Home | History | Annotate | Line # | Download | only in arm32
machdep.h revision 1.1
      1 /* $NetBSD: machdep.h,v 1.1 2002/01/05 22:41:48 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 #endif
     16