Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / obp / obp / os / sun / sparc / loadfw.fth
CommitLineData
920dae64
AT
1\ ========== Copyright Header Begin ==========================================
2\
3\ Hypervisor Software File: loadfw.fth
4\
5\ Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
6\
7\ - Do no alter or remove copyright notices
8\
9\ - Redistribution and use of this software in source and binary forms, with
10\ or without modification, are permitted provided that the following
11\ conditions are met:
12\
13\ - Redistribution of source code must retain the above copyright notice,
14\ this list of conditions and the following disclaimer.
15\
16\ - Redistribution in binary form must reproduce the above copyright notice,
17\ this list of conditions and the following disclaimer in the
18\ documentation and/or other materials provided with the distribution.
19\
20\ Neither the name of Sun Microsystems, Inc. or the names of contributors
21\ may be used to endorse or promote products derived from this software
22\ without specific prior written permission.
23\
24\ This software is provided "AS IS," without a warranty of any kind.
25\ ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
26\ INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
27\ PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
28\ MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
29\ ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
30\ DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
31\ OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
32\ FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
33\ DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
34\ ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
35\ SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
36\
37\ You acknowledge that this software is not designed, licensed or
38\ intended for use in the design, construction, operation or maintenance of
39\ any nuclear facility.
40\
41\ ========== Copyright Header End ============================================
42id: @(#)loadfw.fth 1.20 06/02/07
43purpose: Load file for base firmware - no platform specifics
44copyright: Copyright 1994 Firmworks All Rights Reserved
45copyright: Copyright 2006 Sun Microsystems, Inc. All Rights Reserved
46copyright: Use is subject to license terms.
47
48transient
49\
50\ macros are a 'simple' forth routine that will be unrolled into a caller
51\ this sacrifices dictionary spaces for performance so don't over use them.
52\ the termination for the copy is an 'unnest' so you must be very careful
53\ macros are for simple routines where the execution cost of a subroutine
54\ and return are a significant portion of the over execution time.
55\
56\ The way this works is:
57\
58\ transient
59\ : my-unrolled-2dup over over ;
60\ resident
61\ macro: 2dup-macro my-unrolled-2dup
62\
63\ : xxx 2dup-macro ;
64\
65\ see xxx
66\ : xxx
67\ over over
68\ ;
69\
70: macro: \ name$ expansion-routine
71 transient create immediate ' , resident does>
72 @ >body begin
73 dup token@ ['] unnest over <> while
74 token, /token +
75 repeat 2drop
76;
77resident
78
79fload ${BP}/os/bootprom/sysintf.fth \ Interfaces to system functions
80fload ${BP}/os/bootprom/loaddevt.fth \ Device tree and other OBP routines
81
82fload ${BP}/arch/sun/cmn-msg-format.fth \ Common mesage framework
83
84\ fload ${BP}/cpu/sparc/centry.fth \ Now initialize the CIF handler
85
86\ Interfaces for user created environment variables
87fload ${BP}/pkg/confvar/interfaces/user-vars.fth
88
89fload ${BP}/os/bootprom/clientif.fth \ Client interface
90
91fload ${BP}/os/bootprom/canon.fth \ canon client-services function
92
93defer mac-address ' system-mac-address to mac-address
94
95fload ${BP}/os/bootprom/regwords.fth
96
97fload ${BP}/os/bootprom/release.fth
98
99fload ${BP}/pkg/fcode/loadfcod.fth \ S Fcode interpreter
100
101: (callback-call ( cb-array cb-vector -- result ) call nip ;
102' (callback-call is callback-call
103
104fload ${BP}/os/bootprom/allocsym.fth \ Allocate memory for symbol table
105fload ${BP}/os/sun/symcif.fth \ Symdebug Client Service
106fload ${BP}/os/sun/symdebug.fth \ Unix symbol table routines
107
108fload ${BP}/os/sun/elfdebug.fth
109
11064\ fload ${BP}/os/sun/elf64.fth
11164\ fload ${BP}/os/sun/elfdbg64.fth
112
113stand-init: Init lock primitives
114 ['] (lock[ is lock[
115 ['] (]unlock is ]unlock
116;
117
118fload version.fth \ Declares the firware version
119fload ${BP}/os/bootprom/showvers.fth \ Display firmware version
120
12132\ fload ${BP}/cpu/sparc/fpu.fth
12264\ fload ${BP}/cpu/sparc/fpu9.fth
123
12464\ fload ${BP}/pkg/fcode/sparc/fcode32.fth
125
126fload ${BP}/arch/sun/auto-field.fth \ Support inline structure defs