summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/i386ex/startup/linkcmds
blob: 24202aa59c770920d39a8536f691f2a629b86ecd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
 *  This file contains directives for the GNU linker which are specific
 *  to the Intel 386ex evaluation board.
 *
 *  COPYRIGHT (c) 1989-1998.
 *  On-Line Applications Research Corporation (OAR).
 *  Copyright assigned to U.S. Government, 1994.
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *
 *  $Id$
 */


	ENTRY(reset) ;
SECTIONS
{

/*******************************************************************************
 * Interrupts section:
 * 
 *  This section defines the layout of the interrupts in ROM ( VMA ) as well as their
 *  location in RAM (LMA). The _rom_ and _ram_ variables are used in start.s
 *  in order for the code to move the interrupt vector tables from ROM to RAM 
 *  while still running in real-mode.  The tables are moved from ROM, as the IDT
 *  is initialized with only 16-bit offsets for the interrupt handlers.
 *  This is purely an implementation issue.  If you prefer the interrupt handlers
 *  to be resident in flash, then you must provide the code to create the interrupt
 *  gates with full 32bit offsets.  The code in the current start.s does NOT support 
 *  interrupts in ROM by merely redefining their location.
 ******************************************************************************/
	_rom_ints            = 0x3ff0000;    /* was 0x3fb0000 */
        _rom_ints_segment    = 0xF000 ;
        _rom_ints_offset     = 0x0000 ;

	_ram_ints_segment    = 0x0000 ;   
	_ram_ints_offset     = 0x0100 ;


	.ints _ram_ints_offset :
	AT ( _rom_ints ) 
	{
	_sints = .;
	*(.ints);
	_eints = ALIGN (0x010);
	}	

	_ints_size     = _eints - _sints ;       
/**************************************************************************************
 * GDT section:
 *
 * This section defines the locations of the GDT in ROM as well as in RAM.  The _rom_ and 
 * _ram_ variables are used by start.s to copy the GDT from ROM to RAM when still in 
 * real-mode.  The move from ROM to RAM is made as a writeable GDT is required for the 
 * jump to protected mode to be successful.
 **************************************************************************************/

        _rom_gdt           = _rom_ints + _ints_size;
	_rom_gdt_segment   = 0xF000; 
	_rom_gdt_offset    = _rom_ints_offset + _ints_size; 

	_ram_gdt_segment   = 0x0000 ;
	_ram_gdt_offset    = _ram_ints_offset + _ints_size;

	.gdt  _ram_gdt_offset  :
        AT ( _rom_gdt )
	{
	_sgdt = .;
	*(.gdt);
	_egdt = ALIGN (0x10);
	}
	_gdt_size      = _egdt - _sgdt;

/*****************************************************************************************
 * IDT section:
 *
 * This section defines the locations of the IDT in ROM as well as in RAM.  The _rom_ and
 * _ram_ variables are used by start.s to copy the IDT from ROM to RAM when still in real-mode.
 * The move from ROM to RAM is required to enable RTEMS to hook the interrupts, however, 
 * this move could be made when in protected mode.
 ****************************************************************************************/

        _rom_idt                = _rom_gdt + _gdt_size ;
	_rom_idt_segment	= 0xF000 ;
	_rom_idt_offset   	= _rom_gdt_offset + _gdt_size ;

 	_ram_idt_segment	= 0x0000 ; 
	_ram_idt_offset		= _ram_gdt_offset + _gdt_size ; 

	.idt _ram_idt_offset :
	AT ( _rom_idt )
	{
	_sidt = .;
	*(.idt);
	_eidt = ALIGN (0x10);
	}
	_idt_size		= _eidt - _sidt;

/****************************************************************************************
 * data section:
 *
 * This section defines the locations of the data section in ROM as well as in RAM.  
 * start.s copies the data section to RAM when in protected mode.
 ***********************************************************************************/

	_rom_data_start = _rom_idt + _idt_size ;

        .data  : 
        AT ( _rom_data_start )  
        {
        _sdata = .;
        *(.data);
        _edata = ALIGN( 0x10 ) ;
   	}
        _data_start       = ADDR(.data) ;
	 data_start       = _data_start ;
        _data_size        = _edata - _sdata ;

/**************************************************************************************
 * bss section:
 *
 * The bss section is the last section in RAM.  
 *************************************************************************************/
	.bss :
	{
	_bss_start = .;
	*(.bss);
	*(COMMON);
	_ebss = ALIGN(0x10);
	end = _ebss;
	_end = end;
	__end = end;
	}
        _bss_size   = _ebss - _bss_start ;

/**************************************************************************************
 * General variables:
 *
 * The stack_size variable is customizable here.  The heap is located directly after
 * The stack in RAM.  A routine within bspstart.c uses these variables to ensure that
 * the heap used by RTEMS is as large as the RAM remaining after all workspace configurations 
 * are complete.
 *************************************************************************************/
        stack_size  = 0x1000 ;
	stack_origin = end + stack_size ;
	heap_bottom  = stack_origin + 4 ;  

/***************************************************************************************
 * text section:
 *
 * This section is NOT copied into RAM.  It is left in ROM, as the flash ROM is quick enough.
 ***************************************************************************************/
        .text ( 0x3f80000 ):
        {
         CREATE_OBJECT_SYMBOLS
	text_start = . ;
        _text_start = . ;
        *(.text ) ;
	. = ALIGN (16);

	*(.eh_fram)
	. = ALIGN (16);

	/*
	 * C++ constructors
	 */
	__CTOR_LIST__ = .;
	LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
	*(.ctors)
	LONG(0)
	__CTOR_END__ = .;
	. = ALIGN (4) ;
	__DTOR_LIST__ = .;
	LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
	*(.dtors)
	LONG(0)
	__DTOR_END__ = .;
        _etext = ALIGN( 0x10 );
	_endtext = . ; 
        }

/*******************************************************************************************
 * initial section:
 *
 * This section is defined after the data section.  It must be in the top 64K of memory
 * to enable the initial short jmp from the reset section while still in real-mode. It 
 * contains ALL initialization and data movement directives.
 ******************************************************************************************/

	.initial _rom_data_start + _data_size :
	{
	*(.initial);
	}

/*******************************************************************************************
 * reset section:
 *
 * This section contains the short jmp from the reset section to the initial section.  It is 
 * the first code executed on reset/power on.
 ******************************************************************************************/

	.reset		0x3fffff0:
	{
	*(.reset);
        }
}