Study Material
Semester-04
PA
Unit-06

Unit 6: Current Trends in Processor Architecture

1. ARM & RISC: Design Philosophy

RISC Design Philosophy

RISC, or Reduced Instruction Set Computer, is a design philosophy aimed at simplifying the instruction set of a processor. The core idea is that a smaller, more optimized set of instructions can improve performance by allowing for faster execution and easier decoding. RISC architectures typically employ the following principles:

  • Simplified Instructions: RISC processors use a limited number of instructions that are simple and execute within one clock cycle.
  • Load/Store Architecture: Data manipulation occurs between registers rather than directly between memory and the processor.
  • Large Register File: RISC architectures often have many general-purpose registers to minimize memory access.
  • Pipeline Execution: RISC architectures utilize pipelining to overlap the execution of instructions, enhancing throughput.

ARM Design Philosophy

ARM is a family of computer processors based on the RISC architecture. It embodies the RISC principles while integrating advanced features that cater to modern computing needs, especially in mobile and embedded systems. Key aspects of ARM's design philosophy include:

  • Energy Efficiency: ARM processors are designed to consume less power, making them ideal for battery-operated devices.
  • High Performance: The architecture focuses on achieving high performance with fewer transistors, balancing speed and power consumption.
  • Scalability: ARM architectures can be scaled to fit various application requirements, from low-power devices to high-performance computing systems.
  • Rich Ecosystem: ARM has developed a robust ecosystem with extensive support, tools, and a vast library of software, facilitating development across different platforms.

2. Introduction to ARM Processors and Their Versions

Overview of ARM Processors

ARM processors are widely used in various applications, from smartphones and tablets to embedded systems and IoT devices. ARM Holdings, the company behind ARM architecture, designs the architecture and licenses it to semiconductor companies, which manufacture ARM-based chips. This business model has led to a proliferation of ARM processors in the market.

ARM Processor Versions

Over the years, ARM has introduced several processor versions, each enhancing features and performance. Key versions include:

ARM7

The ARM7 architecture, introduced in the early 1990s, was a significant milestone in the ARM lineage. Key features include:

  • 32-bit RISC Architecture: The ARM7 processor supports a 32-bit instruction set, allowing for efficient data processing.
  • Pipeline Architecture: It uses a 3-stage pipeline (fetch, decode, execute) for improved instruction throughput.
  • Thumb Instruction Set: ARM7 introduced a 16-bit compressed instruction set known as Thumb, providing better code density without sacrificing performance.
  • Embedded Applications: The ARM7 core is commonly used in microcontrollers and embedded applications due to its low power consumption and efficient processing capabilities.

ARM9

The ARM9 architecture built upon the ARM7 foundation, introducing enhancements that further improved performance and efficiency. Key features include:

  • Enhanced Pipeline: ARM9 processors feature a 5-stage pipeline for better instruction throughput.
  • Dual Instruction Fetch: This allows the processor to fetch two instructions simultaneously, enhancing execution speed.
  • Cache Support: ARM9 introduced support for separate instruction and data caches, significantly improving performance.
  • Advanced Multimedia Instructions: ARM9 supports SIMD (Single Instruction, Multiple Data) instructions, allowing for efficient multimedia processing.

ARM11

The ARM11 architecture marked a significant leap in performance and capability. Key features include:

  • Out-of-Order Execution: ARM11 supports out-of-order execution, allowing the processor to optimize the execution of instructions based on resource availability.
  • Enhanced SIMD Capabilities: Improved multimedia instruction sets for faster processing of graphics and audio.
  • Cache Improvements: ARM11 includes larger and more sophisticated cache designs, improving data access speed.
  • Energy Efficiency: Despite its enhanced performance, ARM11 maintains the energy efficiency characteristic of ARM processors.

Summary of ARM Processor Versions

VersionKey Features
ARM732-bit architecture, 3-stage pipeline, Thumb set
ARM95-stage pipeline, dual instruction fetch, caches
ARM11Out-of-order execution, enhanced SIMD, improved caches

3. Features & Advantages of ARM Processors

Key Features of ARM Processors

  1. Low Power Consumption: ARM processors are designed for efficiency, making them suitable for mobile and embedded applications where battery life is crucial.
  2. High Performance: With advanced architectures, ARM processors provide high performance, catering to demanding applications.
  3. Scalability: ARM architecture can be tailored to various performance levels, allowing it to fit a wide range of applications from IoT devices to high-end smartphones.
  4. Rich Ecosystem: ARM's extensive ecosystem offers a wide range of development tools, libraries, and software support, facilitating development for engineers and developers.
  5. Security Features: ARM processors often include hardware security features, such as TrustZone technology, providing a secure environment for sensitive applications.

Advantages of ARM Processors

  • Industry Adoption: ARM processors dominate the mobile and embedded markets, leading to widespread adoption and support.
  • Cost-Effectiveness: The low power and performance efficiency make ARM processors a cost-effective choice for manufacturers.
  • Versatile Applications: ARM processors are used in a diverse array of applications, including smartphones, tablets, automotive systems, and smart appliances.

4. Suitability of ARM Processors in Embedded Applications

Importance of Embedded Systems

Embedded systems are dedicated computing systems that perform specific tasks within larger mechanical or electrical systems. The demand for embedded systems continues to grow, driven by the proliferation of smart devices, IoT, and automation.

Why ARM is Suitable for Embedded Applications

  1. Power Efficiency: ARM's focus on low power consumption is vital in embedded applications, where battery life is often a critical factor.
  2. Small Form Factor: ARM processors can be designed in compact forms, fitting into space-constrained environments typical of embedded systems.
  3. Integrated Peripherals: Many ARM processors come with integrated peripherals, reducing the need for additional components and simplifying system design.
  4. Real-Time Performance: ARM processors can be designed to support real-time applications, ensuring timely responses to external events, which is crucial for embedded systems.

5. ARM7 Dataflow Model

Understanding the Dataflow Model

The dataflow model of ARM7 describes how data moves through the processor and the interactions between its components. It encompasses the various stages of instruction processing, including instruction fetch, decode, and execution.

  1. Instruction Fetch: The instruction is fetched from memory based on the program counter (PC).
  2. Instruction Decode: The fetched instruction is decoded to determine the operation and the operands involved.
  3. Execution: The execution stage performs the necessary operations based on the decoded instruction, interacting with the ALU (Arithmetic Logic Unit) and registers.

Dataflow in ARM7

In ARM7, the dataflow is designed to maximize efficiency and minimize latency. The instruction fetch and execution stages operate in a pipeline, allowing for multiple instructions to be processed simultaneously.


6. Programmers Model, CPSR & SPSR Registers

Programmers Model

The programmer's model of a processor defines how the processor's resources (such as registers, instruction sets, and modes of operation) are organized and accessed by software. For ARM processors, this model includes a set of general-purpose registers, special-purpose registers, and a well-defined instruction set architecture (ISA).

CPSR & SPSR Registers

  • CPSR (Current Program Status Register): The CPSR holds flags and status information about the current state of the processor, including:

    • Condition flags (Negative, Zero, Carry, Overflow).
    • Control bits for processor state (User, Supervisor, Abort, etc.).
    • Interrupt mask bits to enable or disable interrupts.
  • SPSR (Saved Program Status Register): The SPSR is used to store the CPSR when an exception occurs. It enables the processor to restore the previous state after handling an interrupt or exception, ensuring smooth execution of programs.

Modes of Operation

ARM processors operate in different modes, each tailored for specific tasks. The primary modes include:

  • User Mode: Normal operating mode for user applications.
  • Supervisor Mode: Privileged mode for operating system tasks and interrupt handling.
  • Abort Mode: Used during memory access violations.
  • Undefined Mode: Handles undefined instruction exceptions.

7. Difference Between PIC and ARM

Overview of PIC Microcontrollers

PIC (Peripheral Interface Controller) microcontrollers are a family of microcontrollers developed by Microchip Technology. They are widely used in embedded applications and feature a variety of configurations and capabilities.

Key Differences Between PIC and ARM

FeaturePIC MicrocontrollersARM Processors
ArchitectureModified Harvard architectureRISC architecture
Instruction SetLimited instruction setRich and complex instruction set
Power ConsumptionVaries by model, generally higher than ARMDesigned for low power consumption
PerformanceSuitable for basic tasksHigh performance suitable for advanced tasks
Development EcosystemMicrochip-specific tools and librariesExtensive ecosystem with broad support
Market UsePrimarily in simple embedded applicationsWidely used in mobile, automotive, and IoT