// SPDX-License-Identifier: GPL-2.0 /* * linux/arch/alpha/kernel/irq_pyxis.c * * Based on code written by David A Rusling (david.rusling@reo.mts.dec.com). * * IRQ Code common to all PYXIS core logic chips. */ #include <linux/init.h> #include <linux/sched.h> #include <linux/irq.h> #include <asm/io.h> #include <asm/core_cia.h> #include "proto.h" #include "irq_impl.h" /* Note mask bit is true for ENABLED irqs. */ static unsigned long cached_irq_mask;
static inline void pyxis_update_irq_hw(unsigned long mask) { *(vulp)PYXIS_INT_MASK = mask; mb(); *(vulp)PYXIS_INT_MASK; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 28 | 100.00% | 1 | 100.00% |
Total | 28 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 21 | 77.78% | 1 | 50.00% |
Thomas Gleixner | 6 | 22.22% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 23 | 79.31% | 1 | 50.00% |
Thomas Gleixner | 6 | 20.69% | 1 | 50.00% |
Total | 29 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 59 | 90.77% | 1 | 50.00% |
Thomas Gleixner | 6 | 9.23% | 1 | 50.00% |
Total | 65 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 71 | 100.00% | 1 | 100.00% |
Total | 71 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 82 | 86.32% | 1 | 16.67% |
Kyle McMartin | 9 | 9.47% | 3 | 50.00% |
Thomas Gleixner | 4 | 4.21% | 2 | 33.33% |
Total | 95 | 100.00% | 6 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 325 | 87.60% | 1 | 10.00% |
Thomas Gleixner | 27 | 7.28% | 4 | 40.00% |
Kyle McMartin | 10 | 2.70% | 3 | 30.00% |
Richard Henderson | 8 | 2.16% | 1 | 10.00% |
Greg Kroah-Hartman | 1 | 0.27% | 1 | 10.00% |
Total | 371 | 100.00% | 10 | 100.00% |