mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
b24413180f
Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of the kernel, which is GPL version 2. Update the files which contain no license information with the 'GPL-2.0' SPDX license identifier. The SPDX identifier is a legally binding shorthand, which can be used instead of the full boiler plate text. This patch is based on work done by Thomas Gleixner and Kate Stewart and Philippe Ombredanne. How this work was done: Patches were generated and checked against linux-4.14-rc6 for a subset of the use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information, Further patches will be generated in subsequent months to fix up cases where non-standard license headers were used, and references to license had to be inferred by heuristics based on keywords. The analysis to determine which SPDX License Identifier to be applied to a file was done in a spreadsheet of side by side results from of the output of two independent scanners (ScanCode & Windriver) producing SPDX tag:value files created by Philippe Ombredanne. Philippe prepared the base worksheet, and did an initial spot review of a few 1000 files. The 4.13 kernel was the starting point of the analysis with 60,537 files assessed. Kate Stewart did a file by file comparison of the scanner results in the spreadsheet to determine which SPDX license identifier(s) to be applied to the file. She confirmed any determination that was not immediately clear with lawyers working with the Linux Foundation. Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained >5 lines of source - File already had some variant of a license header in it (even if <5 lines). All documentation files were explicitly excluded. The following heuristics were used to determine which SPDX license identifiers to apply. - when both scanners couldn't find any license traces, file was considered to have no license information in it, and the top level COPYING file license applied. For non */uapi/* files that summary was: SPDX license identifier # files ---------------------------------------------------|------- GPL-2.0 11139 and resulted in the first patch in this series. If that file was a */uapi/* path one, it was "GPL-2.0 WITH Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was: SPDX license identifier # files ---------------------------------------------------|------- GPL-2.0 WITH Linux-syscall-note 930 and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one of the */uapi/* ones, it was denoted with the Linux-syscall-note if any GPL family license was found in the file or had no licensing in it (per prior point). Results summary: SPDX license identifier # files ---------------------------------------------------|------ GPL-2.0 WITH Linux-syscall-note 270 GPL-2.0+ WITH Linux-syscall-note 169 ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21 ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17 LGPL-2.1+ WITH Linux-syscall-note 15 GPL-1.0+ WITH Linux-syscall-note 14 ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5 LGPL-2.0+ WITH Linux-syscall-note 4 LGPL-2.1 WITH Linux-syscall-note 3 ((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3 ((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1 and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became the concluded license(s). - when there was disagreement between the two scanners (one detected a license but the other didn't, or they both detected different licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file resulted in a clear resolution of the license that should apply (and which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier, the file was flagged for further research and to be revisited later in time. In total, over 70 hours of logged manual review was done on the spreadsheet to determine the SPDX license identifiers to apply to the source files by Kate, Philippe, Thomas and, in some cases, confirmation by lawyers working with the Linux Foundation. Kate also obtained a third independent scan of the 4.13 code base from FOSSology, and compared selected files where the other two scanners disagreed against that SPDX file, to see if there was new insights. The Windriver scanner is based on an older version of FOSSology in part, so they are related. Thomas did random spot checks in about 500 files from the spreadsheets for the uapi headers and agreed with SPDX license identifier in the files he inspected. For the non-uapi files Thomas did random spot checks in about 15000 files. In initial set of patches against 4.14-rc6, 3 files were found to have copy/paste license identifier errors, and have been fixed to reflect the correct identifier. Additionally Philippe spent 10 hours this week doing a detailed manual inspection and review of the 12,461 patched files from the initial patch version early this week with: - a full scancode scan run, collecting the matched texts, detected license ids and scores - reviewing anything where there was a license detected (about 500+ files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied SPDX license was correct This produced a worksheet with 20 files needing minor correction. This worksheet was then exported into 3 different .csv files for the different types of files to be modified. These .csv files were then reviewed by Greg. Thomas wrote a script to parse the csv files and add the proper SPDX tag to the file, in the format that the file expected. This script was further refined by Greg based on the output to detect more types of files automatically and to distinguish between header and source .c files (which need different comment types.) Finally Greg ran the script using the .csv files to generate the patches. Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
520 lines
12 KiB
C
520 lines
12 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* SS1000/SC2000 interrupt handling.
|
|
*
|
|
* Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
|
|
* Heavily based on arch/sparc/kernel/irq.c.
|
|
*/
|
|
|
|
#include <linux/kernel_stat.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <asm/timer.h>
|
|
#include <asm/traps.h>
|
|
#include <asm/irq.h>
|
|
#include <asm/io.h>
|
|
#include <asm/sbi.h>
|
|
#include <asm/cacheflush.h>
|
|
#include <asm/setup.h>
|
|
#include <asm/oplib.h>
|
|
|
|
#include "kernel.h"
|
|
#include "irq.h"
|
|
|
|
/* Sun4d interrupts fall roughly into two categories. SBUS and
|
|
* cpu local. CPU local interrupts cover the timer interrupts
|
|
* and whatnot, and we encode those as normal PILs between
|
|
* 0 and 15.
|
|
* SBUS interrupts are encodes as a combination of board, level and slot.
|
|
*/
|
|
|
|
struct sun4d_handler_data {
|
|
unsigned int cpuid; /* target cpu */
|
|
unsigned int real_irq; /* interrupt level */
|
|
};
|
|
|
|
|
|
static unsigned int sun4d_encode_irq(int board, int lvl, int slot)
|
|
{
|
|
return (board + 1) << 5 | (lvl << 2) | slot;
|
|
}
|
|
|
|
struct sun4d_timer_regs {
|
|
u32 l10_timer_limit;
|
|
u32 l10_cur_countx;
|
|
u32 l10_limit_noclear;
|
|
u32 ctrl;
|
|
u32 l10_cur_count;
|
|
};
|
|
|
|
static struct sun4d_timer_regs __iomem *sun4d_timers;
|
|
|
|
#define SUN4D_TIMER_IRQ 10
|
|
|
|
/* Specify which cpu handle interrupts from which board.
|
|
* Index is board - value is cpu.
|
|
*/
|
|
static unsigned char board_to_cpu[32];
|
|
|
|
static int pil_to_sbus[] = {
|
|
0,
|
|
0,
|
|
1,
|
|
2,
|
|
0,
|
|
3,
|
|
0,
|
|
4,
|
|
0,
|
|
5,
|
|
0,
|
|
6,
|
|
0,
|
|
7,
|
|
0,
|
|
0,
|
|
};
|
|
|
|
/* Exported for sun4d_smp.c */
|
|
DEFINE_SPINLOCK(sun4d_imsk_lock);
|
|
|
|
/* SBUS interrupts are encoded integers including the board number
|
|
* (plus one), the SBUS level, and the SBUS slot number. Sun4D
|
|
* IRQ dispatch is done by:
|
|
*
|
|
* 1) Reading the BW local interrupt table in order to get the bus
|
|
* interrupt mask.
|
|
*
|
|
* This table is indexed by SBUS interrupt level which can be
|
|
* derived from the PIL we got interrupted on.
|
|
*
|
|
* 2) For each bus showing interrupt pending from #1, read the
|
|
* SBI interrupt state register. This will indicate which slots
|
|
* have interrupts pending for that SBUS interrupt level.
|
|
*
|
|
* 3) Call the genreric IRQ support.
|
|
*/
|
|
static void sun4d_sbus_handler_irq(int sbusl)
|
|
{
|
|
unsigned int bus_mask;
|
|
unsigned int sbino, slot;
|
|
unsigned int sbil;
|
|
|
|
bus_mask = bw_get_intr_mask(sbusl) & 0x3ffff;
|
|
bw_clear_intr_mask(sbusl, bus_mask);
|
|
|
|
sbil = (sbusl << 2);
|
|
/* Loop for each pending SBI */
|
|
for (sbino = 0; bus_mask; sbino++, bus_mask >>= 1) {
|
|
unsigned int idx, mask;
|
|
|
|
if (!(bus_mask & 1))
|
|
continue;
|
|
/* XXX This seems to ACK the irq twice. acquire_sbi()
|
|
* XXX uses swap, therefore this writes 0xf << sbil,
|
|
* XXX then later release_sbi() will write the individual
|
|
* XXX bits which were set again.
|
|
*/
|
|
mask = acquire_sbi(SBI2DEVID(sbino), 0xf << sbil);
|
|
mask &= (0xf << sbil);
|
|
|
|
/* Loop for each pending SBI slot */
|
|
slot = (1 << sbil);
|
|
for (idx = 0; mask != 0; idx++, slot <<= 1) {
|
|
unsigned int pil;
|
|
struct irq_bucket *p;
|
|
|
|
if (!(mask & slot))
|
|
continue;
|
|
|
|
mask &= ~slot;
|
|
pil = sun4d_encode_irq(sbino, sbusl, idx);
|
|
|
|
p = irq_map[pil];
|
|
while (p) {
|
|
struct irq_bucket *next;
|
|
|
|
next = p->next;
|
|
generic_handle_irq(p->irq);
|
|
p = next;
|
|
}
|
|
release_sbi(SBI2DEVID(sbino), slot);
|
|
}
|
|
}
|
|
}
|
|
|
|
void sun4d_handler_irq(unsigned int pil, struct pt_regs *regs)
|
|
{
|
|
struct pt_regs *old_regs;
|
|
/* SBUS IRQ level (1 - 7) */
|
|
int sbusl = pil_to_sbus[pil];
|
|
|
|
/* FIXME: Is this necessary?? */
|
|
cc_get_ipen();
|
|
|
|
cc_set_iclr(1 << pil);
|
|
|
|
#ifdef CONFIG_SMP
|
|
/*
|
|
* Check IPI data structures after IRQ has been cleared. Hard and Soft
|
|
* IRQ can happen at the same time, so both cases are always handled.
|
|
*/
|
|
if (pil == SUN4D_IPI_IRQ)
|
|
sun4d_ipi_interrupt();
|
|
#endif
|
|
|
|
old_regs = set_irq_regs(regs);
|
|
irq_enter();
|
|
if (sbusl == 0) {
|
|
/* cpu interrupt */
|
|
struct irq_bucket *p;
|
|
|
|
p = irq_map[pil];
|
|
while (p) {
|
|
struct irq_bucket *next;
|
|
|
|
next = p->next;
|
|
generic_handle_irq(p->irq);
|
|
p = next;
|
|
}
|
|
} else {
|
|
/* SBUS interrupt */
|
|
sun4d_sbus_handler_irq(sbusl);
|
|
}
|
|
irq_exit();
|
|
set_irq_regs(old_regs);
|
|
}
|
|
|
|
|
|
static void sun4d_mask_irq(struct irq_data *data)
|
|
{
|
|
struct sun4d_handler_data *handler_data = irq_data_get_irq_handler_data(data);
|
|
unsigned int real_irq;
|
|
#ifdef CONFIG_SMP
|
|
int cpuid = handler_data->cpuid;
|
|
unsigned long flags;
|
|
#endif
|
|
real_irq = handler_data->real_irq;
|
|
#ifdef CONFIG_SMP
|
|
spin_lock_irqsave(&sun4d_imsk_lock, flags);
|
|
cc_set_imsk_other(cpuid, cc_get_imsk_other(cpuid) | (1 << real_irq));
|
|
spin_unlock_irqrestore(&sun4d_imsk_lock, flags);
|
|
#else
|
|
cc_set_imsk(cc_get_imsk() | (1 << real_irq));
|
|
#endif
|
|
}
|
|
|
|
static void sun4d_unmask_irq(struct irq_data *data)
|
|
{
|
|
struct sun4d_handler_data *handler_data = irq_data_get_irq_handler_data(data);
|
|
unsigned int real_irq;
|
|
#ifdef CONFIG_SMP
|
|
int cpuid = handler_data->cpuid;
|
|
unsigned long flags;
|
|
#endif
|
|
real_irq = handler_data->real_irq;
|
|
|
|
#ifdef CONFIG_SMP
|
|
spin_lock_irqsave(&sun4d_imsk_lock, flags);
|
|
cc_set_imsk_other(cpuid, cc_get_imsk_other(cpuid) & ~(1 << real_irq));
|
|
spin_unlock_irqrestore(&sun4d_imsk_lock, flags);
|
|
#else
|
|
cc_set_imsk(cc_get_imsk() & ~(1 << real_irq));
|
|
#endif
|
|
}
|
|
|
|
static unsigned int sun4d_startup_irq(struct irq_data *data)
|
|
{
|
|
irq_link(data->irq);
|
|
sun4d_unmask_irq(data);
|
|
return 0;
|
|
}
|
|
|
|
static void sun4d_shutdown_irq(struct irq_data *data)
|
|
{
|
|
sun4d_mask_irq(data);
|
|
irq_unlink(data->irq);
|
|
}
|
|
|
|
static struct irq_chip sun4d_irq = {
|
|
.name = "sun4d",
|
|
.irq_startup = sun4d_startup_irq,
|
|
.irq_shutdown = sun4d_shutdown_irq,
|
|
.irq_unmask = sun4d_unmask_irq,
|
|
.irq_mask = sun4d_mask_irq,
|
|
};
|
|
|
|
#ifdef CONFIG_SMP
|
|
/* Setup IRQ distribution scheme. */
|
|
void __init sun4d_distribute_irqs(void)
|
|
{
|
|
struct device_node *dp;
|
|
|
|
int cpuid = cpu_logical_map(1);
|
|
|
|
if (cpuid == -1)
|
|
cpuid = cpu_logical_map(0);
|
|
for_each_node_by_name(dp, "sbi") {
|
|
int devid = of_getintprop_default(dp, "device-id", 0);
|
|
int board = of_getintprop_default(dp, "board#", 0);
|
|
board_to_cpu[board] = cpuid;
|
|
set_sbi_tid(devid, cpuid << 3);
|
|
}
|
|
printk(KERN_ERR "All sbus IRQs directed to CPU%d\n", cpuid);
|
|
}
|
|
#endif
|
|
|
|
static void sun4d_clear_clock_irq(void)
|
|
{
|
|
sbus_readl(&sun4d_timers->l10_timer_limit);
|
|
}
|
|
|
|
static void sun4d_load_profile_irq(int cpu, unsigned int limit)
|
|
{
|
|
unsigned int value = limit ? timer_value(limit) : 0;
|
|
bw_set_prof_limit(cpu, value);
|
|
}
|
|
|
|
static void __init sun4d_load_profile_irqs(void)
|
|
{
|
|
int cpu = 0, mid;
|
|
|
|
while (!cpu_find_by_instance(cpu, NULL, &mid)) {
|
|
sun4d_load_profile_irq(mid >> 3, 0);
|
|
cpu++;
|
|
}
|
|
}
|
|
|
|
static unsigned int _sun4d_build_device_irq(unsigned int real_irq,
|
|
unsigned int pil,
|
|
unsigned int board)
|
|
{
|
|
struct sun4d_handler_data *handler_data;
|
|
unsigned int irq;
|
|
|
|
irq = irq_alloc(real_irq, pil);
|
|
if (irq == 0) {
|
|
prom_printf("IRQ: allocate for %d %d %d failed\n",
|
|
real_irq, pil, board);
|
|
goto err_out;
|
|
}
|
|
|
|
handler_data = irq_get_handler_data(irq);
|
|
if (unlikely(handler_data))
|
|
goto err_out;
|
|
|
|
handler_data = kzalloc(sizeof(struct sun4d_handler_data), GFP_ATOMIC);
|
|
if (unlikely(!handler_data)) {
|
|
prom_printf("IRQ: kzalloc(sun4d_handler_data) failed.\n");
|
|
prom_halt();
|
|
}
|
|
handler_data->cpuid = board_to_cpu[board];
|
|
handler_data->real_irq = real_irq;
|
|
irq_set_chip_and_handler_name(irq, &sun4d_irq,
|
|
handle_level_irq, "level");
|
|
irq_set_handler_data(irq, handler_data);
|
|
|
|
err_out:
|
|
return irq;
|
|
}
|
|
|
|
|
|
|
|
static unsigned int sun4d_build_device_irq(struct platform_device *op,
|
|
unsigned int real_irq)
|
|
{
|
|
struct device_node *dp = op->dev.of_node;
|
|
struct device_node *board_parent, *bus = dp->parent;
|
|
char *bus_connection;
|
|
const struct linux_prom_registers *regs;
|
|
unsigned int pil;
|
|
unsigned int irq;
|
|
int board, slot;
|
|
int sbusl;
|
|
|
|
irq = real_irq;
|
|
while (bus) {
|
|
if (!strcmp(bus->name, "sbi")) {
|
|
bus_connection = "io-unit";
|
|
break;
|
|
}
|
|
|
|
if (!strcmp(bus->name, "bootbus")) {
|
|
bus_connection = "cpu-unit";
|
|
break;
|
|
}
|
|
|
|
bus = bus->parent;
|
|
}
|
|
if (!bus)
|
|
goto err_out;
|
|
|
|
regs = of_get_property(dp, "reg", NULL);
|
|
if (!regs)
|
|
goto err_out;
|
|
|
|
slot = regs->which_io;
|
|
|
|
/*
|
|
* If Bus nodes parent is not io-unit/cpu-unit or the io-unit/cpu-unit
|
|
* lacks a "board#" property, something is very wrong.
|
|
*/
|
|
if (!bus->parent || strcmp(bus->parent->name, bus_connection)) {
|
|
printk(KERN_ERR "%s: Error, parent is not %s.\n",
|
|
bus->full_name, bus_connection);
|
|
goto err_out;
|
|
}
|
|
board_parent = bus->parent;
|
|
board = of_getintprop_default(board_parent, "board#", -1);
|
|
if (board == -1) {
|
|
printk(KERN_ERR "%s: Error, lacks board# property.\n",
|
|
board_parent->full_name);
|
|
goto err_out;
|
|
}
|
|
|
|
sbusl = pil_to_sbus[real_irq];
|
|
if (sbusl)
|
|
pil = sun4d_encode_irq(board, sbusl, slot);
|
|
else
|
|
pil = real_irq;
|
|
|
|
irq = _sun4d_build_device_irq(real_irq, pil, board);
|
|
err_out:
|
|
return irq;
|
|
}
|
|
|
|
static unsigned int sun4d_build_timer_irq(unsigned int board,
|
|
unsigned int real_irq)
|
|
{
|
|
return _sun4d_build_device_irq(real_irq, real_irq, board);
|
|
}
|
|
|
|
|
|
static void __init sun4d_fixup_trap_table(void)
|
|
{
|
|
#ifdef CONFIG_SMP
|
|
unsigned long flags;
|
|
struct tt_entry *trap_table = &sparc_ttable[SP_TRAP_IRQ1 + (14 - 1)];
|
|
|
|
/* Adjust so that we jump directly to smp4d_ticker */
|
|
lvl14_save[2] += smp4d_ticker - real_irq_entry;
|
|
|
|
/* For SMP we use the level 14 ticker, however the bootup code
|
|
* has copied the firmware's level 14 vector into the boot cpu's
|
|
* trap table, we must fix this now or we get squashed.
|
|
*/
|
|
local_irq_save(flags);
|
|
patchme_maybe_smp_msg[0] = 0x01000000; /* NOP out the branch */
|
|
trap_table->inst_one = lvl14_save[0];
|
|
trap_table->inst_two = lvl14_save[1];
|
|
trap_table->inst_three = lvl14_save[2];
|
|
trap_table->inst_four = lvl14_save[3];
|
|
local_ops->cache_all();
|
|
local_irq_restore(flags);
|
|
#endif
|
|
}
|
|
|
|
static void __init sun4d_init_timers(void)
|
|
{
|
|
struct device_node *dp;
|
|
struct resource res;
|
|
unsigned int irq;
|
|
const u32 *reg;
|
|
int err;
|
|
int board;
|
|
|
|
dp = of_find_node_by_name(NULL, "cpu-unit");
|
|
if (!dp) {
|
|
prom_printf("sun4d_init_timers: Unable to find cpu-unit\n");
|
|
prom_halt();
|
|
}
|
|
|
|
/* Which cpu-unit we use is arbitrary, we can view the bootbus timer
|
|
* registers via any cpu's mapping. The first 'reg' property is the
|
|
* bootbus.
|
|
*/
|
|
reg = of_get_property(dp, "reg", NULL);
|
|
if (!reg) {
|
|
prom_printf("sun4d_init_timers: No reg property\n");
|
|
prom_halt();
|
|
}
|
|
|
|
board = of_getintprop_default(dp, "board#", -1);
|
|
if (board == -1) {
|
|
prom_printf("sun4d_init_timers: No board# property on cpu-unit\n");
|
|
prom_halt();
|
|
}
|
|
|
|
of_node_put(dp);
|
|
|
|
res.start = reg[1];
|
|
res.end = reg[2] - 1;
|
|
res.flags = reg[0] & 0xff;
|
|
sun4d_timers = of_ioremap(&res, BW_TIMER_LIMIT,
|
|
sizeof(struct sun4d_timer_regs), "user timer");
|
|
if (!sun4d_timers) {
|
|
prom_printf("sun4d_init_timers: Can't map timer regs\n");
|
|
prom_halt();
|
|
}
|
|
|
|
#ifdef CONFIG_SMP
|
|
sparc_config.cs_period = SBUS_CLOCK_RATE * 2; /* 2 seconds */
|
|
#else
|
|
sparc_config.cs_period = SBUS_CLOCK_RATE / HZ; /* 1/HZ sec */
|
|
sparc_config.features |= FEAT_L10_CLOCKEVENT;
|
|
#endif
|
|
sparc_config.features |= FEAT_L10_CLOCKSOURCE;
|
|
sbus_writel(timer_value(sparc_config.cs_period),
|
|
&sun4d_timers->l10_timer_limit);
|
|
|
|
master_l10_counter = &sun4d_timers->l10_cur_count;
|
|
|
|
irq = sun4d_build_timer_irq(board, SUN4D_TIMER_IRQ);
|
|
err = request_irq(irq, timer_interrupt, IRQF_TIMER, "timer", NULL);
|
|
if (err) {
|
|
prom_printf("sun4d_init_timers: request_irq() failed with %d\n",
|
|
err);
|
|
prom_halt();
|
|
}
|
|
sun4d_load_profile_irqs();
|
|
sun4d_fixup_trap_table();
|
|
}
|
|
|
|
void __init sun4d_init_sbi_irq(void)
|
|
{
|
|
struct device_node *dp;
|
|
int target_cpu;
|
|
|
|
target_cpu = boot_cpu_id;
|
|
for_each_node_by_name(dp, "sbi") {
|
|
int devid = of_getintprop_default(dp, "device-id", 0);
|
|
int board = of_getintprop_default(dp, "board#", 0);
|
|
unsigned int mask;
|
|
|
|
set_sbi_tid(devid, target_cpu << 3);
|
|
board_to_cpu[board] = target_cpu;
|
|
|
|
/* Get rid of pending irqs from PROM */
|
|
mask = acquire_sbi(devid, 0xffffffff);
|
|
if (mask) {
|
|
printk(KERN_ERR "Clearing pending IRQs %08x on SBI %d\n",
|
|
mask, board);
|
|
release_sbi(devid, mask);
|
|
}
|
|
}
|
|
}
|
|
|
|
void __init sun4d_init_IRQ(void)
|
|
{
|
|
local_irq_disable();
|
|
|
|
sparc_config.init_timers = sun4d_init_timers;
|
|
sparc_config.build_device_irq = sun4d_build_device_irq;
|
|
sparc_config.clock_rate = SBUS_CLOCK_RATE;
|
|
sparc_config.clear_clock_irq = sun4d_clear_clock_irq;
|
|
sparc_config.load_profile_irq = sun4d_load_profile_irq;
|
|
|
|
/* Cannot enable interrupts until OBP ticker is disabled. */
|
|
}
|