diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2003-11-09 07:42:16 +0000 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2003-11-09 07:42:16 +0000 |
commit | 2e55d247a6d6610c98412798ff06d682f2ee91c6 (patch) | |
tree | 49ae406b5144b385b213afe1b2e99cd512a4d39d | |
parent | 84408cc05c3dc0d189644ff5b1e78fedc7550f67 (diff) |
Notes
-rw-r--r-- | sys/boot/ia64/libski/pal_stub.S | 9 | ||||
-rw-r--r-- | sys/boot/ia64/ski/pal_stub.S | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/sys/boot/ia64/libski/pal_stub.S b/sys/boot/ia64/libski/pal_stub.S index e67204c4b30a..e2476613668a 100644 --- a/sys/boot/ia64/libski/pal_stub.S +++ b/sys/boot/ia64/libski/pal_stub.S @@ -41,6 +41,9 @@ ENTRY(PalProc, 0) cmp.eq p6,p0=14,r28 // PAL_FREQ_RATIOS (p6) br.cond.dptk pal_freq_ratios ;; + cmp.eq p6,p0=29,r28 // PAL_HALT_LIGHT +(p6) br.cond.dptk pal_halt_light + ;; mov r15=66 // EXIT break.i 0x80000 // SSC ;; @@ -62,4 +65,10 @@ pal_freq_ratios: movl r10=0x0000000100000001 // bus ratio 1/1 movl r11=0x0000000B00000002 // ITC ratio 11/2 br.sptk b0 +pal_halt_light: + mov r8=0 + mov r9=0 + mov r10=0 + mov r11=0 + br.sptk b0 END(PalProc) diff --git a/sys/boot/ia64/ski/pal_stub.S b/sys/boot/ia64/ski/pal_stub.S index e67204c4b30a..e2476613668a 100644 --- a/sys/boot/ia64/ski/pal_stub.S +++ b/sys/boot/ia64/ski/pal_stub.S @@ -41,6 +41,9 @@ ENTRY(PalProc, 0) cmp.eq p6,p0=14,r28 // PAL_FREQ_RATIOS (p6) br.cond.dptk pal_freq_ratios ;; + cmp.eq p6,p0=29,r28 // PAL_HALT_LIGHT +(p6) br.cond.dptk pal_halt_light + ;; mov r15=66 // EXIT break.i 0x80000 // SSC ;; @@ -62,4 +65,10 @@ pal_freq_ratios: movl r10=0x0000000100000001 // bus ratio 1/1 movl r11=0x0000000B00000002 // ITC ratio 11/2 br.sptk b0 +pal_halt_light: + mov r8=0 + mov r9=0 + mov r10=0 + mov r11=0 + br.sptk b0 END(PalProc) |