1 ; -----------------------------------------------------------------------
3 ; Copyright 1994-2009 H. Peter Anvin - All Rights Reserved
4 ; Copyright 2009-2010 Intel Corporation; author: H. Peter Anvin
6 ; This program is free software; you can redistribute it and/or modify
7 ; it under the terms of the GNU General Public License as published by
8 ; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9 ; Bostom MA 02111-1307, USA; either version 2 of the License, or
10 ; (at your option) any later version; incorporated herein by reference.
12 ; -----------------------------------------------------------------------
17 ; Memory layout of segments
20 ; Default to 16-bit code
23 ; Memory below 0800h is reserved for the BIOS and the MBR.
26 ; Text starts at the load address of 07C00h.
32 ; PXELINUX: There are apparently some AMI BIOSes in the field which
33 ; put their BEV stack somewhere below 7C00h (and therefore don't
34 ; handle localboot properly), so avoid that immediate memory region.
35 ; The range that is known to be bad is approximately 75E8..7C00; the
36 ; lower bound is tight.
38 global STACK_LEN, STACK_TOP, STACK_BASE
45 STACK_BASE equ STACK_TOP - STACK_LEN
47 ; The secondary BSS section, above the text; we really wish we could
48 ; just make it follow .bcopy32 or hang off the end,
49 ; but it doesn't seem to work that way.
50 LATEBSS_START equ 0B800h
56 STACK32_LEN equ 64*1024
58 section .stack nobits write align=4096
62 ; The various sections and their relationship
64 ; Use .earlybss for things that MUST be in low memory.
65 section .earlybss nobits write
66 section .config write progbits align=4
67 section .replacestub exec write progbits align=16
68 section .gentextnr exec write nobits align=16
70 ; Use .bss16 for things that doesn't have to be in low memory;
71 ; .earlybss should be used for things that absolutely have
73 section .bss16 write nobits align=16
76 ; Warning here: RBFG build 22 randomly overwrites
77 ; memory location [0x5680,0x576c), possibly more. It
78 ; seems that it gets confused and screws up the
79 ; pointer to its own internal packet buffer and starts
80 ; writing a received ARP packet into low memory.
81 section .rbfg write nobits
82 RBFG_brainfuck: resb 2048 ; Bigger than an Ethernet packet...
85 section .init exec write progbits align=1
86 section .text16 exec write progbits align=1
87 section .textnr exec nowrite progbits align=1
88 section .bcopyxx.text exec nowrite progbits align=16
89 section .bcopyxx.data noexec write progbits align=16
90 section .data16 noexec write progbits align=16
92 section .adv write nobits align=512
94 ; .uibss contains bss data which is guaranteed to be
95 ; safe to clobber during the loading of the image. This
96 ; is because while loading the primary image we will clobber
97 ; the spillover from the last fractional sector load.
98 section .uibss write nobits align=16
100 ; Symbols from linker script
102 extern __%1_start, __%1_lma, __%1_end
103 extern __%1_len, __%1_dwords
116 extern free_high_memory
123 ; Segment assignments in the bottom 640K
124 ; Keep the low-memory footprint as small as possible... overrun is a hard
128 serial_buf_size equ 4096 ; Should be a power of 2
131 ; Contents of aux_seg
133 extern aux_seg ; Actual segment assigned by linker
137 .serial resb serial_buf_size
139 alignb 4096 ; Align the next segment to 4K
142 section .auxseg write nobits align=16
146 ; Transfer buffer segment: guaranteed to be aligned 64K, used for disk I/O
147 ; One symbol for the segment number, one for the absolute address
150 section .xfer_buf write nobits align=65536
152 core_xfer_buf resb 65536
155 ; Segment for the real mode code (needed as long as we have a in-kernel
156 ; loader and/or COM16 support.
157 ; One symbol for the segment number, one for the absolute address
160 section .real_mode write nobits align=65536
161 global core_real_mode
162 core_real_mode resb 65536
163 comboot_seg equ real_mode_seg ; COMBOOT image loading zone
166 ; At the very end, the lowmem heap
169 min_lowmem_heap equ 65536