mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Initialize ofmem at startup. Switch malloc/realloc/free to use ofmem. Implement runtime migration of startup mappings to ofmem. Implement mmu miss handlers to install tlb entries based on ofmem translations list. git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@517 f158a5a8-5612-0410-a976-696ce0be7e32
54 lines
1.2 KiB
Forth
54 lines
1.2 KiB
Forth
\ -------------------------------------------------------------------------
|
|
\ UPA encode/decode unit
|
|
\ -------------------------------------------------------------------------
|
|
|
|
: decode-unit-upa ( str len -- id lun )
|
|
ascii , left-split
|
|
( addr-R len-R addr-L len-L )
|
|
parse-hex
|
|
-rot parse-hex
|
|
swap
|
|
;
|
|
|
|
: encode-unit-upa ( id lun -- str len)
|
|
swap
|
|
pocket tohexstr
|
|
" ," pocket tmpstrcat >r
|
|
rot pocket tohexstr r> tmpstrcat drop
|
|
;
|
|
|
|
" /" find-device
|
|
2 encode-int " #address-cells" property
|
|
2 encode-int " #size-cells" property
|
|
" sun4u" encode-string " compatible" property
|
|
|
|
: encode-unit encode-unit-upa ;
|
|
: decode-unit decode-unit-upa ;
|
|
|
|
new-device
|
|
" memory" device-name
|
|
" memory" device-type
|
|
external
|
|
: open true ;
|
|
: close ;
|
|
\ claim ( phys size align -- base )
|
|
\ : claim 2drop ;
|
|
\ release ( phys size -- )
|
|
finish-device
|
|
|
|
new-device
|
|
" virtual-memory" device-name
|
|
external
|
|
: open true ;
|
|
: close ;
|
|
\ claim ( phys size align -- base )
|
|
\ : claim 2drop ;
|
|
\ release ( phys size -- )
|
|
finish-device
|
|
|
|
" /options" find-device
|
|
" disk" encode-string " boot-from" property
|
|
|
|
" /openprom" find-device
|
|
" OBP 3.10.24 1999/01/01 01:01" encode-string " version" property
|