Many BIOSes do not construct the full system memory map until after calling the option ROM initialisation entry points. For several years, we have added sanity checks and workarounds to accommodate charming quirks such as BIOSes which report the entire 32-bit address space (including all memory-mapped PCI BARs) as being usable RAM. The IBM x3650 takes quirky behaviour to a new extreme. Calling either INT 15,e820 or INT 15,e801 during POST doesn't just get you invalid data. We could cope with invalid data. Instead, these nominally read-only API calls manage to trash some internal BIOS state, with the result that the system memory map is _never_ constructed. This tends to confuse subsequent bootloaders and operating systems. [ GRUB 0.97 fails in a particularly amusing way. Someone thought it would be a good idea for memcpy() to check that the destination memory region is a valid part of the system memory map; if not, then memcpy() will sulk, fail, and return NULL. This breaks pretty much every use of memcpy() including, for example, those inserted implicitly by gcc to copy non-const initialisers. Debugging is _fun_ when a simple call to printf() manages to create an infinite recursion, exhaust the available stack space, and shut down the CPU. ] Fix by completely inhibiting calls to INT 15,e820 and INT 15,e801 during POST. We do now allow relocation during POST up to the maximum address returned by INT 15,88 (which seems so far to always be safe). This allows us to continue to have a reasonable size of external heap, even if the PMM allocation is close to the 1MB mark. The downside of allowing relocation during POST is that we may overwrite PMM-allocated memory in use by other option ROMs. However, the downside of inhibiting relocation, when combined with also inhibiting calls to INT 15,e820 and INT 15,e801, would be that we might have no external heap available: this would make booting an OS impossible and could prevent some devices from even completing initialisation. On balance, the lesser evil is probably to allow relocation during POST (up to the limit provided by INT 15,88). Entering iPXE during POST is a rare operation; on the even rarer systems where doing so happens to overwrite a PMM-allocated region, then there exists a fairly simple workaround: if the user enters iPXE during POST and wishes to exit iPXE, then the user must reboot. This is an acceptable cost, given the rarity of the situation and the simplicity of the workaround. Signed-off-by: Michael Brown <mcb30@ipxe.org>tags/v1.20.1
|
|
||
33 |
|
33 |
|
34 |
|
34 |
|
35 |
|
35 |
|
36 |
|
|
|
37 |
|
|
|
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
|
39 |
|
|
38 |
|
40 |
|
39 |
|
41 |
|
40 |
|
42 |
|
|
|
||
59 |
|
61 |
|
60 |
|
62 |
|
61 |
|
63 |
|
62 |
|
|
|
|
64 |
|
|
63 |
|
65 |
|
64 |
|
66 |
|
65 |
|
67 |
|
|
|
||
63 |
|
63 |
|
64 |
|
64 |
|
65 |
|
65 |
|
|
66 |
|
|
|
67 |
|
|
|
68 |
|
|
|
69 |
|
|
66 |
|
70 |
|
67 |
|
71 |
|
68 |
|
72 |
|
|
|
||
74 |
|
78 |
|
75 |
|
79 |
|
76 |
|
80 |
|
|
81 |
|
|
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
|
85 |
|
|
|
86 |
|
|
77 |
|
87 |
|
78 |
|
88 |
|
79 |
|
89 |
|
|
|
||
164 |
|
174 |
|
165 |
|
175 |
|
166 |
|
176 |
|
|
177 |
|
|
|
178 |
|
|
|
179 |
|
|
|
180 |
|
|
|
181 |
|
|
|
182 |
|
|
167 |
|
183 |
|
168 |
|
184 |
|
169 |
|
185 |
|
|
|
||
114 |
|
114 |
|
115 |
|
115 |
|
116 |
|
116 |
|
117 |
|
|
|
|
117 |
|
|
118 |
|
118 |
|
119 |
|
119 |
|
120 |
|
120 |
|
|
|
||
622 |
|
622 |
|
623 |
|
623 |
|
624 |
|
624 |
|
625 |
|
|
|
|
625 |
|
|
626 |
|
626 |
|
627 |
|
627 |
|
628 |
|
628 |
|
|
|
||
642 |
|
642 |
|
643 |
|
643 |
|
644 |
|
644 |
|
645 |
|
|
|
|
645 |
|
|
|
646 |
|
|
|
647 |
|
|
646 |
|
648 |
|
647 |
|
649 |
|
648 |
|
650 |
|
|
|
||
796 |
|
798 |
|
797 |
|
799 |
|
798 |
|
800 |
|
|
801 |
|
|
|
802 |
|
|
|
803 |
|
|
|
804 |
|
|
|
805 |
|
|
|
806 |
|
|
|
807 |
|
|
799 |
|
808 |
|
800 |
|
809 |
|
801 |
|
810 |
|
|
|
||
445 |
|
445 |
|
446 |
|
446 |
|
447 |
|
447 |
|
448 |
|
|
|
|
448 |
|
|
449 |
|
449 |
|
450 |
|
450 |
|
451 |
|
451 |
|
|
|
||
630 |
|
630 |
|
631 |
|
631 |
|
632 |
|
632 |
|
633 |
|
|
|
|
633 |
|
|
634 |
|
634 |
|
635 |
|
635 |
|
636 |
|
636 |
|
|
|
||
665 |
|
665 |
|
666 |
|
666 |
|
667 |
|
667 |
|
668 |
|
|
|
|
668 |
|
|
669 |
|
669 |
|
670 |
|
670 |
|
671 |
|
671 |
|
|
|
||
31 |
|
31 |
|
32 |
|
32 |
|
33 |
|
33 |
|
34 |
|
|
|
|
34 |
|
|
35 |
|
35 |
|
36 |
|
36 |
|
37 |
|
37 |
|