1 / 16

DMA CONTROLLER WHOLE WORKING

DMA CONTROLLER WHOLE WORKING. 8237 DMA Controller. 8237 DMA Controller Summary. D irect M emory A ccess means that the microprocessor is not involved in the transfer of data

josh
Télécharger la présentation

DMA CONTROLLER WHOLE WORKING

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DMA CONTROLLERWHOLE WORKING

  2. 8237 DMA Controller

  3. 8237 DMA Controller Summary • Direct Memory Access means that the microprocessor is not involved in the transfer of data • The 8237 takes control of the address and data bus and facilitates the transfer of data between an I/O device and memory or between memory and memory • Realize that the only time one really needs the CPU is in decoding and executing instructions

  4. 8237: The Devil’s in the Details! • The DMA process starts with a request (DREQ) from a peripheral • The 8237 in turn requests the CPU (HRQ) to kindly get out of the way • The CPU responds with hold acknowledge (HLDA) and relinquishes control of the data bus and the address bus • The 8237 in turn acknowledges to the peripheral that the DMA will shortly be underway

  5. 8237 Pin Functions . . . • D0/A8 - D7/A15 These are multiplexedlines that supply data as well as the MSB of the 16-bit address. The rest of the address bits are provided by the processor into a page register • A0 - A7 During DMA these lines provide the LSB of the 16-bit address. During configuration of 8237, A0 -A3 are used by the CPU to address the internal registers of the 8237 and A4-A7 are disabled • ADSTB This output from the 8237 is used to demultiplex the MSB of the address from the data. ADSTB goes high to indicate valid address on the multiplexed data/address lines D0/A8 - D7/A15

  6. Inside the 8237 . . . • There are 4 DMA channels. For each channel there are two 16-bit address registers. One holds the base address (initial address). As the DMA cycle gets underway, the address changes to point to the current location. This is held in the current address register. • The count registers hold number of bytes of data that must be transferred. All four channels can transfer data between I/O and memory • For memory to memory transfers channels 0 and 1 are used and channel 0 is always the source and channel 1 is the destination.

  7. Many modes . . . many moods! • There are four modes of DMA transfer. The single mode transfers one byte of data • In blocktransfer, the number of bytes programmed in the count register is transferred unless EOP occurs prematurely • Demand transfer is similar to block transfer with the additional feature that the peripheral can stop DMA by deactivating DREQ • Cascadingis not a mode per se but applies to a situation, as in the PC, where the slave's HRQ is connected to the DREQ of the master and the slave's HLDA is connected to the DACK of the master. That particular channel of the master is then programmed to be in the cascade mode

  8. 8237 USER ACCESSIBLE REGISTERS ADDRESS [CS + ?] REGISTER R / W 0 CH 0 ADDRESS R / W 1 CH 0 COUNT R / W 2 - 7 AS ABOVE FOR CH 1 - CH 3 8 COMMAND W 8 STATUS R 9 REQUEST W A MASK (SINGLE) W B MODE W C BYTE POINTER W D TEMPORARY R D MASTER CLEAR W E CLEAR MASKS W F MASK (ALL) W

  9. How about an example . . . please? An 8237 is decoded in I//O space so that -CS is selected if the address is 350H. What are the addresses of the mode ,command , channel 2 address, channel 2 count, and page registers?

  10. Solution to the example . . . From the chart of 8237 user accessible registers, we see that: • CH2 address 354H • CH2 count 355H • Command 358H • Mode Register 35B • Page register not known. It is not an 8237 register! More info needed • Note that this assumes that A0-A3 from the CPU are connected to A0-A3 of the 8237. This is usually the case. Should an unusual decoding scheme be in place, the addresses will have to be recalculated.

  11. Another Example A 1K block of data starting at location D4200 must be transferred to an I//O using channel 2. Write the program to initialize (set-up) the address and count registers

  12. Another Solution! There are essentially two steps in a DMA transfer. In the first step one sets up the 8237. This step usually consists of setting up many registers. In the second step one requests DMA action ..... preferably by pulling the hardware line (DREQ) or by software (Request register). We will simply show the set-up part for the address and count registers. • mov ax, 4200h ; 16-bit offset. D must go in the page register • out 354h , al ; send LSB i.e. 00. Assumes byte FF is clear! • mov al, ah ; out works with al only • out 354h , al ; send MSB i.e. 42 • mov ax, 3ff ; 1023 in hex. • out 355h, al ; send LSB of count • mov al, ah ; you know what's up! • out 355h, al ; done....for now!

  13. Examples Galore! What is the command word byte if an area of memory must be filled with a byte of data stored at another memory location? Look at the command word format as you follow the solution given below: • D7 = 0 assuming DACK LOW considered active • D6 = 0 assuming DREQ HIGH considered active • D5 = 0 assuming no slow devices • D4 = 0 assuming channel priorities are fixed • D3 = 0 assuming normal timing (only option in memory to memory!) • D2 = 0 you don't want to disable the 8237, do you! • D1 = 1 because we want the pointer to our byte to stay put • D0 = 1 After all this is a memory -to- memory transfer. So the answer is 03

  14. The Page Register Remember the page register? This is not one of the registers in the 8237. The page register is an address outside of the 8237 and it holds the part of the physical address beyond A15 • DMA Channel 0 87H • DMA Channel 1 83H • DMA Channel 2 81H • DMA Channel 3 82H • DMA Channel 5 8BH • DMA Channel 6 89H • DMA Channel 7 8AH • DMA REFRESH 8FH

More Related