0
4.1kviews
Prominent features of Cortex M3 and its impact on design, development and maintenance.

Mumbai University > Electronics Engineering > Sem 7 > Embedded System Design

Marks: 10 Marks

Year: May 2016

1 Answer
0
13views

Following are the prominent features of Cortex M3:

High Performance:

  1. Many instructions, including multiply, are single cycle. Therefore, the Cortex-M3 processor outperforms most microcontroller products.
  2. Separate data and instruction buses allow simultaneous data and instruction accesses to be performed.
  3. The Thumb-2 instruction set feature requires no state switching between the ARM 32 bit mode and THUMB 16 bit mode. This saves a lot of instruction cycle. Also many data operations can be clubbed in THUMB mode. Hence this feature helps in achieving higher code density which reduces the memory requirements.
  4. Instruction fetches are 32 bits. Up to two instructions can be fetched in one cycle. As a result, there’s more available bandwidth for data transfer.
  5. The Cortex-M3 design allows microcontroller products to operate at high clock frequency (over 100 MHz in modern semiconductor manufacturing processes).

Advanced Interrupt-Handling Features:

  1. The built-in NVIC (Nested vectored interrupt controller) supports up to 240 external interrupt inputs. The vectored interrupt (Interrupts with ISR address defined) feature considerably reduces interrupt latency because there is no need to use software to determine which IRQ handler to serve.
  2. The Cortex-M3 processor automatically pushes registers R0–R3, R12, Link register (LR), PSR, and PC in the stack at interrupt entry and pops them back at interrupt exit. This reduces interrupt handling latency.
  3. Interrupt priorities can be set and changed dynamically.
  4. Some of the multi cycle operations, including Load-Multiple (LDM), Store-Multiple (STM), PUSH, and POP, are now interruptible.
  5. NMIs are handled immediately as they are very important in safety critical systems.

Low Power Consumption: The Cortex-M3 processor is suitable for various low-power applications:

  1. The Cortex-M3 processor is suitable for low-power designs because of the low gate count.
  2. It has power-saving mode support (SLEEPING and SLEEPDEEP).

System Features: The Cortex-M3 processor provides various system features making it suitable for a large number of applications:

  1. The system provides bit-band operation, byte-invariant big endian mode, and unaligned data access support.
  2. Advanced fault-handling features include various exception types and fault status registers, making it easier to locate problems.

Debug Supports: Following are the debug supports available in Cortex M3 processor

  1. Supports JTAG or Serial-Wire debug interfaces
  2. CoreSight debugging solution allows the processor status or memory contents to be accessed even when the processor is running.
  3. Built-in support for six breakpoints and four watch points.
  4. New debugging features, including fault status registers, new fault exceptions, and Flash Patch operations, make debugging much easier
Please log in to add an answer.