Processor modes, and privileged and unprivileged software execution
The ARM architecture supports different levels of execution privilege. The privilege level depends on the processor mode.
Table 3-1 ARM processor modes
Processor mode | Mode number |
---|---|
User | 0b10000 |
FIQ | 0b10001 |
IRQ | 0b10010 |
Supervisor | 0b10011 |
Monitor | 0b10110 |
Abort | 0b10111 |
Hyp | 0b11010 |
Undefined | 0b11011 |
System | 0b11111 |
User mode is an unprivileged mode, and has restricted access to system resources. All other modes have full access to system resources in the current security state, can change mode freely, and execute software as privileged.
Applications that require task protection usually execute in User mode. Some embedded applications might run entirely in any mode other than User mode. An application that requires full access to system resources usually executes in System mode.
Modes other than User mode are entered to service exceptions, or to access privileged resources.
Code can run in either a secure state or in a non-secure state. Hypervisor (Hyp) mode has privileged execution in non-secure state.