Add simple cooperative threading scheme to allow parallel hw init.
[seabios.git] / src / post.c
1 // 32bit code to Power On Self Test (POST) a machine.
2 //
3 // Copyright (C) 2008,2009  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2002  MandrakeSoft S.A.
5 //
6 // This file may be distributed under the terms of the GNU LGPLv3 license.
7
8 #include "ioport.h" // PORT_*
9 #include "config.h" // CONFIG_*
10 #include "cmos.h" // CMOS_*
11 #include "util.h" // memset
12 #include "biosvar.h" // struct bios_data_area_s
13 #include "disk.h" // floppy_drive_setup
14 #include "ata.h" // ata_setup
15 #include "memmap.h" // add_e820
16 #include "pic.h" // pic_setup
17 #include "pci.h" // create_pirtable
18 #include "acpi.h" // acpi_bios_init
19 #include "bregs.h" // struct bregs
20 #include "mptable.h" // mptable_init
21 #include "boot.h" // IPL
22 #include "usb.h" // usb_setup
23 #include "smbios.h" // smbios_init
24 #include "paravirt.h" // qemu_cfg_port_probe
25
26 void
27 __set_irq(int vector, void *loc)
28 {
29     SET_IVT(vector, SEGOFF(SEG_BIOS, (u32)loc - BUILD_BIOS_ADDR));
30 }
31
32 #define set_irq(vector, func) do {              \
33         extern void func (void);                \
34         __set_irq(vector, func);                \
35     } while (0)
36
37 static void
38 init_ivt()
39 {
40     dprintf(3, "init ivt\n");
41
42     // Initialize all vectors to the default handler.
43     int i;
44     for (i=0; i<256; i++)
45         set_irq(i, entry_iret_official);
46
47     // Initialize all hw vectors to a default hw handler.
48     for (i=0x08; i<=0x0f; i++)
49         set_irq(i, entry_hwpic1);
50     for (i=0x70; i<=0x77; i++)
51         set_irq(i, entry_hwpic2);
52
53     // Initialize software handlers.
54     set_irq(0x02, entry_02);
55     set_irq(0x10, entry_10);
56     set_irq(0x11, entry_11);
57     set_irq(0x12, entry_12);
58     set_irq(0x13, entry_13_official);
59     set_irq(0x14, entry_14);
60     set_irq(0x15, entry_15);
61     set_irq(0x16, entry_16);
62     set_irq(0x17, entry_17);
63     set_irq(0x18, entry_18);
64     set_irq(0x19, entry_19_official);
65     set_irq(0x1a, entry_1a);
66     set_irq(0x40, entry_40);
67
68     // set vector 0x79 to zero
69     // this is used by 'gardian angel' protection system
70     SET_IVT(0x79, SEGOFF(0, 0));
71
72     __set_irq(0x1E, &diskette_param_table2);
73 }
74
75 static void
76 init_bda()
77 {
78     dprintf(3, "init bda\n");
79
80     struct bios_data_area_s *bda = MAKE_FLATPTR(SEG_BDA, 0);
81     memset(bda, 0, sizeof(*bda));
82
83     int esize = EBDA_SIZE_START;
84     SET_BDA(mem_size_kb, BUILD_LOWRAM_END/1024 - esize);
85     u16 eseg = EBDA_SEGMENT_START;
86     SET_BDA(ebda_seg, eseg);
87
88     // Init ebda
89     struct extended_bios_data_area_s *ebda = get_ebda_ptr();
90     memset(ebda, 0, sizeof(*ebda));
91     ebda->size = esize;
92 }
93
94 static void
95 ram_probe(void)
96 {
97     dprintf(3, "Find memory size\n");
98     if (CONFIG_COREBOOT) {
99         coreboot_setup();
100     } else {
101         // On emulators, get memory size from nvram.
102         u32 rs = ((inb_cmos(CMOS_MEM_EXTMEM2_LOW) << 16)
103                   | (inb_cmos(CMOS_MEM_EXTMEM2_HIGH) << 24));
104         if (rs)
105             rs += 16 * 1024 * 1024;
106         else
107             rs = (((inb_cmos(CMOS_MEM_EXTMEM_LOW) << 10)
108                    | (inb_cmos(CMOS_MEM_EXTMEM_HIGH) << 18))
109                   + 1 * 1024 * 1024);
110         RamSize = rs;
111         add_e820(0, rs, E820_RAM);
112
113         // Check for memory over 4Gig
114         u64 high = ((inb_cmos(CMOS_MEM_HIGHMEM_LOW) << 16)
115                     | (inb_cmos(CMOS_MEM_HIGHMEM_MID) << 24)
116                     | ((u64)inb_cmos(CMOS_MEM_HIGHMEM_HIGH) << 32));
117         RamSizeOver4G = high;
118         add_e820(0x100000000ull, high, E820_RAM);
119
120         /* reserve 256KB BIOS area at the end of 4 GB */
121         add_e820(0xfffc0000, 256*1024, E820_RESERVED);
122     }
123
124     // Don't declare any memory between 0xa0000 and 0x100000
125     add_e820(BUILD_LOWRAM_END, BUILD_BIOS_ADDR-BUILD_LOWRAM_END, E820_HOLE);
126
127     // Mark known areas as reserved.
128     u16 ebda_seg = get_ebda_seg();
129     add_e820((u32)MAKE_FLATPTR(ebda_seg, 0), GET_EBDA2(ebda_seg, size) * 1024
130              , E820_RESERVED);
131     add_e820(BUILD_BIOS_ADDR, BUILD_BIOS_SIZE, E820_RESERVED);
132
133     if (kvm_para_available())
134         // 4 pages before the bios, 3 pages for vmx tss pages, the
135         // other page for EPT real mode pagetable
136         add_e820(0xfffbc000, 4*4096, E820_RESERVED);
137
138     dprintf(1, "Ram Size=0x%08x\n", RamSize);
139 }
140
141 static void
142 init_bios_tables(void)
143 {
144     if (CONFIG_COREBOOT) {
145         coreboot_copy_biostable();
146         return;
147     }
148
149     create_pirtable();
150
151     mptable_init();
152
153     smbios_init();
154
155     acpi_bios_init();
156 }
157
158 // Main setup code.
159 static void
160 post()
161 {
162     init_ivt();
163     init_bda();
164
165     qemu_cfg_port_probe();
166
167     pic_setup();
168     timer_setup();
169     mathcp_setup();
170
171     smp_probe_setup();
172     memmap_setup();
173     ram_probe();
174     mtrr_setup();
175     smp_probe();
176     malloc_setup();
177     pmm_setup();
178
179     pci_setup();
180     smm_init();
181
182     pnp_setup();
183     vga_setup();
184
185     usb_setup();
186     kbd_setup();
187     lpt_setup();
188     serial_setup();
189     mouse_setup();
190
191     init_bios_tables();
192
193     boot_setup();
194
195     drive_setup();
196     cdemu_setup();
197     floppy_setup();
198     ata_setup();
199     ramdisk_setup();
200
201     wait_threads();
202     optionrom_setup();
203
204     // Run BCVs
205     boot_prep();
206
207     pmm_finalize();
208     malloc_finalize();
209     memmap_finalize();
210 }
211
212 // 32-bit entry point.
213 void VISIBLE32
214 _start()
215 {
216     init_dma();
217
218     debug_serial_setup();
219     dprintf(1, "Start bios (version %s)\n", VERSION);
220
221     // Allow writes to modify bios area (0xf0000)
222     make_bios_writable();
223
224     // Perform main setup code.
225     post();
226
227     // Setup bios checksum.
228     BiosChecksum -= checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE);
229
230     // Write protect bios memory.
231     make_bios_readonly();
232
233     // Invoke int 19 to start boot process.
234     dprintf(3, "Jump to int19\n");
235     struct bregs br;
236     memset(&br, 0, sizeof(br));
237     br.flags = F_IF;
238     call16_int(0x19, &br);
239 }