Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243213
b: refs/heads/master
c: 0fdb4b2
h: refs/heads/master
i:
  243211: 61d1a19
v: v3
  • Loading branch information
David Daney authored and Thomas Gleixner committed Mar 27, 2011
1 parent c3696d9 commit b08a8f2
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 801a0e9ae36e9b487092e31699d28c0b9a21ad52
refs/heads/master: 0fdb4b259ed3e91b687ac26848202f5e7c217e62
8 changes: 8 additions & 0 deletions trunk/include/linux/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,8 @@ static inline bool irqd_irq_disabled(struct irq_data *d)
* @irq_set_wake: enable/disable power-management wake-on of an IRQ
* @irq_bus_lock: function to lock access to slow bus (i2c) chips
* @irq_bus_sync_unlock:function to sync and unlock slow bus (i2c) chips
* @irq_cpu_online: configure an interrupt source for a secondary CPU
* @irq_cpu_offline: un-configure an interrupt source for a secondary CPU
* @irq_print_chip: optional to print special chip info in show_interrupts
* @flags: chip specific flags
*
Expand Down Expand Up @@ -327,6 +329,9 @@ struct irq_chip {
void (*irq_bus_lock)(struct irq_data *data);
void (*irq_bus_sync_unlock)(struct irq_data *data);

void (*irq_cpu_online)(struct irq_data *data);
void (*irq_cpu_offline)(struct irq_data *data);

void (*irq_print_chip)(struct irq_data *data, struct seq_file *p);

unsigned long flags;
Expand Down Expand Up @@ -372,6 +377,9 @@ struct irqaction;
extern int setup_irq(unsigned int irq, struct irqaction *new);
extern void remove_irq(unsigned int irq, struct irqaction *act);

extern void irq_cpu_online(void);
extern void irq_cpu_offline(void);

#ifdef CONFIG_GENERIC_HARDIRQS

#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_PENDING_IRQ)
Expand Down
58 changes: 58 additions & 0 deletions trunk/kernel/irq/chip.c
Original file line number Diff line number Diff line change
Expand Up @@ -696,3 +696,61 @@ void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set)

irq_put_desc_unlock(desc, flags);
}

/**
* irq_cpu_online - Invoke all irq_cpu_online functions.
*
* Iterate through all irqs and invoke the chip.irq_cpu_online()
* for each.
*/
void irq_cpu_online(void)
{
struct irq_desc *desc;
struct irq_chip *chip;
unsigned long flags;
unsigned int irq;

for_each_active_irq(irq) {
desc = irq_to_desc(irq);
if (!desc)
continue;

raw_spin_lock_irqsave(&desc->lock, flags);

chip = irq_data_get_irq_chip(&desc->irq_data);

if (chip && chip->irq_cpu_online)
chip->irq_cpu_online(&desc->irq_data);

raw_spin_unlock_irqrestore(&desc->lock, flags);
}
}

/**
* irq_cpu_offline - Invoke all irq_cpu_offline functions.
*
* Iterate through all irqs and invoke the chip.irq_cpu_offline()
* for each.
*/
void irq_cpu_offline(void)
{
struct irq_desc *desc;
struct irq_chip *chip;
unsigned long flags;
unsigned int irq;

for_each_active_irq(irq) {
desc = irq_to_desc(irq);
if (!desc)
continue;

raw_spin_lock_irqsave(&desc->lock, flags);

chip = irq_data_get_irq_chip(&desc->irq_data);

if (chip && chip->irq_cpu_offline)
chip->irq_cpu_offline(&desc->irq_data);

raw_spin_unlock_irqrestore(&desc->lock, flags);
}
}

0 comments on commit b08a8f2

Please sign in to comment.