206k views
2 votes
suppose that a system uses dma for data transfer from disk controller to main memory.further assume that it takes t1 nsec on average to acquire the bus andt2 nsec to transfer one word overthe bus (t1>>t2). after the cpu has programmed the dma430 input/output chap. 5 controller,how long will it taketotransfer 1000 words from the disk controller to main memory,if(a) word-at-a-time mode is used, (b) burst mode is used? assume that commanding the disk controller requires acquiring the bus to send one word and acknowledging a transfer also requires acquiring the bus to send one word.

1 Answer

4 votes

Final answer:

The time required to transfer 1000 words from the disk controller to main memory using DMA depends on the mode used: word-at-a-time mode is ((t1 + t2) * 1000 + 2*t1), where t1 is the bus acquisition time and t2 is the transfer time per word; burst mode is (t1 + (t2 * 1000) + 2*t1).

Step-by-step explanation:

The question concerns how long it will take to transfer 1000 words from the disk controller to main memory using direct memory access (DMA) considering different transfer modes. We need to account for the time to acquire the bus () and the time to transfer one word (), where it's given that is significantly larger than .

For word-at-a-time mode, each word transfer requires acquiring the bus, so the total time would be:

Total time (word-at-a-time) = (t1 + t2) * 1000

In burst mode, the bus is acquired once for the entire block of 1000 words. Therefore, the time would include a single bus acquisition time plus the time to transfer all words:

Total time (burst mode) = t1 + (t2 * 1000)

Note that there are additional overheads for starting and acknowledging the transfer, which must also be considered. Assuming that each of these actions is equivalent to transferring one word, the equations would further include two extra 't1' times for both modes. Adjusting for this overhead, the revised formulas become:

Total time (word-at-a-time, with overhead) = (t1 + t2) * 1000 + 2*t1

Total time (burst mode, with overhead) = t1 + (t2 * 1000) + 2*t1

User Amirfl
by
7.0k points