Presentation is loading. Please wait.

Presentation is loading. Please wait.

Interrupts, Timer, and Interrupt Controller

Similar presentations


Presentation on theme: "Interrupts, Timer, and Interrupt Controller"— Presentation transcript:

1 Interrupts, Timer, and Interrupt Controller
Prof. Taeweon Suh Computer Science Education Korea University

2 Interrupt Interrupt is an asynchronous signal from hardware indicating the need for attention or a synchronous event in software indicating the need for a change in execution. Hardware interrupt causes the processor (CPU) to save its state of execution via a context switch, and begin execution of an interrupt handler. Software interrupt is usually implemented as an instruction in the instruction set, which cause a context switch to an interrupt handler similar to a hardware interrupt. Interrupt is a commonly used technique in computer system for communication between CPU and peripheral devices Operating systems also extensively use interrupt (timer interrupt) for task (process, thread) scheduling

3 Software Interrupt in ARM
There is an software interrupt instruction in ARM SWI instruction Software interrupt is commonly used by OS for system calls Example: open(), close().. etc

4 Hardware Interrupt in ARM
IRQ (Normal interrupt request) Informed to CPU by asserting IRQ pin Program jumps to 0x0000_0018 FIQ (Fast interrupt request) Informed to CPU by asserting FIQ pin Has a higher priority than IRQ Program jumps to 0x0000_001C IRQ FIQ

5 Exception Vectors in ARM
RAZ: Read As Zero

6 Exception Priority in ARM

7 S3C2440A Block Diagram

8 Simplified Hardware System
Interrupt Controller Interrupt ARM920T ALU EAX R15 …. R1 R0 Address Bus AMBA Data Bus 32-bit (PWM) Timer UART 32MB SDRAM GPIO 0x00000FFF 4KB SRAM (Steppingstone) Memory Controller 0x 0x

9 Only 1-bit with the highest priority is set
INTC in S3C2440A INTMOD (0x4A00_0004) (Interrupt Mode Register) SRCPND (0X4A00_0000) (Source Pending Register) Bit14 32-bit Interrupt Controller UART_IRQ TIMER_IRQ INTPND (0x4A00_0010) (Interrupt Pending Register) Only 1-bit with the highest priority is set nIRQ nFIQ 1 Bit14 INTMSK (0x4A00_0008) (Interrupt Mask Register) 32-bit

10 Only 1-bit with the highest priority is set
Example INTMOD (0x4A00_0004) (Interrupt Mode Register) SRCPND (0X4A00_0000) (Source Pending Register) Bit14 32-bit Interrupt Controller UART_IRQ TIMER_IRQ 1 INTPND (0x4A00_0010) (Interrupt Pending Register) Only 1-bit with the highest priority is set nIRQ nFIQ 1 1 Bit14 INTMSK (0x4A00_0008) (Interrupt Mask Register) 32-bit Note that the corresponding bit in both SRCPND and INTPND should be cleared via SW after servicing an interrupt.

11 Timers http://a-towntales.blogspot.kr/2011/09/dreaded-alarm-clock.html

12 Timer in S3C2440A 5 Timers Timer 0, 1, 2, 3 have PWM (Pulse Width Modulation) function Timer 4 has no output 16-bit counters

13 Timer 4 in S3C2440A Timer 4 has no output Interrupt generated
Read TCNTO4 to get the current counter value TCNT4 xx 5 5 4 3 2 1 5 4 3 2 1 TCNTB4 5 Manual_update=1 Start=1 Auto_reload=1 Manual_update=0 TCNTB4 write to “5” Program this register

14 Timer 4 Registers

15 Timer 4 Registers

16 UART Universal Asynchronous Receiver and Transmitter
Used for serial communication Simply called serial port (or RS-232) Has a long history (~1970) Still widely used in embedded systems design for debugging purpose Detected as a COM port in Windows Its original shaped port has almost been disappeared in computers. Instead, the serial-to-USB is used whenever necessary

17 UART http://pcsbyjohn.wordpress.com/

18 UART in S3C2440A 3 Channels (UART0, UART1, and UART3)
We use UART0 for debugging Transmission only to PC Non-FIFO mode No interrupt

19 UART Registers

20 UART Registers (Cont.)

21 UART Registers (Cont.)

22 Memory Map of Our System
0xFFFF_FFFF Memory Space Address Bus Data Bus 32-bit ARM CPU ALU EAX R15 …. R1 R0 GPIO 0x5600_0000 Timer 0x5100_0000 UART 0x5000_0000 INTC 0x4A00_1000 SDRAM 0x3000_0000 0x0000_0FFF SRAM 4KB 0x0

23 Linker Script Check out the linker script in Makefile
Figure out what the linker script says where the code and data in the program should be located in memory test.lds MEMORY { RAM (rwx) : ORIGIN = 0x0, LENGTH = 4K } REGION_ALIAS("REGION_TEXT", RAM); REGION_ALIAS("REGION_RODATA", RAM); REGION_ALIAS("REGION_DATA", RAM); REGION_ALIAS("REGION_BSS", RAM); SECTIONS .text : *(.text) . = ALIGN(4); } > REGION_TEXT .rodata : __RO_BASE__ = .; *(.rodata) *(.rodata.*) __RO_LIMIT__ = .; } > REGION_RODATA test.s .text b ResetHandler b . ResetHandler: mov r0, #16 ldr r2, =LED_BASE

24 Backup Slides

25 AMBA Advanced Microcontroller Bus Architecture
On-chip bus protocol from ARM On-chip interconnect specification for the connection and management of functional blocks including processor and peripheral devices Introduced in 1996 AMBA is a registered trademark of ARM Limited. AMBA is an open standard Wikipedia

26 AMBA History AMBA 3 (2003) AMBA AMBA 2 (1999) AMBA 4 (2010)
AXI3 (or AXI v1.0) widely used on ARM Cortex-A processors including Cortex-A9 AHB-Lite v1.0 APB3 v1.0 ATB v1.0 AMBA 4 (2010) ACE widely used on the latest ARM Cortex-A processors including Cortex-A7 and Cortex-A15 ACE-Lite AXI4 AXI4-Lite AXI-Stream v1.0 ATB v1.1 APB4 v2.0 AMBA ASB APB AMBA 2 (1999) AHB widely used on ARM7, ARM9 and ARM Cortex-M based designs APB2 (or APB) ACE: AXI Coherency Extensions AXI: Advanced eXtensible Interface AHB: Advanced High-performance Bus ASB: Advanced System Bus APB: Advanced Peripheral Bus ATB: Advanced Trace Bus Wikipedia

27 ASB AMBA Specification V2.0

28 ASB ASB Hardware Device 0 Hardware Device 1 Hardware Device 2

29 AHB AMBA Specification V2.0

30 AHB with 3 Masters and 4 Slaves
“H” indicates AHB signals AMBA Specification V2.0

31 AHB Basic Transfer Example with Wait
Write data Read data HREADY Source: Slave AMBA Specification V2.0

32 AHB Burst Transfer Example
HREADY Source: Slave AMBA Specification V2.0

33 AHB Split Transaction If slave decides that it may take a number of cycles to obtain and provide data, it gives a SPLIT transfer response Arbiter grants use of the bus to other masters HRESP: Transfer response fro slave (OKAY, ERROR, RETRY, and SPLIT) AMBA Specification V2.0

34 APB Write/Read AMBA Specification V2.0

35 AXI v1.0 AMBA AXI protocol is targeted at high-performance, high-frequency system designs AXI key features Separate address/control and data phases Support for unaligned data transfers using byte strobes Separate read and write data channels to enable low-cost Direct Memory Access (DMA) Ability to issue multiple outstanding addresses Out-of-order transaction completion Easy addition of register stages to provide timing closure AMBA AXI Specification V1.0

36 5 Independent Channels Read address channel and Write address channel
Variable length burst: 1 ~ 16 data transfers Burst with a transfer size of 8 ~ 1024 bits (1B ~ 256B) Read data channel Convey data and any read response info. Data bus can be 8, 16, 32, 64, 128, 256, 512, or 1024 bits Write data channel Write response channel Write response info.

37 AXI Read Operation Read Address Channel Read Response Channel
RREADY: From master, indicate that master can accept the read data and response info. AMBA AXI Specification V1.0

38 AXI Write Operation Write Address Channel Write Data Channel
Write Response Channel WVALID Source: Master WREADY Source: Slave BVALID Source: Slave BREADY Source: Master AMBA AXI Specification V1.0

39 Out-of-order Completion
AXI gives an ID tag to every transaction Transactions with the same ID are completed in order Transactions with different IDs can be completed out of order AMBA AXI Specification V1.0

40 ID Signals Write Address Channel Write Data Channel
Write Response Channel Read Address Channel Read Response Channel AMBA AXI Specification V1.0

41 Out-of-order Completion
Out-of-order transactions can improve system performance in 2 ways Fast-responding slaves respond in advance of earlier transactions with slower slaves Complex slaves can return data out of order A data item for a later access might be available before the data for an earlier access is available If a master requires that transactions are completed in the same order that they are issued, they must all have the same ID tag It is not a required feature Simple masters and slaves can process one transaction at a time in the order they are issued AMBA AXI Specification V1.0

42 Addition of Register Slices
AXI enables the insertion of a register slice in any channel at the cost of an additional cycle latency Trade-off between latency and maximum frequency It can be advantageous to use Direct and fast connection between a processor and high-performance memory Simple register slices to isolate a longer path to less performance-critical peripherals Because AXI channel transfers information in one direction AMBA AXI Specification V1.0


Download ppt "Interrupts, Timer, and Interrupt Controller"

Similar presentations


Ads by Google