685778b53b
Move the trap/vector initialization for MPC6xx ports to mpc6xx_machdep.c Also move softnet, install_extintr, mapiodev, kvtop. Add common BAT initialization code. Add user Altivec support. Fix calls to OF_call_method in macppc/macppc/machdep.c. Use ci_fpuproc in cpu_info instead of separate fpuproc. Add separate syscall.c and defined __HAVE_SYSCALL_INTERN.
19 lines
401 B
C
19 lines
401 B
C
#ifndef _MACHINE_AUTOCONF_H_
|
|
#define _MACHINE_AUTOCONF_H_
|
|
|
|
#ifdef _KERNEL
|
|
void initppc (u_int, u_int, u_int, void *);
|
|
void strayintr (int);
|
|
void lcsplx (int);
|
|
|
|
void inittodr (time_t);
|
|
void resettodr (void);
|
|
void cpu_initclocks (void);
|
|
void decr_intr (struct clockframe *);
|
|
void setstatclockrate (int);
|
|
|
|
int pfb_cnattach (int); /* pci/pfb.c */
|
|
#endif /* _KERNEL */
|
|
|
|
#endif /* _MACHINE_AUTOCONF_H_ */
|