28
1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides developed in part by Prof. Dutta

1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

Embed Size (px)

Citation preview

Page 1: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

1

EECS 373Design of Microprocessor-Based Systems

Mark BrehobUniversity of Michigan

Lecture 12: Memory and Peripheral BussesOctober 22nd, 2013

Slides developed in part by Prof. Dutta

Page 2: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

2

Announcements

• Extra credit for Hub classes– It’s a small amount– Classes are worthwhile!

• E-mail sent to class about 373 practice talks– Please have your group scheduled or let me know you

can’t by the end of the week

• Exams returned at end of class– Need to quit 10 minutes early

Page 3: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

Outline

• AHB bus

• Serial communication and digital logic design problem (time allowing, on board)

3

Page 4: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

Modern embedded systems have multiple busses

4

Atmel SAM3U

Historical 373 focus

Expanded373 focus

Page 5: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

5

Why have so many busses?

• Many designs considerations– Master vs Slave– Internal vs External– Bridged vs Flat– Memory vs Peripheral– Synchronous vs Asynchronous– High-speed vs low-speed– Serial vs Parallel– Single master vs multi master– Single layer vs multi layer– Multiplexed A/D vs demultiplexed A/D

• Discussion: what are some of the tradeoffs?

Page 6: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

Advanced Microcontroller Bus Architecture (AMBA)- Advanced High-performance Bus (AHB)- Advanced Peripheral Bus (APB)

AHB• High performance• Pipelined operation• Burst transfers• Multiple bus masters• Split transactions

APB• Low power• Latched

address/control• Simple interface• Suitable of many

peripherals6

Page 7: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

7

Actel SmartFusion system/bus architecture

Page 8: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

8

AHB-Lite supports single bus masterand provides high-bandwidth operation

• Burst transfers

• Single clock-edge operation

• Non-tri-state implementation

• Configurable bus width

Most figures in this section from AMBA 3 AHB-Lite Protocol v1.0You have to register with ARM (trivial) for this, we can’t post it.

Page 9: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

9

AHB-Lite bus master/slave interface

• Global signals– HCLK– HRESETn

• Master out/slave in– HADDR (address)– HWDATA (write data)– Control

• HWRITE• HSIZE• HBURST• HPROT• HTRANS• HMASTLOCK

• Slave out/master in– HRDATA (read data)– HREADY– HRESP

Page 10: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

10

AHB-Lite signal definitions

• Global signals– HCLK: the bus clock source (rising-edge triggered)– HRESETn: the bus (and system) reset signal (active low)

• Master out/slave in– HADDR[31:0]: the 32-bit system address bus– HWDATA[31:0]: the system write data bus– Control

• HWRITE: indicates transfer direction (Write=1, Read=0)• HSIZE[2:0]: indicates size of transfer (byte, halfword, or word)• HBURST[2:0]: burst transfer size/order (1, 4, 8, 16 beats or

undefined)• HPROT[3:0]: provides protection information (e.g. I or D; user or

handler)• HTRANS: indicates current transfer type (e.g. idle, busy, nonseq,

seq)• HMASTLOCK: indicates a locked (atomic) transfer sequence

• Slave out/master in– HRDATA[31:0]: the slave read data bus– HREADY: indicates previous transfer is complete– HRESP: the transfer response (OKAY=0, ERROR=1)

Page 11: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

11

Key to timing diagram conventions

• Timing diagrams– Clock– Stable values– Transitions– High-impedance

• Signal conventions– Lower case ‘n’ denote

active low (e.g. RESETn)– Prefix ‘H’ denotes AHB– Prefix ‘P’ denotes APB

Page 12: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

12

Basic read and write transfers with no wait states

PipelinedAddress& DataTransfer

Page 13: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

13

Read transfer with two wait states

Two wait statesadded by slaveby assertingHREADY low

Valid dataproduced

Page 14: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

14

Write transfer with one wait state

One wait stateadded by slaveby assertingHREADY low

Valid dataheld stable

Page 15: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

15

Wait states extend the address phase of next transfer

One wait stateadded by slaveby assertingHREADY low

Address stage of the next transferis also extended

Page 16: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

16

Transfers can be of four types (HTRANS[1:0])

• IDLE (b00)– No data transfer is required– Slave must OKAY w/o waiting– Slave must ignore IDLE

• BUSY (b01)– Master inserts idle cycles in a burst (wait states)– Burst will continue afterward– Address/control reflects next transfer in burst– Slave must OKAY w/o waiting– Slave must ignore BUSY

• NONSEQ (b10)– Indicates single transfer or first transfer of a burst– Address/control unrelated to prior transfers

• SEQ (b11)– Remaining transfers in a burst– Addr = prior addr + transfer size

Page 17: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

HTRANS

17

Page 18: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

18

A four beat burst with master busy and slave wait

One wait stateadded by slaveby assertingHREADY low

Master busyindicated byHTRANS[1:0]

Page 19: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

19

Controlling the size (width) of a transfer

• HSIZE[2:0] encodes the size

• The cannot exceed the data bus width (e.g. 32-bits)

• HSIZE + HBURST is determines wrapping boundary for wrapping bursts

• HSIZE must remain constant throughout a burst transfer

Page 20: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

20

Controlling the burst beats (length) of a transfer

• Burst of 1, 4, 8, 16, and undef number of beats

• HBURST[2:0] encodes the type

• Incremental burst

• Wrapping bursts – 4 beats x 4-byte words wrapping– Wraps at 16 byte boundary– E.g. 0x34, 0x38, 0x3c, 0x30,…

• Bursts must not cross 1KB address boundaries

Page 21: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

21

A four beat wrapping burst (WRAP4)

Page 22: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

22

A four beat incrementing burst (INCR4)

Page 23: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

23

An eight beat wrapping burst (WRAP8)

Page 24: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

24

An eight beat incrementing burst(INCR8) using half-word transfers

Page 25: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

25

An undefined length incrementing burst (INCR)

Page 26: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

26

Multi-master AHB-Lite requires a multi-layer interconnect

• AHB-Lite is single-master

• Multi-master operation– Must isolate masters– Each master assigned to

layer– Interconnect arbitrates slave

accesses

• Full crossbar switch often unneeded– Slaves 1, 2, 3 are shared– Slaves 4, 5 are local to

Master 1

Page 27: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

27

Questions?

Comments?

Discussion?

Page 28: 1 EECS 373 Design of Microprocessor-Based Systems Mark Brehob University of Michigan Lecture 12: Memory and Peripheral Busses October 22nd, 2013 Slides

Exam

• Median: 76.5, Stdev: 12.0, Max 92.5, Min 46.– 9 200– 8 8655433222110– 7 988776544321– 6 98655530– 5 985– 4 776

• Approximate grades (if this were the sole basis for your grade)– 82+ A- to A+– 67-81 B- to B+– 54-67 C to C+– <54 C- or lower

28