38 lines
886 B
C
38 lines
886 B
C
/**
|
|
* \file init.h
|
|
* License details are found in the file LICENSE.
|
|
* \brief
|
|
* Initialization functions
|
|
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
|
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
|
*/
|
|
/*
|
|
* HISTORY:
|
|
*/
|
|
|
|
#ifndef INIT_H
|
|
#define INIT_H
|
|
|
|
extern void arch_init(void);
|
|
extern void kmsg_init(int);
|
|
extern void mem_init(void);
|
|
extern void ikc_master_init(void);
|
|
extern void ap_init(void);
|
|
extern void arch_ready(void);
|
|
extern void mc_ikc_test_init(void);
|
|
extern void cpu_local_var_init(void);
|
|
extern void kmalloc_init(void);
|
|
extern void ap_start(void);
|
|
extern void ihk_mc_dma_init(void);
|
|
extern void init_host_syscall_channel(void);
|
|
extern void init_host_syscall_channel2(void);
|
|
extern void sched_init(void);
|
|
extern void pc_ap_init(void);
|
|
extern void cpu_sysfs_setup(void);
|
|
|
|
extern char *find_command_line(char *name);
|
|
|
|
extern int num_processors;
|
|
|
|
#endif
|