summaryrefslogtreecommitdiffstats
path: root/sys/ia64/include/md_var.h
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2003-08-16 16:57:57 +0000
committermarcel <marcel@FreeBSD.org>2003-08-16 16:57:57 +0000
commitc1d4b42a69d212864fda73f4a1ec45d498893879 (patch)
treed0ded423708b55f6864084633815a6dea9bdd44a /sys/ia64/include/md_var.h
parent76d162d172781aa8110f4f7146542b1092e42d56 (diff)
downloadFreeBSD-src-c1d4b42a69d212864fda73f4a1ec45d498893879.zip
FreeBSD-src-c1d4b42a69d212864fda73f4a1ec45d498893879.tar.gz
Further cleanup <machine/cpu.h> and <machine/md_var.h>: move the MI
prototypes of cpu_halt(), cpu_reset() and swi_vm() from md_var.h to cpu.h. This affects db_command.c and kern_shutdown.c. ia64: move all MD prototypes from cpu.h to md_var.h. This affects madt.c, interrupt.c and mp_machdep.c. Remove is_physical_memory(). It's not used (vm_machdep.c). alpha: the MD prototypes have been left in cpu.h with a comment that they should be there. Moving them is left for later. It was expected that the impact would be significant enough to be done in a seperate commit. powerpc: MD prototypes left in cpu.h. Comment added. Suggested by: bde Tested with: make universe (pc98 incomplete)
Diffstat (limited to 'sys/ia64/include/md_var.h')
-rw-r--r--sys/ia64/include/md_var.h22
1 files changed, 17 insertions, 5 deletions
diff --git a/sys/ia64/include/md_var.h b/sys/ia64/include/md_var.h
index 38d98de..3301f34 100644
--- a/sys/ia64/include/md_var.h
+++ b/sys/ia64/include/md_var.h
@@ -39,8 +39,9 @@ extern int szsigcode;
extern long Maxmem;
struct fpreg;
-struct thread;
struct reg;
+struct thread;
+struct trapframe;
struct ia64_fdesc {
u_int64_t func;
@@ -51,11 +52,22 @@ struct ia64_fdesc {
#define FDESC_GP(fn) (((struct ia64_fdesc *) fn)->gp)
void busdma_swi(void);
-void cpu_halt(void);
-void cpu_reset(void);
-int is_physical_memory(vm_offset_t addr);
+int copyout_regstack(struct thread *, uint64_t *, uint64_t *);
+void cpu_mp_add(u_int, u_int, u_int);
+int do_ast(struct trapframe *);
+int ia64_count_cpus(void);
+int ia64_highfp_drop(struct thread *);
+int ia64_highfp_load(struct thread *);
+int ia64_highfp_save(struct thread *);
+void ia64_init(void);
+void ia64_probe_sapics(void);
+void interrupt(uint64_t, struct trapframe *);
+void map_gateway_page(void);
+void map_pal_code(void);
+void map_port_space(void);
void os_boot_rendez(void);
void os_mca(void);
-void swi_vm(void *);
+int syscall(struct trapframe *);
+void trap(int, struct trapframe *);
#endif /* !_MACHINE_MD_VAR_H_ */
OpenPOWER on IntegriCloud