Merge from vendor branch TNFTP:
[dragonfly.git] / sys / platform / pc64 / amd64 / init.c
1 /*
2  * Copyright (c) 2006 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sys/platform/pc64/amd64/init.c,v 1.2 2007/09/24 03:24:45 yanyh Exp $
35  */
36
37 #include <sys/types.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/stat.h>
41 #include <sys/mman.h>
42 #include <sys/cons.h>
43 #include <sys/random.h>
44 #include <sys/tls.h>
45 #include <sys/reboot.h>
46 #include <sys/proc.h>
47 #include <sys/msgbuf.h>
48 #include <sys/vmspace.h>
49 #include <sys/socket.h>
50 #include <sys/sockio.h>
51 #include <sys/sysctl.h>
52 #include <vm/vm_page.h>
53
54 #include <machine/cpu.h>
55 #include <machine/globaldata.h>
56 #include <machine/tls.h>
57 #include <machine/md_var.h>
58 #include <machine/vmparam.h>
59
60 #include <net/if.h>
61 #include <net/if_arp.h>
62 #include <net/ethernet.h>
63 #include <net/bridge/if_bridgevar.h>
64 #include <netinet/in.h>
65 #include <arpa/inet.h>
66
67 struct privatespace CPU_prvspace[];
68
69 vm_paddr_t phys_avail[16];
70 vm_paddr_t Maxmem;
71 vm_paddr_t Maxmem_bytes;
72 int MemImageFd = -1;
73 int DiskNum;
74 int NetifNum;
75 char *pid_file;
76 struct msgbuf *msgbufp;
77 caddr_t ptvmmap;
78 u_int tsc_present; 
79 vm_offset_t KvaStart;
80 vm_offset_t KvaEnd;
81 vm_offset_t KvaSize;
82 vm_offset_t virtual_start;
83 vm_offset_t virtual_end;
84 vm_offset_t kernel_vm_end;
85 vm_offset_t crashdumpmap;
86 vm_offset_t clean_sva;
87 vm_offset_t clean_eva;
88
89 static void init_sys_memory(char *imageFile);
90 static void init_kern_memory(void);
91 static void init_kernel(void);
92 static void init_globaldata(void);
93 static void init_netif(char *netifExp[], int netifFileNum);
94 static void writepid( void );
95 static void cleanpid( void );
96 static void usage(const char *ctl, ...);
97
98 /*
99  * Kernel startup for virtual kernels - standard main() 
100  */
101 int
102 main(int ac, char **av)
103 {       
104         /* NOT REACHED */
105 }
106
107 /*
108  * Initialize system memory.  This is the virtual kernel's 'RAM'.
109  */
110 static
111 void
112 init_sys_memory(char *imageFile)
113 {
114 }
115
116 /*
117  * Initialize kernel memory.  This reserves kernel virtual memory by using
118  * MAP_VPAGETABLE
119  */
120
121 static
122 void
123 init_kern_memory(void)
124 {
125 }
126
127 /*
128  * Map the per-cpu globaldata for cpu #0.  Allocate the space using
129  * virtual_start and phys_avail[0]
130  */
131 static
132 void
133 init_globaldata(void)
134 {
135 }
136
137 /*
138  * Initialize very low level systems including thread0, proc0, etc.
139  */
140 static
141 void
142 init_kernel(void)
143 {
144 }
145
146 void
147 init_netif(char *netifExp[], int netifExpNum)
148 {
149 }
150
151 static
152 void
153 writepid( void )
154 {
155 }
156
157 static
158 void
159 cleanpid( void ) 
160 {
161 }
162
163 static
164 void
165 usage(const char *ctl, ...)
166 {
167 }
168
169 void
170 cpu_reset(void)
171 {
172 }
173
174 void
175 cpu_halt(void)
176 {
177 }