diff options
| author | Patrick McHardy <kaber@trash.net> | 2011-04-13 07:32:28 -0400 |
|---|---|---|
| committer | Patrick McHardy <kaber@trash.net> | 2011-04-13 07:32:28 -0400 |
| commit | b32e3dc7860d00124fa432dba09667e647cb9bcc (patch) | |
| tree | 2fa6e56f389431dfb84609d3d7572cad76e88e71 /arch/microblaze/kernel | |
| parent | 6604271c5bc658a6067ed0c3deba4d89e0e50382 (diff) | |
| parent | 96120d86fe302c006259baee9061eea9e1b9e486 (diff) | |
Merge branch 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6
Diffstat (limited to 'arch/microblaze/kernel')
| -rw-r--r-- | arch/microblaze/kernel/cpu/Makefile | 2 | ||||
| -rw-r--r-- | arch/microblaze/kernel/intc.c | 6 | ||||
| -rw-r--r-- | arch/microblaze/kernel/irq.c | 42 |
3 files changed, 4 insertions, 46 deletions
diff --git a/arch/microblaze/kernel/cpu/Makefile b/arch/microblaze/kernel/cpu/Makefile index 59cc7bceaf8c..fceed4edea41 100644 --- a/arch/microblaze/kernel/cpu/Makefile +++ b/arch/microblaze/kernel/cpu/Makefile | |||
| @@ -6,7 +6,7 @@ ifdef CONFIG_FUNCTION_TRACER | |||
| 6 | CFLAGS_REMOVE_cache.o = -pg | 6 | CFLAGS_REMOVE_cache.o = -pg |
| 7 | endif | 7 | endif |
| 8 | 8 | ||
| 9 | EXTRA_CFLAGS += -DCPU_MAJOR=$(CPU_MAJOR) -DCPU_MINOR=$(CPU_MINOR) \ | 9 | ccflags-y := -DCPU_MAJOR=$(CPU_MAJOR) -DCPU_MINOR=$(CPU_MINOR) \ |
| 10 | -DCPU_REV=$(CPU_REV) | 10 | -DCPU_REV=$(CPU_REV) |
| 11 | 11 | ||
| 12 | obj-y += cache.o cpuinfo.o cpuinfo-pvr-full.o cpuinfo-static.o mb.o pvr.o | 12 | obj-y += cache.o cpuinfo.o cpuinfo-pvr-full.o cpuinfo-static.o mb.o pvr.o |
diff --git a/arch/microblaze/kernel/intc.c b/arch/microblaze/kernel/intc.c index e4661285118e..5ba7e162833b 100644 --- a/arch/microblaze/kernel/intc.c +++ b/arch/microblaze/kernel/intc.c | |||
| @@ -50,7 +50,7 @@ static void intc_enable_or_unmask(struct irq_data *d) | |||
| 50 | * ack function since the handle_level_irq function | 50 | * ack function since the handle_level_irq function |
| 51 | * acks the irq before calling the interrupt handler | 51 | * acks the irq before calling the interrupt handler |
| 52 | */ | 52 | */ |
| 53 | if (irq_to_desc(d->irq)->status & IRQ_LEVEL) | 53 | if (irqd_is_level_type(d)) |
| 54 | out_be32(INTC_BASE + IAR, mask); | 54 | out_be32(INTC_BASE + IAR, mask); |
| 55 | } | 55 | } |
| 56 | 56 | ||
| @@ -157,11 +157,11 @@ void __init init_IRQ(void) | |||
| 157 | 157 | ||
| 158 | for (i = 0; i < nr_irq; ++i) { | 158 | for (i = 0; i < nr_irq; ++i) { |
| 159 | if (intr_type & (0x00000001 << i)) { | 159 | if (intr_type & (0x00000001 << i)) { |
| 160 | set_irq_chip_and_handler_name(i, &intc_dev, | 160 | irq_set_chip_and_handler_name(i, &intc_dev, |
| 161 | handle_edge_irq, intc_dev.name); | 161 | handle_edge_irq, intc_dev.name); |
| 162 | irq_clear_status_flags(i, IRQ_LEVEL); | 162 | irq_clear_status_flags(i, IRQ_LEVEL); |
| 163 | } else { | 163 | } else { |
| 164 | set_irq_chip_and_handler_name(i, &intc_dev, | 164 | irq_set_chip_and_handler_name(i, &intc_dev, |
| 165 | handle_level_irq, intc_dev.name); | 165 | handle_level_irq, intc_dev.name); |
| 166 | irq_set_status_flags(i, IRQ_LEVEL); | 166 | irq_set_status_flags(i, IRQ_LEVEL); |
| 167 | } | 167 | } |
diff --git a/arch/microblaze/kernel/irq.c b/arch/microblaze/kernel/irq.c index 098822413729..ce7ac8435d5c 100644 --- a/arch/microblaze/kernel/irq.c +++ b/arch/microblaze/kernel/irq.c | |||
| @@ -47,48 +47,6 @@ next_irq: | |||
| 47 | trace_hardirqs_on(); | 47 | trace_hardirqs_on(); |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | int show_interrupts(struct seq_file *p, void *v) | ||
| 51 | { | ||
| 52 | int i = *(loff_t *) v, j; | ||
| 53 | struct irq_desc *desc; | ||
| 54 | struct irqaction *action; | ||
| 55 | unsigned long flags; | ||
| 56 | |||
| 57 | if (i == 0) { | ||
| 58 | seq_printf(p, " "); | ||
| 59 | for_each_online_cpu(j) | ||
| 60 | seq_printf(p, "CPU%-8d", j); | ||
| 61 | seq_putc(p, '\n'); | ||
| 62 | } | ||
| 63 | |||
| 64 | if (i < nr_irq) { | ||
| 65 | desc = irq_to_desc(i); | ||
| 66 | raw_spin_lock_irqsave(&desc->lock, flags); | ||
| 67 | action = desc->action; | ||
| 68 | if (!action) | ||
| 69 | goto skip; | ||
| 70 | seq_printf(p, "%3d: ", i); | ||
| 71 | #ifndef CONFIG_SMP | ||
| 72 | seq_printf(p, "%10u ", kstat_irqs(i)); | ||
| 73 | #else | ||
| 74 | for_each_online_cpu(j) | ||
| 75 | seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]); | ||
| 76 | #endif | ||
| 77 | seq_printf(p, " %8s", desc->status & | ||
| 78 | IRQ_LEVEL ? "level" : "edge"); | ||
| 79 | seq_printf(p, " %8s", desc->irq_data.chip->name); | ||
| 80 | seq_printf(p, " %s", action->name); | ||
| 81 | |||
| 82 | for (action = action->next; action; action = action->next) | ||
| 83 | seq_printf(p, ", %s", action->name); | ||
| 84 | |||
| 85 | seq_putc(p, '\n'); | ||
| 86 | skip: | ||
| 87 | raw_spin_unlock_irqrestore(&desc->lock, flags); | ||
| 88 | } | ||
| 89 | return 0; | ||
| 90 | } | ||
| 91 | |||
| 92 | /* MS: There is no any advance mapping mechanism. We are using simple 32bit | 50 | /* MS: There is no any advance mapping mechanism. We are using simple 32bit |
| 93 | intc without any cascades or any connection that's why mapping is 1:1 */ | 51 | intc without any cascades or any connection that's why mapping is 1:1 */ |
| 94 | unsigned int irq_create_mapping(struct irq_host *host, irq_hw_number_t hwirq) | 52 | unsigned int irq_create_mapping(struct irq_host *host, irq_hw_number_t hwirq) |
