Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/doc/bootpc.ms

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


.HTML "Bootstrapping Plan 9 on PCs
.de Os\" overstrike argument
\\$1\l'|0–'
..
.
.TL
Bootstrapping Plan 9 on PCs
.AU
Geoff Collyer
.br
.CW geoff@plan9.bell-labs.com
.AI
.MH
.AB
What's interesting or tricky about bootstrapping Plan 9 on PCs?
.AE
.
.SH
Introduction
.LP
Plan 9 has new PC bootstraps,
.I 9boot
and
.I 9load,
replacing the decade-old
.I 9pxeload
and
.I 9load
programs.
What did we learn while writing them?
.SH
PC Constraints
.LP
The IBM PC imposes quite a few constraints on bootstrap programs
(programs that load operating system kernels).
A PC starts executing in 16-bit `real' (Intel 8086) mode
and has no boot monitor, as other machines do,
just a primitive BIOS that will perform a power-on self-test (POST)
and attempt to read boot sectors
from disks or load a modest payload from the network via TFTP.
(Actually some new machines have slightly less primitive
boot loaders called (U)EFI, but we don't deal with EFI.)
The boot sectors must load further bootstrap programs
that resemble the TFTP payload.
These bootstrap programs can only address the first megabyte of memory
until they get out of real mode,
and even then the upper 384KB of the initial megabyte is reserved
for device ROMs.
.LP
BIOS calls (via the
.CW INT
instruction)
only work in real mode,
so the bootstraps execute BIOS calls to learn the machine's
memory map and power management configuration,
and stash the results in the first megabyte
for later retrieval by the loaded kernel.
Empirically, some BIOSes enable interrupts (with
.CW STI
instructions)
during BIOS calls,
so the bootstraps disable them again after each call;
failure to do so often results in an interrupt,
perhaps from the clock, resetting the machine.
.CW 9loadusb
returns briefly to real mode
to read USB devices and has mixed results with that.
.LP
Getting into 32-bit protected mode permits addressing the first 4GB of memory,
but first it is necessary to enable the A20 address line (the
.CW 1<<20
bit).
For (extreme) backward compatibility, this bit is normally held to zero
until software requests that it be released, and holding it to zero will cause
references to the second megabyte to be mapped to the first, etc.,
causing bizarre-seeming memory corruption.
The old technique was to ask the keyboard controller to release it,
but some systems now have no keyboard controller (they are servers
or have USB keyboards).
We have found it necessary to keep trying different methods until one succeeds
and is verified to have succeeded.
The new bootstraps also try an
.CW INT
.CW 15
BIOS call and
manipulation of port
.CW 0x92
(`system control' on some systems).
.LP
Even in protected mode with A20 enabled, some systems
force a gap in the physical address space between 15MB and 16MB,
which must be avoided.
.
.SH
Plan 9 Requirements
.IP • 3
The new bootstraps must be able to load 64-bit
.CW amd64
kernels as well as
.CW 386
ones.
In addition to Plan 9 boot image format,
the new bootstraps understand ELF and ELF64 formats.
.IP •
Plan 9 kernels need to be started in 32-bit protected mode and
implicitly assume that A20 is enabled.
.IP •
They expect a parsed
.CW /cfg/pxe/\fIether
or
.CW plan9.ini
file to be present at physical address
.CW 0x1200
and that
.I 9load
will have added entries to it describing
any disk partitions found.
(\c
.I 9boot
does not do this and so kernels loaded by it
that care about disk partitions will need
.CW readparts=
in
.CW plan9.ini .)
.IP •
They expect automatic power management information obtained from the
BIOS to be present in the first megabyte.
.IP •
Our
.CW amd64
kernels (9k, Nix, etc.)
also expect a Gnu
.I multiboot
header containing any arguments and a memory map.
.
.SH
Non-Requirements
.IP • 3
The bootstraps should ignore secondary processors, leaving them in reset.
.IP •
The bootstraps need not do anything with floating point.
.
.SH
Techniques and Tricks
.LP
Our new bootstraps are stripped-down Plan 9 PC kernels
without system calls and user mode processes.
They share the vast majority of their code with the ordinary PC kernels;
about 10,000 lines of C are new or different in the bootstraps.
In particular, they use the ordinary PC kernel's device drivers,
unmodified.
.I 9boot
loads kernels via PXE;
.I 9load
loads kernels from disk.
This is more specialised than the old all-in-one
.I 9load .
.LP
From protected mode,
the bootstraps initially enable paging for their own use.
Before jumping to the loaded kernel, they revert
to 32-bit protected mode, providing a known initial CPU state
for the kernels.
.LP
Self-decompression of the bootstraps
can help to relieve the 512KB/640KB payload limit.
Russ Cox's decompressing header* code is about 9K all told,
.FS
* see
.CW http://plan9.bell-labs.com/wiki/plan9/Replacing_9load
.FE
including BIOS calls to get APM and E820 memory map info.
We only bother with this currently for
.I 9boot .
The bootstraps also will decompress
.I gzip -ped
kernels loaded from disk,
mainly for CD or floppy booting, where they are limits on kernel size.
.LP
Figure 1 shows the memory map in effect while the bootstraps run.
.KF
.TS
center ;
cb s ,
n cw(3i) .
Figure 1: Layout of physical memory during bootstrapping
.sp 0.3v
0	misc., including bios data area
_
31K	T{
start of pxe decomp + compressed 9boot.
decompresses to 9MB.
T}
_
64K	T{
start of pbs
T}
_
512K	pxe loader from ROM
_
640K	UMB; device ROMs
_
1M	kernel
_
9M	T{
9boot after decomp.
(decompresses kernel.gz at 13M.)
loads kernel at 1M.
T}
_
13M	(kernel.gz)
_
15M	no-man's land
_
16M	malloc arena for 9boot
\&...
.TE
.KE
.LP
Our USB stack (at least 3 HCI drivers plus user-mode drivers,
implying system calls and user-mode support) is too big
to fit in the first 640KB,
so the bootstraps try to get BIOSes to read from USB devices
and some of them do.
.LP
We strongly prefer PXE booting; disk booting is a poor second.
PXE booting minimises the number of copies of kernels that must
be updated and ensures that machines boot the latest kernels.
Reading via 9P (as user
.I none )
would be even better: just read
.CW /cfg/pxe/$ether
and
.CW /386/9pccpu .
This would probably require adding
.CW devmnt
back into the bootstrap kernels.
.
.br
.ne 6
.SH
Future
.Os Horrors
Directions
.LP
We haven't dealt at all with (U)EFI, `secure boot', GPTs nor GUIDs.
We can use Plan 9 partition tables instead of GPTs to address disks larger
than 2 TB.
.
.SH
Lessons Learned
.LP
A disabled A20 line can masquerade as all sorts of baffling problems.
It is well worth ensuring that it is truly enabled.
.LP
Virtual-machine hypervisors can be good test-beds and provide
better crash diagnostics than the
blank screen you get on real hardware,
but they can also mislead
(e.g.,
.CW amd64
kernels on Virtualbox,
Vmware 7 on Ubuntu 12.04).
.LP
All of these bootstrap programs and the BIOS (and POST) can be avoided,
once Plan 9 is running,
by using
.CW /dev/reboot
as packaged up in
.I fshalt (8),
which is much faster.

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.