diff options
Diffstat (limited to 'kernel/irq/handle.c')
| -rw-r--r-- | kernel/irq/handle.c | 248 | 
1 files changed, 107 insertions, 141 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index e2347eb6330..63548027085 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c @@ -41,6 +41,7 @@ irqreturn_t no_action(int cpl, void *dev_id)  {  	return IRQ_NONE;  } +EXPORT_SYMBOL_GPL(no_action);  static void warn_no_thread(unsigned int irq, struct irqaction *action)  { @@ -51,31 +52,103 @@ static void warn_no_thread(unsigned int irq, struct irqaction *action)  	       "but no thread function available.", irq, action->name);  } -/** - * handle_IRQ_event - irq action chain handler - * @irq:	the interrupt number - * @action:	the interrupt action chain for this irq - * - * Handles the action chain of an irq event - */ -irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action) +void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action)  { -	irqreturn_t ret, retval = IRQ_NONE; -	unsigned int status = 0; +	/* +	 * In case the thread crashed and was killed we just pretend that +	 * we handled the interrupt. The hardirq handler has disabled the +	 * device interrupt, so no irq storm is lurking. +	 */ +	if (action->thread->flags & PF_EXITING) +		return; + +	/* +	 * Wake up the handler thread for this action. If the +	 * RUNTHREAD bit is already set, nothing to do. +	 */ +	if (test_and_set_bit(IRQTF_RUNTHREAD, &action->thread_flags)) +		return; + +	/* +	 * It's safe to OR the mask lockless here. We have only two +	 * places which write to threads_oneshot: This code and the +	 * irq thread. +	 * +	 * This code is the hard irq context and can never run on two +	 * cpus in parallel. If it ever does we have more serious +	 * problems than this bitmask. +	 * +	 * The irq threads of this irq which clear their "running" bit +	 * in threads_oneshot are serialized via desc->lock against +	 * each other and they are serialized against this code by +	 * IRQS_INPROGRESS. +	 * +	 * Hard irq handler: +	 * +	 *	spin_lock(desc->lock); +	 *	desc->state |= IRQS_INPROGRESS; +	 *	spin_unlock(desc->lock); +	 *	set_bit(IRQTF_RUNTHREAD, &action->thread_flags); +	 *	desc->threads_oneshot |= mask; +	 *	spin_lock(desc->lock); +	 *	desc->state &= ~IRQS_INPROGRESS; +	 *	spin_unlock(desc->lock); +	 * +	 * irq thread: +	 * +	 * again: +	 *	spin_lock(desc->lock); +	 *	if (desc->state & IRQS_INPROGRESS) { +	 *		spin_unlock(desc->lock); +	 *		while(desc->state & IRQS_INPROGRESS) +	 *			cpu_relax(); +	 *		goto again; +	 *	} +	 *	if (!test_bit(IRQTF_RUNTHREAD, &action->thread_flags)) +	 *		desc->threads_oneshot &= ~mask; +	 *	spin_unlock(desc->lock); +	 * +	 * So either the thread waits for us to clear IRQS_INPROGRESS +	 * or we are waiting in the flow handler for desc->lock to be +	 * released before we reach this point. The thread also checks +	 * IRQTF_RUNTHREAD under desc->lock. If set it leaves +	 * threads_oneshot untouched and runs the thread another time. +	 */ +	desc->threads_oneshot |= action->thread_mask; + +	/* +	 * We increment the threads_active counter in case we wake up +	 * the irq thread. The irq thread decrements the counter when +	 * it returns from the handler or in the exit path and wakes +	 * up waiters which are stuck in synchronize_irq() when the +	 * active count becomes zero. synchronize_irq() is serialized +	 * against this code (hard irq handler) via IRQS_INPROGRESS +	 * like the finalize_oneshot() code. See comment above. +	 */ +	atomic_inc(&desc->threads_active); + +	wake_up_process(action->thread); +} + +irqreturn_t +handle_irq_event_percpu(struct irq_desc *desc, struct irqaction *action) +{ +	irqreturn_t retval = IRQ_NONE; +	unsigned int flags = 0, irq = desc->irq_data.irq;  	do { +		irqreturn_t res; +  		trace_irq_handler_entry(irq, action); -		ret = action->handler(irq, action->dev_id); -		trace_irq_handler_exit(irq, action, ret); +		res = action->handler(irq, action->dev_id); +		trace_irq_handler_exit(irq, action, res); -		switch (ret) { -		case IRQ_WAKE_THREAD: -			/* -			 * Set result to handled so the spurious check -			 * does not trigger. -			 */ -			ret = IRQ_HANDLED; +		if (WARN_ONCE(!irqs_disabled(),"irq %u handler %pF enabled interrupts\n", +			      irq, action->handler)) +			local_irq_disable(); +		switch (res) { +		case IRQ_WAKE_THREAD:  			/*  			 * Catch drivers which return WAKE_THREAD but  			 * did not set up a thread function @@ -85,147 +158,40 @@ irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)  				break;  			} -			/* -			 * Wake up the handler thread for this -			 * action. In case the thread crashed and was -			 * killed we just pretend that we handled the -			 * interrupt. The hardirq handler above has -			 * disabled the device interrupt, so no irq -			 * storm is lurking. -			 */ -			if (likely(!test_bit(IRQTF_DIED, -					     &action->thread_flags))) { -				set_bit(IRQTF_RUNTHREAD, &action->thread_flags); -				wake_up_process(action->thread); -			} +			__irq_wake_thread(desc, action);  			/* Fall through to add to randomness */  		case IRQ_HANDLED: -			status |= action->flags; +			flags |= action->flags;  			break;  		default:  			break;  		} -		retval |= ret; +		retval |= res;  		action = action->next;  	} while (action); -	if (status & IRQF_SAMPLE_RANDOM) -		add_interrupt_randomness(irq); -	local_irq_disable(); +	add_interrupt_randomness(irq, flags); +	if (!noirqdebug) +		note_interrupt(irq, desc, retval);  	return retval;  } -#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ - -#ifdef CONFIG_ENABLE_WARN_DEPRECATED -# warning __do_IRQ is deprecated. Please convert to proper flow handlers -#endif - -/** - * __do_IRQ - original all in one highlevel IRQ handler - * @irq:	the interrupt number - * - * __do_IRQ handles all normal device IRQ's (the special - * SMP cross-CPU interrupts have their own specific - * handlers). - * - * This is the original x86 implementation which is used for every - * interrupt type. - */ -unsigned int __do_IRQ(unsigned int irq) +irqreturn_t handle_irq_event(struct irq_desc *desc)  { -	struct irq_desc *desc = irq_to_desc(irq); -	struct irqaction *action; -	unsigned int status; +	struct irqaction *action = desc->action; +	irqreturn_t ret; -	kstat_incr_irqs_this_cpu(irq, desc); +	desc->istate &= ~IRQS_PENDING; +	irqd_set(&desc->irq_data, IRQD_IRQ_INPROGRESS); +	raw_spin_unlock(&desc->lock); -	if (CHECK_IRQ_PER_CPU(desc->status)) { -		irqreturn_t action_ret; - -		/* -		 * No locking required for CPU-local interrupts: -		 */ -		if (desc->irq_data.chip->ack) -			desc->irq_data.chip->ack(irq); -		if (likely(!(desc->status & IRQ_DISABLED))) { -			action_ret = handle_IRQ_event(irq, desc->action); -			if (!noirqdebug) -				note_interrupt(irq, desc, action_ret); -		} -		desc->irq_data.chip->end(irq); -		return 1; -	} +	ret = handle_irq_event_percpu(desc, action);  	raw_spin_lock(&desc->lock); -	if (desc->irq_data.chip->ack) -		desc->irq_data.chip->ack(irq); -	/* -	 * REPLAY is when Linux resends an IRQ that was dropped earlier -	 * WAITING is used by probe to mark irqs that are being tested -	 */ -	status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING); -	status |= IRQ_PENDING; /* we _want_ to handle it */ - -	/* -	 * If the IRQ is disabled for whatever reason, we cannot -	 * use the action we have. -	 */ -	action = NULL; -	if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) { -		action = desc->action; -		status &= ~IRQ_PENDING; /* we commit to handling */ -		status |= IRQ_INPROGRESS; /* we are handling it */ -	} -	desc->status = status; - -	/* -	 * If there is no IRQ handler or it was disabled, exit early. -	 * Since we set PENDING, if another processor is handling -	 * a different instance of this same irq, the other processor -	 * will take care of it. -	 */ -	if (unlikely(!action)) -		goto out; - -	/* -	 * Edge triggered interrupts need to remember -	 * pending events. -	 * This applies to any hw interrupts that allow a second -	 * instance of the same irq to arrive while we are in do_IRQ -	 * or in the handler. But the code here only handles the _second_ -	 * instance of the irq, not the third or fourth. So it is mostly -	 * useful for irq hardware that does not mask cleanly in an -	 * SMP environment. -	 */ -	for (;;) { -		irqreturn_t action_ret; - -		raw_spin_unlock(&desc->lock); - -		action_ret = handle_IRQ_event(irq, action); -		if (!noirqdebug) -			note_interrupt(irq, desc, action_ret); - -		raw_spin_lock(&desc->lock); -		if (likely(!(desc->status & IRQ_PENDING))) -			break; -		desc->status &= ~IRQ_PENDING; -	} -	desc->status &= ~IRQ_INPROGRESS; - -out: -	/* -	 * The ->end() handler has to deal with interrupts which got -	 * disabled while the handler was running. -	 */ -	desc->irq_data.chip->end(irq); -	raw_spin_unlock(&desc->lock); - -	return 1; +	irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS); +	return ret;  } -#endif  | 
