Speed-up finding next free cluster by starting the search from where the
[AROS.git] / arch / .unmaintained / ppc-native / exec / enable.s
blob2acca6e06ed788538d08d6d2c4e5ca1e95d5b90e
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 /*****************************************************************************
8 NAME
10 AROS_LH0(void, Enable,
12 LOCATION
13 struct ExecBase *, SysBase, 21, Exec)
15 FUNCTION
16 This function reenables the delivery of interrupts after a call to
17 Disable().
19 INPUTS
21 RESULT
23 NOTES
24 This function preserves all registers.
26 This function may be used from interrupts.
28 EXAMPLE
30 BUGS
32 SEE ALSO
33 Forbid(), Permit(), Disable()
35 INTERNALS
37 HISTORY
39 ******************************************************************************/
41 INTENA = 0xdff09a
42 INTEN = 0x4000
43 SET = 0x8000
45 #include "machine.i"
47 .text
48 .balign 4
49 .globl AROS_SLIB_ENTRY(Enable,Exec)
50 .type AROS_SLIB_ENTRY(Enable,Exec),@function
51 AROS_SLIB_ENTRY(Enable,Exec):
52 /* decrement nesting count and return if there are Disable()s left */
53 subr
54 push scr
56 lbz scr,IDNestCnt(base)
57 subic. scr,scr,1
58 stw scr,IDNestCnt(base)
59 bge end
61 lwz arg0,_enab(0)
62 jsrlvo Supervisor,base
63 /* we should come back here from _disab */
64 /* enable Amiga chipset interrupts */
65 li scr,INTEN+SET
66 stw scr,INTENA
68 /* return if there are no delayed switches pending. */
69 lwz scr,AttnResched+1(base)
70 cmpdi scr,0
71 beq end
73 /* if TDNestCnt is not -1 taskswitches are still forbidden */
74 lwz scr,TDNestCnt(base)
75 cmpdi scr,0
76 beq end
78 /* Unset delayed switch bit and do the delayed switch */
79 lwz scr,0x12b(base)
80 andi. scr,scr,0x7f
81 sth scr,0x12b(base)
82 jsrlvo Switch,base
84 /* all done. */
85 end: pop scr
86 rts
88 _enab:
89 mfmsr p1
90 ori p1,p1,0x8000
91 isync
92 mtmsr
93 sync
94 rfi