89d78daefdad83d0a776b19e12ce97114be14743
[dragonfly.git] / sys / platform / pc64 / amd64 / init.c
1 /*
2  * Copyright (c) 2006-2008 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.3 2008/08/29 17:07:10 dillon 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 #if JG
68 struct privatespace CPU_prvspace[];
69 #endif
70
71 extern vm_paddr_t phys_avail[16];
72 extern vm_paddr_t Maxmem;
73 vm_paddr_t Maxmem_bytes;
74 int MemImageFd = -1;
75 int DiskNum;
76 int NetifNum;
77 char *pid_file;
78 extern struct msgbuf *msgbufp;
79 extern caddr_t ptvmmap;
80 #if JG
81 u_int tsc_present; 
82 vm_offset_t KvaStart;
83 vm_offset_t KvaEnd;
84 vm_offset_t KvaSize;
85 vm_offset_t virtual_start;
86 #endif
87 extern vm_offset_t virtual_end;
88 extern vm_offset_t kernel_vm_end;
89 vm_offset_t crashdumpmap;
90 extern vm_offset_t clean_sva;
91 extern vm_offset_t clean_eva;
92
93 static void init_sys_memory(char *imageFile);
94 static void init_kern_memory(void);
95 static void init_kernel(void);
96 static void init_globaldata(void);
97 static void init_netif(char *netifExp[], int netifFileNum);
98 static void writepid( void );
99 static void cleanpid( void );
100 static void usage(const char *ctl, ...);
101
102 /*
103  * Kernel startup for virtual kernels - standard main() 
104  */
105 int
106 main(int ac, char **av)
107 {       
108         /* NOT REACHED */
109 }
110
111 /*
112  * Initialize system memory.  This is the virtual kernel's 'RAM'.
113  */
114 static
115 void
116 init_sys_memory(char *imageFile)
117 {
118 }
119
120 /*
121  * Initialize kernel memory.  This reserves kernel virtual memory by using
122  * MAP_VPAGETABLE
123  */
124
125 static
126 void
127 init_kern_memory(void)
128 {
129 }
130
131 /*
132  * Map the per-cpu globaldata for cpu #0.  Allocate the space using
133  * virtual_start and phys_avail[0]
134  */
135 static
136 void
137 init_globaldata(void)
138 {
139 }
140
141 /*
142  * Initialize very low level systems including thread0, proc0, etc.
143  */
144 static
145 void
146 init_kernel(void)
147 {
148 }
149
150 void
151 init_netif(char *netifExp[], int netifExpNum)
152 {
153 }
154
155 static
156 void
157 writepid( void )
158 {
159 }
160
161 static
162 void
163 cleanpid( void ) 
164 {
165 }
166
167 static
168 void
169 usage(const char *ctl, ...)
170 {
171 }
172
173 #if JG
174 void
175 cpu_reset(void)
176 {
177 }
178
179 void
180 cpu_halt(void)
181 {
182 }
183 #endif