udf: Fix lock inversion between iprune_mutex and alloc_mutex (v2)
[linux-2.6/mini2440.git] / arch / powerpc / sysdev / mpic_msi.c
blobde3e5e8bc3241e297ed321b240fb95edaa4350e2
1 /*
2 * Copyright 2006-2007, Michael Ellerman, IBM Corporation.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; version 2 of the
7 * License.
9 */
11 #include <linux/irq.h>
12 #include <linux/bitmap.h>
13 #include <linux/msi.h>
14 #include <asm/mpic.h>
15 #include <asm/prom.h>
16 #include <asm/hw_irq.h>
17 #include <asm/ppc-pci.h>
19 #include <sysdev/mpic.h>
21 static void __mpic_msi_reserve_hwirq(struct mpic *mpic, irq_hw_number_t hwirq)
23 pr_debug("mpic: reserving hwirq 0x%lx\n", hwirq);
24 bitmap_allocate_region(mpic->hwirq_bitmap, hwirq, 0);
27 void mpic_msi_reserve_hwirq(struct mpic *mpic, irq_hw_number_t hwirq)
29 unsigned long flags;
31 /* The mpic calls this even when there is no allocator setup */
32 if (!mpic->hwirq_bitmap)
33 return;
35 spin_lock_irqsave(&mpic->bitmap_lock, flags);
36 __mpic_msi_reserve_hwirq(mpic, hwirq);
37 spin_unlock_irqrestore(&mpic->bitmap_lock, flags);
40 irq_hw_number_t mpic_msi_alloc_hwirqs(struct mpic *mpic, int num)
42 unsigned long flags;
43 int offset, order = get_count_order(num);
45 spin_lock_irqsave(&mpic->bitmap_lock, flags);
47 * This is fast, but stricter than we need. We might want to add
48 * a fallback routine which does a linear search with no alignment.
50 offset = bitmap_find_free_region(mpic->hwirq_bitmap, mpic->irq_count,
51 order);
52 spin_unlock_irqrestore(&mpic->bitmap_lock, flags);
54 pr_debug("mpic: allocated 0x%x (2^%d) at offset 0x%x\n",
55 num, order, offset);
57 return offset;
60 void mpic_msi_free_hwirqs(struct mpic *mpic, int offset, int num)
62 unsigned long flags;
63 int order = get_count_order(num);
65 pr_debug("mpic: freeing 0x%x (2^%d) at offset 0x%x\n",
66 num, order, offset);
68 spin_lock_irqsave(&mpic->bitmap_lock, flags);
69 bitmap_release_region(mpic->hwirq_bitmap, offset, order);
70 spin_unlock_irqrestore(&mpic->bitmap_lock, flags);
73 #ifdef CONFIG_MPIC_U3_HT_IRQS
74 static int mpic_msi_reserve_u3_hwirqs(struct mpic *mpic)
76 irq_hw_number_t hwirq;
77 struct irq_host_ops *ops = mpic->irqhost->ops;
78 struct device_node *np;
79 int flags, index, i;
80 struct of_irq oirq;
82 pr_debug("mpic: found U3, guessing msi allocator setup\n");
84 /* Reserve source numbers we know are reserved in the HW */
85 for (i = 0; i < 8; i++)
86 __mpic_msi_reserve_hwirq(mpic, i);
88 for (i = 42; i < 46; i++)
89 __mpic_msi_reserve_hwirq(mpic, i);
91 for (i = 100; i < 105; i++)
92 __mpic_msi_reserve_hwirq(mpic, i);
94 np = NULL;
95 while ((np = of_find_all_nodes(np))) {
96 pr_debug("mpic: mapping hwirqs for %s\n", np->full_name);
98 index = 0;
99 while (of_irq_map_one(np, index++, &oirq) == 0) {
100 ops->xlate(mpic->irqhost, NULL, oirq.specifier,
101 oirq.size, &hwirq, &flags);
102 __mpic_msi_reserve_hwirq(mpic, hwirq);
106 return 0;
108 #else
109 static int mpic_msi_reserve_u3_hwirqs(struct mpic *mpic)
111 return -1;
113 #endif
115 static int mpic_msi_reserve_dt_hwirqs(struct mpic *mpic)
117 int i, len;
118 const u32 *p;
120 p = of_get_property(mpic->irqhost->of_node,
121 "msi-available-ranges", &len);
122 if (!p) {
123 pr_debug("mpic: no msi-available-ranges property found on %s\n",
124 mpic->irqhost->of_node->full_name);
125 return -ENODEV;
128 if (len % 8 != 0) {
129 printk(KERN_WARNING "mpic: Malformed msi-available-ranges "
130 "property on %s\n", mpic->irqhost->of_node->full_name);
131 return -EINVAL;
134 bitmap_allocate_region(mpic->hwirq_bitmap, 0,
135 get_count_order(mpic->irq_count));
137 /* Format is: (<u32 start> <u32 count>)+ */
138 len /= sizeof(u32);
139 for (i = 0; i < len / 2; i++, p += 2)
140 mpic_msi_free_hwirqs(mpic, *p, *(p + 1));
142 return 0;
145 int mpic_msi_init_allocator(struct mpic *mpic)
147 int rc, size;
149 BUG_ON(mpic->hwirq_bitmap);
150 spin_lock_init(&mpic->bitmap_lock);
152 size = BITS_TO_LONGS(mpic->irq_count) * sizeof(long);
153 pr_debug("mpic: allocator bitmap size is 0x%x bytes\n", size);
155 mpic->hwirq_bitmap = alloc_maybe_bootmem(size, GFP_KERNEL);
157 if (!mpic->hwirq_bitmap) {
158 pr_debug("mpic: ENOMEM allocating allocator bitmap!\n");
159 return -ENOMEM;
162 memset(mpic->hwirq_bitmap, 0, size);
164 rc = mpic_msi_reserve_dt_hwirqs(mpic);
165 if (rc) {
166 if (mpic->flags & MPIC_U3_HT_IRQS)
167 rc = mpic_msi_reserve_u3_hwirqs(mpic);
169 if (rc)
170 goto out_free;
173 return 0;
175 out_free:
176 if (mem_init_done)
177 kfree(mpic->hwirq_bitmap);
179 mpic->hwirq_bitmap = NULL;
180 return rc;