wok annotate linld/stuff/src/LOAD.CPP @ rev 24998

Up rp-pppoe (3.15)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 16 10:11:22 2022 +0000 (2022-05-16)
parents 217c02cbbe8d
children
rev   line source
pascal@19515 1 // This file is distributed under GPL
pascal@19515 2
pascal@19515 3 #include "crtl.h"
pascal@19515 4 #include "common.h"
pascal@19515 5
pascal@19515 6 /***************
pascal@19515 7 Memory layout assumed by kernel boot process
pascal@19515 8 --------------------------------------------
pascal@19515 9 Note: claims that kernel setup is relocatable are
pascal@19515 10 still not 100% valid:
pascal@19515 11 bzImage decompressing trashes 10000-8ffff range,
pascal@19515 12 so rm loader -> pm kernel info is lost if it was here...
pascal@19515 13 So I had to stick to 90000.
pascal@19515 14
pascal@19515 15 10000000+------------------------+ <- 256m
pascal@19515 16 | initrd | initrd is at top of mem, but
pascal@19515 17 | | not higher than 256m
pascal@19515 18 +------------------------+
pascal@19515 19 +------------------------+
pascal@19515 20 | bzImage | bzImage is at 1m
pascal@19515 21 | | VCPI/XMS/64k offset tricks used...
pascal@19515 22 00100000+------------------------+ <- 1m
pascal@19515 23 | video, BIOS etc | Do not use.
pascal@19515 24 000A0000+------------------------+
pascal@19515 25 | Reserved for BIOS | Do not use. Reserved for BIOS EBDA.
pascal@19515 26 0009A000+------------------------+ <- stack top for kernel rm code
pascal@19515 27 | Cmdline |
pascal@19515 28 00098000+------------------------+ <- heap top for kernel rm code
pascal@19515 29 | Kernel setup | The kernel real-mode code.
pascal@19515 30 00090200+------------------------+
pascal@19515 31 | Kernel boot sector | The kernel legacy boot sector.
pascal@19515 32 00090000+------------------------+
pascal@19515 33 | Zapped by ungzip | Historically zImages were loaded here
pascal@19515 34 | (zImage once was here) | bzImages use this space for ungzipping
pascal@19515 35 00010000+------------------------+
pascal@19515 36 | Boot loader | <- Boot sector entry point 0000:7C00
pascal@19515 37 00001000+------------------------+
pascal@19515 38 | Reserved for MBR/BIOS |
pascal@19515 39 00000800+------------------------+
pascal@19515 40 | Typically used by MBR |
pascal@19515 41 00000600+------------------------+
pascal@19515 42 | BIOS use only |
pascal@19515 43 00000000+------------------------+
pascal@19515 44 */
pascal@19515 45
pascal@19538 46 struct kernelparams_t {
pascal@20458 47 s8 setup_sects; // 01F1 The size of the setup in sectors
pascal@19515 48 // boot sector is NOT included here
pascal@19515 49 u16 ro_flag; // 01F2 If set, the root is mounted readonly
pascal@19515 50 u16 syssize; // 01F4 DO NOT USE - for bootsect.S use only:
pascal@19515 51 // size of pm part of kernel
pascal@19515 52 // (in 16 byte units, rounded up)
pascal@19515 53 u16 swap_dev; // 01F6 DO NOT USE - obsolete
pascal@19515 54 u16 ram_size; // 01F8 DO NOT USE - for bootsect.S use only:
pascal@19515 55 // if nonzero then kernel
pascal@19515 56 // (driver/block/ramdisk.c: rd_load())
pascal@19515 57 // will try to load the contents for the ramdisk
pascal@19515 58 // from the "root_dev" which MUST then have the
pascal@19515 59 // floppyMAJOR
pascal@19515 60 // The file-system on that floppy must be MINIX
pascal@19515 61 // If rd_load() succeeds it sets the root_dev
pascal@19515 62 // to the ramdisk for mounting it
pascal@23996 63 u16 vidmode; // 01FA Video mode control
pascal@23996 64 u16 rootdev; // 01FC Default root device number
pascal@19515 65 u16 boot_flag; // 01FE 0xAA55 magic number
pascal@19515 66 u16 jump; // 0200 Jump instruction
pascal@19515 67 u32 header; // 0202 Magic signature "HdrS"
pascal@19515 68 u16 version; // 0206 Boot protocol version supported
pascal@19515 69 u16 realmode_switch_ofs; // 0208 Hook called just before rm->pm
pascal@19515 70 u16 realmode_switch_seg;
pascal@19515 71 u16 start_sys_seg; // 020E
pascal@19515 72 u16 kernel_version; // 020C Points to kernel version string
pascal@19515 73 u8 type_of_loader; // 0210 Boot loader identifier
pascal@19515 74 u8 loadflags; // 0211 Boot protocol option flags
pascal@19515 75 u16 setup_move_size;// 0212 Move to high memory size (used with hooks)
pascal@19515 76 u32 code32_start; // 0214 Boot loader hook (see below)
pascal@19515 77 u32 initrd_buf; // 0218 initrd load address (set by boot loader)
pascal@19515 78 u32 initrd_size; // 021C initrd size (set by boot loader)
pascal@19515 79 u32 bootsect_kludge;// 0220 DO NOT USE - for bootsect.S use only
pascal@19515 80 u16 heap_end_ptr; // 0224 Free memory after setup end
pascal@19515 81 u16 pad1; // 0226 Unused
pascal@19515 82 u32 cmd_line_ptr; // 0228 32-bit pointer to the kernel command line
pascal@19515 83 u8 pad30[0x400-0x22c]; // 022C
pascal@19515 84 // 02D0 up to 32 20-byte mem info structs from
pascal@19515 85 // int 0x15 fn 0xe820
pascal@19515 86 }; //__attribute((packed));
pascal@19515 87
pascal@19538 88 struct first1k_t {
pascal@19538 89 // these two set by rm setup:
pascal@19538 90 u16 curr_curs; // 0000 saved cursor position
pascal@19538 91 u16 ext_mem_size; // 0002 extended memory size in Kb (from int 0x15 fn 0x88)
pascal@19538 92 u8 pad00[0x20-4];
pascal@19538 93 // old-style cmdline (not used in LINLD (yet?))
pascal@19636 94 u32 cl_magic_ofs;
pascal@19636 95 //u16 cl_magic; // 0020 commandline magic number (=0xA33F)
pascal@19636 96 //u16 cl_ofs; // 0022 commandline offset
pascal@19538 97 u8 pad10[0x80-0x24];
pascal@19538 98 // these two set by rm setup:
pascal@19538 99 u8 hd0_disk_par[16]; // 0080 hd0-disk-parameter from intvector 0x41
pascal@19538 100 u8 hd1_disk_par[16]; // 0090 hd1-disk-parameter from intvector 0x46
pascal@19538 101 u8 pad20[0x01e0-0xa0];
pascal@19538 102 // this is set by rm setup:
pascal@19538 103 u32 alt_mem_size; // 01E0 extended memory size in Kb (from int 0x15 fn 0xe801)
pascal@19571 104 u8 pad28[0x01f1-0x1e4];
pascal@19538 105 struct kernelparams_t params;
pascal@19538 106 }; //__attribute((packed));
pascal@19538 107
pascal@19515 108 #if sizeof(first1k_t)!=0x400
pascal@19515 109 #error BUG: Bad first1k
pascal@19515 110 #endif
pascal@19515 111
pascal@19515 112 const u32 HdrS = 'H' + ('d'<<8) + (u32('r')<<16) + (u32('S')<<24);
pascal@19515 113
pascal@19515 114 #ifdef NO386
pascal@19515 115 extern "C" u16 topseg();
pascal@19515 116 #else
pascal@19515 117 #define topseg() 0x9000
pascal@19515 118 #endif
pascal@20745 119
pascal@22170 120 void load_kernel() {
pascal@19515 121
pascal@19636 122 struct image_himem *m = &pm;
pascal@20634 123 #define _rm_buf(m) (((u8**)(m))[-1])
pascal@22179 124 #define _rm_size (((u16*)(m))[-2])
pascal@19515 125 {
pascal@19538 126 struct kernelparams_t *kernelparams;
pascal@21757 127 kernelparams = &(((first1k_t*) (_rm_buf(m) = (u8 *)heap_top))->params);
pascal@19636 128 #define first1k ((first1k_t*)((u8 *)kernelparams-0x1F1))
pascal@19515 129
pascal@20751 130 // Open kernel, read first kb, check it
pascal@21649 131 open_image(m, kernel_name);
pascal@20751 132
pascal@20510 133 do {
pascal@22676 134 readrm(m, 0x200);
pascal@22632 135 rewind(m->fd);
pascal@19571 136 if(kernelparams->setup_sects == 0) {
pascal@24019 137 #ifdef LINUX001
pascal@19515 138 if(* (int *) &first1k->pad10[0x3F-0x24] == 0x3AE8) {
pascal@22288 139 extern u16 csip_hilo;
pascal@22288 140 csip_hilo=0x0042;
pascal@19515 141 }
pascal@21628 142 else
pascal@19515 143 #endif
pascal@19538 144 kernelparams->setup_sects=4;
pascal@19515 145 }
pascal@19636 146 if((kernelparams->setup_sects)>=(_32k/512) || // 0th sector not counted
pascal@19636 147 kernelparams->boot_flag != 0xAA55)
pascal@23996 148 die("Not a kernel");
pascal@21757 149 _rm_size=0x200*(kernelparams->setup_sects+1);
pascal@20632 150 m->size -= _rm_size;
pascal@20632 151 m->chunk_size -= _rm_size;
pascal@19515 152
pascal@19515 153 // Read remaining rm loader
pascal@20751 154 if (readrm(m, _rm_size) == _rm_size) break;
pascal@23996 155 loadfailure();
pascal@20510 156 } while (0);
pascal@19515 157
pascal@19515 158 // Tell rm loader some info
pascal@19515 159
pascal@23996 160 if((int)vid_mode) kernelparams->vidmode = vid_mode;
pascal@23996 161 if((int)root_dev) kernelparams->rootdev = root_dev;
pascal@19515 162
pascal@19538 163 if(kernelparams->header == HdrS) { // starting linux 1.3.73
pascal@22152 164 if(kernelparams->loadflags & 1) { // zImage as pre 1.3.73
pascal@21332 165 extern void far last_ditch();
pascal@21332 166 kernelparams->realmode_switch_ofs = (u16) last_ditch;
pascal@21332 167 kernelparams->realmode_switch_seg = _CS;
pascal@22180 168 m->fallback = base_himem;
pascal@22288 169 pm_low--;
pascal@19515 170
pascal@19515 171 // Hook on int15 to work around fn 88 DOS breakage
pascal@21757 172 hook_int15_88(); // break _ES
pascal@19515 173 }
pascal@21623 174 if (kernelparams->kernel_version)
pascal@23992 175 puts((char *) first1k+kernelparams->kernel_version+0x200);
pascal@19538 176 kernelparams->type_of_loader = 0xff; // kernel do not know us (yet :-)
pascal@19538 177 if(kernelparams->version >= 0x201) {
pascal@19515 178 // * offset limit of the setup heap
pascal@19515 179 // heap_end_ptr appears to be relative to the start of setup (ofs 0x0200)
pascal@19538 180 kernelparams->heap_end_ptr = _32k-0x0200;
pascal@19538 181 kernelparams->loadflags |= 0x80; // says to rm loader it's ok to use heap
pascal@21984 182 // * if we will ever stop moving ourself to 0x90000
pascal@21984 183 // we must say setup.S how much to move
pascal@21984 184 //kernelparams->setup_move_size = _32k;
pascal@21984 185 if(kernelparams->version >= 0x202) { // starting linux 2.4.0-test3-pre3
pascal@21984 186 kernelparams->cmd_line_ptr = (((u32)(topseg()+0x0800))<<4);
pascal@21984 187 goto cmd_line_ok;
pascal@21984 188 }
pascal@19515 189 }
pascal@19515 190 }
pascal@19636 191 first1k->cl_magic_ofs = 0x8000A33F;
pascal@19515 192 }
pascal@19515 193
pascal@19515 194 cmd_line_ok:
pascal@21757 195
pascal@21757 196 // Move setup & Check and enable A20 if needed
pascal@22312 197 moverm(&_rm_size); // break _ES
pascal@19515 198
pascal@19515 199 // Read remaining kernel (pm part)
pascal@19515 200 // Try to load kernel high, maybe even blindly storing it
pascal@19515 201 // in unallocated memory as a last resort
pascal@19515 202
pascal@19571 203 load_image(m);
pascal@19515 204 }
pascal@19515 205
pascal@19515 206 // Read initrd if needed
pascal@19515 207 void load_initrd() {
pascal@23996 208 if ((int)initrd_name == 0) return;
pascal@20538 209 #if defined(__BORLANDC__) && defined(NO386)
pascal@20538 210 #pragma option -3
pascal@20538 211 asm{
pascal@20538 212 .386p
pascal@20538 213 }
pascal@20538 214 #endif
pascal@24015 215 struct image_himem *m = &initrd;
pascal@21649 216 open_image(m, initrd_name);
pascal@19636 217
pascal@24579 218 if ((m->fallback=(topload()-m->size)&(~PAGE_MASK))-m[-1].fallback < m[-1].size) {
pascal@23996 219 loadfailure();
pascal@19515 220 return;
pascal@19515 221 }
pascal@19515 222
pascal@19515 223 load_image(m);
pascal@20634 224
pascal@23992 225 /* if (pm_low == 0) */ {
pascal@21757 226 initrd_desc[0] = m->fallback;
pascal@21757 227 initrd_desc[1] = m->size;
pascal@19515 228 }
pascal@19515 229 }