5-interfacing io devices - student version

43
INTERFACING I/O INTERFACING I/O DEVICES DEVICES Iskandar Yahya [email protected] 03-89216591 1

Upload: api-3721164

Post on 11-Apr-2015

1.308 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 5-Interfacing IO Devices - Student Version

INTERFACING INTERFACING I/O DEVICESI/O DEVICESIskandar Yahya

[email protected]

03-89216591

1

Page 2: 5-Interfacing IO Devices - Student Version

INTRODUCTIONINTRODUCTION Objectives

Parallel and Serial Mode Identify device/port address of peripheral-mapped

I/O and memory mapped I/O OUT & IN instructions. Memory related instructions Differentiate peripheral-mapped and memory-

mapped I/O To interface 8085 with other devices

Parallel Vs Serial Parallel I/O - All 8-bits of data are transferred between

8085 and external device using the entire data bus Serial I/O - Bits are transferred one at a time, along

one data line2

Page 3: 5-Interfacing IO Devices - Student Version

I/O Port Identification and Addressing Memory Mapped I/O

Access and identify as memory registers using memory space

Memory related control signal 16-bit address i.e. from 0000H to FFFFH 8085 treats I/O ports as if it was communicating with

a memory location

Peripheral Mapped I/O Separate address scheme (8-bit i.e from 00H to FFH) Enabled and identified by I/O related control signals

Data transfer process is identical for both method Need to understand the foundation I/O operations in

8085

3

INTRODUCTIONINTRODUCTION

Page 4: 5-Interfacing IO Devices - Student Version

BASIC INTERFACING BASIC INTERFACING CONCEPTSCONCEPTS 8085’s I/O Data Transfer Process:

- - - -

Things to understand: How 8085 selects an I/O device? What hardware chips are necessary? What software instructions are used? How data are transferred?

Peripheral-mapped and memory-mapped I/O have the same basic concept in interfacing.

The difference is the Instructions used for each.4

Page 5: 5-Interfacing IO Devices - Student Version

Two instructions: IN (code DB) and OUT(code D3)IN - data input into the accumulator from

device eg. KeyboardOUT - data output from accumulator to

device e.g printer, display Each instructions are 2-byte - first byte

denotes operation and second byte specifies the address.

5

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS

Memory Address

Machine Code

Mnemonics

Memory Contents

Page 6: 5-Interfacing IO Devices - Student Version

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONSOUT INSTRUCTION

This instruction above is used to channel out the content of accumulator to an output device with the address 10H. (address is also called port number of device)

Address of output device is 8-bit long, so 8085 can communicate with 256 output devices, with address from 00H to FFH.

We can simply choose any address for our device, depending on our application.

6

Page 7: 5-Interfacing IO Devices - Student Version

Instruction OUT

M1 (Opcode Fetch) M2 (Memory Read) M3 (I/O Write)

T1 T2 T3 T4 T1 T2 T3 T1 T2 T3

7

20H unspecified 20H Port Address 01H

50H Opcode D3H 51H 01H Port Address 01H

Accumulator Content

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONSOUT INSTRUCTION

Page 8: 5-Interfacing IO Devices - Student Version

The 8085 executes the OUT instruction in three machine cycles and it takes 10 T-states (clock periods) to complete.

The process: At First machine cycle M1 -

Place high order memory address 20H on A15-A8 Place low order memory address 50H on AD7-AD0 ALE goes high and IO/M' goes low. ALE indicates the availability of AD7-AD0 and used

to demultiplex the bus IO/M' low indicates a memory related operation At T2, (RD)' (active low) signal is sent and

combined with IO/M' signal to activate the (MEMR)' signal (active low)

Fetch the instruction code D3 using data bus, decodes it, finds out that it suppose to be 2-byte, so must read the second byte.

8

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONSOUT INSTRUCTION

Page 9: 5-Interfacing IO Devices - Student Version

At the second machine cycle M2 - Same process as in M1, but this time with the memory

address 2051H Gets the device port address 01H, second byte of the OUT

instruction

At the third machine cycle M3 - 01H is placed on the low-order (AD7-AD0) and high-order

(A15-A8) address bus IO/M' goes high to indicate I/O operation. At T2, the content of accumulator is placed on data bus

(AD7-AD0), followed by control signal (WR)’. ANDing the IO/M' and (WR)' signal, the (IOW)' is

generated to enable the output device

The data remains on the data bus (AD7-AD0) for two T-states (T2 & T3), before the processor executes the next instruction. Therefore we must latch the data bus within the two T-states before it is lost.

9

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONSOUT INSTRUCTION

Page 10: 5-Interfacing IO Devices - Student Version

IN 8-bit is a two-byte instruction with hex opcode DB followed by the port address of an input device.

8085 will read the contents of the addresses 2065H and 2066H, and read the switch positions (input data) at port 84H by enabling the interfacing device of the port.

Input data byte containing the switch positions from the input port will be placed in the accumulator.

10

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONSIN INSTRUCTION

Memory Address

Machine Code

Mnemonics

Memory Contents

Page 11: 5-Interfacing IO Devices - Student Version

11

Instruction IN

M1 (Opcode Fetch) M2 (Memory Read) M3 (I/O Write)

T1 T2 T3 T4 T1 T2 T3 T1 T2 T3

20H unspecified Port Address 84H

65H Opcode DBH 66H 84H Port Address 84H

Data From Input Port

20H

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONSIN INSTRUCTION

Page 12: 5-Interfacing IO Devices - Student Version

The process: M1 and M2 are identical to OUT instruction. At third machine cycle M3 -

8085 places address of input port (84H) on both high-order AD7-AD0 and low order A15-A8 address bus

Sends (RD)' signal, which will prompt I/O Read signal, (IOR)'

The (IOR)' enables input port, data obtained from port onto the bus and placed into the accumulator.

M3 for IN and OUT are essentially the same, the differences are IN use (RD)', OUT use (WR)' Data flow from input port to accumulator for IN, from

accumulator to output port for OUT

12

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONSIN INSTRUCTION

Page 13: 5-Interfacing IO Devices - Student Version

We saw that, for OUT instruction, the content of the accumulator will be on the data bus for a period of two T-periods only.

To catch the data, we need a data latch so that we can display or print the data, or even transfer it to an external device.

Questions:1. When should we enable the latch?2. What is the address of the latch? 13

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (OUT)

Page 14: 5-Interfacing IO Devices - Student Version

The answer to both is at M3: - -

Need to create: Pulse to indicate the presence of address on

bus Generate timing pulse to indicate data byte is

on the bus Use both pulse to enable the latch to catch

the data14

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (OUT)

Page 15: 5-Interfacing IO Devices - Student Version

Figure shows the basic blocks of a decoding circuit. The process are summarized as follows:

Decode address bus to generate a unique pulse corresponding to the device address on the bus; this is called the device address pulse or I/O address pulse.

Combine (AND) the device address pulse with the control signal to generate a device select (I/O select) pulse that is generated only when both signals are asserted.

Use the I/O select pulse to activate the interfacing device (I/O port).

15

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (OUT)

Decoder

Decoder

ANDAND

Latch or

Buffer

Latch or

BufferAddress LinesA7 – Ao

A7

A0

orControl Signal

Device Select Pulse

Enable

To PeripheralsData Bus (D7 – D0)

Page 16: 5-Interfacing IO Devices - Student Version

16

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (OUT)

Example of a practical decoding circuit (Device address 01H)

Page 17: 5-Interfacing IO Devices - Student Version

Figure above is a practical decoding circuit:

A7-A0 address line connected to 8-input NAND gate that functions as decoder

Address 01H (00000001), A0 directly connected, A7 inverted to produce 01H

G1 generate low pulse (active low)and combines with G2, which is low too, to select (IOSEL) or enable the data latch

At this time the content of the accumulator is on the data bus

IOSEL will clock the latch to catch the data, and send the data to the output device. 17

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER

Page 18: 5-Interfacing IO Devices - Student Version

Absolute Decoding All eight address lines are decoded to

generate unique pulse Figure shows unique pulse will be generated

if and only if address 01H (ooooooo1) is on the address bus

Good design practice Costly (uses many extra devices/gates)

Our previous decoding circuit employs this technique 18

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER

Page 19: 5-Interfacing IO Devices - Student Version

Partial Decoding Only some of the address lines are decoded, device

has multiple addresses Figure below shows A1 and A0 are omitted (don’t

care states)and replaced by IO/M' and (WR)', So device has the addresses 00H, 01H, 02H, and 03H Used in small system Less components

19

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (OUT)

A7 A6 A5 A4 A3 A2

A1 A0 (Don’t care)

Pulse

0 0 0 0 0 00 0 0 0 0 00 0 0 0 0 00 0 0 0 0 0

0 00 11 01 1

Page 20: 5-Interfacing IO Devices - Student Version

20

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (OUT)

Decoding circuit implemented using Partial Decoding technique

Page 21: 5-Interfacing IO Devices - Student Version

21

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (IN)

Input Interfacing: Example circuit

Page 22: 5-Interfacing IO Devices - Student Version

Input InterfacingExample of 8-Key input port. Basic concept is the same as Basic concept is the same as

outputoutputThe process: Address line connected to 8-inout NAND gate. When address is FFH, NAND out put goes low and

combined with (IOR)' in gate G2 G2 generate device select pulse used to enable tri-state

buffer Data from keys are put on the data bus D7-D0 and

loaded onto the accumulator

The difference of this input circuit to the previous output circuit:

- - - -

22

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS DEVICE SELECTION & DATA TRANSFER (IN)

Page 23: 5-Interfacing IO Devices - Student Version

Another scheme of address decoding is to use 3-to-8 demux (decoder) and4-input NAND to decode address bus

23

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS INTERFACING I/OS USING DECODERS

3-to

-8

deco

der/D

em

ux

3-to

-8

deco

der/D

em

ux

I0 I1 I2

O0 O1 O2 O3 O4 O5 O6 O7

I2 I1 I0 O7

O6

O5

O4

O3

O2

O1

O0

0 0 0 1 1 1 1 1 1 1 0

0 0 1 1 1 1 1 1 1 0 1

0 1 0 1 1 1 1 1 0 1 1

0 1 1 1 1 1 1 0 1 1 1

1 0 0 1 1 1 0 1 1 1 1

1 0 1 1 1 0 1 1 1 1 1

1 1 0 1 0 1 1 1 1 1 1

1 1 1 0 1 1 1 1 1 1 1

Page 24: 5-Interfacing IO Devices - Student Version

24

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS INTERFACING I/OS USING DECODERS

Another scheme of address decoding. Use 3-to-8 demux (decoder) and4-input NAND to decode address bus

Page 25: 5-Interfacing IO Devices - Student Version

This is how the circuit work: 3-to-8 decoder has 3 inputs, 3 enable pins and 8

outputs For the decoder to be functional, all the enable

switches must be active, i.e. E1' = 0 (active low), E'2 = 0 (active low) and E'3 = 1 (active high)

Addresses lines A2, A1 and A0 are used as inputs, therefore we can have 8 different output device or port addresses. (2^3 = 8)

A7-A3 are used to enable the encoder Combine the decoded signal with the appropriate

control signal to generate I/O select pulse Here, O0 is logically ANDed with (IOW)' signal to

select the output port for output operation O2 is logically NAND with (IOR)' to select the tri-

state buffer for input operation25

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS INTERFACING I/OS USING DECODERS

Page 26: 5-Interfacing IO Devices - Student Version

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS INTERFACING I/OS USING DECODERS

26

Decoder EnableA7 A6 A5 A4 A3

InputA2 A1 A0

Address 

Based on the circuit, select pulse will be generated if input address is F8H, where O0 will be active and LED will display the content of accumulator

Select pulse will also be generated if input address is FAH, where O2 will be active in this case and the buffer will channel the keyed data into the accumulator

Page 27: 5-Interfacing IO Devices - Student Version

Basic concepts and steps for peripheral I/O interfacing: The device address or port number is placed on the

demultiplexed low order as well as high order address bus

Either the high order bus (A15-A8) or the demultiplexed low order bus (A7-A0) can be decoded to generate the pulse that correspond to the device address

Device address is AND with either the (IOW)' for output or (IOR)' for input control signal. When both is active, the device I/O device will be selected

Output device, Latch is used Input device, tri-state buffer is used Address bus can be decoded by Absolute or Partial

(liner-select)decoding. Partial technique reduces cost and components, but device has multiple addresses.

27

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS BASIC INTERFACING CONCEPT SUMMARY

Page 28: 5-Interfacing IO Devices - Student Version

8085’s I/O Data Transfer Process: Places appropriate address on the address bus Sends the control signals Enables the interfacing device Transfer data

Interesting Question:Can an input port and an output port have the same port address?

Answer:

Another Interesting Question:How will the port number be affected if we decode the high-order address lines A15-A8 rather than A7-A0?

Answer:28

PERIPHERAL I/O PERIPHERAL I/O INSTRUCTIONSINSTRUCTIONS BASIC INTERFACING CONCEPT SUMMARY

Page 29: 5-Interfacing IO Devices - Student Version

INTERFACING OUTPUT INTERFACING OUTPUT DISPLAYDISPLAYEXAMPLE: SEVEN SEGMENT OUTPUT DISPLAY AS AN OUTPUT DEVICE

Problem:

Design a seven-segment LED output port with the device address F5H, using a 74LS138 (3-to-8) decoder, a 74LS20 4-input NAND gate, a 74LS02 NOR gate, and a common-anode seven-segment LED

Write instructions to display digit 7 at the port

29

Page 30: 5-Interfacing IO Devices - Student Version

INTERFACING OUTPUT INTERFACING OUTPUT DISPLAYDISPLAYEXAMPLE: SEVEN SEGMENT OUTPUT DISPLAY AS AN OUTPUT DEVICE

Solution:

Seven-Segment LED

To display digit "7" at the LED as in figure, the requirements are:

Logic "0" is required to turn on a segment because it is a common-anode seven-segment LED

To display "7", segments A, B, and C should be turned on

The binary code should be:

30

Data Lines D7

D6

D5

D4

D3

D2

D1

D0

 

Page 31: 5-Interfacing IO Devices - Student Version

Interfacing circuit: For output port with address F5H, the address lines

A7-A0 should have the following logic:

We need to use 74LS138, which has only 3 input pins. Therefore,

Use A2, A1, A0 as input lines to the decoder. Connect A3 to active low enable (E1)' The remaining lines connect to (E2)' through 4-input

NAND gate

Output O5 is ANDed with control signal (IOW)' using the NOR gate (negative input AND) to generate pulse to enable the latch.

31

INTERFACING OUTPUT INTERFACING OUTPUT DISPLAYDISPLAYEXAMPLE: SEVEN SEGMENT OUTPUT DISPLAY AS AN OUTPUT DEVICE

A7 A6 A5 A4 A3 A2 A1 A0  

Page 32: 5-Interfacing IO Devices - Student Version

INTERFACING OUTPUT INTERFACING OUTPUT DISPLAYDISPLAYEXAMPLE: SEVEN SEGMENT OUTPUT DISPLAY AS AN OUTPUT DEVICE

32

Page 33: 5-Interfacing IO Devices - Student Version

Instructions:

First instruction loads 78H in the accumulator, which is the code to display digit "7“

Second instruction sends contents of the accumulator (78H) to the output port F5H

33

INTERFACING OUTPUT INTERFACING OUTPUT DISPLAYDISPLAYEXAMPLE: SEVEN SEGMENT OUTPUT DISPLAY AS AN OUTPUT DEVICE

;Load seven-segment code in the accumulator

;Display digit 7 at port F5H

;End

Page 34: 5-Interfacing IO Devices - Student Version

Interfacing inputs devices is similar to that of output devices. The differences are in the bus signals and circuit components.

Data input from DIP switch

34

INTERFACING INPUT DEVICESINTERFACING INPUT DEVICESEXAMPLE: DATA INPUT FROM DIP SWITCH

Page 35: 5-Interfacing IO Devices - Student Version

From Figure: Tri-state octal buffer is used as an interfacing device

controlled by active low signals (OE)' If (OE)' is low, the keyed data shows up at the data bus

Interfacing circuit: All low-order address lines, except A4 and A3, are

connected to the decoder A4 and A3 are don’t care lines Output pin O4 is used, so it will switch on when the

following address presents:

|--Enable Lines -------| |- Don’t care -| |------- Input --------|35

INTERFACING INPUT DEVICESINTERFACING INPUT DEVICESEXAMPLE: DATA INPUT FROM DIP SWITCH

A7 A6 A5 A4 A3 A2 A1 A0  

Page 36: 5-Interfacing IO Devices - Student Version

(IOR)' is generated by ANDing IO/M' and (RD)' (IOR)' is ANDed with output of decoder to produce

select pulse to enable the tri-state buffer Once the tri-state buffer is enabled, the logic levels of

the switches i.e. keyed data is placed on the data bus, before placed into the accumulator

Closed switch = logic "0" Open switch = logic "1" Input reading is F8H

Instructions to read input at device address 84H: -

36

INTERFACING INPUT DEVICESINTERFACING INPUT DEVICESEXAMPLE: DATA INPUT FROM DIP SWITCH

Page 37: 5-Interfacing IO Devices - Student Version

Address lines A4 and A3 are not used, therefore the device can have multiple addresses as shown:

 

37

INTERFACING INPUT DEVICESINTERFACING INPUT DEVICESEXAMPLE: DATA INPUT FROM DIP SWITCH

A7 A6 A5 A4 A3 A2 A1 A0  

1 0 0 0 0 1 0 0

1 0 0 0 1 1 0 0

1 0 0 1 0 1 0 0

1 0 0 1 1 1 0 0

Page 38: 5-Interfacing IO Devices - Student Version

In memory-mapped I/O, the devices are assigned and identified by 16-bit addresses

Instructions used:LDA*STA* - - -

Control signals used: (MEMR)' and (MEMW)' This technique is similar to peripheral I/O

* -38

MEMORY MAPPED I/OMEMORY MAPPED I/O

Page 39: 5-Interfacing IO Devices - Student Version

STA (Store A Direct) is used to store the content of accumulator to the specified memory register.

Here the memory address is 8000H (16-bit) If we connect an output device with this

address (8000H), the accumulator contents will transfer to the output device. 39

MEMORY MAPPED I/OMEMORY MAPPED I/O

Memory Address

Machine Code

Mnemonics

Comments

; Store Contents of accumulator in memory location 8000H

 

 

Page 40: 5-Interfacing IO Devices - Student Version

For input operation, same principles as output operation

Use LDA (Load A Direct) instead of STA

For memory-mapped I/O, the control signals are memory read (MEMR)' and memory write (MEMW)' instead of (IOR)' and (IOW)'

40

MEMORY MAPPED I/OMEMORY MAPPED I/O

Page 41: 5-Interfacing IO Devices - Student Version

Essentially the same as using IN and Out instructions But memory-mapped uses 16-bit addressing, therefore

needs 4 machine cycles, instead of 3 as in the time diagram

M1 is for reading Opcode (first byte of instruction) M2 is for reading 2nd byte of instruction, which is the low

order address M3 is for rading 3rd byte of instruction, which is the

remaining high order address M4, data are loaded from the accumulator to the data bus

and address 8000H are put on the entire address bus (A15-A0)

We can see the difference here. For OUT instruction, the 8-bit address of device is put on both the A15-A8 and A7-A0 address bus, and either one can be decoded to identify the output device

For memory mapped, all the 16 address lines need to be decoded to identify the output device

41

MEMORY MAPPED I/OMEMORY MAPPED I/ODATA TRANSFER INSTRUCTIONS

Page 42: 5-Interfacing IO Devices - Student Version

The steps for device selection and data transfer for memory-mapped I/O:

1. Decode the address bus to generate the device address pulse

2. AND the control signal with the device address pulse to generate the device select (I/O select) pulse

3. Use the device select pulse to enable the I/O port For interfacing memory-mapped input device, we can

use the similar steps, but use the instruction LDA, and the control signal will be (RD)' rather than (WR)'

42

MEMORY MAPPED I/OMEMORY MAPPED I/ODATA TRANSFER INSTRUCTIONS

Page 43: 5-Interfacing IO Devices - Student Version

Memory-mapped I/O is similar to Peripheral I/O in terms of concept The differences are as follows:

43

MEMORY MAPPED I/OMEMORY MAPPED I/OSUMMARY

Characteristics Memory-mapped I/O Peripheral I/O

1.Device address 16-bit 8-bit

2.Control signals for Input/Output

(MEMR)'/(MEMW)' (IOR)'/(IOW)'

3.Instructions available

STA; LDA; LDAX; STAX; MOV M,R: ADD M; SUB M; ANA M: etc

IN and OUT

4.Data transfer Between any register and I/O devices

Only between I/O and the Accumulator

5.Maximum number of I/Os possible

The memory map (64K) is shared between I/Os and system memory

The I/O map is independent of the memory map; 256 input devices and 256 output devices can be connected

6.Execution speed 13 T-states (STA,LDA)7 T-sates (MOV M,R)

10 T-states

7.Hardware requirements

More hardware is needed to decode 16-bit address

Less hardware is needed to decode 8-bit address

8.Other features Arithmetic or logical operations can be directly performed with I/O DATA

Not available