mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
the private wordlist by default. This is required for executing Milax Fcode which defines package words which need to be externally visible. As a consequence, it is now possible to remove lots of "external" words used building the device tree since this is now the default. git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@655 f158a5a8-5612-0410-a976-696ce0be7e32
62 lines
1.2 KiB
Forth
62 lines
1.2 KiB
Forth
\ tag: Device Tree
|
|
\
|
|
\ this code implements IEEE 1275-1994 ch. 3.5
|
|
\
|
|
\ Copyright (C) 2003 Stefan Reinauer
|
|
\
|
|
\ See the file "COPYING" for further information about
|
|
\ the copyright and warranty status of this work.
|
|
\
|
|
|
|
|
|
\ root node
|
|
new-device
|
|
" OpenBiosTeam,OpenBIOS" device-name
|
|
1 encode-int " #address-cells" property
|
|
: open true ;
|
|
: close ;
|
|
: decode-unit parse-hex ;
|
|
: encode-unit ( addr -- str len )
|
|
pocket tohexstr
|
|
;
|
|
|
|
new-device
|
|
" aliases" device-name
|
|
: open true ;
|
|
: close ;
|
|
finish-device
|
|
|
|
new-device
|
|
" openprom" device-name
|
|
" BootROM" device-type
|
|
" OpenFirmware 3" model
|
|
0 0 " relative-addressing" property
|
|
0 0 " supports-bootinfo" property
|
|
1 encode-int " boot-syntax" property
|
|
|
|
: selftest
|
|
." OpenBIOS selftest... succeded" cr
|
|
true
|
|
;
|
|
: open true ;
|
|
: close ;
|
|
|
|
finish-device
|
|
|
|
new-device
|
|
" options" device-name
|
|
finish-device
|
|
|
|
new-device
|
|
" chosen" device-name
|
|
0 encode-int " stdin" property
|
|
0 encode-int " stdout" property
|
|
\ " hda1:/boot/vmunix" encode-string " bootpath" property
|
|
\ " -as" encode-string " bootargs" property
|
|
0 encode-int " memory" property
|
|
0 encode-int " mmu" property
|
|
finish-device
|
|
|
|
\ END
|
|
finish-device
|