SlideShare a Scribd company logo
1 of 17
Prardiva Mangilipally
ARM Processor cores
Fall 2008
1 ELEC8200-001: Mangilipally: ARM Core
ARM Ltd
 Founded in November 1990
 Spun out of Acorn Computers
 Designs the ARM range of RISC processor cores
 Licenses ARM core designs to semiconductor
partners who fabricate and sell to their customers.
 ARM does not fabricate silicon itself
 Also develop technologies to assist with the
design-in of the ARM architecture
 Software tools, boards, debug
hardware, application software, bus
architectures, peripherals etc
Fall 2008
2 ELEC8200-001: Mangilipally: ARM Core
Intoduction
3
 Leading provider of 32-bit embedded RISC
microprocessors, 75% of market
High performance
Low power consumption
Low system cost
 Solutions for
Embedded real-time systems for mass
storage,
automotive, industrial and networking
applications
Secure applications - smartcards and SIMs
Open platforms running complex operating
systems
Fall 2008
ELEC8200-001: Mangilipally: ARM Core
4
 ARMv1
First version of ARM processor
26-bit addressing, no multiply / coprocessor
 ARMv2
ARM2, First commercial chip
Included 32-bit result multiply instructions /
coprocessor support
2/3
Fall 2008
ELEC8200-001: Mangilipally: ARM Core
5
 ARMv2a
ARM3 chip with on-chip cache
Added load and store
cache management
 ARMv3
ARM6, 32 bit addressing, virtual
memory support
3/3
Fall 2008
ELEC8200-001: Mangilipally: ARM Core
ARM Processor Core
6
 Current low-end ARM core for applications like
digital mobile phones
 TDMI
 T: Thumb, 16-bit instruction set
 D: on-chip Debug support, enabling the processor
to halt in response to a debug request
 M: enhanced Multiplier, yield a full 64-bit result, high
performance
 I: EmbeddedICE hardware
 Von Neumann architecture
 3-stage pipeline
Fall 2008
ELEC8200-001: Mangilipally: ARM Core
ARM Core Diagram
7 Fall 2008
ELEC8200-001: Mangilipally: ARM Core
The Registers
 ARM has 37 registers all of which are 32-bits long.
 1 dedicated program counter
 1 dedicated current program status register
 5 dedicated saved program status registers
 30 general purpose registers
 The current processor mode governs which of several banks
is accessible. Each mode can access
 a particular set of r0-r12 registers
 a particular r13 (the stack pointer, sp) and
r14 (the link register)
 the program counter, r15 (pc)
 the current program status register, cpsr
Privileged modes (except System) can also access
 a particular spsr (saved program status
register) Fall 2008
8 ELEC8200-001: Mangilipally: ARM Core
 When the processor is executing in ARM state:
 All instructions are 32 bits wide
 All instructions must be word aligned
 When the processor is executing in Thumb state:
 All instructions are 16 bits wide
 All instructions must be halfword aligned
 When the processor is executing in Jazelle state:
 All instructions are 8 bits wide
 Processor performs a word access to read 4
instructions at once
DIFFERENT STATES
Fall 2008
9 ELEC8200-001: Mangilipally: ARM Core
 Thumb is a 16-bit instruction set
 Optimised for code density from C code (~65% of ARM
code size)
 Improved performance from narrow memory
 Subset of the functionality of the ARM instruction set
 Core has additional execution state - Thumb
 Switch between ARM and Thumb using BX instruction
0
1
5
31 0
ADDS r2,r2,#1
ADD r2,#1
32-bit ARM Instruction
16-bit Thumb Instruction
For most instructions generated by compiler:
 Conditional execution is not used
 Source and destination registers identical
 Only Low registers used
 Constants are of limited size
 Inline barrel shifter not used
Thumb
Fall 2008
10 ELEC8200-001: Mangilipally: ARM Core
ARM Interface Signals (1/4)
11
mreq
seq
lock
Dout[31:0]
D[31:0]
r/w
mas[1:0]
mode[4:0]
trans
abort
opc
cpi
cpa
cpb
memory
interface
MMU
interface
coprocessor
interface
mclk
wait
eclk
is ync
bigend
enin
irq
¼
q
res et
enout
abe
Vdd
Vs s
clock
control
configuration
interrupts
initialization
bus
control
power
ale
ape
dbe
dbgrq
breakpt
dbgack
debug
exec
extern1
extern0
dbgen
bl[3:0]
TRST
TCK
TMS
TDI
JTAG
controls
TDO
Tbit state
tbe
rangeout0
rangeout1
dbgrqi
commrx
commtx
enouti
highz
busdis
ecapclk
busen
Din[31:0]
A[31:0]
ARM7TDMI
core
tapsm[3:0]
ir[3:0]
tdoen
tck1
tck2
screg[3:0]
TAP
information
drivebs
ecapclkbs
icapclkbs
highz
pclkbs
rstclkbs
sdinbs
sdoutbs
shclkbs
shclk2bs
boundary
scan
extension
Fall 2008
ELEC8200-001: Mangilipally: ARM Core
ARM Interface Signals (2/4)
 Clock control
 All state change within the processor are controlled by mclk, the
memory clock
 Internal clock = mclk AND wait
 eclk clock output reflects the clock used by the core
 Memory interface
 32-bit address A[31:0], bidirectional data bus D[31:0], separate data out
Dout[31:0], data in Din[31:0]
 seq indicates that the memory address will be sequential to that used in
the previous cycle
12
mreq s eq Cy cl e Us e
0 0 N Non-sequential memory access
0 1 S Sequential memory access
1 0 I Internal cycle – bus and memory inactive
1 1 C Coprocessor register transfer – memory inactive
Fall 2008
ELEC8200-001: Mangilipally: ARM Core
ARM Interface Signals (3/4)
 Interrupt
 fiq, fast interrupt request, higher priority
 irq, normal interrupt request
 isync, allow the interrupt synchronizer to be passed
 Initialization
 reset, starts the processor from a known state, executing from address
0000000016
 ARM characteristics
13 Fall 2008
ELEC8200-001: Mangilipally: ARM Core
Memory Access
 The ARM is a Von Neumann,
load/store architecture, i.e.,
 Only 32 bit data bus for both inst. And data.
 Only the load/store inst. (and SWP) access
memory.
 Memory is addressed as a 32 bit
address space
 Data type can be 8 bit bytes, 16 bit
half-words or 32 bit words, and may be
seen as a byte line folded into 4-byte
words
0x1A
0x14
0x15
0x16
0x17
0x18
0x19
0x13
0x11
0x12
0x10
0x0C
0x08
0x00
0x04
Memory as words
14 Fall 2008
ELEC8200-001: Mangilipally: ARM Core
Processor Core Vs CPU Core
15
 Processor Core
– The engine that fetches instructions and execute them
– E.g.: ARM7TDMI, ARM9TDMI, ARM9E-S
 CPU Core
– Consists of the ARM processor
core and some tightly coupled
function blocks
– Cache and memory
management blocks
– E.g.: ARM710T, ARM720T,
ARM74T, ARM920T, ARM922T,
ARM940T, ARM946E-S, and
ARM966E-S
AMBA
address
AMBA
data
instruction &
data cache
AMBA interface
ARM7TDMI
EmbeddedICE
& JTAG
virtual address
instructions & data
physical
address
CP15
MMU
write
buffer
ARM710T
Fall 2008
ELEC8200-001: Mangilipally: ARM Core
References
1) www.arm.com
2) www.electronicdesign.com/Articles/ArticleID/165
95/16595.html
3) www2.electronicproducts.com/ARM_processor
_core_achieves_new_heights_in_performance
_efficiency-article-poyjh02-jan200
4) en.wikipedia.org/wiki/ARM_architecture
16 Fall 2008
ELEC8200-001: Mangilipally: ARM Core
Thank you
Fall 2008
17 ELEC8200-001: Mangilipally: ARM Core

More Related Content

Similar to arm 7 microprocessor architecture ans pin diagram.ppt

embedded system and microcontroller
 embedded system and microcontroller embedded system and microcontroller
embedded system and microcontrollerSHILPA Sillobhargav
 
Introduction to arm architecture
Introduction to arm architectureIntroduction to arm architecture
Introduction to arm architectureZakaria Gomaa
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerRup Chowdhury
 
Arm processors' architecture
Arm processors'   architectureArm processors'   architecture
Arm processors' architectureDr.YNM
 
A 32-Bit Parameterized Leon-3 Processor with Custom Peripheral Integration
A 32-Bit Parameterized Leon-3 Processor with Custom Peripheral IntegrationA 32-Bit Parameterized Leon-3 Processor with Custom Peripheral Integration
A 32-Bit Parameterized Leon-3 Processor with Custom Peripheral IntegrationTalal Khaliq
 
how to generate sms
how to generate smshow to generate sms
how to generate smssumant reddy
 
ARM stacks, subroutines, Cortex M3, LPC 214X
ARM  stacks, subroutines, Cortex M3, LPC 214XARM  stacks, subroutines, Cortex M3, LPC 214X
ARM stacks, subroutines, Cortex M3, LPC 214XKarthik Vivek
 
AAME ARM Techcon2013 001v02 Architecture and Programmer's model
AAME ARM Techcon2013 001v02 Architecture and Programmer's modelAAME ARM Techcon2013 001v02 Architecture and Programmer's model
AAME ARM Techcon2013 001v02 Architecture and Programmer's modelAnh Dung NGUYEN
 
Arm cortex-m4 programmer model
Arm cortex-m4 programmer modelArm cortex-m4 programmer model
Arm cortex-m4 programmer modelMohammed Gomaa
 
Arm7 document
Arm7  documentArm7  document
Arm7 documentN Harisha
 
ARM Versions, architecture
ARM Versions, architectureARM Versions, architecture
ARM Versions, architectureKarthik Vivek
 
soc ip core based for spacecraft application
soc ip core based for spacecraft applicationsoc ip core based for spacecraft application
soc ip core based for spacecraft applicationnavyashree pari
 
Architecture and Implementation of the ARM Cortex-A8 Microprocessor
Architecture and Implementation of the ARM Cortex-A8 MicroprocessorArchitecture and Implementation of the ARM Cortex-A8 Microprocessor
Architecture and Implementation of the ARM Cortex-A8 MicroprocessorAneesh Raveendran
 

Similar to arm 7 microprocessor architecture ans pin diagram.ppt (20)

embedded system and microcontroller
 embedded system and microcontroller embedded system and microcontroller
embedded system and microcontroller
 
Introduction to arm architecture
Introduction to arm architectureIntroduction to arm architecture
Introduction to arm architecture
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontroller
 
arm_3.ppt
arm_3.pptarm_3.ppt
arm_3.ppt
 
Unit vi (2)
Unit vi (2)Unit vi (2)
Unit vi (2)
 
8051 presentation
8051 presentation8051 presentation
8051 presentation
 
Arm processors' architecture
Arm processors'   architectureArm processors'   architecture
Arm processors' architecture
 
A 32-Bit Parameterized Leon-3 Processor with Custom Peripheral Integration
A 32-Bit Parameterized Leon-3 Processor with Custom Peripheral IntegrationA 32-Bit Parameterized Leon-3 Processor with Custom Peripheral Integration
A 32-Bit Parameterized Leon-3 Processor with Custom Peripheral Integration
 
how to generate sms
how to generate smshow to generate sms
how to generate sms
 
ARM stacks, subroutines, Cortex M3, LPC 214X
ARM  stacks, subroutines, Cortex M3, LPC 214XARM  stacks, subroutines, Cortex M3, LPC 214X
ARM stacks, subroutines, Cortex M3, LPC 214X
 
AAME ARM Techcon2013 001v02 Architecture and Programmer's model
AAME ARM Techcon2013 001v02 Architecture and Programmer's modelAAME ARM Techcon2013 001v02 Architecture and Programmer's model
AAME ARM Techcon2013 001v02 Architecture and Programmer's model
 
Arm arc-2016
Arm arc-2016Arm arc-2016
Arm arc-2016
 
Arm cortex-m4 programmer model
Arm cortex-m4 programmer modelArm cortex-m4 programmer model
Arm cortex-m4 programmer model
 
Arm7 document
Arm7  documentArm7  document
Arm7 document
 
ARM Versions, architecture
ARM Versions, architectureARM Versions, architecture
ARM Versions, architecture
 
3.TechieNest microcontrollers
3.TechieNest  microcontrollers3.TechieNest  microcontrollers
3.TechieNest microcontrollers
 
A42060105
A42060105A42060105
A42060105
 
soc ip core based for spacecraft application
soc ip core based for spacecraft applicationsoc ip core based for spacecraft application
soc ip core based for spacecraft application
 
ARM Architecture
ARM ArchitectureARM Architecture
ARM Architecture
 
Architecture and Implementation of the ARM Cortex-A8 Microprocessor
Architecture and Implementation of the ARM Cortex-A8 MicroprocessorArchitecture and Implementation of the ARM Cortex-A8 Microprocessor
Architecture and Implementation of the ARM Cortex-A8 Microprocessor
 

Recently uploaded

What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 

Recently uploaded (20)

Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 

arm 7 microprocessor architecture ans pin diagram.ppt

  • 1. Prardiva Mangilipally ARM Processor cores Fall 2008 1 ELEC8200-001: Mangilipally: ARM Core
  • 2. ARM Ltd  Founded in November 1990  Spun out of Acorn Computers  Designs the ARM range of RISC processor cores  Licenses ARM core designs to semiconductor partners who fabricate and sell to their customers.  ARM does not fabricate silicon itself  Also develop technologies to assist with the design-in of the ARM architecture  Software tools, boards, debug hardware, application software, bus architectures, peripherals etc Fall 2008 2 ELEC8200-001: Mangilipally: ARM Core
  • 3. Intoduction 3  Leading provider of 32-bit embedded RISC microprocessors, 75% of market High performance Low power consumption Low system cost  Solutions for Embedded real-time systems for mass storage, automotive, industrial and networking applications Secure applications - smartcards and SIMs Open platforms running complex operating systems Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 4. 4  ARMv1 First version of ARM processor 26-bit addressing, no multiply / coprocessor  ARMv2 ARM2, First commercial chip Included 32-bit result multiply instructions / coprocessor support 2/3 Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 5. 5  ARMv2a ARM3 chip with on-chip cache Added load and store cache management  ARMv3 ARM6, 32 bit addressing, virtual memory support 3/3 Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 6. ARM Processor Core 6  Current low-end ARM core for applications like digital mobile phones  TDMI  T: Thumb, 16-bit instruction set  D: on-chip Debug support, enabling the processor to halt in response to a debug request  M: enhanced Multiplier, yield a full 64-bit result, high performance  I: EmbeddedICE hardware  Von Neumann architecture  3-stage pipeline Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 7. ARM Core Diagram 7 Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 8. The Registers  ARM has 37 registers all of which are 32-bits long.  1 dedicated program counter  1 dedicated current program status register  5 dedicated saved program status registers  30 general purpose registers  The current processor mode governs which of several banks is accessible. Each mode can access  a particular set of r0-r12 registers  a particular r13 (the stack pointer, sp) and r14 (the link register)  the program counter, r15 (pc)  the current program status register, cpsr Privileged modes (except System) can also access  a particular spsr (saved program status register) Fall 2008 8 ELEC8200-001: Mangilipally: ARM Core
  • 9.  When the processor is executing in ARM state:  All instructions are 32 bits wide  All instructions must be word aligned  When the processor is executing in Thumb state:  All instructions are 16 bits wide  All instructions must be halfword aligned  When the processor is executing in Jazelle state:  All instructions are 8 bits wide  Processor performs a word access to read 4 instructions at once DIFFERENT STATES Fall 2008 9 ELEC8200-001: Mangilipally: ARM Core
  • 10.  Thumb is a 16-bit instruction set  Optimised for code density from C code (~65% of ARM code size)  Improved performance from narrow memory  Subset of the functionality of the ARM instruction set  Core has additional execution state - Thumb  Switch between ARM and Thumb using BX instruction 0 1 5 31 0 ADDS r2,r2,#1 ADD r2,#1 32-bit ARM Instruction 16-bit Thumb Instruction For most instructions generated by compiler:  Conditional execution is not used  Source and destination registers identical  Only Low registers used  Constants are of limited size  Inline barrel shifter not used Thumb Fall 2008 10 ELEC8200-001: Mangilipally: ARM Core
  • 11. ARM Interface Signals (1/4) 11 mreq seq lock Dout[31:0] D[31:0] r/w mas[1:0] mode[4:0] trans abort opc cpi cpa cpb memory interface MMU interface coprocessor interface mclk wait eclk is ync bigend enin irq ¼ q res et enout abe Vdd Vs s clock control configuration interrupts initialization bus control power ale ape dbe dbgrq breakpt dbgack debug exec extern1 extern0 dbgen bl[3:0] TRST TCK TMS TDI JTAG controls TDO Tbit state tbe rangeout0 rangeout1 dbgrqi commrx commtx enouti highz busdis ecapclk busen Din[31:0] A[31:0] ARM7TDMI core tapsm[3:0] ir[3:0] tdoen tck1 tck2 screg[3:0] TAP information drivebs ecapclkbs icapclkbs highz pclkbs rstclkbs sdinbs sdoutbs shclkbs shclk2bs boundary scan extension Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 12. ARM Interface Signals (2/4)  Clock control  All state change within the processor are controlled by mclk, the memory clock  Internal clock = mclk AND wait  eclk clock output reflects the clock used by the core  Memory interface  32-bit address A[31:0], bidirectional data bus D[31:0], separate data out Dout[31:0], data in Din[31:0]  seq indicates that the memory address will be sequential to that used in the previous cycle 12 mreq s eq Cy cl e Us e 0 0 N Non-sequential memory access 0 1 S Sequential memory access 1 0 I Internal cycle – bus and memory inactive 1 1 C Coprocessor register transfer – memory inactive Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 13. ARM Interface Signals (3/4)  Interrupt  fiq, fast interrupt request, higher priority  irq, normal interrupt request  isync, allow the interrupt synchronizer to be passed  Initialization  reset, starts the processor from a known state, executing from address 0000000016  ARM characteristics 13 Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 14. Memory Access  The ARM is a Von Neumann, load/store architecture, i.e.,  Only 32 bit data bus for both inst. And data.  Only the load/store inst. (and SWP) access memory.  Memory is addressed as a 32 bit address space  Data type can be 8 bit bytes, 16 bit half-words or 32 bit words, and may be seen as a byte line folded into 4-byte words 0x1A 0x14 0x15 0x16 0x17 0x18 0x19 0x13 0x11 0x12 0x10 0x0C 0x08 0x00 0x04 Memory as words 14 Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 15. Processor Core Vs CPU Core 15  Processor Core – The engine that fetches instructions and execute them – E.g.: ARM7TDMI, ARM9TDMI, ARM9E-S  CPU Core – Consists of the ARM processor core and some tightly coupled function blocks – Cache and memory management blocks – E.g.: ARM710T, ARM720T, ARM74T, ARM920T, ARM922T, ARM940T, ARM946E-S, and ARM966E-S AMBA address AMBA data instruction & data cache AMBA interface ARM7TDMI EmbeddedICE & JTAG virtual address instructions & data physical address CP15 MMU write buffer ARM710T Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 16. References 1) www.arm.com 2) www.electronicdesign.com/Articles/ArticleID/165 95/16595.html 3) www2.electronicproducts.com/ARM_processor _core_achieves_new_heights_in_performance _efficiency-article-poyjh02-jan200 4) en.wikipedia.org/wiki/ARM_architecture 16 Fall 2008 ELEC8200-001: Mangilipally: ARM Core
  • 17. Thank you Fall 2008 17 ELEC8200-001: Mangilipally: ARM Core