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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
|
\ *****************************************************************************
\ * Copyright (c) 2004, 2008 IBM Corporation
\ * All rights reserved.
\ * This program and the accompanying materials
\ * are made available under the terms of the BSD License
\ * which accompanies this distribution, and is available at
\ * http://www.opensource.org/licenses/bsd-license.php
\ *
\ * Contributors:
\ * IBM Corporation - initial implementation
\ ****************************************************************************/
\ The master file. Everything else is included into here.
hex
' ll-cr to cr
\ as early as possible we want to know if it is js20, js21 or bimini
\ u3 = js20; u4 = js21/bimini
\ the difference if bimini or js21 will be done later depending if
\ obsidian or citrine is found
\ f8000000 is probably the place of the u3/u4 version
f8000000 rl@ CONSTANT uni-n-version
uni-n-version 4 rshift dup 3 = CONSTANT u3? 4 = CONSTANT u4?
\ if (f4000682 >> 4) == 1... it is a bimini...
f4000682 rb@ 4 rshift 1 = CONSTANT bimini?
\ to decide wether vga initialisation using bios emulation should be attempted,
\ we need to know wether a vga-device was found during pci-scan.
\ If it is found, this value will be set to the device's phandle
0 value vga-device-node?
\ planar-id reads back GPIO 29 30 31 and returns it as one value
\ if planar-id >= 5 it should be GA2 else it is GA1 (JS20 only)
defer planar-id ( -- planar-id )
: (planar-id) ( -- planar-id)
\ default implementation of planar-id just returns 8
\ the highest possible planar id for JS20 is 7
8
;
' (planar-id) to planar-id
#include "header.fs"
\ I/O accesses.
#include "io.fs"
\ XXX: Enable first UART on JS20, scripts forget to do this. Sigh.
3 7 siocfg! 1 30 siocfg!
#include "serial.fs"
cr
#include "base.fs"
\ Little-endian accesses. Also known as `wrong-endian'.
#include <little-endian.fs>
\ do not free-mem if address is not within the heap
\ workaround for NVIDIA card
: free-mem ( addr len -- )
over heap-start heap-end within IF
free-mem
ELSE
2drop
THEN
;
: #join ( lo hi #bits -- x ) lshift or ;
: #split ( x #bits -- lo hi ) 2dup rshift dup >r swap lshift xor r> ;
: blink ;
: reset-dual-emit ;
: console-clean-fifo ;
: bootmsg-nvupdate ;
: asm-cout 2drop drop ;
#include "logging.fs"
: log-string 2drop ;
#include "bootmsg.fs"
000 cp
\ disable the nvram logging until we know if we are
\ running from ram/takeover/js20 or in normal mode on js21
: (nvramlog-write-byte) drop ;
' (nvramlog-write-byte) to nvramlog-write-byte
#include "exception.fs"
: mm-log-warning 2drop ;
: write-mm-log ( data length type -- status )
3drop 0
;
080 cp
#include "rtc.fs"
100 cp
\ Input line editing.
#include "accept.fs"
120 cp
#include "dump.fs"
cistack ciregs >r1 ! \ kernel wants a stack :-)
#include "romfs.fs"
140 cp
#include "flash.fs"
\ 1 temp; 0 perm; let's default to temp
1 VALUE flashside?
\ claim the memory used by copy of the flash
flash-header IF
romfs-base dup flash-image-size 0 claim drop
THEN
s" bootinfo" romfs-lookup drop c + l@ CONSTANT start-addr
start-addr flash-addr <> CONSTANT takeover?
takeover? u3? or 0= IF
\ we want nvram logging to work
['] .nvramlog-write-byte to nvramlog-write-byte
THEN
160 cp
u4? IF f8002100 rl@ 0= ELSE false THEN ?INCLUDE u4-mem.fs
u3? IF
planar-id 5 >= IF
40000 to nvram-size
ELSE
\ change nvram-size to 8000 for GA1 blades
8000 to nvram-size
THEN
THEN
takeover? IF
\ potentially comming from phype
u4? IF
\ takeover on JS21 is using some nvram area
\ which might be available
\ on JS20 the nvram is too small and
\ we just overwrite the nvram
sec-nvram-base to nvram-base
THEN
sec-nvram-size to nvram-size
\ in takeover mode the nvram is probably not mapped
\ to the exact location where the nvram starts
\ doing a small check to see if we have a partition
\ starting with 70; this test is far from perfect but
\ takeover is not the most common mode of running slof
nvram-base rb@ 70 <> IF 0 nvram-base rb! THEN
THEN
200 cp
#include <slof-logo.fs>
#include <banner.fs>
: .banner .slof-logo .banner ;
\ Get the secondary CPUs into our own spinloop.
f8000050 rl@ CONSTANT master-cpu
\ cr .( The master cpu is #) master-cpu .
VARIABLE cpu-mask
: get-slave ( n -- online? )
0 3ff8 ! 18 lshift 30000000 or 48003f02 over l! icbi 10000 0 DO LOOP 3ff8 @ ;
: mark-online ( n -- ) 1 swap lshift cpu-mask @ or cpu-mask ! ;
: get-slaves 40 0 DO i get-slave IF i mark-online THEN LOOP ;
: cpu-report ( -- )
cpu-mask @ 40 0 DO dup 1 and IF ." #" i . THEN 1 rshift LOOP drop
;
220 cp
master-cpu mark-online get-slaves
DEFER disable-watchdog ( -- )
DEFER find-boot-sector ( -- )
240 cp
\ Timebase frequency, in Hz.
\ -1 VALUE tb-frequency
d# 14318378 VALUE tb-frequency \ default value - needed for "ms" to work
-1 VALUE cpu-frequency
#include "helper.fs"
260 cp
#include <timebase.fs>
270 cp
#include <fcode/evaluator.fs>
280 cp
\ rtas-config is not used
0 CONSTANT rtas-config
#include "rtas.fs"
290 cp
s" update_flash.fs" included
2a0 cp
cpu-mask @ rtas-fetch-cpus drop
: of-start-cpu rtas-start-cpu ;
' power-off to halt
' rtas-system-reboot to reboot
: other-firmware rtas-get-flashside 0= IF 1 ELSE 0 THEN rtas-set-flashside reboot ;
: disable-boot-watchdog rtas-stop-bootwatchdog drop ;
' disable-boot-watchdog to disable-watchdog
true value bmc?
false value debug-boot?
\ for JS21/Bimini try to detect BMC... if kcs (io @ca8) status is not ff...
u4? IF ca8 4 + io-c@ ff = IF false to bmc? true to debug-boot? THEN THEN
VARIABLE memnode
\ Hook to help loading our secondary boot loader.
DEFER disk-read ( lba cnt addr -- )
0 VALUE disk-off
create vpd-cb 24 allot
create vpd-bootlist 4 allot
2c0 cp
#include "ipmi-vpd.fs"
2e0 cp
#include <quiesce.fs>
300 cp
#include <usb/usb-static.fs>
320 cp
#include <scsi-loader.fs>
#include <root.fs>
360 cp
#include "tree.fs"
: .system-information ( -- )
s" " type cr
s" SYSTEM INFORMATION" type cr
s" Processor = " type s" cpu" get-chosen IF
drop l@ >r pvr@ s" pvr>name" r> $call-method type
s" @ " type cpu-frequency d# 1000000 /
decimal . hex s" MHz" type
THEN cr s" I/O Bridge = " type u3? IF
s" U3" ELSE s" U4" THEN type
f8000000 rl@ 4 rshift s" (" type 1 0.r s" ." type
f8000000 rl@ f and 1 0.r s" )" type cr
s" SMP Size = " type cpu-mask @ cnt-bits 1 0.r
s" (" type cpu-report 8 emit s" )" type
cr s" Boot-Date = " type .date cr
s" Memory = " type s" memory" get-chosen IF
drop l@ s" mem-report" rot $call-method THEN
cr s" Board Type = " type u3? IF
s" JS20(GA" type planar-id 5 >= IF
s" 2)" ELSE s" 1)" THEN type
ELSE bimini? IF s" Bimini" ELSE s" JS21" THEN type THEN
s" (" type .vpd-machine-type [char] / emit
.vpd-machine-serial [char] / emit
.vpd-hw-revision 8 emit s" )" type cr
s" MFG Date = " type .vpd-manufacturer-date cr
s" Part No. = " type .vpd-part-number cr
s" FRU No. = " type .vpd-fru-number cr
s" FRU Serial = " type .vpd-cardprefix-serial .vpd-card-serial cr
s" UUID = " type .vpd-uuid cr
s" Flashside = " type rtas-get-flashside 0= IF
." 0 (permanent)"
ELSE
." 1 (temporary)" THEN cr
s" Version = " type
takeover? IF
romfs-base 38 + a type
ELSE
slof-build-id here swap rmove
here slof-build-id nip type cr
s" Build Date = " type bdate2human type
THEN
cr cr
;
800 cp
#include "nvram.fs"
takeover? not u4? and IF
\ if were are not in takeover mode the nvram should look
\ something like this:
\ type size name
\ ========================
\ 51 20000 ibm,CPU0log
\ 51 5000 ibm,CPU1log
\ 70 1000 common
\ 7f da000 <free-space>
\ the partition with the type 51 should have been added
\ by LLFW... if it does not exist then something went
\ wrong and we just destroy the whole thing
51 get-nvram-partition IF 0 0 nvram-c! ELSE 2drop THEN
THEN
880 cp
\ dmesg/dmesg2 not available if running in takeover/ram mode or on js20
: dmesg ( -- ) u3? takeover? or 0= IF dmesg THEN ;
: dmesg2 ( -- ) u3? takeover? or 0= IF dmesg2 THEN ;
#include "envvar.fs"
check-for-nvramrc
8a0 cp
\ The client interface.
#include "client.fs"
\ ELF binary file format.
#include "elf.fs"
#include <loaders.fs>
8a8 cp
\ check wether a VGA device was found during pci scan, if it was
\ try to initialize it and create the needed device-nodes
0 value biosemu-vmem
100000 value biosemu-vmem-size
0 value screen-info
: init-vga-devices ( -- )
vga-device-node? 0= use-biosemu? 0= OR IF
EXIT
THEN
s" VGA Device found: " type vga-device-node? node>path type s" initializing..." type cr
\ claim virtual memory for biosemu of 1MB
biosemu-vmem-size 4 claim to biosemu-vmem
\ claim memory for screen-info struct (140 bytes)
d# 140 4 claim to screen-info
\ remember current-node (it might be node 0 so we cannot use get-node)
current-node @
\ change into vga device node
vga-device-node? set-node
\ run biosemu to initialize the vga card
\ s" Time before biosemu:" type .date cr
vga-device-node? node>path ( pathstr len )
s" biosemu " biosemu-vmem $cathex ( pathstr len paramstr len )
20 char-cat \ add a space ( pathstr len paramstr len )
biosemu-vmem-size $cathex \ add VMEM Size ( pathstr len paramstr len )
20 char-cat \ add a space ( pathstr len paramstr len )
2swap $cat ( paramstr+path len )
biosemu-debug 0<> IF
20 char-cat biosemu-debug $cathex \ add biosemu-debug as param
( paramstr+path+biosemu-debug len )
THEN
.(client-exec) IF
." biosemu client exec failed!" cr
set-node \ restore old current-node
EXIT
THEN
\ s" Time after biosemu:" type .date cr
s" VGA initialization: detecting displays..." type cr
\ try to get info for two monitors
2 0 DO
\ setup screen-info struct as input to get_vbe_info
s" DDC" 0 char-cat screen-info swap move \ null-terminated "DDC" as signature
d# 140 screen-info 4 + w! \ reserved size in bytes (see claim above)
i screen-info 6 + c! \ monitor number
\ 320 screen-info 7 + w! \ max. screen width (800)
500 screen-info 7 + w! \ max. screen width (1280)
\ following line would be the right thing to do, however environment seems not setup yet...
\ screen-#columns char-width * 500 min 280 max screen-info 7 + w! \ max. screen width, calculated from environment variable screen-#columns, but max. 1280, min. 640...
8 screen-info 9 + c! \ requested color depth (8bpp)
\ d# 16 screen-info 9 + c! \ requested color depth (16bpp)
\ execute get_vbe_info from load-base
\ s" Time before client exec:" type .date cr
\ since node>path overwrites strings created with s"
\ we need to call it before assembling the parameter string
vga-device-node? node>path ( pathstr len )
s" get_vbe_info " biosemu-vmem $cathex ( pathstr len paramstr len )
20 char-cat \ add a space ( pathstr len paramstr len )
biosemu-vmem-size $cathex \ add VMEM Size ( pathstr len paramstr len )
20 char-cat \ add a space ( pathstr len paramstr len )
2swap $cat ( paramstr+path len )
20 char-cat
screen-info $cathex
.(client-exec) 0=
\ s" Time after client exec:" type .date cr
screen-info c@ 0<> AND IF
s" display " type i . s" found..." type
\ screen found
\ create device entry
get-node node>name \ get current nodes name (e.g. "vga") ( str len )
i \ put display-num on the stack ( str len displaynum )
new-device \ create new device
s" vga-display.fs" included
finish-device
s" created." type cr
THEN
LOOP
\ return to where we were before changing to vga device node
set-node
\ release the claimed memory
screen-info d# 140 release
biosemu-vmem biosemu-vmem-size release
s" VGA initialization done." type cr
;
init-vga-devices
: enable-framebuffer-output ( -- )
\ enable output on framebuffer
s" screen" find-alias ?dup IF
\ we need to open/close the screen device once
\ before "ticking" display-emit to emit
open-dev close-node
s" display-emit" $find IF
to emit
ELSE
2drop
THEN
THEN
;
enable-framebuffer-output
8b0 cp
\ do not let the usb scan overwrite the atapi cdrom alias
pci-cdrom-num TO cdrom-alias-num
usb-scan
: create-aliases ( -- )
s" net" s" net1" find-alias ?dup IF set-alias ELSE 2drop THEN
s" disk" s" disk0" find-alias ?dup IF set-alias ELSE 2drop THEN
s" cdrom" s" cdrom0" find-alias ?dup IF set-alias ELSE 2drop THEN
;
create-aliases
8ff cp
.system-information
: directserial
u3? IF
s" /ht/isa/serial@3f8" io
ELSE
s" direct-serial?" evaluate IF s" /ht/isa/serial@2f8" io ELSE s" /ht/isa/serial@3f8" io THEN
THEN
;
directserial
\ on bimini we want to automatically enable screen and keyboard, if they are detected...
bimini? IF
key? IF
cr ." input available on current console input device, not switching input / output." cr
ELSE
\ this enables the framebuffer as primary output device
s" screen" find-alias IF drop
s" screen" output
\ at this point serial output is theoretically disabled
." screen detected and set as default output device" cr
THEN
\ enable USB keyboard
s" keyboard" find-alias IF drop
s" keyboard" input
\ at this point serial input is disabled
." keyboard detected and set as default input device" cr cr cr
s" Press 's' to enter Open Firmware." type cr
500 ms
THEN
THEN
THEN
: .flashside
cr ." The currently active flashside is: "
rtas-get-flashside 0= IF ." 0 (permanent)" ELSE
." 1 (temporary)" THEN
;
bmc? IF disable-watchdog THEN
: flashsave ( "{filename}" -- rc )
(parse-line) dup 0> IF
s" netsave " \ command
get-flash-base $cathex \ Flash base addr
s" 400000 " $cat \ Flash size (4MB)
2swap $cat \ add parameters from (parse-line)
evaluate
ELSE
cr
." Usage: flashsave [bootp|dhcp,]filename[,siaddr][,ciaddr][,giaddr][,bootp-retries][,tftp-retries][,use_ci]"
cr 2drop
THEN
;
#include <vpd-bootlist.fs>
\ for the blades we read the bootlist from the VPD
bimini? takeover? or 0= IF ['] vpd-boot-import to read-bootlist THEN
\ for the bimini, we try to boot from disk, if it exists,
\ only if "boot-device" is not set in the nvram
: bimini-bootlist
\ check nvram
s" boot-device" evaluate swap drop ( boot-device-strlen )
0= IF
\ no boot-device set in NVRAM, check if disk is available and set it...
\ clear boot-device list
0 0 set-boot-device
s" disk" find-alias ?dup IF
\ alias found, use it as default
add-boot-device
THEN
THEN
;
bimini? IF ['] bimini-bootlist to read-bootlist THEN
#include <start-up.fs>
#include <boot.fs>
cr .( Welcome to Open Firmware)
cr
#include "copyright-oss.fs"
cr
\ this CATCH is to ensure the code bellow always executes: boot may ABORT!
' start-it CATCH drop
#include <history.fs>
nvram-history? [IF]
." loading shell history .. "
history-load
." done" cr
[THEN]
|