blob: 2e6bcfc568ccdf04b5b4f080bee8255f5b955885 (
plain)
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
|
\ *****************************************************************************
\ * 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
\ ****************************************************************************/
s" obp-tftp" device-name
VARIABLE huge-tftp-load 1 huge-tftp-load !
INSTANCE VARIABLE ciregs-buffer
: open ( -- okay? )
ciregs-size alloc-mem ciregs-buffer !
true
;
: load ( addr -- size )
\ Save old client interface register
ciregs ciregs-buffer @ ciregs-size move
s" bootargs" get-chosen 0= IF 0 0 THEN >r >r
s" bootpath" get-chosen 0= IF 0 0 THEN >r >r
\ Set bootpath to current device
my-parent ihandle>phandle node>path encode-string
s" bootpath" set-chosen
60000000 ( addr maxlen )
\ Allocate 1720 bytes to store the BOOTP-REPLY packet
6B8 alloc-mem dup >r ( addr maxlen replybuf )
huge-tftp-load @ d# 1428 ( addr maxlen replybuf hugetftp blocksize )
\ Add OBP-TFTP Bootstring argument, e.g. "10.128.0.1,bootrom.bin,10.128.40.1"
my-args
net-load dup 0< IF drop 0 THEN
\ Restore to old client interface register
ciregs-buffer @ ciregs ciregs-size move
\ Recover buffer address of BOOTP-REPLY packet
r>
r> r> over IF s" bootpath" set-chosen ELSE 2drop THEN
r> r> over IF s" bootargs" set-chosen ELSE 2drop THEN
\ Store BOOTP-REPLY packet as property
dup 6B8 encode-bytes s" bootp-response" s" /chosen" find-node set-property
\ free buffer
6B8 free-mem
;
: close ( -- )
ciregs-buffer @ ciregs-size free-mem
;
: ping ( -- )
my-args net-ping
;
|