Top Banner
Advanced Microprocessor 1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting in binary or BCD with a maximum frequency of 10MHz. Used for controlling real-time events such as real- time clock, events counter, and motor speed and direction control. The timer usually decoded at port address 40H-43H and has following functions: - Generates a basic timer interrupt that occurs at approximately 18.2Hz. Interrupts the micro at interrupt vector 8 for a clock tick. -Causes DRAM memory system to be refreshed. - Provides a timing source to the internal speaker and other devices.
31

Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Jan 03, 2016

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 1

I/O Interface

Programmable Interval Timer: 8254

•Three independent 16-bit programmable counters (timers).

Each capable in counting in binary or BCD with a maximum frequency of 10MHz.

•Used for controlling real-time events such as real-time clock, events counter, and motor speed and direction control.

The timer usually decoded at port address 40H-43H and has following functions:

- Generates a basic timer interrupt that occurs at approximately 18.2Hz. Interrupts the micro at interrupt vector 8 for a clock tick.

-Causes DRAM memory system to be refreshed.

- Provides a timing source to the internal speaker and other devices.

Page 2: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 2

I/O Interface

8254 Functional Description

Page 3: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 3

I/O Interface

8254 Functional Description

•Timer 0 is programmed to generate an 18.2Hz signal that interrupt the microprocessor at interrupt vector 8 for a clock tick

• Timer 1 is programmed for 15µs, used in PC’s to request a DMA action used to refresh DRAM

• Timer 2 is programmed to generate tone on the PC’s speaker

• D0 to D7, read, write, Chip select & Address pins A1 and A0are connected to Microprocessor • the address inputs used to select any of the internal register for programming, reading, or writing to a counter

Tick is used for time program or events

Page 4: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 4

I/O Interface

8254 Functional Description

A1, A0:The address inputs select one of the four internal registers with the 8254 as follows:

CLK: The clock input is the timing source for each of the internal counters. It is often connected to the PCLK signal from the bus controller.

Page 5: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 5

I/O Interface

8254 Functional Description

CS: Chip Select enables the 8254 for programming, and reading and writing.

G: The gate input controls the operation of the counter in some modes.

OUT: A counter output is where the wave-form generated by the timer is available.

: Read/Write causes data to be read/written from the 8254 and often connects to the

Page 6: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 6

I/O Interface

Each counter is individually programmed by writing a control word, followed by the initial count.

The control word allows the programmer to select the counter, model of operation, binary or BCD count and type of operation (read/write).

Page 7: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 7

I/O Interface

Programming the 8254

Each counter may be programmed with a count of 1 to FFFFH.

Minimum count is 1 all modes except 2 and 3 with minimum count of 2.

Each counter has a program control word used to select the way the counter operates.

If two bytes are programmed, then the first byte (LSB) stops the count, and the second byte (MSB) starts the counter with the new count.

There are 6 modes of operation for each counter:

Mode0, Mode1, Mode2, MOde3, Mode4, Mode5

Page 8: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 8

I/O Interface

Programming the 8254

Modes of operation Mode 0: An events counter enabled with G.

The output becomes a logic 0 when the control word is written and remains there until N plus the number of programmed counts.

Mode 1: One-shot mode.

The G input triggers the counter to output a 0 pulse for count clocks.Counter reloaded if G is pulsed again.

Page 9: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 9

I/O Interface

Programming the 8254

Modes of operationMode 2: Counter generates a series of pulses 1 clock pulse wide.

The separation between pulses is determined by the count.

The cycle is repeated until reprogrammed or G pin set to 0.

Mode 3: Generates a continuous square-wave with G set to 1.

If count is even, 50% duty cycle otherwise OUT is high 1 cycle longer.

Page 10: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 10

I/O Interface

Programming the 8254

Modes of operation

Mode 4: Software triggered one-shot (G must be 1).

Mode 5: Hardware triggered one-shot. G controls similar to Mode 1.

Trigger with count of 5

Page 11: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 11

I/O Interface

Page 12: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 12

I/O Interface

Read Operations

There are three possible methods for reading the counters:

• a simple read operation

• the Counter Latch Command

• the Read-Back Command

Simple read operation :

• The Counter which is selected with the A1, A0 inputs, the CLK input of the selected Counter must be inhibited by using either the GATE input or external logic.

• Otherwise, the count may be in the process of changing when it is read, giving an undefined result.

Page 13: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 13

I/O Interface

Counter Latch Command:

• SC0, SC1 bits select one of the three Counters• two other bits, D5 and D4, distinguish this command from a Control Word

• If a Counter is latched and then, some time later, latched again before the count is read, the second Counter Latch Command is ignored. The count read will be the count at the time the first Counter Latch Command was issued.

Page 14: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 14

I/O Interface

Read-back control command:

• The read-back control, word is used When it is necessary for the contents of more than one counter to be read at a same time.

Count : logic 0, select one of the Counter to be latchedStatus : logic 0, Status must be latched to be read status of a counter is accessed by a read fromthat counter

Page 15: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 15

I/O Interface

Status register:• shows the state of the output pin• check the counter is in NULL state (0) or not• how the the counter is programmed

Page 16: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 16

I/O Interface

16550 Programmable Communications Interface:

• 16550 , A universal asynchronous receiver/transmitter (UART).

• it capable of operating speed: 0 to 1.5M Baud (Baud is # of bits transmitted/sec, including start, stop, data and parity).

•It includes:

- A programmable Baud rate generator.

- Separate FIFO buffers for input and and output data (16 bytes each).

Asynchronous serial data:

Asynchronous serial data are transmitted and received without a clock or timing signal.

Two 10-bit frames of asynchronous serial data, start bit, 7 data bit, parity & stop bit.

Page 17: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 17

I/O Interface

16550 functional description:

• this device is available as 40-pin DIP( dual in-line package) or as a 44-pin PLCC ( plastic lead less chip)

• two separate sections are responsible for data communications - Receiver & Transmitter

• can function : - simplex: transmit only,

eg:FM radio station -half-duplex: transmit and receive but not simultaneously eg: CB( citizen band) station - full-duplex: transmit and receive simultaneously

eg : telephone

Page 18: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 18

I/O Interface

•main feature, has internal receiver & transmitter FIFO memories, each 16 Bytes deep.

• the UART, requires attention only from the microprocessor after receiving 16 bytes of data

• it holds 16 bytes before the microprocessor must wait for the ‘ transmitter.

• the FIFO makes UART ideal when interfacing to high speed systems

Page 19: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 19

I/O Interface

The 16550 can control a modem through

and

the modem is called the data setthe 16550 is called the data terminal.

16550 Pin function:

A0, A1 and A2: Select an internal register for programming and data transfer.

.

Page 20: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 20

I/O Interface

: Address strobe used to latch address and chip select. Not needed on Intel systems - connected to ground.

: Clock signal from Baud rate generator in transmitter.

CS0, CS1, : Chip selects must all be active enable the 16550 UART

: Clear to send -- indicates that the modem or data set is ready to exchange information. (Used in half-duplex to turn the line around).

D7-D0: The data bus pins are connected to the microprocessor data bus.

: The data carrier detect -- used by the modem to signal the 16550 that a carrier is present.

DDIS: Disable driver output -- set to 0 to indicate that the microprocessor is reading data from the UART. Used to change direction of data flow through a buffer.

Page 21: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 21

I/O Interface

: Data set ready is an input to 16550, indicates that the modem (data set) is ready to operate.

: Data terminal ready is an output, indicates that the data terminal (16550) is ready to function.

INTR: Interrupt request is an output to the microprocessor, used to request an interrupt. Receiver error, Data received, Transmit buffer empty

MR: Master reset , connect to system RESET : User defined output pins for modem or other device.

RCLK: Receiver clock, clock input to the receiver section of the UART. Always 16X the desired receiver Baud rate.

Page 22: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 22

I/O Interface : Ring indicator input , set to 0 by modem to indicate telephone is ringing.

RD, : Read inputs (either can be used), cause data to be read from the register given by the address inputs

:Request-to-send, signal to modem, indicating UART wishes to send data.

SIN, SOUT: Serial data pins, in and out. : Receiver ready, used to transfer received data via DMA techniques.

:Transmitter ready, used to transfer transmitter data via DMA WR, :Write (either can be used) , connects to microprocessor write signal to transfer commands and data to 16550.

XIN, XOUT: Main clock connections -- a crystal oscillator can be used.

Page 23: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 23

I/O Interface

Programming 16550:• the programming is a two part process

- initialization dialog- operational dialog

Initializing 16550:

•Initialization dialog, occurs after a hardware or software reset, Consists of two parts

- line control register - baud rate generator

must be programmed

•Line control register selects: number of stop & parity bit( even or odd)

•Baud rate generator: programmed with a divisor that determine the baud rate of the transmission section

Page 24: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 24

I/O Interface

Line control register:• programmed by outputting information to I/O ports 011• Right most 2 bits, selects the number of transmitted data bits (5,6,7or 8)

• Stop bits: S = 1, 1.5 stop bits used for 5 data bits, 2 used for 6, 7 or 8.• next 3 bits: ST(stick), P and PE used to send even or odd parity, to send no parity or to send a 1 or a 0 in the parity bit position for all data.

Page 25: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 25

I/O Interface

•SB = 1 , used to send a break to be transmitted on SOUT. A break is at least two frame of logic 0 data.software is responsible for timing the transmission,

to end the break SB return to logic 0

•DL = 1, enables programming of the baud rate divisor.

Page 26: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 26

I/O Interface

Programming the baud rate: Baud rate generator is programmed with a divisor that sets baud rate of transmitter.

• Baud rate generator is programmed at 000 and 001 ( A2,A!,A0). Port 000 used to hold least significant part, 001 most significant part

Value used depends on external clock/crystal frequency.For 18.432MHz crystal :- 10,473 divisor value 110 band rate, - 30 divisor value gives 38,400 baud

Note : the actual number programmed into baud rate generator causes, to produce a clock that is 16 times the desired baud rate eg : if 240 is programmed into baud rate divisor,

Baud rate = 18.432 MHz/(16X240) = 4800 baud.

Page 27: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 27

I/O Interface

FIFO control register for 16550:• register enable the transmitter & receiver and clears the transmitter & receiver FIFO.• provides control for 16550 interrupts

Sending serial data : line status register, contains the information about

- error conditions - state of the transmitter & receiver

• the register is tested before a byte is transmitted or can be received

Page 28: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 28

I/O Interface

Suppose a program wants to send data out SOUT.•It needs to pool the TH bit to determine if transmitter is ready to receive data.

Receiving serial data: •To receive information, the DR bit is tested.

Page 29: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 29

I/O Interface

UART error: Operation:It is also a good idea to check for errors.

•Parity error: Received data has wrong error, transmission bit flip due to noise.

•Framing error: Start and stop bits not in their proper places. This usually results if the receiver is receiving data at the incorrect baud rate.

•Overrun error: Data has overrun the internal receiver FIFO buffer. Software is failing to read the data from UART before the FIFO is full.

•( BI )Break indicator bit: Software should check for this as well, i.e. two consecutive frames of 0s.

Page 30: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 30

I/O Interface

Examples, 16550 interfaced to the 8088 at ports 00F0H – 00F7H

Page 31: Advanced Microprocessor1 I/O Interface Programmable Interval Timer: 8254 Three independent 16-bit programmable counters (timers). Each capable in counting.

Advanced Microprocessor 31

I/O Interface

•Here port F3H accesses the line control register

•F0H & F1H access the baud rate divisor register

• after the line control register & baud rate divisor are programmed , still it is not ready to function

• program the FIFO control register, at port F2H