Home

Cortex-M0+ Devices Generic User Guide

image

Contents

1. Figure 3 2 LSR 3 LSL Logical shift left by n bits moves the right hand 32 n bits of the register Rm to the left by n places into the left hand 32 n bits of the result and it sets the right hand n bits of the result to 0 See Figure 3 3 on page 3 8 You can use the LSL operation to multiply the value in the register Rm by 2 if the value is regarded as an unsigned integer or a two s complement signed integer Overflow can occur without warning When the instruction is LSLS the carry flag is updated to the last bit shifted out bit 32 n of the register Rm These instructions do not affect the carry flag when used with LSL 0 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 7 Non Confidential The Cortex MO Instruction Set Note If n is 32 or more then all the bits in the result are cleared to 0 If nis 33 or more and the carry flag is updated it is updated to 0 o l 000 v Yy y y 31 5 14 3 2 110 Carry A A Flag j t Figure 3 3 LSL 3 ROR Rotate right by n bits moves the left hand 32 n bits of the register Rm to the right by n places into the right hand 32 n bits of the result and it moves the right hand n bits of the register into the left hand n bits of the result See Figure 3 4 When the instruction is RORS the carry flag is updated
2. QxC0000000 OxDFFFFFFF Non shareable QxE0000000 OxEQOFFFFF Private Peripheral Strongly ordered Shareable Bus QxE0100000 OxFFFFFFFF System Device a See Memory regions types and attributes on page 2 10 for more information b WT Write through no write allocate WBWA Write back write allocate 2 2 4 Software ordering of memory accesses The order of instructions in the program flow does not always guarantee the order of the corresponding memory transactions This is because a processor can reorder some memory accesses to improve efficiency providing this does not affect the behavior of the instruction sequence memory or devices in the memory map might have different wait states some memory accesses are buffered or speculative Memory system ordering of memory accesses on page 2 11 describes the cases where the memory system guarantees the order of memory accesses Otherwise if the order of memory accesses is critical software must include memory barrier instructions to force that ordering The processor provides the following memory barrier instructions DMB DSB ISB The Data Memory Barrier DMB instruction ensures that outstanding memory transactions complete before subsequent memory transactions See DMB on page 3 39 The Data Synchronization Barrier DSB instruction ensures that outstanding memory transactions complete before subsequent instructions execute See DSB on
3. ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 20 Non Confidential The Cortex M0 Processor The processor saves an EXC_RETURN value to the LR on exception entry The exception mechanism relies on this value to detect when the processor has completed an exception handler Bits 31 4 ofan EXC_RETURN value are 0xFFFFFFF When the processor loads a value matching this pattern to the PC it detects that the operation is not a normal branch operation and instead that the exception is complete Therefore it starts the exception return sequence Bits 3 0 of the EXC_RETURN value indicate the required return stack and processor mode as Table 2 12 shows Table 2 12 Exception return behavior EXC_RETURN Description OxFFFFFFF1 Return to Handler mode Exception return gets state from the main stack MSP Execution uses MSP after return OxFFFFFFF9 Return to Thread mode Exception return gets state from MSP Execution uses MSP after return OxFFFFFFFD Return to Thread mode Exception return gets state from PSP Execution uses PSP after return All other values Reserved ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 21 Non Confidential The Cortex M0 Processor 2 4 Fault handling 2 4 1 Lockup Faults are a subset of exceptions see Exception model on page 2 16 All faults result in the HardFault exception being taken or cause Lockup if they occur in the NM
4. gt PSP MSP Link Register LR R14 Program Counter PC R15 PSR Program Status Register PRIMASK Interrupt mask register Special registers CONTROL Control Register Table 2 2 Core register set summary Name Typea Reset value Description RO R12 RW Unknown General purpose registers on page 2 4 MSP RW See description Stack Pointer on page 2 4 PSP RW Unknown Stack Pointer on page 2 4 LR RW Unknown Link Register on page 2 4 PC RW See description Program Counter on page 2 4 PSR RW Unknown Program Status Register on page 2 4 APSR RW Unknown Application Program Status Register on page 2 5 IPSR RO 0x00000000 Interrupt Program Status Register on page 2 6 ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 3 1D041812 Non Confidential The Cortex M0 Processor Table 2 2 Core register set summary continued Name Typea Reset value Description EPSR RO Unknown Execution Program Status Register on page 2 6 PRIMASK RW 0x00000000 Priority Mask Register on page 2 7 CONTROL RW 0x00000000 CONTROL register on page 2 8 a Describes access type during program execution in Thread mode and Handler mode Debug access can differ b Bit 24 is the T bit and is loaded from bit 0 of the reset vector General purpose registers RO R12 are 32 bit general purpose registers for data operations Stack Pointer The Stack Pointer SP is register R13 In Thread mode bit 1 of the CONTROL register indicates the stack pointer to use
5. 0 Main Stack Pointer MSP This is the reset value 1 Process Stack Pointer PSP On reset the processor loads the MSP with the value from address 0x00000000 Link Register The Link Register LR is register R14 It stores the return information for subroutines function calls and exceptions On reset the LR value is Unknown Program Counter The Program Counter PC is register R15 It contains the current program address On reset the processor loads the PC with the value of the reset vector that is at address 0x00000004 Bit 0 of the value is loaded into the EPSR T bit at reset and must be 1 Program Status Register The Program Status Register PSR combines Application Program Status Register APSR Interrupt Program Status Register IPSR Execution Program Status Register EPSR These registers are mutually exclusive bitfields in the 32 bit PSR The PSR bit aaa are 31 30 29 2827 25 24 23 ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 4 ID041812 Non Confidential The Cortex M0 Processor Access these registers individually or as a combination of any two or all three registers using the register name as an argument to the MSR or MRS instructions For example read all of the registers using PSR with the MRS instruction write to the APSR using APSR with the MSR instruction The PSR combinations and attributes are Table 2 3 PSR register combinations Register Typ
6. Meaning EQ Z Equal last flag setting result was zero NE Z 0 Not equal last flag setting result was non zero CS or HS C Higher or same unsigned CC or LO C 0 Lower unsigned MI N 1 Negative PL N 0 Positive or zero VS V 1 Overflow VC V 0 No overflow HI C l1andZ 0 Higher unsigned LS C 0or Z 1 Lower or same unsigned GE N V Greater than or equal signed LT N V Less than signed GT Z 0OandN V Greater than signed LE Z l1andN V Less than or equal signed AL Can have any value Always This is the default when no suffix is specified ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 10 Non Confidential 3 4 Memory access instructions Table 3 5 shows the memory access instructions The Cortex MO Instruction Set Table 3 5 Memory access instructions Mnemonic Brief description See ADR Generate PC relative address ADR on page 3 12 LD Load Multiple registers LDM and STM on page 3 16 LDR type Load Register using immediate offset LDR and STR immediate offset on page 3 13 LDR type Load Register using register offset LDR and STR register offset on page 3 14 LDR Load Register from PC relative address LDR PC relative on page 3 15 POP Pop registers from stack PUSH and POP on page 3 18 PUSH Push registers onto stack PUSH and POP on page 3 18 STM Store Multiple registers LDM and STM on page 3 16 STR type Sto
7. If a pending interrupt is enabled the NVIC activates the interrupt based on its priority If an interrupt is not enabled asserting its interrupt signal changes the interrupt state to pending but the NVIC never activates the interrupt regardless of its priority ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 3 Non Confidential Cortex M0 Peripherals 4 2 2 Interrupt Clear Enable Register The NVIC_ICER disables interrupts and show which interrupts are enabled See the register summary in Table 4 2 on page 4 3 for the register attributes The bit assignments are 31 0 CLRENA bits Table 4 4 NVIC_ICER bit assignments Bits Name Function 31 0 _CLRENA Interrupt clear enable bits Write 0 no effect 1 disable interrupt Read 0 interrupt disabled 1 interrupt enabled 4 2 3 Interrupt Set Pending Register The NVIC_ISPR forces interrupts into the pending state and shows which interrupts are pending See the register summary in Table 4 2 on page 4 3 for the register attributes The bit assignments are 31 0 SETPEND bits Table 4 5 NVIC_ISPR bit assignments Bits Name Function 31 0 SETPEND Interrupt set pending bits Write 0 no effect 1 changes interrupt state to pending Read 0 interrupt is not pending 1 interrupt is pending Note Writing 1 to the NVIC_ISPR bit corresponding to an interrupt that is pending has no effect a disabled in
8. lt Rn SP gt imm LDR lt B H gt Rt Rn imm STR Rt lt Rn SP gt 7mm STR lt B H gt Rt Rn imm where Rt Is the register to load or store Rn Is the register on which the memory address is based imm Is an offset from Rn If immis omitted it is assumed to be zero Operation LDR LDRB and LDRH instructions load the register specified by Rt with either a word byte or halfword data value from memory Sizes less than word are zero extended to 32 bits before being written to the register specified by Rt STR STRB and STRH instructions store the word least significant byte or lower halfword contained in the single register specified by Rt in to memory The memory address to load from or store to is the sum of the value in the register specified by either Rn or SP and the immediate value imm Restrictions In these instructions Rt and Rn must only specify R0 R7 imm must be between Oand 1020 and an integer multiple of four for LDR and STR using SP as the base register Oand 124 and an integer multiple of four for LDR and STR using RO R7 as the base register Oand 62 and an integer multiple of two for LDRH and STRH Oand 31 for LDRB and STRB The computed address must be divisible by the number of bytes in the transaction see Address alignment on page 3 8 Condition flags These instructions do not change the flags Examples LDR R4 R7 Loads R4 from the address i
9. 31 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 3 The Cortex MO Instruction Set Table 3 1 Cortex M0 instructions continued Mnemonic Operands Brief description Flags Page UXTH Rd Rm Zero extend a halfword page 3 31 WFE Wait For Event page 3 47 WFI Wait For Interrupt page 3 48 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 4 The Cortex MO Instruction Set 3 2 Intrinsic functions ISO IEC C code cannot directly access some Cortex M0 instructions This section describes intrinsic functions that can generate these instructions provided by CMSIS and that might be provided by a C compiler Ifa C compiler does not support an appropriate intrinsic function you might have to use inline assembler to access the relevant instruction CMSIS provides the following intrinsic functions to generate instructions that ISO IEC C code cannot directly access Table 3 2 CMSIS intrinsic functions to generate some Cortex M0 instructions Instruction CMSIS intrinsic function CPSIE i void __enable_irq void CPSID i void __disable_irq void ISB void __ISB void DSB void __DSB void DMB void __DMB void NOP void __NOP void REV uint32_t __REV uint32_t int value REV16 uint32_t __REV16 uint32_t int value REVSH uint32_t __REVSH uint32_t int value SEV void __SEV void WF
10. 31 of the register into the left hand n bits of the result See Figure 3 1 on page 3 7 You can use the ASR operation to divide the signed value in the register Rm by 2 with the result being rounded towards negative infinity When the instruction is ASRS the carry flag is updated to the last bit shifted out bit n 1 of the register Rm ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 6 Non Confidential The Cortex MO Instruction Set Note If n is 32 or more then all the bits in the result are set to the value of bit 31 of Rm If nis 32 or more and the carry flag is updated it is updated to the value of bit 31 of Rm O O Figure 3 1 ASR 3 LSR Logical shift right by n bits moves the left hand 32 n bits of the register Rm to the right by n places into the right hand 32 n bits of the result and it sets the left hand n bits of the result to 0 See Figure 3 2 You can use the LSR operation to divide the value in the register Rm by 2 if the value is regarded as an unsigned integer When the instruction is LSRS the carry flag is updated to the last bit shifted out bit n 1 of the register Rm Note If nis 32 or more then all the bits in the result are cleared to 0 If nis 33 or more and the carry flag is updated it is updated to 0 Carry Flag le O
11. ARM All rights reserved 4 7 1ID041812 Non Confidential Cortex M0 Peripherals 4 3 System Control Block The System Control Block SCB provides system implementation information and system control This includes configuration control and reporting of the system exceptions The SCB registers are Table 4 9 Summary of the SCB registers Address Name Type Resetvalue Description xEQQ0ED0 CPUID RO 0x410CC2004 CPUID Register QxEQQQED04 ICSR RW gt 0x00000000 Interrupt Control and State Register on page 4 9 xEQQQED08 VTORS RW 0x00000000 Vector Table Offset Register on page 4 11 OxEQQ0EDOC AIRCR RW QxFAQ50000 Application Interrupt and Reset Control Register on page 4 12 xEQQ0ED10 SCR RW 0x00000000 System Control Register on page 4 13 xEQQ0ED14 CCR RO 0x00000204 Configuration and Control Register on page 4 14 OxE000EDIC SHPR2 RW 0x00000000 System Handler Priority Register 2 on page 4 15 0xE000ED20 SHPR3 RW 0x00000000 System Handler Priority Register 3 on page 4 15 a The CPUID value is determined by the revision of the processor b See the register description for more information c Ifvector table offset register is implemented 4 3 1 CMSIS mapping of the Cortex M0 SCB registers To improve software efficiency CMSIS simplifies the SCB register presentation In CMSIS the array SHP 1 corresponds to the registers SHPR2 SHPR3 4 3 2 CPUID Register The CPUID register contains
12. Branch conditionally B BL BX and BLX on page 3 34 BL Branch with Link B BL BX and BLX on page 3 34 BLX Branch indirect with Link B BL BX and BLX on page 3 34 BX Branch indirect B BL BX and BLX on page 3 34 ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 33 1D041812 Non Confidential The Cortex MO Instruction Set 3 6 1 B BL BX and BLX Branch instructions Syntax B cond label BL label BX Rm BLX Rm where cond Is an optional condition code see Conditional execution on page 3 9 label Is a PC relative expression See PC relative expressions on page 3 9 Rm Is a register providing the address to branch to Operation All these instructions cause a branch to the address indicated by Jabel or contained in the register specified by Rm In addition the BL and BLX instructions write the address of the next instruction to LR the link register R14 the BX and BLX instructions result in a HardFault exception if bit 0 of Rm is 0 BL and BLX instructions also set bit 0 of the LR to 1 This ensures that the value is suitable for use by a subsequent POP PC or BX instruction to perform a successful return branch Table 3 9 shows the ranges for the various branch instructions Table 3 9 Branch ranges Instruction Branch range B label 2 KB to 2 KB Bcond label 256 bytes to 254 bytes BL label 16 MB to 16 MB BX Rm Any value in register BLX Rm Any value in r
13. Fault handler HardFault is the only exception handled by the fault handler ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 2 17 The Cortex M0 Processor NMI PendSV SVCall and SysTick are all system exceptions handled by system handlers System handlers 2 3 4 Vector table The vector table contains the reset value of the stack pointer and the start addresses also called exception vectors for all exception handlers Figure 2 1 shows the order of the exception vectors in the vector table The least significant bit of each enabled vector must be 1 indicating that the exception handler is written in Thumb code Exception number IRQ number Vector Offset 16 n n IRQn 0x40 4n 18 2 IRQ2 0x48 17 1 IRQ1 0x44 16 0 IRQO 0x40 15 1 SysTick if implemented 0x3C 14 2 PendSV 0x38 13 Reserved 12 11 5 SVCall 0x2C 10 9 8 7 Reserved 6 5 4 0x10 3 13 HardFault 0x0C 2 14 NMI 0x08 1 Reset 0x04 Initial SP value 0x00 Figure 2 1 Vector table On system reset the vector table is fixed at address 0x00000000 Privileged software can write to the VTOR to relocate the vector table start address to a different memory location in the range 0x00000000 to OxFFFFFF8 in multiples of 256 bytes see Vector Table Offset Register on page 4 11 2 3 5 Exception priorities As Table 2 11 on page 2 17 shows all exceptions have an associated pri
14. M0 Instruction Set Multiply using 32 bit operands and producing a 32 bit result Syntax MULS Rd Rn Rm where Rd Is the destination register Rn Rm Are registers holding the values to be multiplied Operation The MUL instruction multiplies the values in the registers specified by Rn and Rm and places the least significant 32 bits of the result in Rd The condition code flags are updated on the result of the operation see Conditional execution on page 3 9 The results of this instruction do not depend on whether the operands are signed or unsigned Restrictions In this instruction Rd Rn and Rm must only specify RO R7 Rd must be the same as Rm Condition flags This instruction updates the N and Z flags according to the result e does not affect the C or V flags Examples MULS RO R2 RO Multiply with flag update RO RO x R2 ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 29 Non Confidential The Cortex MO Instruction Set 3 5 7 REV REV16 and REVSH Reverse bytes Syntax REV Rd Rn REV16 Rd Rn REVSH Rd Rn where Rd Is the destination register Rn Is the source register Operation Use these instructions to change endianness of data REV converts 32 bit big endian data into little endian data or 32 bit little endian data into big endian data REV16 converts two packed 16 bit big endian data into little endian data or two packed 16 bit little endian d
15. Non Confidential 3 7 12 WFI The Cortex MO Instruction Set Wait for Interrupt Syntax WFI Operation WFI suspends execution until one of the following events occurs e an exception e an interrupt becomes pending that would preempt if PRIMASK PM was clear a Debug Entry request regardless of whether debug is enabled Note WFI is intended for power saving only When writing software assume that WFI might behave as a NOP operation Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples WFI Wait for interrupt ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 48 Non Confidential Chapter 4 Cortex M0 Peripherals The following sections describe the ARM Cortex M0 core peripherals About the Cortex M0 peripherals on page 4 2 Nested Vectored Interrupt Controller on page 4 3 System Control Block on page 4 8 System timer SysTick on page 4 16 Memory Protection Unit on page 4 19 Single cycle I O Port on page 4 28 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 4 1 Cortex M0 Peripherals 4 1 About the Cortex M0 peripherals The address map of the Private Peripheral Bus PPB is Table 4 1 Core peripheral register regions Address Core peripheral Description QxEQQQEQ08 0xEQQQEQOF System Control Block Table 4 9 on page 4 8 QxEQQQE010 0xEQQQEQ 1F R
16. OR operations on the values in Rn and Rm The BIC instruction performs an AND operation on the bits in Rn with the logical negation of the corresponding bits in the value of Rm The condition code flags are updated on the result of the operation see The condition flags on page 3 9 Restrictions In these instructions Rd Rn and Rm must only specify RO R7 Condition flags These instructions update the N and Z flags according to the result do not affect the C or V flag Examples ANDS R2 R2 R1 ORRS R2 R2 R5 EORS R7 R7 R6 BICS RO RO R1 ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 23 Non Confidential The Cortex MO Instruction Set 3 5 3 ASR LSL LSR and ROR Arithmetic Shift Right Logical Shift Left Logical Shift Right and Rotate Right Syntax ASRS Rd Rm Rs ASRS Rd Rm imm LSLS Rd Rm Rs LSLS Rd Rm imm LSRS Rd Rm Rs LSRS Rd Rm imm RORS Rd Rm Rs where Rd Is the destination register If Rd is omitted it is assumed to take the same value as Rm Rm Is the register holding the value to be shifted Rs Is the register holding the shift length to apply to the value in Rm imm Is the shift length The range of shift length depends on the instruction ASR shift length from 1 to 32 LSL shift length from 0 to 31 LSR shift length from 1 to 32 Note MOVS Rd Rmis a pseudonym for LSLS Rd Rm 0 Operation ASR LSL LSR and ROR perfor
17. Thread mode 1 Reserved 2 NMI 3 HardFault 4 10 Reserved11 SVCall 12 13 Reserved 14 PendSV 15 SysTick if implemented 16 IRQO 47 IRQ31 gt 48 63 Reserved see Exception types on page 2 16 for more information a Ifthe device does not implement the SysTick timer exception number 15 is reserved b The number of functional interrupts is configured by the MCU implementer Execution Program Status Register The EPSR contains the Thumb state bit See the register summary in Table 2 2 on page 2 3 for the EPSR attributes The bit assignments are Table 2 6 EPSR bit assignments Bits Name Function 81 25 Reserved 24 T Thumb state bit 23 0 Reserved Attempts by application software to read the EPSR directly using the MRS instruction always return zero Attempts to write the EPSR using the MSR instruction are ignored Fault handlers can examine the EPSR value in the stacked PSR to determine the cause of the fault See Exception entry and return on page 2 19 The following can clear the T bit to 0 instructions BLX BX and POP PC restoration from the stacked xPSR value on an exception return bit 0 of the vector value on an exception entry Attempting to execute instructions when the T bit is 0 results in a HardFault or Lockup See Lockup on page 2 22 for more information ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 6 Non Confidential Th
18. a full descending stack On completion PUSH updates the SP register to point to the location of the lowest store value POP updates the SP register to point to the location above the highest location loaded If a POP instruction includes PC in its reglist a branch to this location is performed when the POP instruction has completed Bit 0 of the value read for the PC is used to update the APSR T bit This bit must be 1 to ensure correct operation Restrictions In these instructions reglist must use only RO R7 the exception is LR for a PUSH and PC for a POP Condition flags These instructions do not change the flags Examples PUSH R0 R4 R7 Push RQ R4 R5 R6 R7 onto the stack PUSH R2 LR Push R2 and the link register onto the stack POP RO R6 PC Pop r0 r6 and PC from the stack then branch to the new PC ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 18 1ID041812 Non Confidential 3 5 General data processing instructions Table 3 6 shows the data processing instructions The Cortex MO Instruction Set Table 3 6 Data processing instructions Mnemonic Brief description See ADCS Add with Carry ADC ADD RSB SBC and SUB on page 3 20 ADD S Add ADC ADD RSB SBC and SUB on page 3 20 ANDS Logical AND AND ORR EOR and BIC on page 3 23 ASRS Arithmetic Shift Right ASR LSL LSR and ROR on page 3 24 BICS B
19. about the APSR see Program Status Register on page 2 4 A carry occurs if the result of an addition is greater than or equal to 232 if the result of a subtraction is positive or zero as the result of a shift or rotate instruction Overflow occurs when the sign of the result in bit 31 does not match the sign of the result had the operation been performed at infinite precision for example if adding two negative values results in a positive value if adding two positive values results in a negative value if subtracting a positive value from a negative value generates a positive value ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 9 ID041812 Non Confidential The Cortex MO Instruction Set if subtracting a negative value from a positive value generates a negative value The Compare operations are identical to subtracting for CMP or adding for CMN except that the result is discarded See the instruction descriptions for more information Condition code suffixes Conditional branch is shown in syntax descriptions as B cond A branch instruction with a condition code is only taken if the condition code flags in the APSR meet the specified condition otherwise the branch instruction is ignored Table 3 4 shows the condition codes to use Table 3 4 also shows the relationship between condition code suffixes and the N Z C and V flags Table 3 4 Condition code suffixes Suffix Flags
20. for STM if Rn appears in reg ist then it must be the first register in the list Condition flags These instructions do not change the flags ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 16 Non Confidential The Cortex MO Instruction Set Examples LDM RO RO R3 R4 LDMIA is a synonym for LDM STMIA R1 R2 R4 R6 Incorrect examples STM R5 R4 R5 R6 Value stored for R5 is unpredictable LDM R2 There must be at least one register in the list ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 17 3 4 6 PUSH and POP The Cortex MO Instruction Set Push registers onto and pop registers off a full descending stack Syntax PUSH reglist POP reglist where reglist Is a non empty list of registers enclosed in braces It can contain register ranges It must be comma separated if it contains more than one register or register range Operation PUSH stores registers on the stack with the lowest numbered register using the lowest memory address and the highest numbered register using the highest memory address POP loads registers from the stack with the lowest numbered register using the lowest memory address and the highest numbered register using the highest memory address PUSH uses the value in the SP register minus four as the highest memory address POP uses the value in the SP register as the lowest memory address implementing
21. of the current instruction plus 4 bytes Your assembler might permit other syntaxes for PC relative expressions such as a label plus or minus a number or an expression of the form PC imm 3 3 6 Conditional execution Most data processing instructions update the condition flags in the Application Program Status Register APSR according to the result of the operation see Application Program Status Register on page 2 5 Some instructions update all flags and some only update a subset Ifa flag is not updated the original value is preserved See the instruction descriptions for the flags they affect You can execute a conditional branch instruction based on the condition flags set in another instruction either immediately after the instruction that updated the flags after any number of intervening instructions that have not updated the flags On the Cortex M0 processor conditional execution is available by using conditional branches This section describes The condition flags Condition code suffixes on page 3 10 The condition flags The APSR contains the following condition flags N Set to 1 when the result of the operation was negative cleared to 0 otherwise Z Set to 1 when the result of the operation was zero cleared to 0 otherwise C Set to 1 when the operation resulted in a carry cleared to 0 otherwise Vv Set to 1 when the operation caused overflow cleared to 0 otherwise For more information
22. the access permissions for privileged and unprivileged software Table 4 33 AP encoding APIZ OI eemiasions permissione D2serition 000 No access No access All accesses generate a permission fault 001 RW No access Access from privileged software only 010 RW RO Writes by unprivileged software generate a permission fault oll RW RW Full access ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 25 Non Confidential Cortex M0 Peripherals Table 4 33 AP encoding continued Privileged Unprivileged AP 2 0 Description permissions permissions 100 Unpredictable Unpredictable Reserved 101 RO No access Reads by privileged software only 110 RO RO Read only by privileged or unprivileged software 111 RO RO Read only by privileged or unprivileged software 4 5 7 MPU access permission faults When an access violates the MPU permissions the processor generates a HardFault 4 5 8 Updating an MPU region To update the attributes for an MPU region update the MPU_RNR MPU_RBAR and MPU_RASR registers Updating an MPU region Simple code to configure one region R1 region number R2 size enable R3 attributes R4 address LDR RQ MPU_RNR O xEQ QQED98 MPU region number register STR R1 RQ 0x0 Region Number STR R4 RQ 0x4 Region Base Address STRH R2 RQ 0x8 Region Size and Enable STRH R3 RO 0xA Region Attribute Software m
23. the last subregion Disabling a subregion means another region overlapping the disabled range matches instead If no other enabled region overlaps the disabled subregion the MPU issues a fault Example of SRD use Two regions with the same base address overlap Region one is 128KB and region two is 512KB To ensure the attributes from region one apply to the first 128KB region set the SRD field for region two to b00000011 to disable the first two subregions as the figure shows Region 2 with Offset from subregions base address 512KB 448KB 384KB 320KB 256KB Region 1 192KB 128KB Disabled subregion 64KB Base address of both regions Diseblodisubtegion 0 4 5 9 MPU usage hints and tips To avoid unexpected behavior disable the interrupts before updating the attributes of a region that the interrupt handlers might access Ensure software uses aligned accesses of the correct size to access MPU registers except for the MPU_RASR it must use aligned word accesses to MPU registers When setting up the MPU and if the MPU has previously been programmed disable unused regions to prevent any previous region settings from affecting the new MPU setup MPU configuration for a microcontroller Usually a microcontroller system has only a single processor and no caches In such a system program the MPU as follows Table 4 34 Example memory region attributes for a microcontroller Memory region C B S amp
24. the processor part number version and implementation information See the register summary in Table 4 9 for its attributes The bit assignments are 31 24 23 2019 16 15 4 3 0 Table 4 10 CPUID register bit assignments Bits Name Function 31 24 Implementer Implementer code 0x41 ARM 23 20 Variant Variant number the r value in the rnpn product revision identifier 0x0 Revision 0 ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 8 1ID041812 Non Confidential Cortex M0 Peripherals Table 4 10 CPUID register bit assignments continued Bits Name Function 19 16 Constant Constant that defines the architecture of the processor xC ARMV6 M architecture 15 4 Partno Part number of the processor 0xC60 Cortex M0 3 0 Revision Revision number the p value in the rnpn product revision identifier 0x0 Patch 0 4 3 3 Interrupt Control and State Register The ICSR provides aset pending bit for the Non Maskable Interrupt NMI exception _ set pending and clear pending bits for the PendSV and SysTick exceptions indicates the exception number of the exception being processed whether there are preempted active exceptions the exception number of the highest priority pending exception whether any interrupts are pending ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 9 1D041812 Non Confidential Cortex M0 Peripherals See the re
25. want to program a device that includes the Cortex M0 processor This book is organized into the following chapters Chapter 1 Introduction Read this for an introduction to the Cortex M0 processor and its features Chapter 2 The Cortex M0 Processor Read this for a description of the programmers model the processor memory model exception and fault handling and power management Chapter 3 The Cortex M0 Instruction Set Read this for a description of the processor instruction set Chapter 4 Cortex M0 Peripherals Read this for a description of the Cortex M0 core peripherals The ARM Glossary is a list of terms used in ARM documentation together with definitions for those terms The ARM Glossary does not contain terms that are industry standard unless the ARM meaning differs from the generally accepted meaning See ARM Glossary http infocenter arm com help topic com arm doc aeg0014 index htm1 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved vi Non Confidential Preface Typographical Conventions Additional reading The typographical conventions are italic Introduces special terminology denotes cross references and citations bold Highlights interface elements such as menu names Denotes signal names Also used for terms in descriptive lists where appropriate monospace Denotes text that you can enter at the keyboard such as commands file and program names and source code monos
26. 2A 1ID041812 Copyright 2012 ARM All rights reserved 3 43 Non Confidential 3 7 8 NOP No Operation Syntax NOP Operation The Cortex MO Instruction Set NOP performs no operation and is not guaranteed to be time consuming The processor might remove it from the pipeline before it reaches the execution stage Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples NOP No operation ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 44 The Cortex MO Instruction Set 3 7 9 SEV Send Event Syntax SEV Operation SEV causes an event to be signaled to all processors within a multiprocessor system It also sets the local event register see Power management on page 2 23 See also WFE on page 3 47 Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples SEV Send Event ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 45 1D041812 Non Confidential 3 7 10 SVC The Cortex MO Instruction Set Supervisor Call Syntax SVC imm where imm Is an integer in the range 0 255 Operation The SVC instruction causes the SVC exception immis ignored by the processor If required it can be retrieved by the exception handler to determine what service is being requested Restrictions Executing the SVC instruction whi
27. 3 40 ISB Instruction Synchronization Barrier ISB on page 3 41 MRS Move from special register to register MRS on page 3 42 MSR Move from register to special register MSR on page 3 43 NOP No Operation NOP on page 3 44 SEV Send Event SEV on page 3 45 SVC Supervisor Call SVC on page 3 46 WFE Wait For Event WFE on page 3 47 WFI Wait For Interrupt WFI on page 3 48 ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 36 1ID041812 Non Confidential The Cortex MO Instruction Set 3 7 1 BKPT Breakpoint Syntax BKPT imm where imm Is an integer in the range 0 255 Operation The BKPT instruction causes the processor to enter Debug state Debug tools can use this to investigate system state when the instruction at a particular address is reached immis ignored by the processor If required a debugger can use it to store additional information about the breakpoint The processor might also produce a HardFault or go into Lockup if a debugger is not attached when a BKPT instruction is executed See Lockup on page 2 22 for more information Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples BKPT 0 Breakpoint with immediate value set to 0x0 ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 37 1D041812 Non Confidential The Cortex MO Instruction Set 3 7 2 CPS Change Processor State Syntax CPSID i CPSIE i Operation CPS changes the PRIMASK special regi
28. B cc label Branch conditionally page 3 34 BICS Rd Rn Rm Bit Clear N Z page 3 23 BKPT imm Breakpoint page 3 37 BL label Branch with Link page 3 34 BLX Rm Branch indirect with Link page 3 34 BX Rm Branch indirect page 3 34 CMN Rn Rm Compare Negative N Z C V page 3 26 CMP Rn lt Rm imm gt Compare N Z C V page 3 26 CPSID i Change Processor State Disable Interrupts page 3 38 CPSIE i Change Processor State Enable Interrupts page 3 38 DMB Data Memory Barrier page 3 39 DSB Data Synchronization Barrier page 3 40 EORS Rd Rn Rm Exclusive OR N Z page 3 23 ISB Instruction Synchronization Barrier page 3 41 LDM Rn reglist Load Multiple registers increment after page 3 16 LDR Rt label Load Register from PC relative address page 3 11 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential The Cortex MO Instruction Set Table 3 1 Cortex M0 instructions continued Mnemonic Operands Brief description Flags Page LDR Rt Rn lt Rm imm gt Load Register with word page 3 11 LDRB Rt Rn lt Rm imm gt Load Register with byte page 3 11 LDRH Rt Rn lt Rm imm gt Load Register with halfword page 3 11 LDRSB Rt Rn lt Rm imm gt Load Register with signed byte page 3 11 LDRSH Rt Rn lt Rm imm gt Load Register with signed halfword
29. CMSIS defines a common way to access peripheral registers define exception vectors the names of the registers of the core peripherals the core exception vectors a device independent interface for RTOS kernels CMSIS includes address definitions and data structures for the core peripherals in the Cortex M0 processor It also includes optional interfaces for middleware components comprising a TCP IP stack and a Flash file system CMSIS simplifies software development by enabling the reuse of template code and the combination of CMSIS compliant software components from various middleware vendors Software vendors can expand CMSIS to include their peripheral definitions and access functions for those peripherals This document includes the register names defined by CMSIS and gives short descriptions of CMSIS functions that address the processor core and the core peripherals Note This document uses the register short names defined by CMSIS In a few cases these differ from the architectural short names that might be used in other documents The following sections give more information about CMSIS Power management programming hints on page 2 24 Intrinsic functions on page 3 5 NVIC programming hints on page 4 7 ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 9 ID041812 Non Confidential 2 2 Memory model 2 2 1 The Cortex M0 Processor This section describes the processo
30. Cortex M0O Devices Generic User Guide ARM Copyright 2012 ARM All rights reserved ARM DUI 0662A 1ID041812 Cortex M0 Devices Generic User Guide Copyright 2012 ARM All rights reserved Release Information The following changes have been made to this book Change history Date Issue Confidentiality Change 04 April 2012 A Non Confidential First release Proprietary Notice Words and logos marked with or are registered trademarks or trademarks of ARM in the EU and other countries except as otherwise stated below in this proprietary notice Other brands and names mentioned herein may be the trademarks of their respective owners Neither the whole nor any part of the information contained in or the product described in this document may be adapted or reproduced in any material form except with the prior written permission of the copyright holder The product described in this document is subject to continuous developments and improvements All particulars of the product and its use contained in this document are given by ARM in good faith However all warranties implied or expressed including but not limited to implied warranties of merchantability or fitness for purpose are excluded This document is intended only to assist the reader in the use of the product ARM shall not be liable for any loss or damage arising from the use of any information in this document or any error or omission in such infor
31. D S Rd Rn lt Rm imm gt RSBS Rd Rn Rm 0 SBCS Rd Rn Rm SUB S Rd Rn lt Rm imm Where S Causes an ADD or SUB instruction to update flags Rd Specifies the result register Rn Specifies the first source register Rm Specifies the second source register imm Specifies a constant immediate value When the optional Rd register specifier is omitted it is assumed to take the same value as Rn for example ADDS R1 R2 is identical to ADDS R1 R1 R2 Operation The ADCS instruction adds the value in Rn to the value in Rm adding another one if the carry flag is set places the result in the register specified by Rd and updates the N Z C and V flags The ADD instruction adds the value in Rn to the value in Rm or an immediate value specified by imm and places the result in the register specified by Rd The ADDS instruction performs the same operation as ADD and also updates the N Z C and V flags The RSBS instruction subtracts the value in Rn from zero producing the arithmetic negative of the value and places the result in the register specified by Rd and updates the N Z C and V flags The SBCS instruction subtracts the value of Rm from the value in Rn deducts another one if the carry flag is set It places the result in the register specified by Rd and updates the N Z C and V flags The SUB instruction subtracts the value in Rm or the immediate specified by imm It places the result in the register specified by
32. D041812 Copyright 2012 ARM All rights reserved 4 24 Non Confidential 4 5 6 Cortex M0 Peripherals The smallest permitted region size is 256B corresponding to a SIZE value of 7 Table 4 31 gives example SIZE values with the corresponding region size and value of N in the MPU_RBAR MPU access permission attributes Table 4 31 Example SIZE field values SIZE value Region size Value ofN Note b00111 7 256B 8 Minimum permitted size b01001 9 1KB 10 b10011 19 1MB 20 b11101 29 1GB 30 b11111 31 4GB 32 Maximum possible size a Inthe MPU_RBAR see MPU Region Base Address Register on page 4 22 This section describes the MPU access permission attributes The access permission bits C B S AP and XN of the MPU_RASR control access to the corresponding memory region If an access is made to an area of memory without the required permissions then the MPU generates a permission fault Table 4 32 shows the encodings for the C B and S access permission bits Table 4 32 C B and S encoding C B S Memory type Shareability Other attributes 0 0 xa _ Strongly ordered Shareable 1 xa Device Shareable 1 0 0 Normal Not shareable Outer and inner write through No write allocate con Shareable 1 0 Normal Not shareable Outer and inner write back No write allocate 1 Shareable a The MPU ignores the value of this bit Table 4 33 shows the AP encodings that define
33. E void __WFE void WFI void __WFI void CMSIS also provides a number of functions for accessing the special registers using MRS and MSR instructions Table 3 3 CMSIS intrinsic functions to access the special registers Special register Access CMSIS function PRIMASK Read uint32_t __get_PRIMASK void Write void __set_PRIMASK uint32_t value CONTROL Read uint32_t __get_CONTROL void Write void __set_CONTROL uint32_t value MSP Read uint32_t __get_MSP void Write void __set_MSP uint32_t TopOfMainStack PSP Read uint32_t __get_PSP void Write void __set_PSP uint32_t TopOfProcStack ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 5 1ID041812 Non Confidential The Cortex MO Instruction Set 3 3 About the instruction descriptions 3 3 1 Operands The following sections give more information about using the instructions Operands Restrictions when using PC or SP Shift operations Address alignment on page 3 8 PC relative expressions on page 3 9 Conditional execution on page 3 9 An instruction operand can be an ARM register a constant or another instruction specific parameter Instructions act on the operands and often store the result in a destination register When there is a destination register in the instruction it is usually specified before the other operands 3 3 2 Restrictions when using PC or SP Many instructions are unable to use or hav
34. EQ al VECTCLRACTIVE reserved for debug use Reserved Table 4 13 AIRCR bit assignments Bits Name Type Function 31 16 Read Reserved RW Register key Write VECTKEY Reads as Unknown On writes write 0x05FA to VECTKEY otherwise the write is ignored 15 ENDIANNESS RO Data endianness implemented 0 little endian 1 big endian 14 3 Reserved ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 12 ID041812 Non Confidential Cortex M0 Peripherals Table 4 13 AIRCR bit assignments continued Bits Name Type Function 2 SYSRESETREQ WO System reset request 0 no effect 1 requests a system level reset This bit reads as 0 VECTCLRACTIVE WO Reserved for debug use This bit reads as 0 When writing to the register you must write 0 to this bit otherwise behavior is Unpredictable Reserved 4 3 6 System Control Register The SCR controls features of entry to and exit from low power state See the register summary in Table 4 9 on page 4 8 for its attributes The bit assignments are 31 543210 Reserved Ta SEVONPEND Reserved SLEEPDEEP SLEEPONEXIT Reserved Table 4 14 SCR bit assignments Bits Name Function 31 5 Reserved 4 SEVONPEND Send Event on Pending bit 0 only enabled interrupts or events can wake up the processor disabled interrupts are excluded 1 enabled events and all interrupts including disable
35. I or HardFault handler The faults are execution of an SVC instruction at a priority equal or higher than SVCall execution of a BKPT instruction without a debugger attached a system generated bus error on a load or store execution of an instruction from an XN memory address execution of an instruction from a location for which the system generates a bus fault a system generated bus error on a vector fetch execution of an Undefined instruction execution of an instruction when not in Thumb State as a result of the T bit being previously cleared to 0 an attempted load or store to an unaligned address if the device implements the MPU an MPU fault because of a privilege violation or an attempt to access an unmanaged region Note Only Reset and NMI can preempt the fixed priority HardFault handler A HardFault can preempt any exception other than Reset NMI or another HardFault The processor enters Lockup state if a fault occurs when executing the NMI or HardFault handlers or if the system generates a bus error when unstacking the PSR on an exception return using the MSP When the processor is in Lockup state it does not execute any instructions The processor remains in Lockup state until one of the following occurs it is reset a debugger halts it an NMI occurs and the current Lockup is in the HardFault handler Note If Lockup state occurs in the NMI handler a subsequent NMI does not caus
36. Load a halfword from the memory address specified by R2 R3 sign extend to 32 bits and write to R1 ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 14 Non Confidential The Cortex MO Instruction Set 3 4 4 LDR PC relative Load register literal from memory Syntax LDR Rt label where Rt Is the register to load label Is a PC relative expression See PC relative expressions on page 3 9 Operation Loads the register specified by Rt from the word in memory specified by label Restrictions In these instructions Tabe must be within 1020 bytes of the current PC and word aligned Condition flags These instructions do not change the flags Examples LDR RQ LookUpTable Load RO with a word of data from an address labelled as LookUpTable LDR R3 PC 100 Load R3 with memory word at PC 100 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 15 Non Confidential 3 4 5 LDM and STM The Cortex MO Instruction Set Load and Store Multiple registers Syntax LDM Rn reglist STM Rn reglist where Rn Is the register on which the memory addresses are based Writeback suffix reglist Is a list of one or more registers to be loaded or stored enclosed in braces It can contain register ranges It must be comma separated if it contains more than one register or register range see Examples on page 3 17 LDMIA and LDMFD are synon
37. Number valid bit Write 0 MPU_RNR not changed and the processor updates the base address for the region specified in the MPU_RNR ignores the value of the REGION field 1 the processor a updates the value of the MPU_RNR to the value of the REGION field updates the base address for the region specified in the REGION field Always reads as zero 3 0 REGION MPU region field For the behavior on writes see the description of the VALID field On reads returns the current region number as specified by the MPU_RNR The ADDR field The ADDR field is bits 31 N of the MPU_RBAR The region size as specified by the SIZE field in the MPU_RASR defines the value of N N Loga Region size in bytes If the region size is configured to 4GB in the MPU_RASR there is no valid ADDR field In this case the region occupies the complete memory map and the base address is 0x00000000 The base address must be aligned to the size of the region For example a 64KB region must be aligned on a multiple of 64KB for example at 0x00010000 or 0x00020000 4 5 5 MPU Region Attribute and Size Register The MPU_RASR defines the region size and memory attributes of the MPU region specified by the MPU_RNR and enables that region and any subregions See the register summary in Table 4 25 on page 4 20 for its attributes MPU_RASR is accessible using word or halfword accesses the most significant halfword holds the region attribute
38. ONS e o eoii aie a i i iE Ne iaiia 3 5 3 3 About the instruction descriptions ceccecceeeeceececeeceeceeceeeeeaeeeeeeeeseeaeeeeeneenaeees 3 6 3 4 Memory access instructions eeceeeecceeesneeeeeeeeeeneecesaeeeseeeeeeaeeeeeaeeeseeeeeenaeeeseas 3 11 3 5 General data processing iNStrUCtiONS 0 ee eeeeeeeeenne cesta eeeeeaeeseeaeeesneeeeenaeeeseas 3 19 3 6 Branch and control inStructionS 0 eeeeeeeeeeeeneee sees eeeneeeeeaeeeeeeeesnneeeeenaeeseenaes 3 33 3 7 Miscellaneous instructions 2 0 0 eceeeeeceeseeeeeeeeeeeneeceeeeeeeeeeeeeaeeeeeaeeesneeeenseeeeeeaes 3 36 Chapter 4 Cortex M0 Peripherals 4 1 About the Cortex M0 peripherals c cccceceeeeeeeeeeeseneeceeeeeeeenaeeeeeeseneeeeeeenseaaees 4 2 4 2 Nested Vectored Interrupt Controller 0 eee eeeneeeeeeeeeeeeeeeeeneeseeeaeeeneeeeeneeeeneeeees 4 3 4 3 System Control BlOCK nrrainn ea i on da o ea vaai 4 8 4 4 Sy stemtimer ZS YSTICK i ar a a Eae a a e AE A E ani 4 16 ARM DUI 0662A Copyright 2012 ARM All rights reserved iii 1ID041812 Non Confidential Contents 4 5 Memory Protection Unit eeceeeeeceeeeneeeeeeeeeeeneeeeeaaeeeeneeeesnaeeeeeaeeeeneeeeseeeeeeaas 4 19 46 single cycle I O Portex oniinn En ee eon Lets 4 28 ARM DUI 0662A Copyright 2012 ARM All rights reserved iv 1ID041812 Non Confidential Preface This preface introduces the Cortex M0 Devices Generic User Guide It contains the following sections About this book on page vi e Fee
39. Q000000 Private Strongly XN This region includes the NVIC System timer and System Control Block QxEQOFFFFF Peripheral Bus ordered Only word accesses can be used in this region xEQ100000 System Device XN Vendor specific OxFFFFFFFF a See Memory regions types and attributes on page 2 10 for more information The Code SRAM and external RAM regions can hold programs The optional MPU can override the default memory access behavior described in this section For more information see Memory Protection Unit on page 4 19 Additional memory access constraints for caches and shared memory When a system includes caches or shared memory some memory regions have additional access constraints and some regions are subdivided as Table 2 10 shows Table 2 10 Memory region shareability and cache policies Address range Memory region Memory typea Shareability2 Cache policy 0x00000000 x1FFFFFFF Code Normal WT Qx20000000 Ox3FFFFFFF SRAM Normal WBWA 0x40000000 OxSFFFFFFF Peripheral Device 0x60000000 Ox7FFFFFFF External RAM Normal WBWA 0x80000000 Ox9FFFFFFF WT ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 2 12 The Cortex M0 Processor Table 2 10 Memory region shareability and cache policies continued Address range Memory region Memory type Shareability2 Cache policy QxA0000000 OxBFFFFFFF External device Device Shareable
40. R the NVIC samples the interrupt signal If the signal is asserted the state of the interrupt changes to pending that might cause the processor to immediately re enter the ISR Otherwise the state of the interrupt changes to inactive Fora pulse interrupt the NVIC continues to monitor the interrupt signal and if this is pulsed the state of the interrupt changes to pending and active In this case when the processor returns from the ISR the state of the interrupt changes to pending that might cause the processor to immediately re enter the ISR If the interrupt signal is not pulsed while the processor is in the ISR when the processor returns from the ISR the state of the interrupt changes to inactive ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 6 Non Confidential Cortex M0 Peripherals Software writes to the corresponding interrupt clear pending register bit For a level sensitive interrupt if the interrupt signal is still asserted the state of the interrupt does not change Otherwise the state of the interrupt changes to inactive For a pulse interrupt the state of the interrupt changes to inactive if the state was pending active if the state was active and pending 4 2 7 NVIC usage hints and tips Ensure software uses correctly aligned register accesses The processor does not support unaligned accesses to NVIC registers An interrupt can enter pending state even if it is
41. R bit assignments Bits Name Function 31 24 Reserved 23 0 CURRENT Reads return the current value of the SysTick counter A write of any value clears the field to 0 and also clears the SYST_CSR COUNTFLAG bit to 0 4 4 4 SysTick Calibration Value Register When implemented the SYST_CALIB register indicates the SysTick calibration properties See the register summary in Table 4 19 on page 4 16 for its attributes The bit assignments are 31 30 29 24 23 0 SKEW NOREF Table 4 23 SYST_CALIB register bit assignments Bits Name Function 81 NOREF IMPLEMENTATION DEFINED Indicates whether a separate reference clock is provided 30 SKEW IMPLEMENTATION DEFINED Indicates whether the TENMS integer value is rounded from a non integer ratio This can affect the suitability of SysTick as a software real time clock 29 24 Reserved 23 0 TENMS IMPLEMENTATION DEFINED Indicates the reload counter value to generate a 10ms interval using the external reference clock or if NOREF 1 using the processor clock Zero if this clock has unknown or variable frequency such as would prevent a reliable approximation to 10ms 4 4 5 SysTick usage hints and tips The interrupt controller clock updates the SysTick counter If this clock signal is stopped for low power mode the SysTick counter stops Ensure software uses word accesses to access the SysTick registers The correct initialization sequence for th
42. Rd The SUBS instruction performs the same operation as SUB and also updates the N Z C and V flags Use ADC and SBC to synthesize multiword arithmetic see Examples on page 3 22 See also ADR on page 3 12 ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 20 1D041812 Non Confidential Restrictions The Cortex MO Instruction Set Table 3 7 lists the legal combinations of register specifiers and immediate values that can be used with each instruction Table 3 7 ADC ADD RSB SBC and SUB operand restrictions Instruction Rd Rn Rm imm Restrictions ADCS RO R7 RO R7 RO R7 Rd and Rn must specify the same register ADD RO R15 RO0 R15 RO PC Rd and Rn must specify the same register Rn and Rm must not both specify PC RO R7 SPorPC 0 1020 Immediate value must be an integer multiple of four SP SP 0 508 Immediate value must be an integer multiple of four ADDS RO R7 RO R7 0 7 RO R7 RO R7 0 255 Rd and Rn must specify the same register RO R7 RO R7 RO R7 RSBS RO R7 RO R7 SBCS RO R7 RO R7 RO R7 Rd and Rn must specify the same register SUB SP SP 0 508 Immediate value must be an integer multiple of four SUBS RO R7 RO R7 0 7 RO R7 RO R7 0 255 Rd and Rn must specify the same register RO R7 RO R7 RO R7 ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 21 1ID041812 Non Confidential The Cortex MO Instruction Set Examples Exampl
43. Rm into Ra The MOVS instruction performs the same operation as the MOV instruction but also updates the N and Z flags The MVNS instruction takes the value of Rm performs a bitwise logical negate operation on the value and places the result into Rd Restrictions In these instructions Rd and Rm must only specify RO R7 When Rd is the PC in a MOV instruction Bit 0 of the result is discarded A branch occurs to the address created by forcing bit 0 of the result to 0 The T bit remains unmodified Note Though it is possible to use MOV as a branch instruction ARM strongly recommends the use of a BX or BLX instruction to branch for software portability Condition flags If S is specified these instructions update the N and Z flags according to the result do not affect the C or V flags ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 27 Non Confidential Example MOVS MOVS MOV MOVS MOV MVNS RQ 0x000B R1 0x0 R10 R12 R3 23 R8 SP R2 RO The Cortex MO Instruction Set Write value of 0x000B to RQ flags get updated Write value of zero to R1 flags are updated Write value in R12 to R10 flags are not updated Write value of 23 to R3 Write value of stack pointer to R8 Write inverse of RO to the R2 and update flags ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 28 3 5 6 MULS The Cortex
44. S Memory type and attributes Flash memory 1 0 0 Normal memory Non shareable write through Internal SRAM 1 0 1 Normal memory Shareable write through External SRAM 1 1 1 Normal memory Shareable write back write allocate Peripherals 0 1 1 Device memory Shareable In most microcontroller implementations the shareability and cache policy attributes do not affect the system behavior However using these settings for the MPU regions can make the application code more portable The values given are for typical situations In special systems such as multiprocessor designs or designs with a separate DMA engine the shareability attribute might be important In these cases see the recommendations of the memory device manufacturer ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 27 Non Confidential Cortex M0 Peripherals 4 6 Single cycle I O Port For high speed single cycle access to peripherals the Cortex M0 processor implements a dedicated single cycle I O port The single cycle I O port is memory mapped and supports all of the load and store instructions described in Memory access instructions on page 3 11 The single cycle I O port does not support code execution ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 28 Non Confidential
45. SV Configurablee 0x00000038 Asynchronous 15 1 SysTick Configurablee 0x0000003C Asynchronous 15 Reserved 16 and above Oandabove Interrupt IRQ Configurable 0x 0000040 and abovef Asynchronous a To simplify the software layer CMSIS only uses IRQ numbers and therefore uses negative values for exceptions other than interrupts The IPSR returns the Exception number see Interrupt Program Status Register on page 2 6 See Vector table on page 2 18 for more information If your device does not implement the SysTick timer exception number 15 is reserved The number of IRQ interrupts is implementation defined in the range 0 32 Unimplemented IRQ exception numbers are reserved for example if the device implements only one IRQ exception numbers 17 and above are reserved See Interrupt Priority Registers on page 4 5 Increasing in steps of 4 For an asynchronous exception other than reset the processor can execute additional instructions between when the exception is triggered and when the processor enters the exception handler Privileged software can disable the exceptions that Table 2 11 shows as having configurable priority see Interrupt Clear Enable Register on page 4 4 For more information about HardFaults see Fault handling on page 2 22 2 3 3 Exception handlers The processor handles exceptions using Interrupt Service Routines ISRs The IRQ interrupts are the exceptions handled by ISRs
46. ammable priority level of 0 192 in steps of 64 for each interrupt A higher level corresponds to a lower priority so level 0 is the highest programmable interrupt priority Level and pulse detection of interrupt signals Interrupt tail chaining An external Non Maskable Interrupt NMI The processor automatically stacks its state on exception entry and unstacks this state on exception exit with no instruction overhead This provides low latency exception handling The hardware implementation of the NVIC registers is Table 4 2 NVIC register summary Address Name Type Resetvalue Description 0xE000E100 NVIC_ISER RW 0x00000000 Interrupt Set Enable Register OxEQQ0E180 NVIC_ICER RW 0x00000000 Interrupt Clear Enable Register on page 4 4 0xE000E200 NVIC_ISPR RW 0x00000000 Interrupt Set Pending Register on page 4 4 0xE000E280 NVIC_ICPR RW 0x00000000 Interrupt Clear Pending Register on page 4 4 OxEQQ0E400 0xEQQOE4EF NVIC_ IPRO 7 RW 0x00000000 Interrupt Priority Registers on page 4 5 4 2 1 Interrupt Set Enable Register The NVIC_ISER enables interrupts and shows which interrupts are enabled See the register summary in Table 4 2 for the register attributes The bit assignments are 31 0 SETENA bits Table 4 3 NVIC_ISER bit assignments Bits Name Function 31 0 SETENA Interrupt set enable bits Write 0 no effect 1 enable interrupt Read 0 interrupt disabled 1 interrupt enabled
47. and 16 bit microcontrollers The Cortex M0 processor closely integrates a configurable Nested Vectored Interrupt Controller NVIC to deliver industry leading interrupt performance The NVIC includes a Non Maskable Interrupt NMI provides zero jitter interrupt option provides four interrupt priority levels ARM DUI 0662A Copyright 2012 ARM All rights reserved 1 2 ID041812 Non Confidential Introduction The tight integration of the processor core and NVIC provides fast execution of Interrupt Service Routines ISRs dramatically reducing the interrupt latency This is achieved through the hardware stacking of registers and the ability to abandon and restart load multiple and store multiple operations Interrupt handlers do not require any assembler wrapper code removing any code overhead from the ISRs Tail chaining optimization also significantly reduces the overhead when switching from one ISR to another To optimize low power designs the NVIC integrates with the sleep modes Optionally sleep mode support can include a deep sleep function that enables the entire device to be rapidly powered down 1 1 1 System level interface The Cortex M0 processor provides a single system level interface using AMBA technology to provide high speed low latency memory accesses The Cortex M0 processor has an optional Memory Protection Unit MPU that provides fine grain memory control enabling applications to use privi
48. ata into big endian data REVSH converts 16 bit signed big endian data into 32 bit signed little endian data or 16 bit signed little endian data into 32 bit signed big endian data Restrictions In these instructions Rd and Rn must only specify RO R7 Condition flags These instructions do not change the flags Examples REV R3 R7 Reverse byte order of value in R7 and write it to R3 REV16 RQ RO Reverse byte order of each 16 bit halfword in RO REVSH RQ R5 Reverse signed halfword ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 30 1D041812 Non Confidential 3 5 8 SXT and UXT The Cortex M0 Instruction Set Sign extend and Zero extend Syntax SXTB Rd Rm SXTH Rd Rm UXTB Rd Rm UXTH Rd Rm where Rd Is the destination register Rm Is the register holding the value to be extended Operation These instructions extract bits from the resulting value SXTB extracts bits 7 0 and sign extends to 32 bits UXTB extracts bits 7 0 and zero extends to 32 bits SXTH extracts bits 15 0 and sign extends to 32 bits e UXTH extracts bits 15 0 and zero extends to 32 bits Restrictions In these instructions Rd and Rm must only specify RO R7 Condition flags These instructions do not affect the flags Examples SXTH R4 R6 Obtain the lower halfword of the value in R6 and then sign extend to 32 bits and write the result to R4 UXTB R3 R1 Extract lowest byte of the value in R1 and ze
49. cessor clock To ensure the NVIC detects the interrupt the peripheral must assert the interrupt signal for at least one clock cycle during which the NVIC detects the pulse and latches the interrupt When the processor enters the ISR it automatically removes the pending state from the interrupt see Hardware and software control of interrupts For a level sensitive interrupt if the signal is not deasserted before the processor returns from the ISR the interrupt becomes pending again and the processor must execute its ISR again This means that the peripheral can hold the interrupt signal asserted until it no longer requires servicing The details of which interrupts are level sensitive and which are pulsed are specific to your device Hardware and software control of interrupts The Cortex M0 processor latches all interrupts A peripheral interrupt becomes pending for one of the following reasons the NVIC detects that the interrupt signal is asserted and the corresponding interrupt is not active the NVIC detects a rising edge on the interrupt signal software writes to the corresponding interrupt set pending register bit see Interrupt Set Pending Register on page 4 4 A pending interrupt remains pending until one of the following The processor enters the ISR for the interrupt This changes the state of the interrupt from pending to active Then Fora level sensitive interrupt when the processor returns from the IS
50. d interrupts can wakeup the processor When an event or interrupt enters pending state the event signal wakes up the processor from WFE If the processor is not waiting for an event the event is registered and affects the next WFE The processor also wakes up on execution of an SEV instruction or an external event 3 Reserved SLEEPDEEP Controls whether the processor uses sleep or deep sleep as its low power mode 0 sleep 1 deep sleep 1 SLEEPONEXIT Indicates sleep on exit when returning from Handler mode to Thread mode 0 do not sleep when returning to Thread mode 1 enter sleep or deep sleep on return from an ISR to Thread mode Setting this bit to 1 enables an interrupt driven application to avoid returning to an empty main application 0 Reserved ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 13 Non Confidential Cortex M0 Peripherals 4 3 7 Configuration and Control Register The CCR is a read only register and indicates some aspects of the behavior of the Cortex M0 processor See the register summary in Table 4 9 on page 4 8 for the CCR attributes The bit assignments are 31 109 8 4 3 2 0 STKALIGN J UNALIGN_TRP Reserved Table 4 15 CCR bit assignments Bits Name Function 31 10 Reserved 9 STKALIGN Always reads as one indicates 8 byte stack alignment on exception entry On exception entry the processor uses b
51. dback on page viii ARM DUI 0662A Copyright 2012 ARM All rights reserved v ID041812 Non Confidential About this book Product revision status Intended audience Using this book Glossary Preface This book is a generic user guide for devices that implement the ARM Cortex M0 processor Implementers of Cortex M0 processor designs make a number of implementation choices that can affect the functionality of the device This means that in this book some information is described as implementation defined e some features are described as optional See the documentation from the supplier of your Cortex M0 device for more information about these features In this book unless the context indicates otherwise Processor Refers to the Cortex M0 processor as supplied by ARM Device Refers to an implemented device supplied by an ARM partner that incorporates a Cortex M0 processor In particular your device refers to the particular implementation of the Cortex M0 processor that you are using Some features of your device depend on the implementation choices made by the ARM partner that made the device The rpn identifier indicates the revision status of the product described in this book where rn Identifies the major revision of the product pn Identifies the minor revision or modification status of the product This book is written for application and system level software developers familiar with programming who
52. ding stack This means the stack pointer indicates the last stacked item on the stack memory When the processor pushes a new item onto the stack it decrements the stack pointer and then writes the item to the new memory location The processor implements two stacks the main stack and the process stack with independent copies of the stack pointer see Stack Pointer on page 2 4 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 2 Non Confidential The Cortex M0 Processor In Thread mode the CONTROL register controls whether the processor uses the main stack or the process stack see CONTROL register on page 2 8 In Handler mode the processor always uses the main stack The options for processor operations are Table 2 1 Summary of processor mode optional execution privilege level and stack use options Processor mode Used to execute Optional privilege level Stack used for software execution Thread Applications Privileged or unprivileged Main stack or process stack Handler Exception handlers Always privileged Main stack a See CONTROL register on page 2 8 2 1 3 Core registers The processor core registers are RO R1 R2 Low registers R3 9 R4 R5 R6 General purpose registers R7 R8 R9 High registers R10 Banked stack pointers R11 R12 Active Stack Pointer SP R13
53. disabled Disabling an interrupt only prevents the processor from taking that interrupt Before programming the optional VTOR to relocate the vector table you must set up entries in the new vector table for all exceptions that might be taken such as NMI HardFault and enabled interrupts For more information see Vector Table Offset Register on page 4 11 NVIC programming hints Software uses the CPSIE i and CPSID i instructions to enable and disable interrupts CMSIS provides the following intrinsic functions for these instructions void __disable_irq void Disable Interrupts void __enable_irq void Enable Interrupts In addition CMSIS provides a number of functions for NVIC control including Table 4 8 CMSIS functions for NVIC control CMSIS interrupt control function Description void NVIC_EnableIRQ IRQn_t IRQn Enable IRQn void NVIC_DisableIRQ IRQn_t IRQn Disable IRQn uint32_t NVIC_GetPendingIRQ IRQn_t IRQn Return true 1 if IRQn is pending void NVIC_SetPendingIRQ IRQn_t IRQn Set IRQn pending void NVIC_ClearPendingIRQ IRQn_t IRQn Clear IRQn pending status void NVIC_SetPriority IRQn_t IRQn uint32_t priority Set priority for IRQn uint32_t NVIC_GetPriority IRQn_t IRQn Read priority of IRQn void NVIC_SystemReset void Request a system reset a The input parameter IRQn is the IRQ number see Table 2 11 on page 2 17 for more information ARM DUI 0662A Copyright 2012
54. e 3 1 shows two instructions that add a 64 bit integer contained in RO and R1 to another 64 bit integer contained in R2 and R3 and place the result in RO and R1 Example 3 1 64 bit addition ADDS RO RO R2 add the least significant words ADCS R1 R1 R3 add the most significant words with carry Multiword values do not have to use consecutive registers Example 3 2 shows instructions that subtract a 96 bit integer contained in R1 R2 and R3 from another contained in R4 R5 and R6 The example stores the result in R4 R5 and R6 Example 3 2 96 bit subtraction SUBS R4 R4 R1 subtract the least significant words SBCS R5 R5 R2 subtract the middle words with carry SBCS R6 R6 R3 subtract the most significant words with carry Example 3 3 shows the RSBS instruction used to perform a 1 s complement of a single register Example 3 3 Arithmetic negation RSBS R7 R7 0 subtract R7 from zero ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 22 Non Confidential The Cortex MO Instruction Set 3 5 2 AND ORR EOR and BIC Logical AND OR Exclusive OR and Bit Clear Syntax ANDS Rd Rn Rm ORRS Rd Rn Rm EORS Rd Rn Rm BICS Rd Rn Rm where Rd Is the destination register Rn Is the register holding the first operand and is the same as the destination register Rm Second register Operation The AND EOR and ORR instructions perform bitwise AND exclusive OR and inclusive
55. e Combination PSR RWab APSR EPSR and IPSR IEPSR RO EPSR and IPSR IAPSR RWa APSR and IPSR EAPSR Rw APSR and EPSR a The processor ignores writes to the IPSR bits b Reads of the EPSR bits return zero and the processor ignores writes to the these bits See the instruction descriptions MRS on page 3 42 and MSR on page 3 43 for more information about how to access the program status registers Application Program Status Register The APSR contains the current state of the condition flags from previous instruction executions See the register summary in Table 2 2 on page 2 3 for its attributes The bit assignments are Table 2 4 APSR bit assignments Bits Name Function 31 N Negative flag 30 Z Zero flag 29 C Carry or borrow flag 28 V Overflow flag 27 0 Reserved See The condition flags on page 3 9 for more information about the APSR negative zero carry or borrow and overflow flags ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 5 ID041812 Non Confidential The Cortex M0 Processor Interrupt Program Status Register The IPSR contains the exception number of the current Interrupt Service Routine ISR See the register summary in Table 2 2 on page 2 3 for its attributes The bit assignments are Table 2 5 IPSR bit assignments Bits Name Function 31 6 Reserved 5 0 Exception number This is the number of the current exception 0
56. e Cortex M0 Processor Interruptible restartable instructions The interruptible restartable instructions are LDM and STM When an interrupt occurs during the execution of one of these instructions the processor abandons execution of the instruction Similarly the processor can also abandon LDM STM PUSH POP and the 32 cycle implementation of MULS instructions After servicing the interrupt the processor restarts execution of the instruction from the beginning Exception mask register The exception mask register disables the handling of exceptions by the processor Disable exceptions where they might impact on timing critical tasks or code sequences requiring atomicity To disable or re enable exceptions use the MSR and MRS instructions or the CPS instruction to change the value of PRIMASK See MRS on page 3 42 MSR on page 3 43 and CPS on page 3 38 for more information Priority Mask Register The PRIMASK register prevents activation of all exceptions with configurable priority See the register summary in Table 2 2 on page 2 3 for its attributes The bit assignments are 31 1 0 Oooo a S PM Table 2 7 PRIMASK register bit assignments Bits Name Function 81 1 Reserved 0 PM Prioritizable interrupt mask 0 no effect 1 prevents the activation of all exceptions with configurable priority ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 7 1ID041812 Non Confidential The Cortex M0 Proc
57. e SysTick counter is 1 Program reload value 2 Clear current value 3 Program Control and Status register ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 18 1ID041812 Non Confidential Cortex M0 Peripherals 4 5 Memory Protection Unit This section describes the optional Memory Protection Unit MPU The MPU can divide the memory map into a number of regions and defines the location size access permissions and memory attributes of each region It supports independent attribute settings for each region overlapping regions export of memory attributes to the system The memory attributes affect the behavior of memory accesses to the region The Cortex M0 MPU defines e eight separate memory regions 0 7 a background region When memory regions overlap a memory access is affected by the attributes of the region with the highest number For example the attributes for region 7 take precedence over the attributes of any region that overlaps region 7 The background region has the same memory access attributes as the default memory map but is accessible from privileged software only The Cortex M0 MPU memory map is unified This means instruction accesses and data accesses have the same region settings If a program accesses a memory location that is prohibited by the MPU the processor generates a HardFault exception In an OS environment the kernel can update the MPU region settings dynam
58. e restrictions on whether you can use the Program Counter PC or Stack Pointer SP for the operands or destination register See instruction descriptions for more information Note When you update the PC with a BX BLX or POP instruction bit 0 of any address must be 1 for correct execution This is because this bit indicates the destination instruction set and the Cortex M0 processor only supports Thumb instructions When a BL or BLX instruction writes the value of bit 0 into the LR it is automatically assigned the value 1 3 3 3 Shift operations Register shift operations move the bits in a register left or right by a specified number of bits the shift length Register shift can be performed directly by the instructions ASR LSR LSL and ROR and the result is written to a destination register The permitted shift lengths depend on the shift type and the instruction see the individual instruction description If the shift length is 0 no shift occurs Register shift operations update the carry flag except when the specified shift length is 0 The following sub sections describe the various shift operations and how they affect the carry flag In these descriptions Rm is the register containing the value to be shifted and nis the shift length ASR Arithmetic shift right by n bits moves the left hand 32 n bits of the register Rm to the right by n places into the right hand 32 n bits of the result and it copies the original bit
59. e the processor to leave Lockup state ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 22 Non Confidential The Cortex M0 Processor 2 5 Power management The Cortex M0 processor sleep modes reduce power consumption a sleep mode that stops the processor clock a deep sleep mode that stops the system clock and switches off the PLL and flash memory The SLEEPDEEP bit of the SCR selects which sleep mode is used see System Control Register on page 4 13 This section describes the mechanisms for entering sleep mode and the conditions for waking up from sleep mode 2 5 1 Entering sleep mode This section describes the mechanisms software can use to put the processor into sleep mode The system can generate spurious wakeup events for example a debug operation wakes up the processor Therefore software must be able to put the processor back into sleep mode after such an event A program might have an idle loop to put the processor back into sleep mode Wait for interrupt The Wait For Interrupt instruction WFI causes immediate entry to sleep mode When the processor executes a WFI instruction it stops executing instructions and enters sleep mode See WFI on page 3 48 for more information Wait for event The Wait For Event instruction WFE causes entry to sleep mode conditional on the value of a one bit event register When the processor executes a WFE instruction it checks the value of the e
60. e to the ICSR the effect is Unpredictable if you write 1 to the PENDSVSET bit and write 1 to the PENDSVCLR bit write 1 to the PENDSTSET bit and write 1 to the PENDSTCLR bit 4 3 4 Vector Table Offset Register If implemented the VTOR indicates the offset of the vector table base address from memory address 0x00000000 See the register summary in Table 4 12 on page 4 12 for its attributes ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 11 Non Confidential Cortex M0 Peripherals The bit assignments are 31 7 6 0 Table 4 12 VTOR bit assignments Bits Name Function 31 7 TBLOFF Vector table base offset field It contains bits 3 1 7 of the offset of the table base from the bottom of the memory map 6 0 Reserved Note The vector table base must always be aligned to at least the number of exception vectors implemented To ensure this the Cortex M0 processor implements bit 7 the least significant bit of TBLOFF as RAZ WI 4 3 5 Application Interrupt and Reset Control Register The AIRCR provides endian status for data accesses and reset control of the system See the register summary in Table 4 9 on page 4 8 and Table 4 13 for its attributes To write to this register you must write 0x05FA to the VECTKEY field otherwise the processor ignores the write The bit assignments are 31 l 16 1514 3210 On read Reserved Reserved On write VECTKEY ENDIANESS _ SYSRESETR
61. eferenced by the MPU_RBAR and MPU_RASR registers See the register summary in Table 4 25 on page 4 20 for its attributes The bit assignments are 31 8 7 0 Table 4 28 MPU_RNR bit assignments Bits Name Function 81 8 Reserved 7 0 REGION Indicates the MPU region referenced by the MPU_RBAR and MPU_RASR registers The MPU supports 8 memory regions so the permitted values of this field are 0 7 Normally you write the required region number to this register before accessing the MPU_RBAR or MPU_ RASR However you can change the region number by writing to the MPU_RBAR with the VALID bit set to 1 see MPU Region Base Address Register This write updates the value of the REGION field 4 5 4 MPU Region Base Address Register The MPU_RBAR defines the base address of the MPU region selected by the MPU_RNR and can update the value of the MPU_RNR See the register summary in Table 4 25 on page 4 20 for its attributes Write MPU_RBAR with the VALID bit set to 1 to change the current region number and update the MPU_RNR The bit assignments are 34 N N 1 5 4 3 0 L vat ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 22 1ID041812 Non Confidential Cortex M0 Peripherals Table 4 29 MPU_RBAR bit assignments Bits Name Function 31 N ADDR Region base address field The value of N depends on the region size For more information see The ADDR field N 1 5 Reserved 4 VALID MPU Region
62. egister Restrictions In these instructions Do not use SP or PC in the BX or BLX instruction For BX and BLX bit 0 of Rm must be 1 for correct execution Bit 0 is used to update the EPSR T bit and is discarded from the target address Note Bcond is the only conditional instruction on the Cortex M0 processor ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 34 Non Confidential The Cortex MO Instruction Set Condition flags These instructions do not change the flags Examples B loopA Branch to loopA BL funC Branch with link Call to function funC return address stored in LR BX LR Return from function call BLX RO Branch with link and exchange Call to a address stored in RO BEQ labelD Conditionally branch to labelD if last flag setting instruction set the Z flag else do not branch ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 35 1D041812 Non Confidential 3 7 Miscellaneous instructions The Cortex MO Instruction Set Table 3 10 shows the remaining Cortex M0 instructions Table 3 10 Miscellaneous instructions Mnemonic Brief description See BKPT Breakpoint BKPT on page 3 37 CPSID Change Processor State Disable Interrupts CPS on page 3 38 CPSIE Change Processor State Enable Interrupts CPS on page 3 38 DMB Data Memory Barrier DMB on page 3 39 DSB Data Synchronization Barrier DSB on page
63. ending Pending The exception is waiting to be serviced by the processor An interrupt request from a peripheral or from software can change the state of the corresponding interrupt to pending Active The exception is being serviced by the processor but has not completed Note An exception handler can interrupt the execution of another exception handler In this case both exceptions are in the active state Active and pending The exception is being serviced by the processor and there is a pending exception from the same source 2 3 2 Exception types The exception types are Reset Reset is invoked on power up or a warm reset The exception model treats reset as a special form of exception When reset is asserted the operation of the processor stops potentially at any point in an instruction When reset is deasserted execution restarts from the address provided by the reset entry in the vector table Execution restarts as privileged execution in Thread mode NMI A Non Maskable Interrupt NMI can be signalled by a peripheral or triggered by software This is the highest priority exception other than reset It is permanently enabled and has a fixed priority of 2 NMIs cannot be masked or prevented from activation by any other exception preempted by any exception other than Reset HardFault A HardFault is an exception that occurs because of an error HardFaults have a fixed priority of 1 meaning they have high
64. er priority than any exception with configurable priority SVCall A Supervisor Call SVC is an exception that is triggered by the SVC instruction In an OS environment applications can use SVC instructions to access OS kernel functions and device drivers PendSV PendSV is an interrupt driven request for system level service In an OS environment use PendSV for context switching when no other exception is active ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 16 1D041812 Non Confidential SysTick Interrupt IRQ The Cortex M0 Processor If the device implements the SysTick timer a SysTick exception is generated when the SysTick timer reaches zero Software can also generate a SysTick exception In an OS environment the processor can use this exception as system tick An interrupt or IRQ is an exception signalled by a peripheral or generated by a software request All interrupts are asynchronous to instruction execution In the system peripherals use interrupts to communicate with the processor Table 2 11 Properties of the different exception types Exception IRQ n mbera ania Exception type Priority Vector address gt Activation 1 Reset 3 the highest 0x00000004 Asynchronous 2 14 NMI 2 0x00000008 Asynchronous 3 13 HardFault 1 0x0000000C Synchronous 4 10 Reserved 11 5 SVCall Configurable 0x0000002C Synchronous 12 13 Reserved 14 2 Pend
65. es SysTick exception state to pending Read 0 SysTick exception is not pending 1 SysTick exception is pending 26 Reserved ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 10 Non Confidential Cortex M0 Peripherals Table 4 11 ICSR bit assignments continued Bits Name Type Function 25 PENDSTCLR WO SysTick exception clear pending bit Write 0 no effect 1 removes the pending state from the SysTick exception This bit is WO On a register read its value is Unknown 25 Reserved 24 23 Reserved 22 ISRPENDING RO Interrupt pending flag excluding NMI and Faults 0 interrupt not pending 1 interrupt pending 21 18 Reserved 17 12 VECTPENDING RO Indicates the exception number of the highest priority pending enabled exception 0 no pending exceptions Nonzero the exception number of the highest priority pending enabled exception 11 6 Reserved 5 0 VECTACTIVE RO Contains the active exception number 0 Thread mode Nonzero The exception number of the currently active exception Note Subtract 16 from this value to obtain the CMSIS IRQ number that identifies the corresponding bit in the Interrupt Clear Enable Set Enable Clear Pending Set pending and Priority Register see Table 2 5 on page 2 6 a This is the same value as IPSR bits 5 0 see Interrupt Program Status Register on page 2 6 When you writ
66. eserved 0xE000E010 0xE000E01F SysTick Table 4 19 on page 4 16 QxEQQQE100 0xEQQQE4EF Nested Vectored Interrupt Controller Table 4 2 on page 4 3 OxEQQQEDOQ 0xEQQ0QED3F System Control Block Table 4 9 on page 4 8 OxEQ QQED9O MPU Type Register RAZ Indicates no MPU is implemented non zero Table 4 25 on page 4 20 xEQQQED94 xEQQQEDB8 Memory Protection Unite Table 4 25 on page 4 20 OxEQQQEFQQ OxEQQQEFQ3 Nested Vectored Interrupt Controller Table 4 2 on page 4 3 a c The system timer is an optional peripheral b Software can read the MPU Type Register at 0xE000ED90 to test for the presence of a Memory Protection Unit MPU The Memory Protection Unit is an optional peripheral In register descriptions the register type is described as follows RW Read and write RO Read only WoO Write only the required privilege applies only to some optional peripherals It gives the privilege level required to access the register as follows Privileged Only privileged software can access the register Unprivileged Both unprivileged and privileged software can access the register ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 2 Non Confidential Cortex M0 Peripherals 4 2 Nested Vectored Interrupt Controller This section describes the Nested Vectored Interrupt Controller NVIC and the registers it uses The NVIC supports 0 to up to 32 interrupts A progr
67. essor CONTROL register The CONTROL register controls the stack used and the optional privilege level for software execution when the processor is in Thread mode See the register summary in Table 2 2 on page 2 3 for its attributes The bit assignments are 31 24 0 mms OL SPSEL nPRIV Table 2 8 CONTROL register bit assignments Bits Name Function 31 2 Reserved 1 SPSEL Defines the current stack 0 MSP is the current stack pointer 1 PSP is the current stack pointer In Handler mode this bit reads as zero and ignores writes 0 nPRIVe Defines the Thread mode privilege level 0 Privileged 1 Unprivileged a Ifthe Unprivileged Privileged extension is not configured this bit is Reserved RAZ Handler mode always uses the MSP so the processor ignores explicit writes to the active stack pointer bit of the CONTROL register when in Handler mode The exception entry and return mechanisms automatically update the CONTROL register In an OS environment ARM recommends that threads running in Thread mode use the process stack and the kernel and exception handlers use the main stack By default Thread mode uses the MSP To switch the stack pointer used in Thread mode to the PSP use the MSR instruction to set the Active stack pointer bit to 1 see MRS on page 3 42 Note When changing the stack pointer software must use an ISB instruction immediately after the MSR instruction This ensures that
68. fferent ordering requirements for Device and Strongly ordered memory mean that the memory system can buffer a write to Device memory but must not buffer a write to Strongly ordered memory The additional memory attributes include Shareable For a shareable memory region the memory system provides data synchronization between bus masters in a system with multiple bus masters for example a processor with a DMA controller Strongly ordered memory is always shareable If multiple bus masters can access a non shareable memory region software must ensure data coherency between the bus masters Note This attribute is relevant only if the device is likely to be used in systems where memory is shared between multiple processors Execute Never XN The processor cannot execute instructions in an XN region A HardFault exception is generated if it tries 2 2 2 Memory system ordering of memory accesses For most memory accesses caused by explicit memory access instructions the memory system does not guarantee that the order in which the accesses complete matches the program order of the instructions providing any re ordering does not affect the behavior of the instruction sequence Normally if correct program execution depends on two memory accesses completing in program order software must insert a memory barrier instruction between the memory access instructions see Software ordering of memory accesses on page 2 13 However t
69. gister The MRS instruction can be combined with the MSR instruction to produce read modify write sequences that are suitable for modifying a specific flag in the PSR See MSR on page 3 43 Restrictions In this instruction Rd must not be SP or PC If the current mode of execution is not privileged then the values of all registers other than the APSR read as zero Condition flags This instruction does not change the flags Examples MRS RO PRIMASK Read PRIMASK value and write it to RO ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 42 Non Confidential 3 7 7 MSR The Cortex MO Instruction Set Move the contents of a general purpose register into the specified special register Syntax MSR spec_reg Rn where Rn Is the general purpose source register spec_reg Is the special purpose destination register APSR IPSR EPSR IEPSR IAPSR EAPSR PSR MSP PSP PRIMASK or CONTROL Operation MSR updates one of the special registers with the value from the register specified by Rn See MRS on page 3 42 Restrictions In this instruction Rn must not be SP and must not be PC If the current mode of execution is not privileged then all attempts to modify any register other than the APSR are ignored Condition flags This instruction updates the flags explicitly based on the value in Rn Examples MSR CONTROL R1 Read R1 value and write it to the CONTROL register ARM DUI 066
70. gister summary in Table 4 9 on page 4 8 for the ICSR attributes The bit assignments are 31 30 29 28 27 26 25 24 23 22 21 18 17 12 11 L isreenone _ iseen PENDSTCLR if SysTick is implemented PENDSTSET if SysTick is implemented PENDSVCLR PENDSVSET Reserved NMIPENDSET Table 4 11 ICSR bit assignments Bits Name Type Function 31 NMIPENDSET RW NMI set pending bit Write 0 no effect 1 changes NMI exception state to pending Read 0 NMI exception is not pending 1 NMI exception is pending Because NMI is the highest priority exception normally the processor enters the NMI exception handler as soon as it detects a write of 1 to this bit Entering the handler then clears this bit to 0 This means a read of this bit by the NMI exception handler returns 1 only if the NMI signal is reasserted while the processor is executing that handler 30 29 Reserved 28 PENDSVSET RW PendSV set pending bit Write 0 no effect 1 changes PendSV exception state to pending Read 0 PendSV exception is not pending 1 PendSV exception is pending Writing 1 to this bit is the only way to set the PendSV exception state to pending 27 PENDSVCLR WO PendSV clear pending bit Write 0 no effect removes the pending state from the PendSV exception 26 PENDSTSET RW SysTick exception set pending bit Write 0 no effect 1 chang
71. he memory system does guarantee some ordering of accesses to Device and Strongly ordered memory For two memory access instructions Al and A2 if Al occurs before A2 in program order the ordering of the memory accesses caused by two instructions is a Normal Device access Strongly ordered A1 access Non shareable Shareable access Normal access Device access non shareable lt lt Device access shareable lt lt Strongly ordered access lt lt lt Where Means that the memory system does not guarantee the ordering of the accesses lt Means that accesses are observed in program order that is Al is always observed before A2 ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 11 1ID041812 Non Confidential The Cortex M0 Processor 2 2 3 Behavior of memory accesses The behavior of accesses to each region in the default memory map is Table 2 9 Memory access behavior Memo Address Memory y XNa Description range region typea 0x00000000 Code Normal Executable region for program code You can also put data here Ox1FFFFFFF 0x20000000 SRAM Normal Executable region for data You can also put code here 0x3FFFFFFF x40000000 Peripheral Device XN External device memory OxSFFFFFFF 0x60000000 External RAM Normal Executable region for data Ox9FFFFFFF xA 000000 External Device XN External device memory QxDFFFFFFF device xE
72. ically based on the process to be executed Typically an embedded OS uses the MPU for memory protection Configuration of MPU regions is based on memory types see Memory regions types and attributes on page 2 10 Table 4 24 shows the possible MPU region attributes These include Shareability and cache behavior attributes that are not relevant to most microcontroller implementations See MPU configuration for a microcontroller on page 4 27 for guidelines for programming such an implementation Table 4 24 Memory attributes summary Memory type Shareability Other attributes Description Strongly ordered All accesses to Strongly ordered memory occur in program order All Strongly ordered regions are assumed to be shared Device Shared Memory mapped peripherals that several processors share Non shared Memory mapped peripherals that only a single processor uses Normal Shared Non cacheable Normal memory that is shared between several processors Write through Cacheable Write back Cacheable Non shared Non cacheable Normal memory that only a single processor uses Write through Cacheable Write back Cacheable ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 19 Non Confidential Cortex M0 Peripherals Use the MPU registers to define the MPU regions and their attributes Table 4 25 shows the MPU registers Table 4 25 MPU registers summary Address Name Type ee
73. instructions after the ISB execute using the new stack pointer See ISB on page 3 41 2 1 4 Exceptions and interrupts The Cortex M0 processor supports interrupts and system exceptions The processor and the Nested Vectored Interrupt Controller NVIC prioritize and handle all exceptions An interrupt or exception changes the normal flow of software control The processor uses handler mode to handle all exceptions except for reset See Exception entry on page 2 20 and Exception return on page 2 20 for more information The NVIC registers control interrupt handling See Nested Vectored Interrupt Controller on page 4 3 for more information ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 8 Non Confidential The Cortex M0 Processor 2 1 5 Data types The processor Supports the following data types 32 bit words 16 bit halfwords 8 bit bytes Manages all data memory accesses as either little endian or big endian depending on the device implementation Instruction memory and Private Peripheral Bus PPB accesses are always little endian See Memory regions types and attributes on page 2 10 for more information 2 1 6 The Cortex Microcontroller Software Interface Standard ARM provides the Cortex Microcontroller Software Interface Standard CMSIS for programming Cortex M0 microcontrollers CMSIS is an integrated part of the device driver library For a Cortex M0 microcontroller system
74. interrupt arrives that is enabled and has a higher priority than current exception priority the processor wakes up but does not execute the interrupt handler until the processor sets PRIMASK PM to zero For more information about PRIMASK see Exception mask register on page 2 7 Wakeup from WFE The processor wakes up if it detects an exception with sufficient priority to cause exception entry it detects an external event signal see The external event input in a multiprocessor system another processor in the system executes a SEV instruction In addition if the SEVONPEND bit in the SCR is set to 1 any new pending interrupt triggers an event and wakes up the processor even if the interrupt is disabled or has insufficient priority to cause exception entry For more information about the SCR see System Control Register on page 4 13 2 5 3 The optional Wakeup Interrupt Controller Your device might include a Wakeup Interrupt Controller WIC an optional peripheral that can detect an interrupt and wake the processor from deep sleep mode The WIC is enabled only when the DEEPSLEEP bit in the SCR is set to 1 see System Control Register on page 4 13 The WIC is not programmable and does not have any registers or user interface It operates entirely from hardware signals When the WIC is enabled and the processor enters deep sleep mode the power management unit in the system can power down most of the Cortex M0 processor This ha
75. iority Register 2 The bit assignments are 31 24 23 0 Table 4 17 SHPR2 register bit assignments Bits Name Function 31 24 PRI 11 Priority of system handler 11 SVCall 23 0 Reserved System Handler Priority Register 3 The bit assignments are 31 24 23 16 15 0 Table 4 18 SHPR3 register bit assignments Bits Name Function 31 24 PRI 15 Priority of system handler 15 SysTick exceptiona 23 16 PRI 14 Priority of system handler 14 PendSV 15 0 Reserved a This is Reserved when the SysTick timer is not implemented 4 3 9 SCB usage hints and tips Ensure software uses aligned 32 bit word size transactions to access all the SCB registers ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 15 1ID041812 Non Confidential 4 4 Cortex M0 Peripherals System timer SysTick When enabled the system timer counts down from the reload value to zero reloads wraps to the value in the SYST_RVR on the next clock cycle then decrements on subsequent clock cycles Writing a value of zero to the SYST_RVR disables the counter on the next wrap When the counter transitions to zero the COUNTFLAG status bit is set to 1 Reading SYST_CSR clears the COUNTFLAG bit to 0 Writing to the SYST_CVR clears the register and the COUNTELAG status bit to 0 The write does not trigger the SysTick exception logic Reading the register returns its value at the time it is accessed Note When the proces
76. it 9 of the stacked PSR to indicate the stack alignment On return from the exception it uses this stacked bit to restore the correct stack alignment 8 4 Reserved 3 UNALIGN_TRP Always reads as one indicates that all unaligned accesses generate a HardFault 2 0 Reserved 4 3 8 System Handler Priority Registers The SHPR2 SHPR3 registers set the priority level 0 to 192 of the exception handlers that have configurable priority SHPR2 SHPR3 are word accessible See the register summary in Table 4 9 on page 4 8 for their attributes To access to the system exception priority level using CMSIS use the following CMSIS functions uint32_t NVIC_GetPriority IRQn_Type IRQn void NVIC_SetPriority IRQn_Type IRQn uint32_t priority The input parameter IRQn is the IRQ number see Table 2 11 on page 2 17 for more information The system fault handlers and the priority field and register for each handler are Table 4 16 System fault handler priority fields Handler Field Register description SVCall PRI 11 System Handler Priority Register 2 on page 4 15 PendSV PRI 14 System Handler Priority Register 3 on page 4 15 SysTick PRI 15 Each PRI N field is 8 bits wide but the processor implements only bits 7 6 of each field and bits 5 0 read as zero and ignore writes ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 14 Non Confidential Cortex M0 Peripherals System Handler Pr
77. it Clear AND ORR EOR and BIC on page 3 23 CMN Compare Negative CMP and CMN on page 3 26 CMP Compare CMP and CMN on page 3 26 EORS Exclusive OR AND ORR EOR and BIC on page 3 23 LSLS Logical Shift Left ASR LSL LSR and ROR on page 3 24 LSRS Logical Shift Right ASR LSL LSR and ROR on page 3 24 MOV S Move MOV and MVN on page 3 27 MULS Multiply MULS on page 3 29 MVNS Move NOT MOV and MVN on page 3 27 ORRS Logical OR AND ORR EOR and BIC on page 3 23 REV Reverse byte order in a word REV REV16 and REVSH on page 3 30 REV16 Reverse byte order in each halfword REV REV16 and REVSH on page 3 30 REVSH Reverse byte order in bottom halfword and sign extend REV REV16 and REVSH on page 3 30 RORS Rotate Right ASR LSL LSR and ROR on page 3 24 RSBS Reverse Subtract ADC ADD RSB SBC and SUB on page 3 20 SBCS Subtract with Carry ADC ADD RSB SBC and SUB on page 3 20 SUBS Subtract ADC ADD RSB SBC and SUB on page 3 20 SXTB Sign extend a byte SXT and UXT on page 3 31 SXTH Sign extend a halfword SXT and UXT on page 3 31 UXTB Zero extend a byte SXT and UXT on page 3 31 UXTH Zero extend a halfword SXT and UXT on page 3 31 TST Test TST on page 3 32 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 19 The Cortex MO Instruction Set 3 5 1 ADC ADD RSB SBC and SUB Add with carry Add Reverse Subtract Subtract with carry and Subtract Syntax ADCS Rd Rn Rm AD
78. k SCB is the programmers model interface to the processor It provides system implementation information and system control including configuration control and reporting of system exceptions ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 1 3 Non Confidential Introduction Optional system timer The system timer SysTick is a 24 bit count down timer Use this as a Real Time Operating System RTOS tick timer or as a simple counter Optional Memory Protection Unit The Memory Protection Unit MPU improves system reliability by defining the memory attributes for different memory regions It provides up to eight different regions and an optional predefined background region Optional single cycle I O port The single cycle I O port provides single cycle loads and stores to tightly coupled peripherals ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential Chapter 2 The Cortex M0 Processor The following sections describe the Cortex M0 processor Programmers model on page 2 2 Memory model on page 2 10 Exception model on page 2 16 Fault handling on page 2 22 Power management on page 2 23 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 2 1 2 1 2 1 1 2 1 2 The Cortex M0 Processor Programmers model This section describes the Cortex M0 programmers model In addition to the individual core register de
79. le the current execution priority level is greater than or equal to that of the SVCall handler results in a fault being generated Condition flags This instruction does not change the flags Examples SVC 0x32 Supervisor Call SVC handler can extract the immediate value by locating it through EXC_RETURN to identify the correct stack and thence the stacked PC ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 46 Non Confidential The Cortex MO Instruction Set 3 7 11 WFE Wait For Event Syntax WFE Operation If the event register is 0 WFE suspends execution until one of the following events occurs an exception unless masked by the exception mask registers or the current priority level an exception enters the Pending state if SEVONPEND in the System Control Register is set a Debug Entry request if debug is enabled an event signaled by a peripheral or another processor in a multiprocessor system using the SEV instruction If the event register is 1 WFE clears it to 0 and completes immediately For more information see Power management on page 2 23 Note WFE is intended for power saving only When writing software assume that WFE might behave as NOP Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples WFE Wait for event ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 47 ID041812
80. lege levels separating and protecting code data and stack on a task by task basis 1 1 2 Optional integrated configurable debug The Cortex M0 processor can implement a complete hardware debug solution with extensive hardware breakpoint and watchpoint options This provides high system visibility of the processor memory and peripherals through a JTAG port or a 2 pin Serial Wire Debug SWD port that is ideal for microcontrollers and other small package devices The MCU vendor determines the debug feature configuration and therefore this can differ across different devices and families 1 1 3 Cortex M0 processor features summary Thumb instruction set with Thumb 2 technology high code density with 32 bit performance optional Unprivileged and Privileged mode execution tools and binary upwards compatible with Cortex M processor family integrated ultra low power sleep modes efficient code execution enabling slower processor clock or increasing sleep time e optional single cycle 32 bit hardware multiplier zero jitter interrupt handling optional Memory Protection Unit MPU for safety critical applications optional single cycle I O port optional Vector Table Offset Register VTOR extensive debug capabilities 1 1 4 Cortex M0 core peripherals These are NVIC The NVIC is an embedded interrupt controller that supports low latency interrupt processing System Control Block The System Control Bloc
81. m an arithmetic shift left logical shift left logical shift right or a right rotation of the bits in the register Rm by the number of places specified by the immediate imm or the value in the least significant byte of the register specified by Rs For details of what result is generated by the different instructions see Shift operations on page 3 6 Restrictions In these instructions Rd Rm and Rs must only specify RO R7 For non immediate instructions Rd and Rm must specify the same register Condition flags These instructions update the N and Z flags according to the result The C flag is updated to the last bit shifted out except when the shift length is 0 see Shift operations on page 3 6 The V flag is left unmodified ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 3 24 Non Confidential The Cortex MO Instruction Set Examples ASRS R7 R5 9 Arithmetic shift right by 9 bits LSLS R1 R2 3 Logical shift left by 3 bits with flag update LSRS R4 R5 6 Logical shift right by 6 bits RORS R4 R4 R6 Rotate right by the value in the bottom byte of R6 ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 25 1D041812 Non Confidential 3 5 4 CMP and CMN The Cortex MO Instruction Set Compare and Compare Negative Syntax CMN Rn Rm CMP Rn imm CMP Rn Rm where Rn Is the register holding the first operand Rm Is the register to compare with imm Is the immedia
82. mation or any incorrect use of the product Where the term ARM is used it means ARM or any of its subsidiaries as appropriate Confidentiality Status This document is Non Confidential The right to use copy and disclose this document may be subject to license restrictions in accordance with the terms of the agreement entered into by ARM and the party that ARM delivered this document to Product Status The information in this document is final that is for a developed product Web Address http www arm com ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved ii Non Confidential Contents Cortex M0 Devices Generic User Guide Preface ABOUTS BOOK oi nicc 55 Betis a Raa Ear a a a aaa aAa aaa a bstena ls vi elote AEA A E csuobesttacdeuseeltvepee viii Chapter 1 Introduction 1 1 About the Cortex M0 processor and core peripherals ccceseeeeeeeeeeeeeees 1 2 Chapter 2 The Cortex M0 Processor 2 1 Programmiers Mmodel xc ccc e i eice et ade Seas ak Speen es ase Shas 2 2 2 2 Memory modell i sete ince et E dnote cts oh overeat E E ee teehee eee 2 10 2 3 EXCeption MOdel EEE E A EA E A ET 2 16 2 4 Fault handling sirrinin en hee bak eee ge a a E dT ei dS 2 22 2 5 Power m nagementiisiiiisnni aee a AEE EEE Ni 2 23 Chapter 3 The Cortex M0 Instruction Set 3 1 Instruction set SUMMATY iisisiisississsicrinirinisininsiiiisakunitcretk inei kddai iunii wadi diania 3 2 3 2 INtrinSiC TUNGCTI
83. n R7 STR R2 R0 const struc const struc is an expression evaluating to a constant in the range 0 1020 ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 13 Non Confidential The Cortex MO Instruction Set 3 4 3 LDR and STR register offset Load and Store with register offset Syntax LDR Rt Rn Rm LDR lt B H gt Rt Rn Rm LDR lt SB SH gt Rt Rn Rm STR Rt Rn Rm STR lt B H gt Rt Rn Rm where Rt Is the register to load or store Rn Is the register on which the memory address is based Rm Is a register containing a value to be used as the offset Operation LDR LDRB LDRH LDRSB and LDRSH load the register specified by Rt with either a word zero extended byte zero extended halfword sign extended byte or sign extended halfword value from memory STR STRB and STRH store the word least significant byte or lower halfword contained in the single register specified by Rt into memory The memory address to load from or store to is the sum of the values in the registers specified by Rn and Rm Restrictions In these instructions Rt Rn and Rm must only specify RO R7 the computed memory address must be divisible by the number of bytes in the load or store see Address alignment on page 3 8 Condition flags These instructions do not change the flags Examples STR RO R5 R1 Store value of RO into an address equal to sum of R5 and R1 LDRSH R1 R2 R3
84. oduct name The product revision or version An explanation with as much information as you can provide Include symptoms and diagnostic procedures if appropriate If you have comments on content then send an e mail to errata arm com Give the title the number ARM DUI 0662A the page numbers to which your comments apply a concise explanation of your comments ARM also welcomes general suggestions for additions and improvements Note ARM tests the PDF only in Adobe Acrobat and Acrobat Reader and cannot guarantee the quality of the represented document when used with any other PDF reader ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved viii Non Confidential Chapter 1 Introduction This chapter introduces the Cortex M0 processor and its features It contains the following section About the Cortex M0 processor and core peripherals on page 1 2 ARM DUI 0662A Copyright 2012 ARM All rights reserved ID041812 Non Confidential 1 1 Introduction 1 1 About the Cortex M0 processor and core peripherals Interrupts The Cortex M0 processor is an entry level 32 bit ARM Cortex processor designed for a broad range of embedded applications It offers significant benefits to developers including a simple architecture that is easy to learn and program ultra low power energy efficient operation excellent code density deterministic high performance inte
85. ority with a lower priority value indicating a higher priority configurable priorities for all exceptions except Reset NMI and HardFault ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 18 1ID041812 Non Confidential The Cortex M0 Processor If software does not configure any priorities then all exceptions with a configurable priority have a priority of 0 For information about configuring exception priorities see System Handler Priority Registers on page 4 14 Interrupt Priority Registers on page 4 5 Note Configurable priority values are in the range 0 192 in steps of 64 The Reset NMI and HardFault exceptions with fixed negative priority values always have higher priority than any other exception Assigning a higher priority value to IRQ 0 and a lower priority value to IRQ 1 means that IRQ 1 has higher priority than IRQ 0 If both IRQ 1 and IRQ 0 are asserted IRQ 1 is processed before IRQ O If multiple pending exceptions have the same priority the pending exception with the lowest exception number takes precedence For example if both IRQ 0 and IRQ 1 are pending and have the same priority then IRQ 0 is processed before IRQ 1 When the processor is executing an exception handler the exception handler is preempted if a higher priority exception occurs If an exception occurs with the same priority as the exception being handled the handler is not preempted irrespective of the exce
86. orted by the Cortex M0 processor Memory access instructions on page 3 11 General data processing instructions on page 3 19 Branch and control instructions on page 3 33 Miscellaneous instructions on page 3 36 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 1 Instruction set summary The Cortex MO Instruction Set The processor implements the ARMv6 M Thumb instruction set including a number of 32 bit instructions that use Thumb 2 technology The ARMv6 M instruction set comprises all of the 16 bit Thumb instructions from ARMv7 M excluding CBZ CBNZ and IT the 32 bit Thumb instructions BL DMB DSB ISB MRS and MSR Table 3 1 lists the supported instructions Note In Table 3 1 angle brackets lt gt enclose alternative forms of the operand braces enclose optional operands and mnemonic parts the Operands column is not exhaustive For more information on the instructions and operands see the instruction descriptions Table 3 1 Cortex M0 instructions Mnemonic Operands Brief description Flags Page ADCS Rd Rn Rm Add with Carry N Z C V page 3 20 ADD S Rd Rn lt Rm imm gt Add N Z C V page 3 20 ADR Rd label PC relative Address to Register page 3 12 ANDS Rd Rn Rm Bitwise AND N Z page 3 20 ASRS Rd Rm lt Rs imm gt Arithmetic Shift Right N Z C page 3 24
87. pace Denotes a permitted abbreviation for a command or option You can enter the underlined text instead of the full command or option name monospace italic Denotes arguments to monospace text where the argument is to be replaced by a specific value monospace bold Denotes language keywords when used outside example code lt and gt Enclose replaceable terms for assembler syntax where they appear in code or code fragments For example MRC p15 lt Rd gt lt CRn gt lt CRm gt lt Opcode_2 gt This section lists publications by ARM and by third parties See Infocenter http infocenter arm com for access to ARM documentation ARM publications This book contains information that is specific to this product See the following documents for other relevant information Cortex M0 Technical Reference Manual ARM DDI 0484 ARMv6 M Architecture Reference Manual ARM DDI 0419 Other publications This guide only provides generic information for devices that implement the ARM Cortex M0 processor For information about your device see the documentation published by the device manufacturer ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved vii Non Confidential Feedback Preface ARM welcomes feedback on this product and its documentation Feedback on this product Feedback on content If you have any comments or suggestions about this product contact your supplier and give The pr
88. page 3 11 LSLS Rd Rn lt Rs imm gt Logical Shift Left N Z C page 3 24 LSRS Rd Rn lt Rs imm gt Logical Shift Right N Z C page 3 24 OV S Rd Rm Move N Z page 3 27 RS Rd spec_reg Move to general register from special register page 3 42 SR spec_reg Rm Move to special register from general register N Z C V page 3 43 ULS Rd Rn Rm Multiply 32 bit result N Z page 3 29 VNS Rd Rm Bitwise NOT N Z page 3 27 NOP No Operation page 3 44 ORRS Rd Rn Rm Logical OR N Z page 3 23 POP reglist Pop registers from stack page 3 18 PUSH reglist Push registers onto stack page 3 18 REV Rd Rm Byte Reverse word page 3 30 REV16 Rd Rm Byte Reverse packed halfwords page 3 30 REVSH Rd Rm Byte Reverse signed halfword page 3 30 RORS Rd Rn Rs Rotate Right N Z C page 3 24 RSBS Rd Rn 0 Reverse Subtract N Z C V page 3 20 SBCS Rd Rn Rm Subtract with Carry N Z C V page 3 20 SEV Send Event page 3 45 STM Rn reglist Store Multiple registers increment after page 3 16 STR Rt Rn lt Rm imm gt Store Register as word page 3 11 STRB Rt Rn lt Rm imm gt Store Register as byte page 3 11 STRH Rt Rn lt Rm imm gt Store Register as halfword page 3 11 SUB S Rd Rn lt Rm imm gt Subtract N Z C V page 3 20 SVC imm Supervisor Call page 3 46 SXTB Rd Rm Sign extend byte page 3 31 SXTH Rd Rm Sign extend halfword page 3 31 TST Rn Rm Logical AND based test N Z page 3 32 UXTB Rd Rm Zero extend a byte page 3
89. page 3 40 The nstruction Synchronization Barrier ISB ensures that the effect ofall completed memory transactions is recognizable by subsequent instructions See ZSB on page 3 41 The following are examples of using memory barrier instructions Vector table If the program changes an entry in the vector table and then enables the corresponding exception use a DMB instruction between the operations This ensures that if the exception is taken immediately after being enabled the processor uses the new exception vector Self modifying code If a program contains self modifying code use a DSB instruction followed by an ISB instruction immediately after the code modification in the program This ensures subsequent instruction execution uses the updated program ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 13 Non Confidential The Cortex M0 Processor Memory map switching If the system contains a memory map switching mechanism use a DSB instruction followed by an ISB instruction after switching the memory map This ensures subsequent instruction execution uses the updated memory map MPU programming Use a DSB instruction followed by an ISB instruction or exception return to ensure that the new MPU configuration is used by subsequent instructions VTOR programming If the program updates the value of the VTOR use a DSB instruction to ensure that the new vector table is used for subsequen
90. ption number However the status of the new interrupt changes to pending 2 3 6 Exception entry and return Descriptions of exception handling use the following terms Preemption When the processor is executing an exception handler an exception can preempt the exception handler if its priority is higher than the priority of the exception being handled When one exception preempts another the exceptions are called nested exceptions See Exception entry on page 2 20 for more information Return This occurs when the exception handler is completed and there is no pending exception with sufficient priority to be serviced there is no pending exception with priority higher than the interrupted context The processor pops the stack and restores the processor state to the state it was in before the interrupt occurred See Exception return on page 2 20 for more information Tail chaining This mechanism speeds up exception servicing On completion of an exception handler if there is a pending exception that meets the requirements for exception entry the stack pop is skipped and control transfers to the new exception handler Late arriving This mechanism speeds up preemption If a higher priority exception occurs during state saving for a previous exception the processor switches to handle the higher priority exception and initiates the vector fetch for that exception State saving is not affected by late arrival because the state sa
91. quest 0 counting down to zero does not assert the SysTick exception request 1 counting down to zero asserts the SysTick exception request 0 ENABLE Enables the counter 0 counter disabled 1 counter enabled 4 4 2 SysTick Reload Value Register The SYST_RVR specifies the start value to load into the SYST_CVR See the register summary in Table 4 19 on page 4 16 for its attributes The bit assignments are 31 24 23 0 Table 4 21 SYST_RVR bit assignments Bits Name Function 31 24 Reserved 23 0 RELOAD Value to load into the SYST_CVR when the counter is enabled and when it reaches 0 see Calculating the RELOAD value Calculating the RELOAD value The RELOAD value can be any value in the range 0x00000001 0x00FFFFFF You can program a value of 0 but this has no effect because the SysTick exception request and COUNTFLAG are activated when counting from 1 to 0 To generate a multi shot timer with a period of N processor clock cycles use a RELOAD value of N 1 For example if the SysTick interrupt is required every 100 clock pulses set RELOAD to 99 ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 17 1ID041812 Non Confidential Cortex M0 Peripherals 4 4 3 SysTick Current Value Register The SYST_CVR contains the current value of the SysTick counter See the register summary in Table 4 19 on page 4 16 for its attributes The bit assignments are 31 24 23 0 Table 4 22 SYST_CV
92. r memory map and the behavior of memory accesses The processor has a default memory map that provides up to 4GB of addressable memory The memory map is System 511MB Private Peripheral Bus 1MB External device 1 0GB External RAM 1 0GB Peripheral 0 5GB SRAM 0 5GB Code 0 5GB OxFFFFFFFF 0xE0100000 OxEOOFFFFF 0xE0000000 OxDFFFFFFF 0xA0000000 Ox9FFFFFFF 0x60000000 0x5FFFFFFF 0x40000000 0x3FFFFFFF 0x20000000 Ox1FFFFFFF 0x00000000 The processor reserves regions of the Private Peripheral Bus PPB address range for core peripheral registers see About the Cortex M0 processor and core peripherals on page 1 2 Memory regions types and attributes The default memory map and the programming of the optional MPU split the address space into regions Each region has a defined memory type and some regions have additional memory attributes The memory type and attributes determine the behavior of accesses to the region The memory types are Normal speculative reads Device Device or Strongly ordered memory Strongly ordered The processor can re order transactions for efficiency or perform The processor preserves transaction order relative to other transactions to The processor preserves transaction order relative to all other transactions ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved Non Confidential 2 10 The Cortex M0 Processor The di
93. re Register using immediate offset LDR and STR immediate offset on page 3 13 STR type Store Register using register offset LDR and STR register offset on page 3 14 ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 11 3 4 1 ADR The Cortex MO Instruction Set Generates a PC relative address Syntax ADR Rd label where Rd Is the destination register label Is a PC relative expression See PC relative expressions on page 3 9 Operation ADR generates an address by adding an immediate value to the PC and writes the result to the destination register ADR facilitates the generation of position independent code because the address is PC relative If you use ADR to generate a target address for a BX or BLX instruction you must ensure that bit 0 of the address you generate is set to 1 for correct execution Restrictions In this instruction Rd must specify RO R7 The data value addressed must be word aligned and within 1020 bytes of the current PC Condition flags This instruction does not change the flags Examples ADR R1 TextMessage Write address value of a location labelled as TextMessage to R1 ADR R3 PC 996 Set R3 to value of PC 996 ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 12 1ID041812 Non Confidential The Cortex MO Instruction Set 3 4 2 LDR and STR immediate offset Load and Store with immediate offset Syntax LDR Rt
94. ro extend it and write the result to R3 ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved Non Confidential 3 31 3 5 9 TST The Cortex MO Instruction Set Test bits Syntax TST Rn Rm where Rn Is the register holding the first operand Rm The register to test against Operation This instruction tests the value in a register against another register It updates the condition flags based on the result but does not write the result to a register The TST instruction performs a bitwise AND operation on the value in Rn and the value in Rm This is the same as the ANDS instruction except that it discards the result To test whether a bit of Rn is 0 or 1 use the TST instruction with a register that has that bit set to 1 and all other bits cleared to 0 Restrictions In these instructions Rn and Rm must only specify RO R7 Condition flags This instruction updates the N and Z flags according to the result does not affect the C or V flags Examples TST RO R1 Perform bitwise AND of RQ value and R1 value condition code flags are updated but result is discarded ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 32 Non Confidential The Cortex MO Instruction Set 3 6 Branch and control instructions Table 3 8 shows the branch and control instructions Table 3 8 Branch and control instructions Mnemonic Brief description See B cc
95. rrupt handling upward compatibility with Cortex M processor family platform security robustness with optional integrated Memory Protection Unit MPU Cortex M0 Components Cortex M0 Processor Optional Debug Nested Vectored Cortex M0 Breakpoint amp cle Interrupt lt 4 processor Watchpoint Buffer Controller core Units MTB me NVIC Optional Optional Wakeup Memory Debugger Interrupt Protection interface Controller Unit MPU WIC Optional Debug Bus matrix Access Port ee Optional Optional pas single cycle Serial Wire or JTAG y I O port debug port Figure 1 1 Cortex M0 implementation The Cortex M0 processor is built on a highly area and power optimized 32 bit processor core with a 2 stage pipeline von Neumann architecture The processor delivers exceptional energy efficiency through a small but powerful instruction set and extensively optimized design providing high end processing hardware including either a single cycle multiplier in designs optimized for high performance a 32 cycle multiplier in designs optimized for low area The Cortex M0 processor implements the ARMv6 M architecture that is based on the 16 bit Thumb instruction set and includes Thumb 2 technology This provides the exceptional performance expected of a modern 32 bit architecture with a higher code density than 8 bit
96. rupt Immediately after stacking the stack pointer indicates the lowest address in the stack frame The stack frame is aligned to a double word address The stack frame includes the return address This is the address of the next instruction in the interrupted program This value is restored to the PC at exception return so that the interrupted program resumes The processor performs a vector fetch that reads the exception handler start address from the vector table When stacking is complete the processor starts executing the exception handler At the same time the processor writes an EXC_RETURN value to the LR This indicates which stack pointer corresponds to the stack frame and what operation mode the processor was in before the entry occurred If no higher priority exception occurs during exception entry the processor starts executing the exception handler and automatically changes the status of the corresponding pending interrupt to active If another higher priority exception occurs during exception entry the processor starts executing the exception handler for this exception and does not change the pending status of the earlier exception This is the late arrival case Exception return Exception return occurs when the processor is in Handler mode and execution of one of the following instructions attempts to set the PC to an EXC_RETURN value a POP instruction that loads the PC a BX instruction using any register
97. s See the register summary in Table 4 25 on page 4 20 for the MPU_CTRL attributes The bit assignments are 31 3210 PRIVDEFENA HFNMIENA ENABLE Table 4 27 MPU_CTRL register bit assignments Bits Name Function 31 3 Reserved 2 PRIVDEFENA Enables privileged software access to the default memory map 0 If the MPU is enabled disables use of the default memory map Any memory access to a location not covered by any enabled region causes a fault 1 If the MPU is enabled enables use of the default memory map as a background region for privileged software accesses When enabled the background region acts as if it is region number 1 Any region that is defined and enabled has priority over this default map If the MPU is disabled the processor ignores this bit 1 HFNMIENA Enables the operation of MPU during HardFault and NMI handlers When the MPU is enabled 0 MPU is disabled during HardFault and NMI handlers regardless of the value of the ENABLE bit 1 the MPU is enabled during HardFault and NMI handlers When the MPU is disabled if this bit is set to 1 the behavior is Unpredictable 0 ENABLE Enables the MPU 0 MPU disabled 1 MPU enabled When ENABLE and PRIVDEFENA are both set to 1 For privileged accesses the default memory map is as described in Memory model on page 2 10 Any access by privileged software that does not address an enabled memory region behaves a
98. s the least significant halfword holds the region size and the region and subregion enable bits ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 23 1ID041812 Non Confidential Cortex M0 Peripherals The bit cea are 29 2827 26 2423 19 18 17 16 15 8765 L Reserved Reserved XN ENABLE Reserved Table 4 30 MPU_RASR bit assignments Bits Name Function 81 29 Reserved 28 XN Instruction access disable bit 0 instruction fetches enabled 1 instruction fetches disabled 27 Reserved 26 24 AP Access permission field see Table 4 33 on page 4 25 23 19 Reserved 18 S Shareable bit see Table 4 32 on page 4 25 17 C Cacheable bit see Table 4 32 on page 4 25 16 B Bufferable bit see Table 4 32 on page 4 25 15 8 SRD Subregion disable bits For each bit in this field 0 corresponding sub region is enabled 1 corresponding sub region is disabled See Subregions on page 4 26 for more information 7 6 Reserved 5 1 SIZE Specifies the size of the MPU protection region The minimum permitted value is 7 00111 See SIZE field values for more information 0 ENABLE Region enable bit For information about access permission see MPU access permission attributes on page 4 25 SIZE field values The SIZE field defines the size of the MPU memory region specified by the MPU_RNR as follows Region size in bytes 2 SIZE 1 ARM DUI 0662A 1I
99. s Description 0xE000ED90 MPU_ TYPE RO 0x00000800 MPU Type Register 0xE000ED94 MPU CTRL RW 0x00000000 MPU Control Register 0xE000ED98 MPU RNR RW 0x00000000 MPU Region Number Register on page 4 22 0xE000ED9C MPU RBAR RW 0x00000000 MPU Region Base Address Register on page 4 22 QxEQQ QEDA2 MPU RASR RW 0x00000000 MPU Region Attribute and Size Register on page 4 23 4 5 1 MPU Type Register The MPU_TYPE register indicates whether the MPU is present and if so how many regions it supports See the register summary in Table 4 25 for its attributes The bit assignments are 31 24 23 1615 8 7 1 0 SEPARATE Table 4 26 MPU_TYPE register bit assignments Bits Name Function 31 24 Reserved 23 16 IREGION Indicates the number of supported MPU instruction regions Always contains 0x00 The MPU memory map is unified and is described by the DREGION field 15 8 DREGION Indicates the number of supported MPU data regions 0x08 Eight MPU regions 7 1 Reserved 0 SEPARATE Indicates support for unified or separate instruction and date memory maps 0 unified 4 5 2 MPU Control Register The MPU_CTRL register enables the MPU enables the default memory map background region enables use of the MPU when in the HardFault and Non Maskable Interrupt NMI ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 20 Non Confidential Cortex M0 Peripheral
100. s defined by the default memory map Any access by unprivileged software that does not address an enabled memory region causes a HardFault XN and Strongly ordered rules always apply to the System Control Space regardless of the value of the ENABLE bit When the ENABLE bit is set to 1 at least one region of the memory map must be enabled for the system to function unless the PRIVDEFENA bit is set to 1 If the PRIVDEFENA bit is set to 1 and no regions are enabled then only privileged software can operate When the ENABLE bit is set to 0 the system uses the default memory map This has the same memory attributes as if the MPU is not implemented see Table 2 9 on page 2 12 The default memory map applies to accesses from both privileged and unprivileged software When the MPU is enabled accesses to the System Control Space and vector table are always permitted Other areas are accessible based on regions and whether PRIVDEFENA is set to 1 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 21 Non Confidential Cortex M0 Peripherals Unless HFNMIENA is set to 1 the MPU is not enabled when the processor is executing the handler for an exception with priority 1 or 2 These priorities are only possible when handling a HardFault or NMI exception Setting the HFNMIENA bit to 1 enables the MPU when operating with these two priorities 4 5 3 MPU Region Number Register The MPU_ RNR selects which memory region is r
101. s the side effect of stopping the SysTick timer When the WIC receives an interrupt it takes a number of clock cycles to wake up the processor and restore its state before it can process the interrupt This means interrupt latency is increased in deep sleep mode 2 5 4 The external event input Your device might include an external event input signal so that device peripherals can signal the processor Tie this signal LOW if it is not used This signal can wake up the processor from WFE or set the internal WFE event register to one to indicate that the processor must not enter sleep mode on a later WFE instruction see Wait for event on page 2 23 2 5 5 Power management programming hints ISO IEC C cannot directly generate the WFI WFE and SEV instructions CMSIS provides the following intrinsic functions for these instructions void _WFE void Wait for Event void __WFI void Wait for Interrupt void __SEV void Send Event ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 24 Non Confidential Chapter 3 The Cortex M0 Instruction Set This chapter describes the Cortex M0 instruction set The following sections give general information Instruction set summary on page 3 2 Intrinsic functions on page 3 5 About the instruction descriptions on page 3 6 Each of the following sections describes a functional group of Cortex M0 instructions Together they describe all the instructions supp
102. scriptions it contains information about the processor modes optional privilege levels for software execution and stacks Processor modes and privilege levels for software execution Stacks The processor modes are Thread mode Executes application software The processor enters Thread mode when it comes out of reset Handler mode Handles exceptions The processor returns to Thread mode when it has finished all exception processing The optional privilege levels for software execution are Unprivileged The software has limited access to system registers using the MSR and MRS instructions and cannot use the CPS instruction to mask interrupts cannot access the system timer NVIC or system control block might have restricted access to memory or peripherals Unprivileged software executes at the unprivileged level Privileged The software can use all the instructions and has access to all resources Privileged software executes at the privileged level In Thread mode the CONTROL register controls whether software execution is privileged or unprivileged see CONTROL register on page 2 8 In Handler mode software execution is always privileged Only privileged software can write to the CONTROL register to change the privilege level for software execution in Thread mode Unprivileged software can use the SVC instruction to make a Supervisor Call to transfer control to privileged software The processor uses a full descen
103. sor is halted for debugging the counter does not decrement The system timer registers are Table 4 19 System timer registers summary Address Name Type Required Spi Reset value Description privilege 0xE000E010 SYST CSR RW Privileged 0x00000000 SysTick Control and Status Register QxEQ00E014 SYST RVR RW Privileged Unknown SysTick Reload Value Register on page 4 17 0xE000E018 SYST CVR RW Privileged Unknown SysTick Current Value Register on page 4 18 0OxE000E0IC SYST CALIB RO Privileged IMPLEMENTATION SysTick Calibration Value Register on page 4 18 DEFINED 4 4 1 a SysTick calibration value SysTick Control and Status Register The SYST_CSR enables the SysTick features See the register summary in Table 4 19 for its attributes The bit assignments are 0 wo e 31 17 16 15 Oooo o eee COUNTFLAG zl CLKSOURCE TICKINT ENABLE Table 4 20 SYST_CSR bit assignments Bits Name Function 81 17 Reserved 16 COUNTFLAG Returns 1 if timer counted to 0 since the last read of this register 15 3 Reserved ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 16 1ID041812 Non Confidential Cortex M0 Peripherals Table 4 20 SYST_CSR bit assignments continued Bits Name Function 2 CLKSOURCE Selects the SysTick timer clock source 0 external reference clock 1 processor clock 1 TICKINT Enables SysTick exception re
104. ster values CPSID causes interrupts to be disabled by setting PRIMASK CPSIE cause interrupts to be enabled by clearing PRIMASK See Exception mask register on page 2 7 for more information about these registers Restrictions If the current mode of execution is not privileged then this instruction behaves as a NOP and does not change the current state of PRIMASK Condition flags This instruction does not change the condition flags Examples CPSID i Disable all interrupts except NMI set PRIMASK PM CPSIE i Enable interrupts clear PRIMASK PM ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 38 1D041812 Non Confidential The Cortex MO Instruction Set 3 7 3 DMB Data Memory Barrier Syntax DMB Operation DMB acts as a data memory barrier It ensures that all explicit memory accesses that appear in program order before the DMB instruction are observed before any explicit memory accesses that appear in program order after the DMB instruction DMB does not affect the ordering of instructions that do not access memory Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples DMB Data Memory Barrier ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 39 1D041812 Non Confidential The Cortex MO Instruction Set 3 7 4 DSB Data Synchronization Barrier Syntax DSB Operation DSB acts as a special data synchronization memor
105. t The processor implements only bits 7 6 of each field bits 5 0 read 23 16 Priority byte offset2 as zero and ignore writes This means writing 255 to a priority register saves value 192 to the register 15 8 Priority byte offset 1 7 0 Priority byte offset 0 See NVIC usage hints and tips on page 4 7 for more information about the access to the interrupt priority array which provides the software view of the interrupt priorities ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 5 1ID041812 Non Confidential Cortex M0 Peripherals Find the NVIC_IPR number and byte offset for interrupt M as follows the corresponding NVIC_IPR number N is given by N N DIV 4 the byte offset of the required Priority field in this register is M MOD 4 where byte offset 0 refers to register bits 7 0 byte offset 1 refers to register bits 15 8 byte offset 2 refers to register bits 23 16 byte offset 3 refers to register bits 3 1 24 4 2 6 Level sensitive and pulse interrupts The processor supports both level sensitive and pulse interrupts Pulse interrupts are also described as edge triggered interrupts A level sensitive interrupt is held asserted until the peripheral deasserts the interrupt signal Typically this happens because the ISR accesses the peripheral causing it to clear the interrupt request A pulse interrupt is an interrupt signal sampled synchronously on the rising edge of the pro
106. t exceptions 2 2 5 Memory endianness The processor views memory as a linear collection of bytes numbered in ascending order from zero For example bytes 0 3 hold the first stored word and bytes 4 7 hold the second stored word The memory endianness used is IMPLEMENTATION DEFINED and the following subsections describe how words of data are stored in memory in the possible implementations Byte invariant big endian format Little endian format on page 2 15 Byte invariant big endian format In byte invariant big endian format the processor stores the most significant byte msbyte of a word at the lowest numbered byte and the least significant byte Isbyte at the highest numbered byte For example Register 31 2423 1615 87 0 ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 14 Non Confidential The Cortex M0 Processor Little endian format In little endian format the processor stores the least significant byte Isbyte of a word at the lowest numbered byte and the most significant byte msbyte at the highest numbered byte For example Register 31 2423 1615 87 0 Address ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 15 Non Confidential The Cortex M0 Processor 2 3 Exception model This section describes the exception model 2 3 1 Exception states Each exception is in one of the following states Inactive The exception is not active and not p
107. te value to compare with Operation These instructions compare the value in a register with either the value in another register or an immediate value They update the condition flags on the result but do not write the result to a register The CMP instruction subtracts either the value in the register specified by Rm or the immediate imm from the value in Rn and updates the flags This is the same as a SUBS instruction except that the result is discarded The CMN instruction adds the value of Rm to the value in Rn and updates the flags This is the same as an ADDS instruction except that the result is discarded Restrictions For the CMN instruction Rn and Rm must only specify RO R7 CMP instruction _ Rnand Rmcan specify RO R14 immediate must be in the range 0 255 Condition flags These instructions update the N Z C and V flags according to the result Examples CMP R2 R9 CMN RO R2 ARM DUI 0662A ID041812 Copyright 2012 ARM All rights reserved 3 26 Non Confidential 3 5 5 MOV and MVN The Cortex MO Instruction Set Move and Move NOT Syntax MOV S Rd Rm MOVS Rd imm MVNS Rd Rm where S Is an optional suffix If S is specified the condition code flags are updated on the result of the operation see Conditional execution on page 3 9 Rd Is the destination register Rm Is a register imm Is any value in the range 0 255 Operation The MOV instruction copies the value of
108. terrupt sets the state of that interrupt to pending 4 2 4 Interrupt Clear Pending Register The NVIC_ICPR removes the pending state from interrupts and shows which interrupts are pending See the register summary in Table 4 2 on page 4 3 for the register attributes ARM DUI 0662A Copyright 2012 ARM All rights reserved 4 4 ID041812 Non Confidential Cortex M0 Peripherals The bit assignments are CLRPEND bits wo oO Table 4 6 NVIC_ICPR bit assignments Bits Name Function 31 0 _CLRPEND Interrupt clear pending bits Write 0 no effect 1 removes pending state from interrupt Read 0 interrupt is not pending 1 interrupt is pending Note Writing 1 to an NVIC_ICPR bit does not affect the active state of the corresponding interrupt 4 2 5 Interrupt Priority Registers The NVIC_IPRO NVIC_IPR7 registers provide an 8 bit priority field for each interrupt These registers are only word accessible See the register summary in Table 4 2 on page 4 3 for their attributes Each register holds four priority fields as shown 31 24 23 16 15 8 NVIC_IPR7 PRI_31 PRI_30 PRI_29 PRI_28 NVIC_IPRn PRI_ 4n 3 PRI_ 4n 2 PRI_ 4n 1 PRI_ 4n NVIC_IPRO PRI_3 PRI_2 PRI_1 PRI_O Table 4 7 NVIC_IPRx bit assignments N Bits Name Function 31 24 Priority byte offset 3 Each priority field holds a priority value 0 192 The lower the value the greater the priority of the corresponding interrup
109. to the last bit rotation bit n 1 of the register Rm Note If nis 32 then the value of the result is same as the value in Rm and if the carry flag is updated it is updated to bit 31 of Rm e ROR with shift length n greater than 32 is the same as ROR with shift length n 32 Carry eyy Flag 31 51413 2 1 A AT A j j l Figure 3 4 ROR 3 3 3 4 Address alignment An aligned access is an operation where a word aligned address is used for a word or multiple word access or where a halfword aligned address is used for a halfword access Byte accesses are always aligned There is no support for unaligned accesses on the Cortex M0 processor Any attempt to perform an unaligned memory access operation results in a HardFault exception ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 8 1D041812 Non Confidential The Cortex MO Instruction Set 3 3 5 PC relative expressions A PC relative expression or abel is a symbol that represents the address of an instruction or literal data It is represented in the instruction as the PC value plus or minus a numeric offset The assembler calculates the required offset from the label and the address of the current instruction If the offset is too big the assembler produces an error Note For most instructions the value of the PC is the address
110. ust use memory barrier instructions before MPU setup if there might be outstanding memory transfers such as buffered writes that might be affected by the change in MPU settings after MPU setup if the software includes memory transfers that must use the new MPU settings However an instruction synchronization barrier instruction is not required if the MPU setup process starts by entering an exception handler or is followed by an exception return because the exception entry and exception return mechanisms cause memory barrier behavior For example if you want all of the memory access behavior to take effect immediately after the programming sequence use a DSB instruction and an ISB instruction A DSB is required after changing MPU settings such as at the end of context switch An ISB is required if the code that programs the MPU region or regions is entered using a branch or call If the programming sequence is entered using a return from exception or by taking an exception then you do not require an ISB Subregions Regions are divided into eight equal sized subregions Set the corresponding bit in the SRD field ofthe MPU_RASR to disable a subregion see MPU Region Attribute and Size Register on page 4 23 The least significant bit of SRD controls the first subregion and the most significant ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 4 26 Non Confidential Cortex M0 Peripherals bit controls
111. ved would be the same for both exceptions On return from the exception handler of the late arriving exception the normal tail chaining rules apply ARM DUI 0662A 1ID041812 Copyright 2012 ARM All rights reserved 2 19 Non Confidential The Cortex M0 Processor Exception entry Exception entry occurs when there is a pending exception with sufficient priority and either the processor is in Thread mode the pending exception is of higher priority than the exception being handled in which case the pending exception preempts the exception being handled When one exception preempts another the exceptions are nested Sufficient priority means the exception has greater priority than any limit set by the mask register see Exception mask register on page 2 7 An exception with less priority than this limit is pending but is not handled by the processor When the processor takes an exception unless the exception is a tail chained or a late arriving exception the processor pushes information onto the current stack This operation is referred to as stacking and the structure of eight data words is referred as a stack frame The stack frame contains the following information lt previous gt I SP points here before interrupt SP Ox1C xPSR SP 0x18 PC Decreasing SP 0x14 LR memory SP 0x10 R12 address SP 0x0C R3 SP 0x08 R2 SP 0x04 R1 y SP 0x00 RO SP points here after inter
112. vent register 0 The processor stops executing instructions and enters sleep mode 1 The processor sets the register to zero and continues executing instructions without entering sleep mode See WFE on page 3 47 for more information If the event register is 1 this indicates that the processor must not enter sleep mode on execution of a WFE instruction Typically this is because of the assertion of an external event or because another processor in the system has executed a SEV instruction see SEV on page 3 45 Software cannot access this register directly Sleep on exit If the SLEEPONEXIT bit of the SCR is set to 1 when the processor completes the execution of an exception handler and returns to Thread mode it immediately enters sleep mode Use this mechanism in applications that only require the processor to run when an interrupt occurs 2 5 2 Wakeup from sleep mode The conditions for the processor to wake up depend on the mechanism that caused it to enter sleep mode ARM DUI 0662A Copyright 2012 ARM All rights reserved 2 23 1ID041812 Non Confidential The Cortex M0 Processor Wakeup from WFI or sleep on exit Normally the processor wakes up only when it detects an exception with sufficient priority to cause exception entry Some embedded systems might have to execute system restore tasks after the processor wakes up and before it executes an interrupt handler To achieve this set the PRIMASK PM bit to 1 If an
113. y barrier Instructions that come after the DSB in program order do not execute until the DSB instruction completes The DSB instruction completes when all explicit memory accesses before it complete Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples DSB Data Synchronisation Barrier ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 40 1D041812 Non Confidential The Cortex MO Instruction Set 3 7 5 ISB Instruction Synchronization Barrier Syntax ISB Operation ISB acts as an instruction synchronization barrier It flushes the pipeline of the processor so that all instructions following the ISB are fetched from cache or memory again after the ISB instruction has been completed Restrictions There are no restrictions Condition flags This instruction does not change the flags Examples ISB Instruction Synchronisation Barrier ARM DUI 0662A Copyright 2012 ARM All rights reserved 3 41 1D041812 Non Confidential 3 7 6 MRS The Cortex MO Instruction Set Move the contents of a special register to a general purpose register Syntax MRS Rd spec_reg where Rd Is the general purpose destination register spec_reg Is one of the special purpose registers APSR IPSR EPSR IEPSR IAPSR EAPSR PSR MSP PSP PRIMASK or CONTROL Operation MRS stores the contents of a special purpose register to a general purpose re
114. yms for LDM LDMIA refers to the base register being Incremented After each access LDMFD refers to its use for popping data from Full Descending stacks STMIA and STMEA are synonyms for STM STMIA refers to the base register being Incremented After each access STMEA refers to its use for pushing data onto Empty Ascending stacks Operation LDM instructions load the registers in reg ist with word values from memory addresses based on Rn STM instructions store the word values in the registers in reglist to memory addresses based on Rn The memory addresses used for the accesses are at 4 byte intervals ranging from the value in the register specified by Rn to the value in the register specified by Rn 4 n 1 where nis the number of registers in reglist The accesses happens in order of increasing register numbers with the lowest numbered register using the lowest memory address and the highest number register using the highest memory address If the writeback suffix is specified the value in the register specified by Rn 4 nis written back to the register specified by Rn Restrictions In these instructions reglist and Rn are limited to RO R7 the writeback suffix must always be used unless the instruction is an LDM where reglist also contains Rn in which case the writeback suffix must not be used the value in the register specified by Rn must be word aligned See Address alignment on page 3 8 for more information

Download Pdf Manuals

image

Related Search

Related Contents

Clique aqui para baixar o anexo!  guia para escritura de documento cientifico  Manual Del Usuario  Communiqué de presse 2014-2015  Samsung 743B Uživatelská přiručka  Worldwide Lighting W83147C42 Instructions / Assembly  HQ RC UNIVERS40 remote control  Home Decorators Collection AM175-ORB Instructions / Assembly  

Copyright © All rights reserved.
Failed to retrieve file