Rename MAKE_FARPTR (and similar) to MAKE_FLATPTR.
[seabios.git] / src / post.c
1 // 32bit code to Power On Self Test (POST) a machine.
2 //
3 // Copyright (C) 2008  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 "memmap.h" // add_e820
15 #include "pic.h" // pic_setup
16 #include "pci.h" // create_pirtable
17 #include "acpi.h" // acpi_bios_init
18 #include "bregs.h" // struct bregs
19 #include "boot.h" // IPL
20
21 void
22 __set_irq(int vector, void *loc)
23 {
24     SET_IVT(vector, SEG_BIOS, (u32)loc - BUILD_BIOS_ADDR);
25 }
26
27 #define set_irq(vector, func) do {              \
28         extern void func (void);                \
29         __set_irq(vector, func);                \
30     } while (0)
31
32 static void
33 init_ivt()
34 {
35     dprintf(3, "init ivt\n");
36
37     // Initialize all vectors to the default handler.
38     int i;
39     for (i=0; i<256; i++)
40         set_irq(i, entry_iret_official);
41
42     // Initialize all hw vectors to a default hw handler.
43     for (i=0x08; i<=0x0f; i++)
44         set_irq(i, entry_hwpic1);
45     for (i=0x70; i<=0x77; i++)
46         set_irq(i, entry_hwpic2);
47
48     // Initialize software handlers.
49     set_irq(0x10, entry_10);
50     set_irq(0x11, entry_11_official);
51     set_irq(0x12, entry_12_official);
52     set_irq(0x13, entry_13_official);
53     set_irq(0x14, entry_14);
54     set_irq(0x15, entry_15);
55     set_irq(0x16, entry_16);
56     set_irq(0x17, entry_17);
57     set_irq(0x18, entry_18);
58     set_irq(0x19, entry_19_official);
59     set_irq(0x1a, entry_1a);
60     set_irq(0x1c, entry_1c);
61     set_irq(0x40, entry_40);
62
63     // set vector 0x79 to zero
64     // this is used by 'gardian angel' protection system
65     SET_IVT(0x79, 0, 0);
66
67     __set_irq(0x1E, &diskette_param_table2);
68 }
69
70 static void
71 init_bda()
72 {
73     dprintf(3, "init bda\n");
74
75     struct bios_data_area_s *bda = MAKE_FLATPTR(SEG_BDA, 0);
76     memset(bda, 0, sizeof(*bda));
77
78     int esize = DIV_ROUND_UP(sizeof(struct extended_bios_data_area_s), 1024);
79     SET_BDA(mem_size_kb, 640 - esize);
80     u16 eseg = FLATPTR_TO_SEG((640 - esize) * 1024);
81     SET_BDA(ebda_seg, eseg);
82
83     struct extended_bios_data_area_s *ebda = get_ebda_ptr();
84     memset(ebda, 0, sizeof(*ebda));
85     ebda->size = esize;
86     SET_IVT(0x41, eseg, offsetof(struct extended_bios_data_area_s, fdpt[0]));
87     SET_IVT(0x46, eseg, offsetof(struct extended_bios_data_area_s, fdpt[1]));
88 }
89
90 static void
91 ram_probe(void)
92 {
93     dprintf(3, "Find memory size\n");
94     if (CONFIG_COREBOOT) {
95         coreboot_fill_map();
96     } else {
97         // On emulators, get memory size from nvram.
98         u32 rs = ((inb_cmos(CMOS_MEM_EXTMEM2_LOW) << 16)
99                   | (inb_cmos(CMOS_MEM_EXTMEM2_HIGH) << 24));
100         if (rs)
101             rs += 16 * 1024 * 1024;
102         else
103             rs = (((inb_cmos(CMOS_MEM_EXTMEM_LOW) << 10)
104                    | (inb_cmos(CMOS_MEM_EXTMEM_HIGH) << 18))
105                   + 1 * 1024 * 1024);
106         RamSize = rs;
107         add_e820(0, rs, E820_RAM);
108
109         // Check for memory over 4Gig
110         u64 high = ((inb_cmos(CMOS_MEM_HIGHMEM_LOW) << 16)
111                     | (inb_cmos(CMOS_MEM_HIGHMEM_MID) << 24)
112                     | ((u64)inb_cmos(CMOS_MEM_HIGHMEM_HIGH) << 32));
113         RamSizeOver4G = high;
114         add_e820(0x100000000ull, high, E820_RAM);
115
116         /* reserve 256KB BIOS area at the end of 4 GB */
117         add_e820(0xfffc0000, 256*1024, E820_RESERVED);
118     }
119
120     // Don't declare any memory between 0xa0000 and 0x100000
121     add_e820(0xa0000, 0x50000, E820_HOLE);
122
123     // Mark known areas as reserved.
124     u16 ebda_seg = get_ebda_seg();
125     add_e820((u32)MAKE_FLATPTR(ebda_seg, 0), GET_EBDA2(ebda_seg, size) * 1024
126              , E820_RESERVED);
127     add_e820(BUILD_BIOS_ADDR, BUILD_BIOS_SIZE, E820_RESERVED);
128
129     if (CONFIG_KVM)
130         // 4 pages before the bios, 3 pages for vmx tss pages, the
131         // other page for EPT real mode pagetable
132         add_e820(0xfffbc000, 4*4096, E820_RESERVED);
133
134     dprintf(1, "Ram Size=0x%08x\n", RamSize);
135 }
136
137 static void
138 init_bios_tables(void)
139 {
140     if (CONFIG_COREBOOT)
141         // XXX - not supported on coreboot yet.
142         return;
143
144     create_pirtable();
145
146     mptable_init();
147
148     smbios_init();
149
150     acpi_bios_init();
151 }
152
153 static void
154 init_boot_vectors()
155 {
156     if (! CONFIG_BOOT)
157         return;
158     dprintf(3, "init boot device ordering\n");
159
160     // Floppy drive
161     struct ipl_entry_s *ip = &IPL.table[0];
162     ip->type = IPL_TYPE_FLOPPY;
163     ip++;
164
165     // First HDD
166     ip->type = IPL_TYPE_HARDDISK;
167     ip++;
168
169     // CDROM
170     if (CONFIG_CDROM_BOOT) {
171         ip->type = IPL_TYPE_CDROM;
172         ip++;
173     }
174
175     IPL.count = ip - IPL.table;
176     SET_EBDA(boot_sequence, 0xffff);
177     if (CONFIG_COREBOOT) {
178         // XXX - hardcode defaults for coreboot.
179         IPL.bootorder = 0x00000231;
180         IPL.checkfloppysig = 1;
181     } else {
182         // On emulators, get boot order from nvram.
183         IPL.bootorder = (inb_cmos(CMOS_BIOS_BOOTFLAG2)
184                          | ((inb_cmos(CMOS_BIOS_BOOTFLAG1) & 0xf0) << 4));
185         if (!(inb_cmos(CMOS_BIOS_BOOTFLAG1) & 1))
186             IPL.checkfloppysig = 1;
187     }
188 }
189
190 // Main setup code.
191 static void
192 post()
193 {
194     init_ivt();
195     init_bda();
196
197     pic_setup();
198     timer_setup();
199     mathcp_setup();
200
201     smp_probe_setup();
202
203     memmap_setup();
204     ram_probe();
205     mtrr_setup();
206
207     pnp_setup();
208     vga_setup();
209
210     kbd_setup();
211     lpt_setup();
212     serial_setup();
213     mouse_setup();
214
215     pci_bios_setup();
216     smm_init();
217
218     init_bios_tables();
219     memmap_finalize();
220
221     floppy_drive_setup();
222     hard_drive_setup();
223
224     init_boot_vectors();
225
226     optionrom_setup();
227 }
228
229 // 32-bit entry point.
230 void VISIBLE32
231 _start()
232 {
233     init_dma();
234
235     debug_serial_setup();
236     dprintf(1, "Start bios\n");
237
238     // Allow writes to modify bios area (0xf0000)
239     make_bios_writable();
240
241     // Perform main setup code.
242     post();
243
244     // Present the user with a bootup menu.
245     interactive_bootmenu();
246
247     // Setup bios checksum.
248     BiosChecksum = -checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE - 1);
249
250     // Prep for boot process.
251     make_bios_readonly();
252
253     // Invoke int 19 to start boot process.
254     dprintf(3, "Jump to int19\n");
255     struct bregs br;
256     memset(&br, 0, sizeof(br));
257     call16_int(0x19, &br);
258 }
259
260 // Ughh - some older gcc compilers have a bug which causes VISIBLE32
261 // functions to not be exported as a global variable - force _start
262 // to be global here.
263 asm(".global _start");