+ All Categories
Home > Documents > Research Groups: APT - 1824 System...

Research Groups: APT - 1824 System...

Date post: 18-Jul-2020
Category:
Upload: others
View: 4 times
Download: 0 times
Share this document with a friend
43
© 2005 PEVE IT Unit – ARM System Design System Development – v5 – 1 MANCHEstER 1824 The University of Manchester System Development Outline: system modelling on-chip debug AMBA rapid silicon prototyping embedded ARM cores hands-on: system modelling
Transcript
Page 1: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 1

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Development

❏ Outline:

❍ system modelling

❍ on-chip debug

❍ AMBA

❍ rapid silicon prototyping

❍ embedded ARM cores

☞ hands-on: system modelling

Page 2: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 2

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Development

❏ Outline:

➜ system modelling

❍ on-chip debug

❍ AMBA

❍ rapid silicon prototyping

❍ embedded ARM cores

☞ hands-on: system modelling

Page 3: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 3

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Modelling

❏ From prototype environment ...

❍ Undefined resources: Core, Memory, Cache

❍ C library use of hardware

❍ Debug libraries

❏ ... to final product

❍ Standalone embedded application

❍ Specific memory layout of the target hardware

❍ Initialisation sequence

Page 4: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 4

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System development & debugging

❏ A common set of debugger front-ends

❍ armsd, AXD, RVD

❏ Same code can be debugged on:

❍ Software simulation targets

– ARMulator

❍ Hardware targets

– RealView ICE, Multi-ICE, RV Trace, MultiTrace, Angel

Page 5: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 5

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Debugger-target interface

ARM DebuggerAXD

RDI

Remote Debug Interface (RDI)

Software target Hardware target

ARMulator Multi-ICE / Real View ICE

RDI RDI

Targetsimulated in

software

ARMdevelopment

board

Angel

RDI

Remote_A

ARMdevelopment

board

Page 6: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 6

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Software debug: the ARMulator

❏ A software model of an ARM core with:

❍ support for Thumb instructions

❍ a programmable memory interface

– for modelling the target memory system

– various rapid prototyping tools are supplied

❍ a coprocessor interface

– supporting custom coprocessor models

❍ an operating system interface

– system calls handled by host or emulation

Page 7: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 7

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter The ARMulator

❏ The core of a complete system model

❍ clock-cycle accurate

❍ inspect registers and memory

❍ set breakpoints and watchpoints

❏ Supports software development

❍ concurrently with hardware development

❍ higher performance than detailed hardware models

Page 8: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 8

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter From ARMulator to on-chip Debug

❏ Important to understand simulator’s default behaviour

❏ Default build needs to be tailored to specific needs:

❍ Uses of ADS/RVDS C library

– semi-hosted SWI calls

❍ Memory map and Linker placement rules

❍ Reset and initialisation

Page 9: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 9

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter ADS/RVDS C Library

❏ Avoiding C library semihosting

❍ import __use_no_semihosting_swi (in C: #pragma import)

❍ linker reports any remaining SWI call

❏ Retargeting C library calls

❍ example: retargeting the printf() family of function to printout to a hardware UART

extern void sendchar (char *c); /* UART communications */int fputc (int c, FILE *f){ /* redirect a char to the UART */ sendchar (c); return c;}

Page 10: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 10

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Image memory map

❏ Target hardware usually has several memory devices atdifferent address ranges

❏ Scatterloading

❍ describes memory location of code&data at load&run-time

❍ armlink -scatter scatfile.scf file1.o file2.o

Default memory map Simple scatterloading example

ZIRWRO

0x8000

Heap

StackFrom

Decided at

SemihostingSWI

Link Time

ZIRW

RO0x00000

Heap

Stack

Slow 16-bit RAM

Fast 32-bit RAM

0x10000

0x04000

0x18000

0x20000

0x24000

ROM

Page 11: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 11

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Reset and Initialisation

❏ Usually need to initialise:

❍ vector table

❍ stack pointers in IRQ/FIQ modes

❍ MMU/MPU

❍ other hardware

Page 12: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 12

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Initialisation sequence example

C Library User Code

__maincopy code and datazero uninitialised data

__rt_entryinitialise library functionscall top_levelconstructors (C++)

exit from application

reset handlerinitialise stack pointersconfigure MMU/MPUsetup cache/enable TCM

__user_initial_stackheapsetup stack & heap

$Sub$$main( )enable caches & interrupts

main( )tell linker to link in libraryinitialisation code

entrypoint

Page 13: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 13

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Development

❏ Outline:

❍ system modelling

➜ on-chip debug

❍ AMBA

❍ rapid silicon prototyping

❍ embedded ARM cores

☞ hands-on: system modelling

Page 14: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 14

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter On-chip debug

❏ Debug monitor: Angel

❍ runs on target hardware with the application

❍ requires target resources (memory, exception vectors, …)

❏ Integrated on-chip debug: Multi-ICE / RealView ICE

❍ non intrusive, requires almost no resources

❍ instead, uses additional debug hardware within the core

– ARM processor debug extension signals(main ones: BREAKPT, DBGRQ, DBGACK)

– EmbeddedICE, Embedded Trace

Page 15: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 15

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter EmbeddedICE

❏ Hardware registers controlled through:

❍ JTAG boundary scan

❍ Debug coprocessor

❏ Two possible actions:

❍ Halt debug-mode debugging

– processor halts at debug events

– unsuitable for real-time systems

❍ Monitor debug-mode debugging

– debug events generate exceptions (aborts)

– non-intrusive mode, for debugging real-time systems

Page 16: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 16

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter JTAG Test Access Port

❏ Joint Test Action Group

❍ looked especially at PCB production test

– surface mount defeats bed of nails approach

❍ on-chip scan path gives access to pins

– so chip to chip paths can be tested

❍ other uses are a side benefit:

– in-circuit testing of the chip core logic

– chip debug support, e.g. EmbeddedICE

❍ Note: not primarily for VLSI production test!

Page 17: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 17

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter JTAG Boundary Scan Organization

instruction reg.

bypass reg.

device ID reg.

TAPcontrollerTRST

TCK

TMS

TDI

enable

in

in

out

enable I/O

TDO

corelogic

Page 18: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 18

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter EmbeddedICE

❏ ICE functions:

❍ breakpoints, watchpoints

– generate an event at a particular instruction/data access

– hardware can easily be included on chip

– N.B. ROM breakpoints require hardware!

❍ trace buffer

– retains interface state before and after trigger

– Embedded Trace Macrocell now supported

– uses hardware compression to reduce pin requirement

Page 19: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 19

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Breakpoints and Watchpoints

❏ Breakpoint

❍ if this memory address is fetched as an instructionan exception occurs

– may be inserted as an instruction (BKPT)

– may be detected in hardware

❏ Watchpoint

❍ if this memory address is accessed by a load or storean exception occurs

– must be detected in hardware

Page 20: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 20

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Breakpoints and Watchpoints

❏ ARM break- watchpoint hardware

❍ mask and pattern

❍ trap if selected bits match desired pattern

❍ example:

breaks on word addresses 0x00131C00 – 0x00131CFC

11 1 111 1 1 11 1 111 1 1 01 1 011 1 1 10 0 100 0 0

00 0 000 0 0 10 0 100 0 1 01 1 000 0 1 00 0 000 0 0

address

Page 21: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 21

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter EmbeddedICE register read

and write structure

❍ Registers accessed via scan chain

data31 0

decode

breakpoint

04addressR/W

value

mask

compare

update DR

TDI TD0

Page 22: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 22

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter EmbeddedICE register mapping

Address Width Function

00000 3 Debug control

00001 5 Debug status

00100 6 Debug comms control register

00101 32 Debug comms data register

01000 32 Watchpoint 0 address value

01001 32 Watchpoint 0 address mask

01010 32 Watchpoint 0 data value

01011 32 Watchpoint 0 data mask

01100 9 Watchpoint 0 control value

01101 8 Watchpoint 0 control mask

10000 32 Watchpoint 1 address value

10001 32 Watchpoint 1 address mask

10010 32 Watchpoint 1 data value

10011 32 Watchpoint 1 data mask

10100 9 Watchpoint 1 control value

10101 8 Watchpoint 1 control mask

Page 23: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 23

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Embedded Trace

❏ The embedded trace macrocell (ETM) comprises:

❍ trace port – outputs processor signals

❍ filtering/triggering – allows capture of wanted data

– triggering allows capture from selected code

– filtering disregards unwanted data – saves storage/bandwitdh

❏ these can make the processor behaviour observable

❍ signals available at trace port

Page 24: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 24

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Embedded Trace

host

JTAG TAP EmbeddedICE

Embeddedtrace

macrocell

ARMcore

control

address

data

System-on-Chip

JTAGport

Traceport

EmbeddedICEcontroller

Trace portanalyser

system

Page 25: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 25

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Embedded Trace

❏ A trace buffer can be added to store trace signals

❍ essential at high speeds!

❏ Comprises:

❍ trace interface

❍ JTAG interface

❍ AHB bus interface

❏ Needs:

❍ RAM to store traces

Page 26: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 26

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Debug Unit

❏ Programmable through CP14 or scan chains

❏ Characteristics

❍ instruction address comparators for triggering breakpoints

❍ data address comparators for triggering watchpoints

❍ bidirectional Debug Communication Channel

❍ ability to disable caches and TLBs

❍ mode for debugging real-time systems(e.g. servo mechanisms)

Page 27: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 27

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Debug Unit

❏ Halt debug-mode debugging

❍ processor halts at debug events (breakpoints, ...)

❍ when halted, external host can examine and modify its stateusing the DBGTAP pin

❍ unsuitable for real-time systems

❍ requires external hardware to control DBGTAP

❏ Monitor debug-mode debugging

❍ debug events generate exceptions

❍ handler can program new debug events through CP14

Page 28: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 28

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter CP14 Registers

Register Opcode2:CRm Abbreviation Name

0 DIDR Debug ID Register

1 DSCR Debug Status and Control Register

2-4 – Reserved

5 DTR Data Transfer Register

6 WFAR Watchpoint Fault Address Register

7 VCR Vector Catch Register

8-9 – Reserved

10 DSCCR Debug State Cache Control Register

11 DSMCR Debug State MMU Control Register

12-63 – Reserved

64-69 BVRN Breakpoint Value Registers

70-79 – Reserved

80-85 BCRN Breakpoint Control Registers

86-95 – Reserved

96-97 WVRN Watchpoint Value Registers

98-111 – Reserved

112-113 BVRN Watchpoint Control Registers

114-127 – Reserved

Page 29: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 29

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Performance Monitoring

❏ A small collection of counters, triggered by ‘events’

❍ e.g. cache miss, TLB miss, dependency stall, branchmispredicted, …

❍ configurable

❍ can cause interrupts after a preset number of events

❍ introduced in ARM11

❏ Can be used for code profiling

❏ Accessible via CP15

Page 30: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 30

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Development

❏ Outline:

❍ system modelling

❍ on-chip debug

➜ AMBA

❍ rapid silicon prototyping

❍ embedded ARM cores

☞ hands-on: system modelling

Page 31: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 31

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter AMBA

❏ Advanced Microprocessor Bus Architecture

❍ a systematic solution to assembling macrocell-based systems

❍ ARM Ltd’s attempt to establish an on-chip bus standard

❏ AMBA structure:

❍ Advanced High-performance Bus (AHB)

– high-performance, multi-master

❍ Advanced Peripheral Bus (APB)

– interface for low performance peripherals

❍ Advanced eXtensible Interface (AXI) (new)

Page 32: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 32

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter A typical AMBA-based System

ARM core/CPU

on-chipRAM

externalbus

interface

DMAcontroller

bridge UART

timer

PIO

test i/fcontroller

AHB

APB

Page 33: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 33

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter AMBA Test Interface

❏ VLSI production test is an economically important issue

❍ macrocell based designs present problems

– how can each macrocell be systematically tested?

❍ AMBA offers a standardised solution

– based on 32-bit parallel access, via the bus, to test registers

Page 34: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 34

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter AMBA Standards

❏ AXI is intended as a replacement for the AHB bus

❍ used for future designs

❍ some components already developed:

– L220 level-2 cache controller

– PL300 configurable interconnect

– PL340 SDRAM controller

Bus Master Performancepipelined/splittransactions

Other

AHB multi high yes 32- to 1024-bit data bus

APB single low no used to reduce main bus load

AXI multi high yes separate data busesout-of-order completion

Page 35: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 35

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Development

❏ Outline:

❍ system modelling

❍ on-chip debug

❍ AMBA

➜ rapid silicon prototyping

❍ embedded ARM cores

☞ hands-on: system modelling

Page 36: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 36

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Excalibur

❏ Rapid prototyping system

❍ ARM-based computer …

❍ … plus LOTS of uncommitted gates

ARM9

+ cache

+ MMU

FPGA

RAMRAM

Dual port

controller

SDRAM

interface

Bus

interface

Bus

Page 37: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 37

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Excalibur

ARM9

Page 38: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 38

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter System Development

❏ Outline:

❍ system modelling

❍ on-chip debug

❍ AMBA

❍ rapid silicon prototyping

➜ embedded ARM cores

☞ hands-on: system modelling

Page 39: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 39

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter VLSI OneC GSM chip

JTAG test/debug

audiointerface

radiointerface

ARM7TDMIcore

programROM

programRAM

Oak DSPcore

memorycontroller

dataROM

dataRAM

interruptcontroller

config./status

powermanager

hard

war

eco

proc

s.

bootROM

UART1

PCMinterface

DSP radioport

interruptcontroller

UART2/IrDA

high-speedserial i/f (2)

SIM i/f

RTC

ADC

buscontrol

external

keypadscanner

GPIOPWM

DSPsubsystem

AR

M b

usDS

P b

us

(6)

(13)

(20)

(11)

(10)

(7)

(16)

(4)

(5)

(4)

(6)

(20)(6)

Page 40: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 40

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Typical OneC system configuration

VWS22100

radio

module

ROM

speaker

mic

ringer

EEPROM IrDA

RAM

K E Y

P A D

LCD

SIMcard

Page 41: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 41

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter DRACO

❏ DECT Radio Communications Controller

❍ in collaboration with Hagenuk GmbH

❍ combines ISDN and DECT telecommunications systems

❍ world’s first “commercial” 32-bit asynchronous SoC product

– … would have been …

Process 0.35 µm Transistors 825,000 MIPS 100Metal layers 3 Die area 21 mm2 Power 215 mWVdd 3.3 V Clock none MIPS/W 465

Page 42: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 42

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter DRACO

AMULET3

8 Kbyte

RAM

DMA

controller

Synchronous

interface

Memory

interface

16 Kbyte

ROM

Test

interface

MARBLE bus

Synchronous

peripherals

Fabricated 2000

Page 43: Research Groups: APT - 1824 System Developmentapt.cs.manchester.ac.uk/ftp/pub/apt/peve/PEVE05/Slides/...Integrated on-chip debug: Multi-ICE / RealView ICE non intrusive, requires almost

© 2005 PEVEIT Unit – ARM System Design System Development – v5 – 43

MANCHEstER1824

The

Uni

vers

ityof

Man

ches

ter Hands-on: system modelling

❏ Using the ARMulator

❍ to generate address traces

❍ to get performance estimates

– using the memory map facility

❍ advanced configuration

– adding your own system models

☞ Follow the ‘Hands-on’ instructions


Recommended