📄 callout_interrupt_at91sam9263.s
字号:
/* * $QNXLicenseC: * Copyright 2008, QNX Software Systems. * * Licensed under the Apache License, Version 2.0 (the "License"). You * may not reproduce, modify or distribute this software except in * compliance with the License. You may obtain a copy of the License * at: http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OF ANY KIND, either express or implied. * * This file may contain contributions from others, either as * contributors under the License or as licensors under other terms. * Please review this entire file for other proprietary rights or license * notices, as well as the QNX Development Suite License Guide at * http://licensing.qnx.com/license-guide/ for other information. * $ */ #include "callout.ah"#include <arm/at91sam9263.h>/* * ----------------------------------------------------------------------- * Routine to patch callout code for IRC * * On entry: * r0 - physical address of syspage * r1 - virtual address of syspage * r2 - offset from start of syspage to start of the callout routine * r3 - offset from start of syspage to read/write data used by callout * ----------------------------------------------------------------------- */interrupt_patch_aic: stmdb sp!,{r4,lr} add r4, r0, r2 // address of callout routine /* * Map interrupt controller registers */ mov r0, #AT91SAM9263_AIC_SIZE // size of AIC registers ldr r1, Lintr1_base bl callout_io_map /* * Patch the callout routine */ CALLOUT_PATCH r4, r0, r1, r2, ip ldmia sp!,{r4,pc} Lintr1_base: .word AT91SAM9263_AIC_BASE /* * ----------------------------------------------------------------------- * Identify interrupt source. * * Returns interrupt number in r4 * ----------------------------------------------------------------------- */CALLOUT_START(interrupt_id_at91sam9263_aic, 0, interrupt_patch_aic) /* * Get the IRC interrupt controller base address (patched) */ mov ip, #0x000000ff orr ip, ip, #0x0000ff00 orr ip, ip, #0x00ff0000 orr ip, ip, #0xff000000 /* * Get current interrupt ID. */ ldr r4, [ip, #AT91SAM9263_AIC_IVR] tst r4, #1 /* * Disable interrupt and ack it in case we deal with edge trigger IRQ */ mov r0, #1 mov r0, r0, lsl r4 str r0, [ip, #AT91SAM9263_AIC_IDCR] str r0, [ip, #AT91SAM9263_AIC_ICCR] // No effect on level /* * Indicate we complete processing of interrupt */ str r0, [ip, #AT91SAM9263_AIC_EOICR] CALLOUT_END(interrupt_id_at91sam9263_aic)/* * ----------------------------------------------------------------------- * Acknowledge specified interrupt * * On entry: * r4 contains the interrupt number * r7 contains the interrupt mask count * ----------------------------------------------------------------------- */CALLOUT_START(interrupt_eoi_at91sam9263_aic, 0, interrupt_patch_aic) /* * Get the interrupt controller base address (patched) */ mov ip, #0x000000ff orr ip, ip, #0x0000ff00 orr ip, ip, #0x00ff0000 orr ip, ip, #0xff000000 /* * Only unmask interrupt if mask count is zero */ teq r7, #0 bne 1f /* * Now we need to unmask the source for the specified interrupt source */ mov r0, #1 mov r0, r0, lsl r4 str r0, [ip, #AT91SAM9263_AIC_ICCR] str r0, [ip, #AT91SAM9263_AIC_IECR] 1:CALLOUT_END(interrupt_eoi_at91sam9263_aic)/* * ----------------------------------------------------------------------- * Mask specified interrupt * * On entry: * r0 - syspage_ptr * r1 - interrupt number * * Returns: * r0 - error status * ----------------------------------------------------------------------- */CALLOUT_START(interrupt_mask_at91sam9263_aic, 0, interrupt_patch_aic) /* * Get the interrupt controller base address (patched) */ mov ip, #0x000000ff orr ip, ip, #0x0000ff00 orr ip, ip, #0x00ff0000 orr ip, ip, #0xff000000 /* * Mask the interrupt */ mov r0, #1 mov r0, r0, lsl r1 str r0, [ip, #AT91SAM9263_AIC_IDCR] mov r0, #0 mov pc, lrCALLOUT_END(interrupt_mask_at91sam9263_aic)/* * ----------------------------------------------------------------------- * Unmask specified interrupt * * On entry: * r0 - syspage_ptr * r1 - interrupt number * * Returns: * r0 - error status * ----------------------------------------------------------------------- */CALLOUT_START(interrupt_unmask_at91sam9263_aic, 0, interrupt_patch_aic) /* * Get the interrupt controller base address (patched) */ mov ip, #0x000000ff orr ip, ip, #0x0000ff00 orr ip, ip, #0x00ff0000 orr ip, ip, #0xff000000 /* * We don't allow to enable FIQ interrupt at source 0 */ teq r1, #0 beq 1f /* * We need to clear level interrupt here! */ mov r0, #1 mov r0, r0, lsl r1 add r2, ip, #AT91SAM9263_AIC_SMR0 str r3, [r2, r1, lsl #2] and r3, r3, #0x20 teq r3, #0 streq r0, [ip, #AT91SAM9263_AIC_ICCR] /* * Unmask the interrupt */ str r0, [ip, #AT91SAM9263_AIC_IECR] 1: mov r0, #0 mov pc, lrCALLOUT_END(interrupt_unmask_at91sam9263_aic)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -