Merge from vendor branch LIBARCHIVE:
[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.1 2007/09/23 04:29:31 yanyh Exp $
35  * $DragonFly: src/sys/platform/pc64/amd64/init.c,v 1.1 2007/09/23 04:29:31 yanyh Exp $
36  */
37
38 #include <sys/types.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 #include <sys/stat.h>
42 #include <sys/mman.h>
43 #include <sys/cons.h>
44 #include <sys/random.h>
45 #include <sys/tls.h>
46 #include <sys/reboot.h>
47 #include <sys/proc.h>
48 #include <sys/msgbuf.h>
49 #include <sys/vmspace.h>
50 #include <sys/socket.h>
51 #include <sys/sockio.h>
52 #include <sys/sysctl.h>
53 #include <vm/vm_page.h>
54
55 #include <machine/cpu.h>
56 #include <machine/globaldata.h>
57 #include <machine/tls.h>
58 #include <machine/md_var.h>
59 #include <machine/vmparam.h>
60
61 #include <net/if.h>
62 #include <net/if_arp.h>
63 #include <net/ethernet.h>
64 #include <net/bridge/if_bridgevar.h>
65 #include <netinet/in.h>
66 #include <arpa/inet.h>
67
68 struct privatespace CPU_prvspace[];
69
70 vm_paddr_t phys_avail[16];
71 vm_paddr_t Maxmem;
72 vm_paddr_t Maxmem_bytes;
73 int MemImageFd = -1;
74 int DiskNum;
75 int NetifNum;
76 char *pid_file;
77 struct msgbuf *msgbufp;
78 caddr_t ptvmmap;
79 u_int tsc_present; 
80 vm_offset_t KvaStart;
81 vm_offset_t KvaEnd;
82 vm_offset_t KvaSize;
83 vm_offset_t virtual_start;
84 vm_offset_t virtual_end;
85 vm_offset_t kernel_vm_end;
86 vm_offset_t crashdumpmap;
87 vm_offset_t clean_sva;
88 vm_offset_t clean_eva;
89
90 static void init_sys_memory(char *imageFile);
91 static void init_kern_memory(void);
92 static void init_kernel(void);
93 static void init_globaldata(void);
94 static void init_netif(char *netifExp[], int netifFileNum);
95 static void writepid( void );
96 static void cleanpid( void );
97 static void usage(const char *ctl, ...);
98
99 /*
100  * Kernel startup for virtual kernels - standard main() 
101  */
102 int
103 main(int ac, char **av)
104 {       
105         /* NOT REACHED */
106 }
107
108 /*
109  * Initialize system memory.  This is the virtual kernel's 'RAM'.
110  */
111 static
112 void
113 init_sys_memory(char *imageFile)
114 {
115 }
116
117 /*
118  * Initialize kernel memory.  This reserves kernel virtual memory by using
119  * MAP_VPAGETABLE
120  */
121
122 static
123 void
124 init_kern_memory(void)
125 {
126 }
127
128 /*
129  * Map the per-cpu globaldata for cpu #0.  Allocate the space using
130  * virtual_start and phys_avail[0]
131  */
132 static
133 void
134 init_globaldata(void)
135 {
136 }
137
138 /*
139  * Initialize very low level systems including thread0, proc0, etc.
140  */
141 static
142 void
143 init_kernel(void)
144 {
145 }
146
147 void
148 init_netif(char *netifExp[], int netifExpNum)
149 {
150 }
151
152 static
153 void
154 writepid( void )
155 {
156 }
157
158 static
159 void
160 cleanpid( void ) 
161 {
162 }
163
164 static
165 void
166 usage(const char *ctl, ...)
167 {
168 }
169
170 void
171 cpu_reset(void)
172 {
173 }
174
175 void
176 cpu_halt(void)
177 {
178 }