Difference between revisions of "Unit PlatformARMv6"
Line 533: | Line 533: | ||
! '''Note''' | ! '''Note''' | ||
| At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | ||
− | |||
<br />(See: ARMv6ThreadSetupStack for additional information) | <br />(See: ARMv6ThreadSetupStack for additional information) | ||
<br /> | <br /> | ||
Line 618: | Line 617: | ||
! '''Note''' | ! '''Note''' | ||
| At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | ||
− | |||
<br />(See: ARMv6ThreadSetupStack for additional information) | <br />(See: ARMv6ThreadSetupStack for additional information) | ||
<br /> | <br /> | ||
Line 692: | Line 690: | ||
! '''Note''' | ! '''Note''' | ||
| At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | ||
− | |||
<br />(See: ARMv6ThreadSetupStack for additional information) | <br />(See: ARMv6ThreadSetupStack for additional information) | ||
<br /> | <br /> | ||
Line 766: | Line 763: | ||
! '''Note''' | ! '''Note''' | ||
| At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this: | ||
− | |||
<br />(See: ARMv6ThreadSetupStack for additional information) | <br />(See: ARMv6ThreadSetupStack for additional information) | ||
<br /> | <br /> |
Revision as of 04:19, 21 October 2016
Return to Unit Reference
Description
The ARMv6 (ARM11) does not support WFI, WFE, DMB, DSB or ISB instructions, these must be done using MCR operations on the system control processor registers.
The ARMv6 supports the LDREX/STREX instructions for syncronisation (Lock/Mutex/Semaphore etc) but only if the MMU is enabled.
Constants
To be documented
Type definitions
To be documented
Public variables
To be documented
Function declarations
Initialization functions
procedure ARMv6Init;
Note | None documented |
---|
ARMv6 platform functions
procedure ARMv6CPUInit; assembler; nostackframe;
Note | None documented |
---|
procedure ARMv6FPUInit; assembler; nostackframe;
Note | None documented |
---|
procedure ARMv6MMUInit;
Note | None documented |
---|
procedure ARMv6CacheInit; assembler; nostackframe;
Note | None documented |
---|
procedure ARMv6PageTableInit;
Note | See page 6-36 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6SystemCall(Number:LongWord; Param1,Param2,Param3:PtrUInt); assembler; nostackframe;
Note | None documented |
---|
function ARMv6CPUGetMode:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6CPUGetState:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6CPUGetMainID:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6CPUGetModel:LongWord;
Note | None documented |
---|
function ARMv6CPUGetRevision:LongWord;
Note | None documented |
---|
function ARMv6CPUGetDescription:String;
Note | None documented |
---|
function ARMv6FPUGetState:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6L1CacheGetType:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6L1DataCacheGetSize:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6L1DataCacheGetLineSize:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6L1InstructionCacheGetSize:LongWord; assembler; nostackframe;
Note | None documented |
---|
function ARMv6L1InstructionCacheGetLineSize:LongWord; assembler; nostackframe;
Note | None documented |
---|
procedure ARMv6Halt; assembler; nostackframe; public name'_haltproc';
Note | See Standby mode on page 10-3 of the ARM1176JZF-S Revision: r0p7 Technical Reference Manual |
---|
procedure ARMv6Pause; assembler; nostackframe;
Note | See Standby mode on page 10-3 of the ARM1176JZF-S Revision: r0p7 Technical Reference Manual |
---|
procedure ARMv6WaitForEvent; assembler; nostackframe;
Note | None documented |
---|
procedure ARMv6WaitForInterrupt; assembler; nostackframe;
Note | See Standby mode on page 10-3 of the ARM1176JZF-S Revision: r0p7 Technical Reference Manual |
---|
procedure ARMv6DataMemoryBarrier; assembler; nostackframe;
Note | See page 3-74 of the ARM1176JZF-S Technical Reference Manual
Note that this is also available in the FPC RTL as ReadBarrier/WriteBarrier See: \source\rtl\arm\arm.inc
|
---|
procedure ARMv6DataSynchronizationBarrier; assembler; nostackframe;
Note | See page 3-74 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InstructionMemoryBarrier; assembler; nostackframe;
Note | The ARM1176JZF-S Technical Reference Manual states on page 5-10 (section 5.5) that a Flush Prefetch Buffer operation also acts as an IMB
See page 3-79 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateTLB; assembler; nostackframe;
Note | See page 3-86 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateDataTLB; assembler; nostackframe;
Note | See page 3-86 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateInstructionTLB; assembler; nostackframe;
Note | See page 3-86 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateCache; assembler; nostackframe;
Note | See page 3-74 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6CleanDataCache; assembler; nostackframe;
Note | See page 3-74 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateDataCache; assembler; nostackframe;
Note | See page 3-74 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6CleanAndInvalidateDataCache; assembler; nostackframe;
Note | See page 3-74 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateInstructionCache; assembler; nostackframe;
Note | See page 3-74 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6CleanDataCacheRange(Address,Size:LongWord); assembler; nostackframe;
Note | See page 3-71 / 3-76 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateDataCacheRange(Address,Size:LongWord); assembler; nostackframe;
Note | See page 3-71 / 3-76 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6CleanAndInvalidateDataCacheRange(Address,Size:LongWord); assembler; nostackframe;
Note | See page 3-71 / 3-76 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6InvalidateInstructionCacheRange(Address,Size:LongWord); assembler; nostackframe;
Note | See page 3-71 / 3-76 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6FlushPrefetchBuffer; assembler; nostackframe;
Note | See page 3-79 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6FlushBranchTargetCache; assembler; nostackframe;
Note | See page 3-79 of the ARM1176JZF-S Technical Reference Manual |
---|
procedure ARMv6ContextSwitch(OldStack,NewStack:Pointer; NewThread:TThreadHandle); assembler; nostackframe;
OldStack | The address to save the stack pointer to for the current thread (Passed in r0) |
---|---|
NewThread | The address to restore the stack pointer from for the new thread (Passed in r1) |
NewThread | The handle of the new thread to switch to (Passed in r2) |
Note | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this:
|
procedure ARMv6ContextSwitchIRQ(OldStack,NewStack:Pointer; NewThread:TThreadHandle); assembler; nostackframe;
OldStack | The address to save the stack pointer to for the current thread (Passed in r0) |
---|---|
NewStack | The address to restore the stack pointer from for the new thread (Passed in r1) |
NewThread | The handle of the new thread to switch to (Passed in r2) |
Note | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this:
|
procedure ARMv6ContextSwitchFIQ(OldStack,NewStack:Pointer; NewThread:TThreadHandle); assembler; nostackframe;
OldStack | The address to save the stack pointer to for the current thread (Passed in r0) |
---|---|
NewStack | The address to restore the stack pointer from for the new thread (Passed in r1) |
NewThread | The handle of the new thread to switch to (Passed in r2) |
Note | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this:
|
procedure ARMv6ContextSwitchSWI(OldStack,NewStack:Pointer; NewThread:TThreadHandle);
OldStack | The address to save the stack pointer to for the current thread (Passed in r0) |
---|---|
NewStack | The address to restore the stack pointer from for the new thread (Passed in r1) |
NewThread | The handle of the new thread to switch to (Passed in r2) |
Note | At the point of the actual context switch (str sp / ldr sp) the thread stacks will look like this:
|
function ARMv6InterlockedOr(var Target:LongInt; Value:LongInt):LongInt; assembler; nostackframe;
Note | See page ??? of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6InterlockedXor(var Target:LongInt; Value:LongInt):LongInt; assembler; nostackframe;
Note | See page ??? of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6InterlockedAnd(var Target:LongInt; Value:LongInt):LongInt; assembler; nostackframe;
Note | See page ??? of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6InterlockedDecrement(var Target:LongInt):LongInt; assembler; nostackframe;
Note | See page 8-6 of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6InterlockedIncrement(var Target:LongInt):LongInt; assembler; nostackframe;
Note | See page 8-6 of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6InterlockedExchange(var Target:LongInt; Source:LongInt):LongInt; assembler; nostackframe;
Note | See page 8-6 of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6InterlockedAddExchange(var Target:LongInt; Source:LongInt):LongInt; assembler; nostackframe;
Note | See page 8-6 of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6InterlockedCompareExchange(var Target:LongInt; Source,Compare:LongInt):LongInt; assembler; nostackframe;
Note | See page 8-6 of the ARM1176JZF-S Technical Reference Manual |
---|
function ARMv6PageTableGetEntry(Address:PtrUInt):TPageTableEntry;
Note | None documented |
---|
function ARMv6PageTableSetEntry(const Entry:TPageTableEntry):LongWord;
Note | None documented |
---|
function ARMv6VectorTableGetEntry(Number:LongWord):PtrUInt;
Note | None documented |
---|
function ARMv6VectorTableSetEntry(Number:LongWord; Address:PtrUInt):LongWord;
Note | None documented |
---|
function ARMv6FirstBitSet(Value:LongWord):LongWord; assembler; nostackframe;
Note | ARM arm states that CLZ is supported for ARMv5 and above |
---|
function ARMv6CountLeadingZeros(Value:LongWord):LongWord; assembler; nostackframe;
Note | ARM arm states that CLZ is supported for ARMv5 and above |
---|
Return to Unit Reference