1.2 Loading the OS Kernel and Preparing for the Protected Mode
1.2.3 Load the System Module
The second part of codes has loaded into the memory, followed by the third part. We call the INT 0x 13h interrupt to load the code, as shown in Figure 1.11.
Next, Bootsect will load the system module into the memory. There is no signifi- cant difference between this procedure and previous ones. The only difference is that the number of sectors is 240, which is 60 times greater than previous ones and a bit time- consuming. In order to prohibit any improper operation by the user while waiting, Linux printed out a message, “Loading system…,” to indicate that the computer is still working.
Since the main function of the OS has not started, it is much more difficult than C to do so, as all should be done by the assembly code. From an architectural perspective, the monitor is also a peripheral device, and it can be operated by calling BIOS interrupt. But
0x00000 SETUPSEG=0x9020 0xFFFFF
ROM BIOS and VGA
0x07C00
0 DISK 0 Track 2~5sector (generated by setup.s)
INITSEG=0x9000
Read floopy data...
Figure 1.10 Load the setup program.
since they are not particularly helpful for us to understand the OS, we will not discuss this further. We should know that Bootsect loads 240 sectors of the system module into the memory after INT 0x 13h. The main function is done by loading the 240 sectors into SYSSEG(0X10000). Figure 1.12 shows the memory space that is occupied by the system module.
Because reading a floppy disk is very time-consuming, it is necessary to monitor the whole process and check the results. Reading consists of many steps, and it can be done by 0x13h interrupt service in the end.
Now, the OS has been loaded into the memory as a whole. Bootsect has almost done all its work except inspecting the root device number, as shown in Figure 1.13.
After inspecting, the root device number is saved in root_dev, which is part of system data.
0x00000 0xFFFFF
ROM BIOS and VGA Interrupt vector table BIOS data area Interrupt service program
0x00000 0x003FF 0x00400 0x004FF 0x0E05B 0x0FFFE
0x13 Interrupt 0x0E6FE
Disk service program Figure 1.11 Call INT 0x 13h interrupt.
0x00000 0xFFFFF
ROM BIOS and VGA SYSSEG=0x10000 0 Disk 0 Track 6 Sector almost 240 sectors
(Kernel program)
Read floppy data...
Figure 1.12 Load the system module.
Tip:
Root Device: Linux 0.11 used the file system management which was used by Minix, which requires that the system must have a root file system. Linux 0.11 does not provide tools to build a file system on a device, so it creates a file system and then loads to the machine using tools like FDISK and Format. Linux 0.11 has a system kernel image and root file system.
Here, the file system does not refer to the traditional file system in the OS but the device, for example, a formatted floppy disk.
Now, Bootsect has done all its tasks.
The execution of “jmpi 0, SETUPSEG” will jump to 0x90200, which is the location of setup, while CS:IP points to the first instruction of setup. It means that the setup program will do the work after Bootsect. Figure 1.14 describes the initial state right after jumping to the setup program.
//code path:boot/bootsect.s Jmpi 0, SETUPSEG
Setup begins to work. The first task is to extract the system data by calling the inter- rupt service. It will also get the hard disk parameter table 1 and hard disk parameter table 2 from the memory, which is pointed by the 0x41 and 0x46 vectors, and then save them in 0x9000:0x0080 and 0x9000:0x0090.
0x00000 0xFFFFF
ROM BIOS and VGA 0x1a964
ROOT_DEV=0?
Root_dev already set
(ROOT_DEV=0) Sector number
15 18
ROOT_DEV=0x0208
(dev/at0(2,8)) ROOT_DEV=0x021C
(/dev/PS0(2,28))
Root_dev = 2 Minor_dev = type*4+nr
2(1.2 MB) 7(1.44 MB)
0-A DRIVER 1-B DRIVER 2-C DRIVER 3-D DRIVER
Figure 1.13 Confirm the root device number.
The system data are loaded into 0x90000–0x901FC. Figure 1.15 shows its content and position precisely, and they play an important role in the main function.
//code path:boot/setup.s Mov ax, #INITSEG
Mov ds, ax Mov ah, #0x03 Xor bh, bh Int 0x10 Mov [0], dx
! Get memory size (extended mem, KB) Mov ah, #0x88
Int 0x15 Mov [2], ax
0x00000 Stack (the enlarged direction
of the stack) 0xFFFFF ROM BIOS and VGA 0x9FF00
SP 0xFF00
SETUPSEG=0x9020 INITSET=0x9000
DSES SS
CS : IP 0x9020:0
Figure 1.14 Setup begins to execute.
0x00000 Stack 0xFFFFF
ROM BIOS and VGA INITSEG=0x9000
! Attention, 2 bytes are not covered
0x90000 0x901FD0x901FF
Memory Length Name Description
0x90000 0x90002 0x90004 0x90006 0x90007 0x90008 0x9000A 0x9000B 0x9000C . . . 0x90080 0x90090 0x901FC
2 2 2 1 1 2 1 1 2 16 16 2
cursor extend memory
display page display mode character column
??
display memory display state
parameter cursor position disk parameter disk parameter root_dev
column(0x00-left) row (0x00-right) display the current page
extend memory array from 1MB position
memory (0x00-64k,0x01-128,0x02-192k,0x03=256k) 0x00-color I/O=0x3dX; 0x01-monochrome,I/O=3bx display card characteristic parameters
The first disk’s parameter The second disk’s parameter The device number of root file system
Figure 1.15 Load the machine system data.
…
…
Mov cx, #ox10 Mov ax,#0x00 Rep
stosb
The system data extracted by BIOS will cover part of Bootsect, and some data cannot be covered since they are still being used.
Review
The system data takes up memory space from 0x90000 to 0x901FD, which is 510 bytes in total. The Bootsect only has 2 bytes left. The OS is strict to using memory, and it uses memory according to its need. The loaded data just take up one sector, and the size of Bootsect is also one sector. The released memory will be used by other routines immediately. After Bootsect has completed its task, the setup puts its data to cover the exact space, and the efficiency of memory usage is very high.
Now, the core part of the OS has been loaded completely. Then, the system will trans- fer from the real address mode to the protected mode.