-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Russell King
authored and
Russell King
committed
Jan 13, 2006
1 parent
b6b0044
commit 570c876
Showing
9 changed files
with
152 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5ff3fd27161127cc464fc04548d58672a6a8272a | ||
refs/heads/master: fa0fe48fcca9ea7f8c13e21d2646bbaa1747d183 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
config ICST525 | ||
config ARM_GIC | ||
bool | ||
|
||
config ARM_GIC | ||
config ARM_VIC | ||
bool | ||
|
||
config ICST525 | ||
bool | ||
|
||
config ICST307 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* linux/arch/arm/common/vic.c | ||
* | ||
* Copyright (C) 1999 - 2003 ARM Limited | ||
* Copyright (C) 2000 Deep Blue Solutions Ltd | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
#include <linux/init.h> | ||
#include <linux/list.h> | ||
|
||
#include <asm/io.h> | ||
#include <asm/irq.h> | ||
#include <asm/mach/irq.h> | ||
#include <asm/hardware/vic.h> | ||
|
||
static void __iomem *vic_base; | ||
|
||
static void vic_mask_irq(unsigned int irq) | ||
{ | ||
irq -= IRQ_VIC_START; | ||
writel(1 << irq, vic_base + VIC_INT_ENABLE_CLEAR); | ||
} | ||
|
||
static void vic_unmask_irq(unsigned int irq) | ||
{ | ||
irq -= IRQ_VIC_START; | ||
writel(1 << irq, vic_base + VIC_INT_ENABLE); | ||
} | ||
|
||
static struct irqchip vic_chip = { | ||
.ack = vic_mask_irq, | ||
.mask = vic_mask_irq, | ||
.unmask = vic_unmask_irq, | ||
}; | ||
|
||
void __init vic_init(void __iomem *base, u32 vic_sources) | ||
{ | ||
unsigned int i; | ||
|
||
vic_base = base; | ||
|
||
/* Disable all interrupts initially. */ | ||
|
||
writel(0, vic_base + VIC_INT_SELECT); | ||
writel(0, vic_base + VIC_INT_ENABLE); | ||
writel(~0, vic_base + VIC_INT_ENABLE_CLEAR); | ||
writel(0, vic_base + VIC_IRQ_STATUS); | ||
writel(0, vic_base + VIC_ITCR); | ||
writel(~0, vic_base + VIC_INT_SOFT_CLEAR); | ||
|
||
/* | ||
* Make sure we clear all existing interrupts | ||
*/ | ||
writel(0, vic_base + VIC_VECT_ADDR); | ||
for (i = 0; i < 19; i++) { | ||
unsigned int value; | ||
|
||
value = readl(vic_base + VIC_VECT_ADDR); | ||
writel(value, vic_base + VIC_VECT_ADDR); | ||
} | ||
|
||
for (i = 0; i < 16; i++) { | ||
void __iomem *reg = vic_base + VIC_VECT_CNTL0 + (i * 4); | ||
writel(VIC_VECT_CNTL_ENABLE | i, reg); | ||
} | ||
|
||
writel(32, vic_base + VIC_DEF_VECT_ADDR); | ||
|
||
for (i = 0; i < 32; i++) { | ||
unsigned int irq = IRQ_VIC_START + i; | ||
|
||
set_irq_chip(irq, &vic_chip); | ||
|
||
if (vic_sources & (1 << i)) { | ||
set_irq_handler(irq, do_level_IRQ); | ||
set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* linux/include/asm-arm/hardware/vic.h | ||
* | ||
* Copyright (c) ARM Limited 2003. All rights reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
#ifndef __ASM_ARM_HARDWARE_VIC_H | ||
#define __ASM_ARM_HARDWARE_VIC_H | ||
|
||
#define VIC_IRQ_STATUS 0x00 | ||
#define VIC_FIQ_STATUS 0x04 | ||
#define VIC_RAW_STATUS 0x08 | ||
#define VIC_INT_SELECT 0x0c /* 1 = FIQ, 0 = IRQ */ | ||
#define VIC_INT_ENABLE 0x10 /* 1 = enable, 0 = disable */ | ||
#define VIC_INT_ENABLE_CLEAR 0x14 | ||
#define VIC_INT_SOFT 0x18 | ||
#define VIC_INT_SOFT_CLEAR 0x1c | ||
#define VIC_PROTECT 0x20 | ||
#define VIC_VECT_ADDR 0x30 | ||
#define VIC_DEF_VECT_ADDR 0x34 | ||
|
||
#define VIC_VECT_ADDR0 0x100 /* 0 to 15 */ | ||
#define VIC_VECT_CNTL0 0x200 /* 0 to 15 */ | ||
#define VIC_ITCR 0x300 /* VIC test control register */ | ||
|
||
#define VIC_VECT_CNTL_ENABLE (1 << 5) | ||
|
||
#ifndef __ASSEMBLY__ | ||
void vic_init(void __iomem *base, u32 vic_sources); | ||
#endif | ||
|
||
#endif |