1 | /*
|
---|
2 | * Copyright (c) 2001-2004 Jakub Jermar
|
---|
3 | * Copyright (c) 2009 Jiri Svoboda
|
---|
4 | * Copyright (c) 2009 Martin Decky
|
---|
5 | * All rights reserved.
|
---|
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 | * - Redistributions of source code must retain the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer.
|
---|
13 | * - Redistributions in binary form must reproduce the above copyright
|
---|
14 | * notice, this list of conditions and the following disclaimer in the
|
---|
15 | * documentation and/or other materials provided with the distribution.
|
---|
16 | * - The name of the author may not be used to endorse or promote products
|
---|
17 | * derived from this software without specific prior written permission.
|
---|
18 | *
|
---|
19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
29 | */
|
---|
30 |
|
---|
31 | /** @addtogroup ia32
|
---|
32 | * @{
|
---|
33 | */
|
---|
34 | /** @file
|
---|
35 | */
|
---|
36 |
|
---|
37 | #include <arch.h>
|
---|
38 |
|
---|
39 | #include <arch/types.h>
|
---|
40 |
|
---|
41 | #include <arch/pm.h>
|
---|
42 |
|
---|
43 | #include <genarch/multiboot/multiboot.h>
|
---|
44 | #include <genarch/drivers/legacy/ia32/io.h>
|
---|
45 | #include <genarch/drivers/ega/ega.h>
|
---|
46 | #include <arch/drivers/vesa.h>
|
---|
47 | #include <genarch/kbd/i8042.h>
|
---|
48 | #include <arch/drivers/i8254.h>
|
---|
49 | #include <arch/drivers/i8259.h>
|
---|
50 |
|
---|
51 | #include <arch/context.h>
|
---|
52 |
|
---|
53 | #include <config.h>
|
---|
54 |
|
---|
55 | #include <arch/interrupt.h>
|
---|
56 | #include <arch/asm.h>
|
---|
57 | #include <genarch/acpi/acpi.h>
|
---|
58 |
|
---|
59 | #include <arch/bios/bios.h>
|
---|
60 |
|
---|
61 | #include <interrupt.h>
|
---|
62 | #include <ddi/irq.h>
|
---|
63 | #include <arch/debugger.h>
|
---|
64 | #include <proc/thread.h>
|
---|
65 | #include <syscall/syscall.h>
|
---|
66 | #include <console/console.h>
|
---|
67 | #include <ddi/device.h>
|
---|
68 | #include <sysinfo/sysinfo.h>
|
---|
69 | #include <arch/boot/boot.h>
|
---|
70 |
|
---|
71 | #ifdef CONFIG_SMP
|
---|
72 | #include <arch/smp/apic.h>
|
---|
73 | #endif
|
---|
74 |
|
---|
75 | /** Perform ia32-specific initialization before main_bsp() is called.
|
---|
76 | *
|
---|
77 | * @param signature Should contain the multiboot signature.
|
---|
78 | * @param mi Pointer to the multiboot information structure.
|
---|
79 | */
|
---|
80 | void arch_pre_main(uint32_t signature, const multiboot_info_t *mi)
|
---|
81 | {
|
---|
82 | /* Parse multiboot information obtained from the bootloader. */
|
---|
83 | multiboot_info_parse(signature, mi);
|
---|
84 |
|
---|
85 | #ifdef CONFIG_SMP
|
---|
86 | /* Copy AP bootstrap routines below 1 MB. */
|
---|
87 | memcpy((void *) AP_BOOT_OFFSET, (void *) BOOT_OFFSET,
|
---|
88 | (size_t) &_hardcoded_unmapped_size);
|
---|
89 | #endif
|
---|
90 | }
|
---|
91 |
|
---|
92 | void arch_pre_mm_init(void)
|
---|
93 | {
|
---|
94 | pm_init();
|
---|
95 |
|
---|
96 | if (config.cpu_active == 1) {
|
---|
97 | interrupt_init();
|
---|
98 | bios_init();
|
---|
99 |
|
---|
100 | /* PIC */
|
---|
101 | i8259_init();
|
---|
102 | }
|
---|
103 | }
|
---|
104 |
|
---|
105 | void arch_post_mm_init(void)
|
---|
106 | {
|
---|
107 | if (config.cpu_active == 1) {
|
---|
108 | /* Initialize IRQ routing */
|
---|
109 | irq_init(IRQ_COUNT, IRQ_COUNT);
|
---|
110 |
|
---|
111 | /* hard clock */
|
---|
112 | i8254_init();
|
---|
113 |
|
---|
114 | #ifdef CONFIG_FB
|
---|
115 | if (vesa_present())
|
---|
116 | vesa_init();
|
---|
117 | else
|
---|
118 | #endif
|
---|
119 | ega_init(EGA_BASE, EGA_VIDEORAM); /* video */
|
---|
120 |
|
---|
121 | /* Enable debugger */
|
---|
122 | debugger_init();
|
---|
123 | /* Merge all memory zones to 1 big zone */
|
---|
124 | zone_merge_all();
|
---|
125 | }
|
---|
126 | }
|
---|
127 |
|
---|
128 | void arch_post_cpu_init()
|
---|
129 | {
|
---|
130 | #ifdef CONFIG_SMP
|
---|
131 | if (config.cpu_active > 1) {
|
---|
132 | l_apic_init();
|
---|
133 | l_apic_debug();
|
---|
134 | }
|
---|
135 | #endif
|
---|
136 | }
|
---|
137 |
|
---|
138 | void arch_pre_smp_init(void)
|
---|
139 | {
|
---|
140 | if (config.cpu_active == 1) {
|
---|
141 | #ifdef CONFIG_SMP
|
---|
142 | acpi_init();
|
---|
143 | #endif /* CONFIG_SMP */
|
---|
144 | }
|
---|
145 | }
|
---|
146 |
|
---|
147 | void arch_post_smp_init(void)
|
---|
148 | {
|
---|
149 | devno_t devno = device_assign_devno();
|
---|
150 | /* keyboard controller */
|
---|
151 | (void) i8042_init((i8042_t *) I8042_BASE, devno, IRQ_KBD);
|
---|
152 |
|
---|
153 | /*
|
---|
154 | * This is the necessary evil until the userspace driver is entirely
|
---|
155 | * self-sufficient.
|
---|
156 | */
|
---|
157 | sysinfo_set_item_val("kbd", NULL, true);
|
---|
158 | sysinfo_set_item_val("kbd.devno", NULL, devno);
|
---|
159 | sysinfo_set_item_val("kbd.inr", NULL, IRQ_KBD);
|
---|
160 | }
|
---|
161 |
|
---|
162 | void calibrate_delay_loop(void)
|
---|
163 | {
|
---|
164 | i8254_calibrate_delay_loop();
|
---|
165 | if (config.cpu_active == 1) {
|
---|
166 | /*
|
---|
167 | * This has to be done only on UP.
|
---|
168 | * On SMP, i8254 is not used for time keeping and its interrupt pin remains masked.
|
---|
169 | */
|
---|
170 | i8254_normal_operation();
|
---|
171 | }
|
---|
172 | }
|
---|
173 |
|
---|
174 | /** Set thread-local-storage pointer
|
---|
175 | *
|
---|
176 | * TLS pointer is set in GS register. That means, the GS contains
|
---|
177 | * selector, and the descriptor->base is the correct address.
|
---|
178 | */
|
---|
179 | unative_t sys_tls_set(unative_t addr)
|
---|
180 | {
|
---|
181 | THREAD->arch.tls = addr;
|
---|
182 | set_tls_desc(addr);
|
---|
183 |
|
---|
184 | return 0;
|
---|
185 | }
|
---|
186 |
|
---|
187 | /** Acquire console back for kernel
|
---|
188 | *
|
---|
189 | */
|
---|
190 | void arch_grab_console(void)
|
---|
191 | {
|
---|
192 | #ifdef CONFIG_FB
|
---|
193 | vesa_redraw();
|
---|
194 | #else
|
---|
195 | ega_redraw();
|
---|
196 | #endif
|
---|
197 | }
|
---|
198 |
|
---|
199 | /** Return console to userspace
|
---|
200 | *
|
---|
201 | */
|
---|
202 | void arch_release_console(void)
|
---|
203 | {
|
---|
204 | }
|
---|
205 |
|
---|
206 | /** Construct function pointer
|
---|
207 | *
|
---|
208 | * @param fptr function pointer structure
|
---|
209 | * @param addr function address
|
---|
210 | * @param caller calling function address
|
---|
211 | *
|
---|
212 | * @return address of the function pointer
|
---|
213 | *
|
---|
214 | */
|
---|
215 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
|
---|
216 | {
|
---|
217 | return addr;
|
---|
218 | }
|
---|
219 |
|
---|
220 | /** @}
|
---|
221 | */
|
---|