blob: 039270b9b73bf91f76b079f2bf756b97c8cd27e1 [file] [log] [blame]
Jeff Dike2ea5bc52007-05-10 22:22:32 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 * Derived (i.e. mostly copied) from arch/i386/kernel/irq.c:
5 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
6 */
7
Jeff Dikeba180fd2007-10-16 01:27:00 -07008#include "linux/cpumask.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include "linux/hardirq.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -070010#include "linux/interrupt.h"
11#include "linux/kernel_stat.h"
12#include "linux/module.h"
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040013#include "linux/sched.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -070014#include "linux/seq_file.h"
Jeff Dikec14b8492007-05-10 22:22:34 -070015#include "as-layout.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -070016#include "kern_util.h"
17#include "os.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/*
20 * Generic, controller-independent functions:
21 */
22
23int show_interrupts(struct seq_file *p, void *v)
24{
25 int i = *(loff_t *) v, j;
26 struct irqaction * action;
27 unsigned long flags;
28
29 if (i == 0) {
30 seq_printf(p, " ");
31 for_each_online_cpu(j)
32 seq_printf(p, "CPU%d ",j);
33 seq_putc(p, '\n');
34 }
35
36 if (i < NR_IRQS) {
37 spin_lock_irqsave(&irq_desc[i].lock, flags);
38 action = irq_desc[i].action;
Jeff Dike2ea5bc52007-05-10 22:22:32 -070039 if (!action)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 goto skip;
41 seq_printf(p, "%3d: ",i);
42#ifndef CONFIG_SMP
43 seq_printf(p, "%10u ", kstat_irqs(i));
44#else
45 for_each_online_cpu(j)
Yinghai Ludee41022009-01-11 00:29:15 -080046 seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
Ingo Molnard1bef4e2006-06-29 02:24:36 -070048 seq_printf(p, " %14s", irq_desc[i].chip->typename);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 seq_printf(p, " %s", action->name);
50
51 for (action=action->next; action; action = action->next)
52 seq_printf(p, ", %s", action->name);
53
54 seq_putc(p, '\n');
55skip:
56 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
Jeff Dikeba180fd2007-10-16 01:27:00 -070057 } else if (i == NR_IRQS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 seq_putc(p, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 return 0;
61}
62
Jeff Diked973a772007-05-06 14:51:27 -070063/*
64 * This list is accessed under irq_lock, except in sigio_handler,
65 * where it is safe from being modified. IRQ handlers won't change it -
66 * if an IRQ source has vanished, it will be freed by free_irqs just
67 * before returning from sigio_handler. That will process a separate
68 * list of irqs to free, with its own locking, coming back here to
69 * remove list elements, taking the irq_lock to do so.
70 */
Jeff Dikef2e62992007-02-10 01:44:23 -080071static struct irq_fd *active_fds = NULL;
Jeff Dike9b4f0182006-03-27 01:14:31 -080072static struct irq_fd **last_irq_ptr = &active_fds;
73
74extern void free_irqs(void);
75
Jeff Dike77bf4402007-10-16 01:26:58 -070076void sigio_handler(int sig, struct uml_pt_regs *regs)
Jeff Dike9b4f0182006-03-27 01:14:31 -080077{
78 struct irq_fd *irq_fd;
79 int n;
80
Jesper Juhl191ef962006-05-01 12:15:57 -070081 if (smp_sigio_handler())
82 return;
83
84 while (1) {
Jeff Dike9b4f0182006-03-27 01:14:31 -080085 n = os_waiting_for_events(active_fds);
86 if (n <= 0) {
Jeff Dikeba180fd2007-10-16 01:27:00 -070087 if (n == -EINTR)
88 continue;
Jeff Dike9b4f0182006-03-27 01:14:31 -080089 else break;
90 }
91
Jeff Dikeba180fd2007-10-16 01:27:00 -070092 for (irq_fd = active_fds; irq_fd != NULL;
93 irq_fd = irq_fd->next) {
Jesper Juhl191ef962006-05-01 12:15:57 -070094 if (irq_fd->current_events != 0) {
Jeff Dike9b4f0182006-03-27 01:14:31 -080095 irq_fd->current_events = 0;
96 do_IRQ(irq_fd->irq, regs);
97 }
98 }
99 }
100
101 free_irqs();
102}
103
Jeff Dikebfaafd72006-07-10 04:45:10 -0700104static DEFINE_SPINLOCK(irq_lock);
105
WANG Cong4c182ae2008-07-23 21:28:47 -0700106static int activate_fd(int irq, int fd, int type, void *dev_id)
Jeff Dike9b4f0182006-03-27 01:14:31 -0800107{
108 struct pollfd *tmp_pfd;
109 struct irq_fd *new_fd, *irq_fd;
110 unsigned long flags;
Jeff Dikebf8fde72008-02-04 22:31:04 -0800111 int events, err, n;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800112
Jeff Dikebf8fde72008-02-04 22:31:04 -0800113 err = os_set_fd_async(fd);
Jesper Juhl191ef962006-05-01 12:15:57 -0700114 if (err < 0)
Jeff Dike9b4f0182006-03-27 01:14:31 -0800115 goto out;
116
Jeff Dike9b4f0182006-03-27 01:14:31 -0800117 err = -ENOMEM;
Jeff Dikef2e62992007-02-10 01:44:23 -0800118 new_fd = kmalloc(sizeof(struct irq_fd), GFP_KERNEL);
Jesper Juhl191ef962006-05-01 12:15:57 -0700119 if (new_fd == NULL)
Jeff Dike9b4f0182006-03-27 01:14:31 -0800120 goto out;
121
Jesper Juhl191ef962006-05-01 12:15:57 -0700122 if (type == IRQ_READ)
123 events = UM_POLLIN | UM_POLLPRI;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700124 else events = UM_POLLOUT;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800125 *new_fd = ((struct irq_fd) { .next = NULL,
126 .id = dev_id,
127 .fd = fd,
128 .type = type,
129 .irq = irq,
Jeff Dike9b4f0182006-03-27 01:14:31 -0800130 .events = events,
131 .current_events = 0 } );
132
Paolo 'Blaisorblade' Giarrusso0f978692007-03-07 20:41:13 -0800133 err = -EBUSY;
Jeff Dikebfaafd72006-07-10 04:45:10 -0700134 spin_lock_irqsave(&irq_lock, flags);
Jesper Juhl191ef962006-05-01 12:15:57 -0700135 for (irq_fd = active_fds; irq_fd != NULL; irq_fd = irq_fd->next) {
136 if ((irq_fd->fd == fd) && (irq_fd->type == type)) {
Jeff Dikeba180fd2007-10-16 01:27:00 -0700137 printk(KERN_ERR "Registering fd %d twice\n", fd);
138 printk(KERN_ERR "Irqs : %d, %d\n", irq_fd->irq, irq);
139 printk(KERN_ERR "Ids : 0x%p, 0x%p\n", irq_fd->id,
140 dev_id);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800141 goto out_unlock;
142 }
143 }
144
Jesper Juhl191ef962006-05-01 12:15:57 -0700145 if (type == IRQ_WRITE)
Jeff Dike9b4f0182006-03-27 01:14:31 -0800146 fd = -1;
147
148 tmp_pfd = NULL;
149 n = 0;
150
Jesper Juhl191ef962006-05-01 12:15:57 -0700151 while (1) {
Jeff Dike9b4f0182006-03-27 01:14:31 -0800152 n = os_create_pollfd(fd, events, tmp_pfd, n);
153 if (n == 0)
154 break;
155
Jeff Dikeba180fd2007-10-16 01:27:00 -0700156 /*
157 * n > 0
Jeff Dike9b4f0182006-03-27 01:14:31 -0800158 * It means we couldn't put new pollfd to current pollfds
159 * and tmp_fds is NULL or too small for new pollfds array.
160 * Needed size is equal to n as minimum.
161 *
162 * Here we have to drop the lock in order to call
163 * kmalloc, which might sleep.
164 * If something else came in and changed the pollfds array
165 * so we will not be able to put new pollfd struct to pollfds
166 * then we free the buffer tmp_fds and try again.
167 */
Jeff Dikebfaafd72006-07-10 04:45:10 -0700168 spin_unlock_irqrestore(&irq_lock, flags);
Jesper Juhl191ef962006-05-01 12:15:57 -0700169 kfree(tmp_pfd);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800170
Jeff Dikef2e62992007-02-10 01:44:23 -0800171 tmp_pfd = kmalloc(n, GFP_KERNEL);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800172 if (tmp_pfd == NULL)
173 goto out_kfree;
174
Jeff Dikebfaafd72006-07-10 04:45:10 -0700175 spin_lock_irqsave(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800176 }
Jeff Dike9b4f0182006-03-27 01:14:31 -0800177
178 *last_irq_ptr = new_fd;
179 last_irq_ptr = &new_fd->next;
180
Jeff Dikebfaafd72006-07-10 04:45:10 -0700181 spin_unlock_irqrestore(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800182
Jeff Dikeba180fd2007-10-16 01:27:00 -0700183 /*
184 * This calls activate_fd, so it has to be outside the critical
Jeff Dike9b4f0182006-03-27 01:14:31 -0800185 * section.
186 */
Jeff Dike8e64d96a2006-07-10 04:45:11 -0700187 maybe_sigio_broken(fd, (type == IRQ_READ));
Jeff Dike9b4f0182006-03-27 01:14:31 -0800188
Jeff Dike19bdf042006-09-25 23:33:04 -0700189 return 0;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800190
191 out_unlock:
Jeff Dikebfaafd72006-07-10 04:45:10 -0700192 spin_unlock_irqrestore(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800193 out_kfree:
194 kfree(new_fd);
195 out:
Jeff Dike19bdf042006-09-25 23:33:04 -0700196 return err;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800197}
198
199static void free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg)
200{
201 unsigned long flags;
202
Jeff Dikebfaafd72006-07-10 04:45:10 -0700203 spin_lock_irqsave(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800204 os_free_irq_by_cb(test, arg, active_fds, &last_irq_ptr);
Jeff Dikebfaafd72006-07-10 04:45:10 -0700205 spin_unlock_irqrestore(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800206}
207
208struct irq_and_dev {
209 int irq;
210 void *dev;
211};
212
213static int same_irq_and_dev(struct irq_fd *irq, void *d)
214{
215 struct irq_and_dev *data = d;
216
Jesper Juhl191ef962006-05-01 12:15:57 -0700217 return ((irq->irq == data->irq) && (irq->id == data->dev));
Jeff Dike9b4f0182006-03-27 01:14:31 -0800218}
219
WANG Cong4c182ae2008-07-23 21:28:47 -0700220static void free_irq_by_irq_and_dev(unsigned int irq, void *dev)
Jeff Dike9b4f0182006-03-27 01:14:31 -0800221{
222 struct irq_and_dev data = ((struct irq_and_dev) { .irq = irq,
223 .dev = dev });
224
225 free_irq_by_cb(same_irq_and_dev, &data);
226}
227
228static int same_fd(struct irq_fd *irq, void *fd)
229{
Jesper Juhl191ef962006-05-01 12:15:57 -0700230 return (irq->fd == *((int *)fd));
Jeff Dike9b4f0182006-03-27 01:14:31 -0800231}
232
233void free_irq_by_fd(int fd)
234{
235 free_irq_by_cb(same_fd, &fd);
236}
237
Jeff Diked973a772007-05-06 14:51:27 -0700238/* Must be called with irq_lock held */
Jeff Dike9b4f0182006-03-27 01:14:31 -0800239static struct irq_fd *find_irq_by_fd(int fd, int irqnum, int *index_out)
240{
241 struct irq_fd *irq;
242 int i = 0;
243 int fdi;
244
Jesper Juhl191ef962006-05-01 12:15:57 -0700245 for (irq = active_fds; irq != NULL; irq = irq->next) {
246 if ((irq->fd == fd) && (irq->irq == irqnum))
247 break;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800248 i++;
249 }
Jesper Juhl191ef962006-05-01 12:15:57 -0700250 if (irq == NULL) {
Jeff Dikeba180fd2007-10-16 01:27:00 -0700251 printk(KERN_ERR "find_irq_by_fd doesn't have descriptor %d\n",
252 fd);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800253 goto out;
254 }
255 fdi = os_get_pollfd(i);
Jesper Juhl191ef962006-05-01 12:15:57 -0700256 if ((fdi != -1) && (fdi != fd)) {
Jeff Dikeba180fd2007-10-16 01:27:00 -0700257 printk(KERN_ERR "find_irq_by_fd - mismatch between active_fds "
258 "and pollfds, fd %d vs %d, need %d\n", irq->fd,
Jeff Dike9b4f0182006-03-27 01:14:31 -0800259 fdi, fd);
260 irq = NULL;
261 goto out;
262 }
263 *index_out = i;
264 out:
Jesper Juhl191ef962006-05-01 12:15:57 -0700265 return irq;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800266}
267
268void reactivate_fd(int fd, int irqnum)
269{
270 struct irq_fd *irq;
271 unsigned long flags;
272 int i;
273
Jeff Dikebfaafd72006-07-10 04:45:10 -0700274 spin_lock_irqsave(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800275 irq = find_irq_by_fd(fd, irqnum, &i);
Jesper Juhl191ef962006-05-01 12:15:57 -0700276 if (irq == NULL) {
Jeff Dikebfaafd72006-07-10 04:45:10 -0700277 spin_unlock_irqrestore(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800278 return;
279 }
280 os_set_pollfd(i, irq->fd);
Jeff Dikebfaafd72006-07-10 04:45:10 -0700281 spin_unlock_irqrestore(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800282
Jeff Dike19bdf042006-09-25 23:33:04 -0700283 add_sigio_fd(fd);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800284}
285
286void deactivate_fd(int fd, int irqnum)
287{
288 struct irq_fd *irq;
289 unsigned long flags;
290 int i;
291
Jeff Dikebfaafd72006-07-10 04:45:10 -0700292 spin_lock_irqsave(&irq_lock, flags);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800293 irq = find_irq_by_fd(fd, irqnum, &i);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700294 if (irq == NULL) {
Jeff Dike19bdf042006-09-25 23:33:04 -0700295 spin_unlock_irqrestore(&irq_lock, flags);
296 return;
297 }
298
Jeff Dike9b4f0182006-03-27 01:14:31 -0800299 os_set_pollfd(i, -1);
Jeff Dikebfaafd72006-07-10 04:45:10 -0700300 spin_unlock_irqrestore(&irq_lock, flags);
Jeff Dike19bdf042006-09-25 23:33:04 -0700301
302 ignore_sigio_fd(fd);
Jeff Dike9b4f0182006-03-27 01:14:31 -0800303}
304
Jeff Diked973a772007-05-06 14:51:27 -0700305/*
306 * Called just before shutdown in order to provide a clean exec
307 * environment in case the system is rebooting. No locking because
308 * that would cause a pointless shutdown hang if something hadn't
309 * released the lock.
310 */
Jeff Dike9b4f0182006-03-27 01:14:31 -0800311int deactivate_all_fds(void)
312{
313 struct irq_fd *irq;
314 int err;
315
Jesper Juhl191ef962006-05-01 12:15:57 -0700316 for (irq = active_fds; irq != NULL; irq = irq->next) {
Jeff Dike9b4f0182006-03-27 01:14:31 -0800317 err = os_clear_fd_async(irq->fd);
Jesper Juhl191ef962006-05-01 12:15:57 -0700318 if (err)
319 return err;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800320 }
321 /* If there is a signal already queued, after unblocking ignore it */
322 os_set_ioignore();
323
Jesper Juhl191ef962006-05-01 12:15:57 -0700324 return 0;
Jeff Dike9b4f0182006-03-27 01:14:31 -0800325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/*
Simon Arlottb60745b2007-10-20 01:23:03 +0200328 * do_IRQ handles all normal device IRQs (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * SMP cross-CPU interrupts have their own specific
330 * handlers).
331 */
Jeff Dike77bf4402007-10-16 01:26:58 -0700332unsigned int do_IRQ(int irq, struct uml_pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Al Viro7bea96f2006-10-08 22:49:34 +0100334 struct pt_regs *old_regs = set_irq_regs((struct pt_regs *)regs);
335 irq_enter();
336 __do_IRQ(irq);
337 irq_exit();
338 set_irq_regs(old_regs);
339 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342int um_request_irq(unsigned int irq, int fd, int type,
David Howells40220c12006-10-09 12:19:47 +0100343 irq_handler_t handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 unsigned long irqflags, const char * devname,
345 void *dev_id)
346{
347 int err;
348
Jeff Dike9ac625a2007-11-14 17:00:23 -0800349 if (fd != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 err = activate_fd(irq, fd, type, dev_id);
Jeff Dike9ac625a2007-11-14 17:00:23 -0800351 if (err)
352 return err;
353 }
354
355 return request_irq(irq, handler, irqflags, devname, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Jeff Dike9ac625a2007-11-14 17:00:23 -0800357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358EXPORT_SYMBOL(um_request_irq);
359EXPORT_SYMBOL(reactivate_fd);
360
Jeff Dikeba180fd2007-10-16 01:27:00 -0700361/*
Thomas Gleixner6fa851c2009-06-16 15:33:29 -0700362 * irq_chip must define (startup || enable) &&
Jeff Dikeba180fd2007-10-16 01:27:00 -0700363 * (shutdown || disable) && end
364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365static void dummy(unsigned int irq)
366{
367}
368
Paolo 'Blaisorblade' Giarrussodbce7062005-06-21 17:16:19 -0700369/* This is used for everything else than the timer. */
Thomas Gleixner6fa851c2009-06-16 15:33:29 -0700370static struct irq_chip normal_irq_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 .typename = "SIGIO",
Paolo 'Blaisorblade' Giarrussodbce7062005-06-21 17:16:19 -0700372 .release = free_irq_by_irq_and_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 .disable = dummy,
374 .enable = dummy,
375 .ack = dummy,
376 .end = dummy
377};
378
Thomas Gleixner6fa851c2009-06-16 15:33:29 -0700379static struct irq_chip SIGVTALRM_irq_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 .typename = "SIGVTALRM",
Paolo 'Blaisorblade' Giarrussodbce7062005-06-21 17:16:19 -0700381 .release = free_irq_by_irq_and_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 .shutdown = dummy, /* never called */
383 .disable = dummy,
384 .enable = dummy,
385 .ack = dummy,
386 .end = dummy
387};
388
389void __init init_IRQ(void)
390{
391 int i;
392
393 irq_desc[TIMER_IRQ].status = IRQ_DISABLED;
394 irq_desc[TIMER_IRQ].action = NULL;
395 irq_desc[TIMER_IRQ].depth = 1;
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700396 irq_desc[TIMER_IRQ].chip = &SIGVTALRM_irq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 enable_irq(TIMER_IRQ);
Jesper Juhl191ef962006-05-01 12:15:57 -0700398 for (i = 1; i < NR_IRQS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 irq_desc[i].status = IRQ_DISABLED;
400 irq_desc[i].action = NULL;
401 irq_desc[i].depth = 1;
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700402 irq_desc[i].chip = &normal_irq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 enable_irq(i);
404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Jeff Dikec14b8492007-05-10 22:22:34 -0700407/*
408 * IRQ stack entry and exit:
409 *
410 * Unlike i386, UML doesn't receive IRQs on the normal kernel stack
411 * and switch over to the IRQ stack after some preparation. We use
412 * sigaltstack to receive signals on a separate stack from the start.
413 * These two functions make sure the rest of the kernel won't be too
414 * upset by being on a different stack. The IRQ stack has a
415 * thread_info structure at the bottom so that current et al continue
416 * to work.
417 *
418 * to_irq_stack copies the current task's thread_info to the IRQ stack
419 * thread_info and sets the tasks's stack to point to the IRQ stack.
420 *
421 * from_irq_stack copies the thread_info struct back (flags may have
422 * been modified) and resets the task's stack pointer.
423 *
424 * Tricky bits -
425 *
426 * What happens when two signals race each other? UML doesn't block
427 * signals with sigprocmask, SA_DEFER, or sa_mask, so a second signal
428 * could arrive while a previous one is still setting up the
429 * thread_info.
430 *
431 * There are three cases -
432 * The first interrupt on the stack - sets up the thread_info and
433 * handles the interrupt
434 * A nested interrupt interrupting the copying of the thread_info -
435 * can't handle the interrupt, as the stack is in an unknown state
436 * A nested interrupt not interrupting the copying of the
437 * thread_info - doesn't do any setup, just handles the interrupt
438 *
439 * The first job is to figure out whether we interrupted stack setup.
440 * This is done by xchging the signal mask with thread_info->pending.
441 * If the value that comes back is zero, then there is no setup in
442 * progress, and the interrupt can be handled. If the value is
443 * non-zero, then there is stack setup in progress. In order to have
444 * the interrupt handled, we leave our signal in the mask, and it will
445 * be handled by the upper handler after it has set up the stack.
446 *
447 * Next is to figure out whether we are the outer handler or a nested
448 * one. As part of setting up the stack, thread_info->real_thread is
449 * set to non-NULL (and is reset to NULL on exit). This is the
450 * nesting indicator. If it is non-NULL, then the stack is already
451 * set up and the handler can run.
452 */
453
454static unsigned long pending_mask;
455
Jeff Dike508a9272007-09-18 22:46:49 -0700456unsigned long to_irq_stack(unsigned long *mask_out)
Jeff Dikec14b8492007-05-10 22:22:34 -0700457{
458 struct thread_info *ti;
459 unsigned long mask, old;
460 int nested;
461
Jeff Dike508a9272007-09-18 22:46:49 -0700462 mask = xchg(&pending_mask, *mask_out);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700463 if (mask != 0) {
464 /*
465 * If any interrupts come in at this point, we want to
Jeff Dikec14b8492007-05-10 22:22:34 -0700466 * make sure that their bits aren't lost by our
467 * putting our bit in. So, this loop accumulates bits
468 * until xchg returns the same value that we put in.
469 * When that happens, there were no new interrupts,
470 * and pending_mask contains a bit for each interrupt
471 * that came in.
472 */
Jeff Dike508a9272007-09-18 22:46:49 -0700473 old = *mask_out;
Jeff Dikec14b8492007-05-10 22:22:34 -0700474 do {
475 old |= mask;
476 mask = xchg(&pending_mask, old);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700477 } while (mask != old);
Jeff Dikec14b8492007-05-10 22:22:34 -0700478 return 1;
479 }
480
481 ti = current_thread_info();
482 nested = (ti->real_thread != NULL);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700483 if (!nested) {
Jeff Dikec14b8492007-05-10 22:22:34 -0700484 struct task_struct *task;
485 struct thread_info *tti;
486
487 task = cpu_tasks[ti->cpu].task;
488 tti = task_thread_info(task);
Jeff Dike508a9272007-09-18 22:46:49 -0700489
Jeff Dikec14b8492007-05-10 22:22:34 -0700490 *ti = *tti;
491 ti->real_thread = tti;
492 task->stack = ti;
493 }
494
495 mask = xchg(&pending_mask, 0);
496 *mask_out |= mask | nested;
497 return 0;
498}
499
500unsigned long from_irq_stack(int nested)
501{
502 struct thread_info *ti, *to;
503 unsigned long mask;
504
505 ti = current_thread_info();
506
507 pending_mask = 1;
508
509 to = ti->real_thread;
510 current->stack = to;
511 ti->real_thread = NULL;
512 *to = *ti;
513
514 mask = xchg(&pending_mask, 0);
515 return mask & ~1;
516}
517