Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\nkernsmp\arm\ncirq.cia
32 // Atomically increment run count provided ECount set or count <2.
33 // If originally zero, atomically set CPU field
34 // Wait for EWait to be clear
35 // Return state of iIState immediately before increment
37 __NAKED__ TUint32 NIrq::EnterIsr()
40 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrq,iIState));
41 asm("ldr r12, [r12, #%a0]" : : "i" _FOFF(TSubScheduler,iCpuNum));
46 asm("cmp r0, #0x10000 "); // run count >= 1 ?
47 asm("biclo r1, r1, #0xff00 "); // if not, update CPU
48 asm("orrlo r1, r1, r12, lsl #8 ");
49 asm("add r1, r1, #0x10000 "); // increment run count
50 asm("cmp r1, #0x20000 "); // >= 2 ?
58 __DATA_MEMORY_BARRIER__(r2);
59 asm("tst r1, #%a0" : : "i" (NIrq::EWait));
64 asm("tst r1, #%a0" : : "i" (NIrq::ECount|NIrq::ERaw));
76 // Atomically decrement run count
77 // Return TRUE if run count nonzero after decrement
79 __NAKED__ TBool NIrq::IsrDone()
81 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrq,iIState));
82 __DATA_MEMORY_BARRIER_Z__(r2);
86 asm("subs r1, r0, #0x10000 ");
90 asm("mov r0, r1, lsr #16 "); // r0 = new run count = TRUE if nonzero
95 // Wait (allowing interrupts and preemption) until run count = 0 and EWait clear
96 // Then atomically set EWait and return with interrupts disabled
98 __NAKED__ void NIrq::Wait()
100 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrq,iIState));
107 asm("mov r1, r0, ror #1 "); // bit 31 = wait, bits 15-30 = run count
108 asm("cmp r1, #0x8000 "); // run count and EWait both zero?
109 asm("bcs 2f "); // if not, must wait
110 asm("orr r1, r0, #1 "); // else try to set EWait
114 __DATA_MEMORY_BARRIER__(r2);
115 __JUMP(,lr); // success - return with interrupts disabled
117 // spin, allowing interrupts, while we wait for run count and EWait both zero
127 // Atomically clear EWait and reenable interrupts
129 __NAKED__ void NIrq::Done()
131 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrq,iIState));
132 __DATA_MEMORY_BARRIER_Z__(r2);
136 asm("bic r0, r0, #1 "); // clear EWait
140 __DATA_SYNC_BARRIER__(r2); // ensure completion before SEV
141 ARM_SEV; // kick any waiting processors
142 __ASM_STI(); // interrupts back on
149 // atomic { if !EUnbind && !ENotReady clear EDisable }
150 // Return the initial value of iHState
152 __NAKED__ TUint32 NIrqHandler::DoSetEnabled()
154 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrqHandler,iHState));
155 __DATA_MEMORY_BARRIER_Z__(r2);
159 asm("tst r0, #%a0" : : "i" (NIrqHandler::EUnbind|NIrqHandler::ENotReady));
160 asm("bne 2f "); // if EUnbind or ENotReady, finished
161 asm("bic r1, r0, #%a0" : : "i" (NIrqHandler::EDisable|NIrqHandler::EBind));
167 __DATA_MEMORY_BARRIER__(r2);
172 // Atomically increment run count by aCount if ECount set or run count initially zero.
173 // If !EDisable and !EUnbind set EActive
174 // Return initial iHState
176 __NAKED__ TUint32 NIrqHandler::DoActivate(TInt /*aCount*/)
178 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrqHandler,iHState));
183 asm("cmp r0, #0x10000 ");
184 asm("blo 2f "); // if run count initially zero, skip
185 asm("tst r0, #%a0" : : "i" (NIrqHandler::ECount));
186 asm("beq 3f "); // else if !ECount, don't increment
188 asm("add r2, r2, r1, lsl #16 "); // add aCount to run count
190 asm("tst r2, #%a0" : : "i" (NIrqHandler::EUnbind|NIrqHandler::EDisable));
191 asm("orreq r2, r2, #%a0" : : "i" (NIrqHandler::EActive)); // if !EUnbind && !EDisable, set EActive
195 __DATA_MEMORY_BARRIER__(r12);
200 // Decrement run count
201 // Return initial iHState
203 __NAKED__ TUint32 NIrqHandler::EventBegin()
205 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrqHandler,iHState));
209 asm("sub r2, r0, #0x10000 ");
213 __DATA_MEMORY_BARRIER__(r12);
218 // If count is zero or EDisable or EUnbind
219 // are set, clear EActive.
220 // Return initial iHState, except for new EActive bit
222 __NAKED__ TUint32 NIrqHandler::EventDone()
224 asm("add r3, r0, #%a0" : : "i" _FOFF(NIrqHandler,iHState));
225 __DATA_MEMORY_BARRIER_Z__(r12);
230 asm("cmp r0, #0x10000 "); // run count zero ?
231 asm("tsths r2, #%a0" : : "i" (NIrqHandler::EUnbind|NIrqHandler::EDisable)); // if so, test EUnbind and EDisable
232 asm("bicne r2, r2, #%a0" : : "i" (NIrqHandler::EActive)); // if runcount==0 or EUnbind or EDisable set, clear EActive
236 asm("tst r2, #%a0" : : "i" (NIrqHandler::EActive)); // EActive now clear in new value ?
237 asm("biceq r0, r0, #%a0" : : "i" (NIrqHandler::EActive)); // if so, clear it in return value