Summary of ARM's 22 concepts

Publisher:素心悠远Latest update time:2021-04-28 Source: eefocusKeywords:ARM Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

1. Explanation of some common English abbreviations in ARM


MSB: most significant bit;


LSB: least significant bit;


AHB: Advanced High-Performance Bus;


VPB: VLSI peripheral bus that connects on-chip and off-chip functions;


EMC: External Memory Controller;


MAM: Memory Acceleration Module;


VIC: Vectored Interrupt Controller;


SPI: full-duplex serial interface;


CAN: Controller Area Network, a serial communication protocol;


PWM: Pulse Width Modulator;


ETM: Embedded Trace Macro;


CPSR: Current Program Status Register;


SPSR: Program protection status register;


2. Notes on using MAM

When changing the MAM timing value, you must first turn the MAM off by writing 0 to MAMCR, then write the new value to MAMTIM. Finally, write the value corresponding to the desired operating mode to MAMCR and turn the MAM on again.


For system clocks below 20MHz, MAMTIM is set to 001. For system clocks between 20MHz and 40MHz, it is recommended to set the Flash access time to 2cclk, and for system clocks above 40MHz, it is recommended to use 3cclk.


3. Precautions for using VIC

If the code is running in on-chip RAM and the application needs to call interrupts, the interrupt vector must be remapped to Flash address 0x0. This is done because all exception vectors are located at address 0x0 and above. This is achieved by configuring register MEMMAP (located in the system control block) to user RAM mode. The user code is linked so that the interrupt vector table is loaded at 0x4000 0000.


4. ARM startup code design

The ARM startup code directly programs the processor core and hardware controller, generally using assembly language. The startup code generally includes:


Interrupt vector table


Initialize the memory system


Initialize the stack and initialize ports and devices with special requirements


Initialize the user program execution environment


Changing the processor mode


Calling the main application


5. Difference between IRQ and FIQ

IRQ and FIQ are two programming modes of ARM processors. IRQ means interrupt mode and FIR means fast interrupt mode. With FIQ you have to do your business and get out of this mode as soon as possible. IRQ can be interrupted by FIQ, but IRQ cannot interrupt FIQ. To make FIQ faster, this mode has more shadow registers. FIQ cannot call SWI (software interrupt). FIQ also has to disable interrupts. If a FIQ routine has to re-enable interrupts, it is too slow and should be IRQ instead of FIQ.


6.ARM processor's response process to abnormal interrupt

The ARM processor's response to an abnormal interrupt is as follows:


Save the current state of the processor, interrupt mask bit, and each condition flag bit;


Set the corresponding bit in the current program status register CPSR;


Set register lr_mode to the return address;


Set the program counter value PC to the interrupt vector address of the exception interrupt and jump to the corresponding exception interrupt to execute.


7. The difference between ARM instructions and Thumb instructions

In the ARM architecture, the instructions in the ARM instruction set are 32-bit instructions, and their execution efficiency is very high. For application systems with a 16-bit storage system data bus, the ARM system provides the Thumb instruction set. The Thumb instruction set is a subset of the ARM instruction set that is re-encoded, and the instruction length is 16 bits. Usually, when the processor executes an ARM program, the processor is said to be in the ARM state; when the processor executes a Thumb program, the processor is said to be in the Thumb state.


The Thumb instruction set does not change the programming model of the ARM architecture, but only adds some restrictions to the model. The operands of data processing instructions in the Thumb instruction set are still 32 bits, and the instruction addressing address is also 32 bits.


8. What is ATPCS

In order to enable separately compiled C language programs and assembly programs to call each other, certain rules must be specified for calling subroutines. ATPCS is the basic rules for calling subroutines in ARM programs and Thumb programs. These rules include register usage rules, data stack usage rules, parameter passing rules, etc.


9. Mixed use of ARM programs and Thumb programs

Generally, Thumb programs are more compact than ARM programs, and for systems with 8-bit or 16-bit memory, using Thumb programs is more efficient. However, in some cases, the program must run in ARM state, and then it is necessary to mix ARM and Thumb programs.


When speed is important, ARM programs should be used; some functions can only be completed by ARM programs. For example: using or disabling abnormal interrupts;


When the processor enters the exception interrupt handler, the program state switches to the ARM state, that is, some instructions at the entrance of the exception interrupt handler are ARM instructions, and then the program can switch to the Thumb state as needed. Before the exception interrupt program returns, the program switches to the ARM state again.


ARM processors always start execution from ARM state. Therefore, if you want to run a Thumb program in a debugger, you must add an ARM program header to the Thumb program, then switch to Thumb state and execute the Thumb program.


10.ARM processor operating mode

ARM microprocessor supports 7 operating modes, namely:


User mode (usr): the normal program execution state of the ARM processor;


Fast interrupt mode (fiq): used for high-speed data transmission or channel management;


External interrupt mode (irq): used for general interrupt processing;


Management mode (svc): protection mode used by the operating system;


Data access termination mode (abt): This mode is entered when data or instruction prefetching is terminated, and is used for virtual storage and storage protection;


System mode (sys): runs privileged operating system tasks;


Undefined instruction abort mode (und): This mode is entered when an undefined instruction is executed and can be used to support software emulation of hardware coprocessors.


11.Exception types supported by the ARM architecture

The exceptions supported by the ARM architecture and their specific meanings are as follows (the numbers in the circle indicate the priority):


Reset ①: When the reset level of the processor is valid, a reset exception is generated, and the program jumps to the reset exception location for execution (exception vector: 0x0000, 0000);


Undefined instruction⑥: When the ARM processor or coprocessor encounters an instruction that cannot be processed, an undefined exception is generated. This exception mechanism can be used for software simulation (exception vector: 0x0000, 0004);


Software interrupt ⑥: SWI instruction is executed, which can be used to call privileged operation instructions in user mode. This exception mechanism can be used to implement system function calls (exception vector: 0x0000, 0008);


Instruction prefetch abort⑤: If the address of the processor's prefetch instruction does not exist, or the address does not allow the current instruction to access, the memory will send an abort signal to the processor. When the prefetch instruction is executed, an instruction prefetch abort exception will be generated (exception vector: 0x0000, 000C);


Data abort②: If the address of the instruction for data access by the processor does not exist, or the address does not allow the current instruction to access, a data abort exception is generated (exception vector: 0x0000, 0010);


IRQ④ (External Interrupt Request): When the processor's external interrupt request pin is valid and the I bit in the CPSR is 0, an IRQ exception is generated. The system's peripherals can use this exception to request interrupt service (exception vector: 0x0000, 0018);


FIQ③ (Fast Interrupt Request): When the processor's fast interrupt request pin is valid and the F bit in the CPSR is 0, a FIQ exception is generated (exception vector: 0x0000, 001C).


Note: The exception vectors 0x0000, 0014 are reserved exception vectors.



12.Memory format of ARM architecture

The memory formats of the ARM architecture are as follows:


Big-endian format: The high byte of word data is stored in the low address, and the low byte of word data is stored in the high address;


Little-endian format: Contrary to the big-endian storage format, the high address stores the high byte of the data and the low address stores the low byte of the data.


13.ARM register summary

ARM has 16 32-bit registers (r0 to r15).


r15 acts as the program register PC, r14 (link register) stores the return address of the subroutine, and r13 stores the stack address.


ARM has a current program status register: CPSR.


Some registers (r13, r14) will generate new instances when an exception occurs, such as the IRQ processor mode, when the processor uses r13_irq and r14_irq, ARM subroutine calls are very fast because the return address of the subroutine does not need to be stored in the stack.


14. Reasons for memory remapping (Remap)

The FIQ handler in the Flash memory does not need to consider the memory boundary problem caused by remapping; the use of SRAM and Boot Block vectors to handle segment boundary arbitration in the code space is greatly reduced; and space is provided to save constants for jumps that exceed the range of single-word transfer instructions.


Remapping in ARM refers to the mapping of reallocating the memory address space by writing a certain function register bit operation during program execution. A typical application is that the application is stored in Flash/ROM. Initially, these memory addresses start from 0, but the read time of these memories is longer than SRAM/DRAM, resulting in a low internal execution frequency. Therefore, the code is generally moved to SRAM/DRAM in the previous section of the program, and then the memory space is remapped, and the corresponding SRAM/DRAM is mapped to address 0. Re-executing the program can achieve the purpose of high-speed operation.


15. The reason why the program jump in the storage exception vector table uses the LDR instruction instead of the B instruction

[1] [2]
Keywords:ARM Reference address:Summary of ARM's 22 concepts

Previous article:Design of Real-time Clock Display Based on ARM7
Next article:Learning steps about ARM embedded system

Recommended ReadingLatest update time:2024-11-16 15:37

Implementation of the sending process in ARM embedded system development
When sending data through the network card, the upper layer protocol entity calls the function hard_start_xmit(). In our driver, this function is mapped to the DM9000_wait_to_send_packet() function. As the wait in its name indicates, this function only completes the work of waiting for sending. The actual sending is
[Microcontroller]
Linux Bluetooth Series -- Porting of ARM-Linux Bluetooth Tools
1. Kernel modification ------------------------------------------------------------ Make the Bluetooth core into a module. And configure as follows, Bluetooth subsystem support  --- L2CAP protocol support SCO links support RFCOMM protocol support
[Microcontroller]
Detailed explanation of the hardware design of the vacuum cleaner robot based on ARM processor
As people's living standards continue to improve, the aging of my country's population is becoming more and more obvious. Vacuum cleaning robots, as a type of service robot, can replace people in performing simple tasks such as cleaning rooms, workshops, and walls. Service robots have a broad market and have become
[Microcontroller]
Detailed explanation of the hardware design of the vacuum cleaner robot based on ARM processor
ARM11 learning based on S3C6410 (XV) MMU is here
Now, we have come to the world of main. Next, we will experience the MMU of ARM11, which is not available in STM32. Previously, during the core initialization process, the MMU function was turned off. That is because at that time, the operations were all physical addresses, so the MMU needed to be turned off.  MMU,
[Microcontroller]
ARM11 learning based on S3C6410 (XV) MMU is here
Design of remote wireless water supply measurement and control system based on ARM
At present, the production operation of industrial water supply points is mainly completed manually. In order to ensure the normal operation of each well at the industrial water supply point, the water well dispatching station needs to be manned 24 hours a day, and the dispatching personnel are divided into shifts to
[Microcontroller]
Design of remote wireless water supply measurement and control system based on ARM
Function call in ARM instructions
1. Important registers SP stack pointer, each exception mode has its own independent r13, which usually points to the stack dedicated to the exception mode, that is to say, the five exception modes and non-exception modes (user mode and system mode) have their own independent stacks, indexed by different stack pointer
[Microcontroller]
Detailed explanation of bootloader execution flow and ARM Linux boot process analysis
This article will introduce the analysis of the ARM Linux boot process. The portability of embedded Linux allows us to see it in various electronic products. The Linux boot process is also different for processors with different architectures. This article takes the S3C2410 ARM processor as an example to analyze in
[Microcontroller]
Detailed explanation of bootloader execution flow and ARM Linux boot process analysis
Design and implementation of network control system based on ARM+uCLinux
Introduction With the development of network and communication technology, embedded systems have entered a stage of rapid development. And have been widely used in various fields of society. This paper introduces a development platform using ARM+uCLinux to achieve remote system monitoring based on TCP/IP,
[Microcontroller]
Design and implementation of network control system based on ARM+uCLinux
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号