2 * Support for hardware-assisted userspace interrupt masking.
4 * Copyright (C) 2010 Paul Mundt
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
10 #define pr_fmt(fmt) "intc: " fmt
12 #include <linux/errno.h>
13 #include <linux/device.h>
14 #include <linux/init.h>
16 #include <linux/stat.h>
17 #include <asm/sizes.h>
18 #include "internals.h"
20 static void __iomem
*uimask
;
23 show_intc_userimask(struct device
*dev
,
24 struct device_attribute
*attr
, char *buf
)
26 return sprintf(buf
, "%d\n", (__raw_readl(uimask
) >> 4) & 0xf);
30 store_intc_userimask(struct device
*dev
,
31 struct device_attribute
*attr
,
32 const char *buf
, size_t count
)
36 level
= simple_strtoul(buf
, NULL
, 10);
39 * Minimal acceptable IRQ levels are in the 2 - 16 range, but
40 * these are chomped so as to not interfere with normal IRQs.
42 * Level 1 is a special case on some CPUs in that it's not
43 * directly settable, but given that USERIMASK cuts off below a
44 * certain level, we don't care about this limitation here.
45 * Level 0 on the other hand equates to user masking disabled.
47 * We use the default priority level as a cut off so that only
48 * special case opt-in IRQs can be mangled.
50 if (level
>= intc_get_dfl_prio_level())
53 __raw_writel(0xa5 << 24 | level
<< 4, uimask
);
58 static DEVICE_ATTR(userimask
, S_IRUSR
| S_IWUSR
,
59 show_intc_userimask
, store_intc_userimask
);
62 static int __init
userimask_sysdev_init(void)
64 if (unlikely(!uimask
))
67 return device_create_file(intc_subsys
.dev_root
, &dev_attr_userimask
);
69 late_initcall(userimask_sysdev_init
);
71 int register_intc_userimask(unsigned long addr
)
76 uimask
= ioremap_nocache(addr
, SZ_4K
);
77 if (unlikely(!uimask
))
80 pr_info("userimask support registered for levels 0 -> %d\n",
81 intc_get_dfl_prio_level() - 1);