Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 1 | /* |
| 2 | * SHmedia irqflags support |
| 3 | * |
| 4 | * Copyright (C) 2006 - 2009 Paul Mundt |
| 5 | * |
| 6 | * This file is subject to the terms and conditions of the GNU General Public |
| 7 | * License. See the file "COPYING" in the main directory of this archive |
| 8 | * for more details. |
| 9 | */ |
| 10 | #include <linux/irqflags.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <cpu/registers.h> |
| 13 | |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 14 | void notrace arch_local_irq_restore(unsigned long flags) |
Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 15 | { |
| 16 | unsigned long long __dummy; |
| 17 | |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 18 | if (flags == ARCH_IRQ_DISABLED) { |
Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 19 | __asm__ __volatile__ ( |
| 20 | "getcon " __SR ", %0\n\t" |
| 21 | "or %0, %1, %0\n\t" |
| 22 | "putcon %0, " __SR "\n\t" |
| 23 | : "=&r" (__dummy) |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 24 | : "r" (ARCH_IRQ_DISABLED) |
Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 25 | ); |
| 26 | } else { |
| 27 | __asm__ __volatile__ ( |
| 28 | "getcon " __SR ", %0\n\t" |
| 29 | "and %0, %1, %0\n\t" |
| 30 | "putcon %0, " __SR "\n\t" |
| 31 | : "=&r" (__dummy) |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 32 | : "r" (~ARCH_IRQ_DISABLED) |
Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 33 | ); |
| 34 | } |
| 35 | } |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 36 | EXPORT_SYMBOL(arch_local_irq_restore); |
Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 37 | |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 38 | unsigned long notrace arch_local_save_flags(void) |
Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 39 | { |
| 40 | unsigned long flags; |
| 41 | |
| 42 | __asm__ __volatile__ ( |
| 43 | "getcon " __SR ", %0\n\t" |
| 44 | "and %0, %1, %0" |
| 45 | : "=&r" (flags) |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 46 | : "r" (ARCH_IRQ_DISABLED) |
Paul Mundt | 03fdb70 | 2009-10-17 21:06:39 +0900 | [diff] [blame] | 47 | ); |
| 48 | |
| 49 | return flags; |
| 50 | } |
Paul Mundt | 31b37c7 | 2010-10-27 15:34:51 +0900 | [diff] [blame] | 51 | EXPORT_SYMBOL(arch_local_save_flags); |