1 / 22

CSC2510 - Computer Organization

CSC2510 - Computer Organization. Lecture 7: Input/Output Organization. Single Bus Structure. Processor. Memory. Bus. I/O de. vice 1. I/O de. vice. n. Addressing. Memory mapped I/O – devices and memory share the same address space

dulcea
Download Presentation

CSC2510 - Computer Organization

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. CSC2510 - Computer Organization Lecture 7: Input/Output Organization

  2. Single Bus Structure Processor Memory Bus I/O de vice 1 I/O de vice n

  3. Addressing • Memory mapped I/O – devices and memory share the same address space • IA-32 can use memory mapped I/O and/or 16-bit I/O address space

  4. I/O Interface

  5. Example

  6. Mo v e #LINE,R0 Initialize memory p oin ter. W AITK T estBit #0,ST A TUS T est SIN. Branc h=0 W AITK W ait for c haracter to b e en tered. Mo v e D A T AIN,R1 Read c haracter. W AITD T estBit #1,ST A TUS T est SOUT. Branc h=0 W AITD W ait for displa y to b ecome ready . Mo v e R1,D A T A OUT Send c haracter to displa y . Mo v e R1,(R0)+ Store c haracter and adv ance p oin ter. Compare #$0D,R1 Chec k if Carriage Return. Branc h 0 W AITK If not, get another c haracter. Mo v e #$0A,D A T A OUT Otherwise, send Line F eed. Call PR OCESS Call a subroutine to pro cess the input line. Sample Program • This is an example of program controlled-IO • The processor polls the device

  7. Interrupts • Polling does not allow for processor to do other things while it tests the device’s status register • Could be doing other things • Better to be interrupted when an event takes place e.g. when printer becomes ready

  8. Overlap printing and computing When printer ready, sends an interrupt request This causes COMPUTE execution to be suspended and the interrupt routine PRINT to gain control PRINT interrupt routine executed and returns from the interrupt COMPUTE execution continued Has similarities with subroutine execution Interrupt Example

  9. Interrupt Routines • Interrupt-service routine • Interrupt request occurs during execution of instruction i • Processor first completes execution of i • Current PC pushed • Loads program counter with address of interrupt service routine (ISR) say at a fixed address • ISR runs and finally executes a return from interrupt instruction • PC popped to return to normal execution

  10. ISR • The ISR must inform device that the interrupt request has been serviced • Done through the device registers • Implicitly by say reading data that is available • Or explicitly by changing some status register • ISR must also save and restore any registers that it uses or program that was interrupted would not work when we return to it • The ISR must be short as possible to minimize interrupt latency

  11. V dd Processor R I N T R INTR INTR1 INTR2 INTR n Figure 4.6. An equivalent circuit for an open-drain bus used to implement a common interrupt-request line. Interrupt Hardware • Need to be able to handle an unknown number of possible interrupting devices • INTR = INTR1 or INTR2 or … INTR n

  12. Enable and Disable • Sometimes need to ensure that interrupts cannot occur • May need to assign priorities e.g. high priority interrupts cannot be interrupted by low priority ones • Ensure that an active request doesn’t lead to an infinite loop • Interrupt routines may need to access data structures and ensure they do not get interrupted while doing so

  13. Avoiding Infinite interrupt loops • Can be handled by • Ignoring interrupts until after 1st instruction of ISR • Interrupt disable instruction is first instruction • No further interrupts can occur • Controlled by 1 bit in the processor-status (PS) register, when 1 will process interrupts, when 0 disables them • Set to 1 after the return from interrupt instruction • Processor automatically disable interrupts before starting ISR • Edge triggered interrupts. Processor receives one interrupt request per activation of the hardware interrupt line

  14. Interrupt model • Device raises interrupt request • Processor interrupts program currently being accessed • Interrupts disabled by clearing PS bit (except in the case of edge-triggered interrupts) • Device is informed that its request has been recognised by ISR. In response it deactivates its interrupt request • Action requested by interrupt performed in the ISR • Interrupts enabled and execution of interrupted program resumed

  15. Multiple Devices • What is multiple devices can interrupt processor? • How does the processor recognize which device is causing the interrupt? • How does it know which ISR to execute? • Can interrupts interrupt ISRs? • How do we handle simultaneous interrupt requests? • Simple solution • Poll every possible interrupting device and check if status bit indicates something is to be done and then service it • Advantage: simple • Disadvantage: slow

  16. Vectored Interrupts • Interrupting device sends a code over the data bus to identify itself • Processor jumps to a table of addresses, indexed by the interrupt-vector code

  17. Interrupt nesting • Interrupts usually assigned priorities • e.g. real-time clock (RTC) interrupt must respond before the next one whereas a keyboard interrupt has no such constraint • RTC should have higher priority • During execution of an ISR, interrupts only accepted from higher priority devices • Special priority arbitration hardware is used for this purpose

  18. Priority Schemes • Priority is determined by order of polling • Daisy chain, the INTA signal only passed on if the device does not have a request • Uses fewest wires but slower than … • Priority groups (most common in modern high speed processors)

  19. Interrupt Device Requests • A bit in the status flag that can be set/cleared in software enables/disables interrupts

  20. Example • Suppose • Processor uses vectored interrupts • Starting address of ISR stored at INTVEC in memory • Interrupts enabled by setting bit 9 (the IE bit) in the processor status word • Keyboard and display devices are connected to the processor

  21. Example • To initialise the ISR • Load starting address of ISR to INTVEC • Load address LINE to PNTR (input chars will be stored here) • Enable keyboard interrupts (set bit 2 in register CONTROL) • Enable processor interrupts (set IE bit in processor status word PS) • ISR • Read input character from keyboard input register (will cause the interface circuit to remove interrupt request) • Store character to location PNTR and increment PNTR • When end of the line reached, disable keyboard interrupts and inform program Main • Return from interrupt

  22. Main Program Mo v e #LINE,PNTR Initialize buffer p oin ter. Clear EOL Clear end-of-line indicator. BitSet #2,CONTR OL Enable k eyb oard in terrupts. BitSet #9,PS Set in terrupt-enable bit in the PS. . . . In terrupt-service routine – READ Mo v eMultiple R0-R1, (SP) Sa v e registers R0 and R1 on stac k. Mo v e PNTR,R0 Load address p oin ter. Mo v eByte D A T AIN,R1 Get input c haracter and Mo v eByte R1,(R0)+ store it in memory . Mo v e R0,PNTR Up date p oin ter. CompareByte #$0D,R1 Chec k if Carriage Return. 0 Branc h R TRN Mo v e #1,EOL Indicate end of line. BitClear #2,CONTR OL Disable k eyb oard in terrupts. R TRN Mo v eMultiple (SP)+,R0-R1 Restore registers R0 and R1. Return-from-in terrupt Example

More Related