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
|
/* First stage loader bootstrap for SUNW,Ultra's IEEE 1275 PROM
Copyright (C) 1996,1997 Jakub Jelinek
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define BLOCK_START 0x1dc
#define promvec %l5
#define buffer %l0
#define fd %l6
#define stdouth %l7
#define dest %l4
.text
.align 4
.global _start, letter_here
_start:
sethi %hi(0x4000), buffer
or buffer, (BLOCK_START + 3 * 512), %i5
sethi %hi(0x10000), dest
mov %o4, promvec
add buffer, %lo(chosen), %o1
call prom11
add buffer, %lo(finddevice), %o0
ldx [dest + 32], fd
call getprop
add buffer, %lo(stdout), %o0
lduw [dest + 256], stdouth
call putchar
mov 'S', %o0
call getprop
add buffer, %lo(bootpath), %o0
add dest, 256, %o0
mov ':', %o4
2:
ldub [%o0], %o3
brz,pn %o3, 3f
cmp %o3, %o4
bne,a,pt %icc, 2b
inc %o0
3:
stb %o4, [%o0]
letter_here:
mov 0xDD, %o4
stb %o4, [%o0 + 1]
stb %g0, [%o0 + 2]
add dest, 256, %o1
call prom11
add buffer, %lo(open), %o0
ldx [dest + 32], fd
or buffer, BLOCK_START, %l1
mov %l1, %l2
5:
lduw [%l2], %l3
add %l2, 4, %l2
brz,pn %l3, 7f
sll %l3, 9, %o3
srl %l3, 23, %o2
call rwprom31
add buffer, %lo(seek), %o0
ldx [dest + 48], %o0
brlz,pn %o0, 9f
mov 512, %o3
mov %l1, %o2
call rwprom31
add buffer, %lo(read), %o0
ldx [dest + 48], %o0
cmp %o0, 512
bne,pn %icc, 9f
cmp %l1, %i5
bne,pt %xcc, 5b
add %l1, 512, %l1
call putchar
mov 'I', %o0
ba,pt %xcc, 5b
add dest, 1024, %l1
7:
mov fd, %o1
call prom11
add buffer, %lo(close), %o0
ldub [dest + 1024 + 0x08], %o0
cmp %o0, 'L'
bne,a,pn %icc, 10f
add buffer, %lo(exit), %o0
call putchar
flush dest + 1024
jmpl dest + 1024, %g0
mov promvec, %o4
putchar:
stb %o0, [buffer]
mov stdouth, %o1
mov buffer, %o2
mov 1, %o3
ba,pt %xcc, prom31
add buffer, %lo(write), %o0
9:
add buffer, %lo(exit), %o0
10:
call prom11
getprop:
stx %o0, [dest + 32]
add dest, 256, %o0
stx %o0, [dest + 40]
mov 1024, %o0
stx %o0, [dest + 48]
mov fd, %o1
add buffer, %lo(getprops), %o0
mov 4, %o2
stx %o2, [dest + 8]
2:
ba,pt %xcc, 1f
prom11:
mov 1, %o2
stx %o2, [dest + 8]
1:
stx %o0, [dest]
stx %o2, [dest + 16]
stx %o1, [dest + 24]
jmpl promvec + %g0, %g0
mov dest, %o0
rwprom31:
mov fd, %o1
prom31:
mov 3, %o4
stx %o4, [dest + 8]
stx %o2, [dest + 32]
ba,pt %xcc, 2b
stx %o3, [dest + 40]
finddevice:
.asciz "finddevice"
getprops:
.asciz "getprop"
bootpath:
.asciz "bootpath"
stdout:
.asciz "stdout"
open:
.asciz "open"
close:
.asciz "close"
seek:
.asciz "seek"
read:
.asciz "read"
write:
.asciz "write"
chosen:
.asciz "/chosen"
exit:
.asciz "exit"
|