/* * OpenRISC irq.c * * Linux architectural port borrowing liberally from similar works of * others. All original copyrights apply as per the original source * declaration. * * Modifications for the OpenRISC architecture: * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se> * * 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. */ #include <linux/interrupt.h> #include <linux/init.h> #include <linux/ftrace.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/export.h> #include <linux/irqflags.h> /* read interrupt enabled status */
unsigned long arch_local_save_flags(void) { return mfspr(SPR_SR) & (SPR_SR_IEE|SPR_SR_TEE); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 32 | 100.00% | 1 | 100.00% |
Total | 32 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 6 | 54.55% | 1 | 50.00% |
Stefan Kristiansson | 5 | 45.45% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 12 | 57.14% | 1 | 50.00% |
Stefan Kristiansson | 9 | 42.86% | 1 | 50.00% |
Total | 21 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 15 | 93.75% | 1 | 50.00% |
Stefan Kristiansson | 1 | 6.25% | 1 | 50.00% |
Total | 16 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 123 | 84.25% | 3 | 75.00% |
Stefan Kristiansson | 23 | 15.75% | 1 | 25.00% |
Total | 146 | 100.00% | 4 | 100.00% |