Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 LHO 12 Interfacing. 2 A simple bus bus structure ProcessorMemory rd'/wr enable addr[0-11] data[0-7] bus Wires: –Uni-directional or bi-directional –One.

Similar presentations


Presentation on theme: "1 LHO 12 Interfacing. 2 A simple bus bus structure ProcessorMemory rd'/wr enable addr[0-11] data[0-7] bus Wires: –Uni-directional or bi-directional –One."— Presentation transcript:

1 1 LHO 12 Interfacing

2 2 A simple bus bus structure ProcessorMemory rd'/wr enable addr[0-11] data[0-7] bus Wires: –Uni-directional or bi-directional –One line may represent multiple wires Bus –Set of wires with a single function Address bus, data bus –Or, entire collection of wires Address, data and control Associated protocol: rules for communication

3 3 Timing Diagrams write protocol rd'/wr enable addr data t setup t write Most common method for describing a communication protocol Time proceeds to the right on x-axis Control signal: low or high –May be active low (e.g., go’, /go, or go_L) –Use terms assert (active) and deassert –Asserting go’ means go=0 Data signal: not valid or valid Protocol may have subprotocols –Called bus cycle, e.g., read and write –Each may be several clock cycles Read example –rd’/wr set low,address placed on addr for at least t setup time before enable asserted, enable triggers memory to place data on data wires by time t read read protocol rd'/wr enable addr data t setup t read

4 4 Microprocessor interfacing: I/O addressing A microprocessor communicates with other devices using some of its pins –Port-based I/O (parallel I/O) Processor has one or more N-bit ports Processor’s software reads and writes a port just like a register E.g., P0 = 0xFF; v = P1.2; -- P0 and P1 are 8-bit ports –Bus-based I/O Processor has address, data and control ports that form a single bus Communication protocol is built into the processor A single instruction carries out the read or write protocol on the bus

5 5 Types of bus-based I/O: memory-mapped I/O and standard I/O Processor talks to both memory and peripherals using same bus – two ways to talk to peripherals –Memory-mapped I/O Peripheral registers occupy addresses in same address space as memory e.g., Bus has 16-bit address –lower 32K addresses may correspond to memory –upper 32k addresses may correspond to peripherals –Standard I/O (I/O-mapped I/O) Additional pin (M/IO) on bus indicates whether a memory or peripheral access e.g., Bus has 16-bit address –all 64K addresses correspond to memory when M/IO set to 0 –all 64K addresses correspond to peripherals when M/IO set to 1

6 6 Memory-mapped I/O vs. Standard I/O Memory-mapped I/O –Requires no special instructions Assembly instructions involving memory like MOV and ADD work with peripherals as well Standard I/O requires special instructions (e.g., IN, OUT) to move data between peripheral registers and memory Standard I/O –No loss of memory addresses to peripherals –Simpler address decoding logic in peripherals possible When number of peripherals much smaller than address space then high-order address bits can be ignored –smaller and/or faster comparators

7 7 Consider a simple processor. I call it the simple processing unit (SPU).

8 8 The memory read and I/O read timing for a simple processor is shown below.

9 9 The Memory write and I/O write timing for a simple processor is shown below.

10 10 I/O Ports

11 11

12 12 No separate I/O address space. Some Real processors

13 13 No separate I/O address space.

14 14

15 15

16 16

17 17 The 8051 Atmel AVR

18 18

19 19 8051

20 20

21 21

22 22 A basic memory protocol Interfacing an 8051 to external memory –Ports P0 and P2 support port-based I/O when 8051 internal memory being used –Those ports serve as data/address buses when external memory is being used –16-bit address and 8-bit data are time multiplexed; low 8-bits of address must therefore be latched with aid of ALE signal P0 P2 Q ALE /RD Adr. 7..0 Adr. 15…8 Adr. 7…0 Data 8051 74373 P0 HM6264 D Q 8 P2 ALE G A D /OE /WE /CS /WR /RD /CS1 /PSEN CS2 27C256 /CS A D /OE

23 23 8051 instructions for addressing external code and data memory.

24 24 8051 74373 P0 HM6264 D Q 8 P2 ALE G A D /OE /WE /CS /WR /RD /CS1 /PSE N CS2 27C256 /CS A D /OE Ex: XM(0)  XM(1) MOV DPTR,#0 MOVX A,@DPTR INC DPTR MOV R7,A MOVX A,@DPTR XCHA,R7 MOVX@DPTR,A DECDPTR XCHA,R7 MOVX@DPTR,A Ex: XM(0)  XM(1) CLR P2 CLRR0 MOVR1,#1 MOVX A,@R0 MOVR7,A MOVXA,@R1 MOVX@R0,A MOVA,R7 MOVX@R1,A

25 25 RnCEQUP1.1 n_BUSYEQUP1.2 BYTEEQUP1.3

26 26 RnC EQU P1.1 n_BUSY EQU P1.2 BYTE EQU P1.3 CLRRnC SETBRnC JNBn_BUSY,$ MOVR7,P0 CPLBYTE MOVR6,P0

27 27 The 8255

28 28

29 29

30 30

31 31

32 32 Change individual bits on Port C

33 33

34 34 RESET_8255 EQU P1.0 CTL1 EQU 111111111011B ;ONE POSSIBLE ADDRESS FOR CONTROL PORT OF 8255 #1 PRTA1 EQU 111111111000B ;ONE POSSIBLE ADDRESS FOR PORT A OF 8255 #1 PRTB1 EQU 111111111001B ;ONE POSSIBLE ADDRESS FOR PORT A OF 8255 #1 PRTC1 EQU 111111111010B ;ONE POSSIBLE ADDRESS FOR PORT A OF 8255 #1 CTL2 EQU 111111110111B ;ONE POSSIBLE ADDRESS FOR CONTROL PORT OF 8255 #2 PRTA2 EQU 111111110100B ;ONE POSSIBLE ADDRESS FOR PORT A OF 8255 #2 PRTB2 EQU 111111110101B ;ONE POSSIBLE ADDRESS FOR PORT A OF 8255 #2 PRTC2 EQU 111111110110B ;ONE POSSIBLE ADDRESS FOR PORT A OF 8255 #2 CLR RESET_8255 ;REMOVE RESET FROM 8255 ;DO ADDITION C2|C1 <-- A2|A1 + B2|B1 MOV DPTR,#(CTL1 AND CTL2);POINT DPTR TO CONTROL REG OF 8255 #1 AND #2 MOV A,10010010B ;PRTA, PRTB IN, PRTC OUT MOVX @DPTR,A ;OUTPUT TO BOTH CONTROL REGS AT SAME TIME MOV DPTR,#PRTA1 ;SELECT PORT A OF 8255 #1 MOVX A,@DPTR ;GET PRTA1 MOV R7,A ;SAVE IT MOV DPTR,#PRTB1 ;SELECT PORT B OF 8255 #1 MOVX A,@DPTR ;READ PORT B OF 8255 #1 ADD A,R7 ;ADD PRTA1 TO PRTB1 MOV DPTR,#PRTC1 ;SELECT PORT C OF 8255 #1 MOVX @DPTR,A ;OUTPUT TO PRTC1 END

35 35

36 36

37 37

38 38 Figure 1. AT90S8515 with expanded memory. What should we do with A16? Answer: connect it to an unused port pin. Question: How could we map the entire 128K bytes of memory to the top 32 Kbytes of the AVR address space. Answer: Connect AVR A15 to /CE on U4. Now the memory is selected only when the AVR addresses the top have of the memory address space where A15 = 1. Connect A15 and A16 of U4 to unused AVR port pins. By changing these port pin, any of the four 32 K byte pages of U4 memory can be switched in and out of the AVR address space.

39 39

40 40

41 41

42 42


Download ppt "1 LHO 12 Interfacing. 2 A simple bus bus structure ProcessorMemory rd'/wr enable addr[0-11] data[0-7] bus Wires: –Uni-directional or bi-directional –One."

Similar presentations


Ads by Google