Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 1 | #include <linux/debugfs.h> |
| 2 | #include <linux/hardirq.h> |
| 3 | #include <linux/interrupt.h> |
Grant Likely | 08a543a | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 4 | #include <linux/irq.h> |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 5 | #include <linux/irqdesc.h> |
Grant Likely | 08a543a | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 6 | #include <linux/irqdomain.h> |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/mutex.h> |
| 9 | #include <linux/of.h> |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 10 | #include <linux/of_address.h> |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 11 | #include <linux/seq_file.h> |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 12 | #include <linux/slab.h> |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 13 | #include <linux/smp.h> |
| 14 | #include <linux/fs.h> |
Grant Likely | 08a543a | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 15 | |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 16 | #define IRQ_DOMAIN_MAP_LEGACY 0 /* driver allocated fixed range of irqs. |
| 17 | * ie. legacy 8259, gets irqs 1..15 */ |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 18 | #define IRQ_DOMAIN_MAP_NOMAP 1 /* no fast reverse mapping */ |
| 19 | #define IRQ_DOMAIN_MAP_LINEAR 2 /* linear map of interrupts */ |
| 20 | #define IRQ_DOMAIN_MAP_TREE 3 /* radix tree */ |
| 21 | |
Grant Likely | 08a543a | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 22 | static LIST_HEAD(irq_domain_list); |
| 23 | static DEFINE_MUTEX(irq_domain_mutex); |
| 24 | |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 25 | static DEFINE_MUTEX(revmap_trees_mutex); |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 26 | static struct irq_domain *irq_default_domain; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 27 | |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 28 | /** |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 29 | * irq_domain_alloc() - Allocate a new irq_domain data structure |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 30 | * @of_node: optional device-tree node of the interrupt controller |
| 31 | * @revmap_type: type of reverse mapping to use |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 32 | * @ops: map/unmap domain callbacks |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 33 | * @host_data: Controller private data pointer |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 34 | * |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 35 | * Allocates and initialize and irq_domain structure. Caller is expected to |
| 36 | * register allocated irq_domain with irq_domain_register(). Returns pointer |
| 37 | * to IRQ domain, or NULL on failure. |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 38 | */ |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 39 | static struct irq_domain *irq_domain_alloc(struct device_node *of_node, |
| 40 | unsigned int revmap_type, |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 41 | const struct irq_domain_ops *ops, |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 42 | void *host_data) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 43 | { |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 44 | struct irq_domain *domain; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 45 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 46 | domain = kzalloc(sizeof(*domain), GFP_KERNEL); |
| 47 | if (WARN_ON(!domain)) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 48 | return NULL; |
| 49 | |
| 50 | /* Fill structure */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 51 | domain->revmap_type = revmap_type; |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 52 | domain->ops = ops; |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 53 | domain->host_data = host_data; |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 54 | domain->of_node = of_node_get(of_node); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 55 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 56 | return domain; |
| 57 | } |
| 58 | |
Paul Mundt | 58ee99a | 2012-05-19 15:11:41 +0900 | [diff] [blame^] | 59 | static void irq_domain_free(struct irq_domain *domain) |
| 60 | { |
| 61 | of_node_put(domain->of_node); |
| 62 | kfree(domain); |
| 63 | } |
| 64 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 65 | static void irq_domain_add(struct irq_domain *domain) |
| 66 | { |
| 67 | mutex_lock(&irq_domain_mutex); |
| 68 | list_add(&domain->link, &irq_domain_list); |
| 69 | mutex_unlock(&irq_domain_mutex); |
| 70 | pr_debug("irq: Allocated domain of type %d @0x%p\n", |
| 71 | domain->revmap_type, domain); |
| 72 | } |
| 73 | |
Paul Mundt | 58ee99a | 2012-05-19 15:11:41 +0900 | [diff] [blame^] | 74 | /** |
| 75 | * irq_domain_remove() - Remove an irq domain. |
| 76 | * @domain: domain to remove |
| 77 | * |
| 78 | * This routine is used to remove an irq domain. The caller must ensure |
| 79 | * that all mappings within the domain have been disposed of prior to |
| 80 | * use, depending on the revmap type. |
| 81 | */ |
| 82 | void irq_domain_remove(struct irq_domain *domain) |
| 83 | { |
| 84 | mutex_lock(&irq_domain_mutex); |
| 85 | |
| 86 | switch (domain->revmap_type) { |
| 87 | case IRQ_DOMAIN_MAP_LEGACY: |
| 88 | /* |
| 89 | * Legacy domains don't manage their own irq_desc |
| 90 | * allocations, we expect the caller to handle irq_desc |
| 91 | * freeing on their own. |
| 92 | */ |
| 93 | break; |
| 94 | case IRQ_DOMAIN_MAP_TREE: |
| 95 | /* |
| 96 | * radix_tree_delete() takes care of destroying the root |
| 97 | * node when all entries are removed. Shout if there are |
| 98 | * any mappings left. |
| 99 | */ |
| 100 | WARN_ON(domain->revmap_data.tree.height); |
| 101 | break; |
| 102 | case IRQ_DOMAIN_MAP_LINEAR: |
| 103 | kfree(domain->revmap_data.linear.revmap); |
| 104 | domain->revmap_data.linear.size = 0; |
| 105 | break; |
| 106 | case IRQ_DOMAIN_MAP_NOMAP: |
| 107 | break; |
| 108 | } |
| 109 | |
| 110 | list_del(&domain->link); |
| 111 | |
| 112 | /* |
| 113 | * If the going away domain is the default one, reset it. |
| 114 | */ |
| 115 | if (unlikely(irq_default_domain == domain)) |
| 116 | irq_set_default_host(NULL); |
| 117 | |
| 118 | mutex_unlock(&irq_domain_mutex); |
| 119 | |
| 120 | pr_debug("irq: Removed domain of type %d @0x%p\n", |
| 121 | domain->revmap_type, domain); |
| 122 | |
| 123 | irq_domain_free(domain); |
| 124 | } |
| 125 | |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 126 | static unsigned int irq_domain_legacy_revmap(struct irq_domain *domain, |
| 127 | irq_hw_number_t hwirq) |
| 128 | { |
| 129 | irq_hw_number_t first_hwirq = domain->revmap_data.legacy.first_hwirq; |
| 130 | int size = domain->revmap_data.legacy.size; |
| 131 | |
| 132 | if (WARN_ON(hwirq < first_hwirq || hwirq >= first_hwirq + size)) |
| 133 | return 0; |
| 134 | return hwirq - first_hwirq + domain->revmap_data.legacy.first_irq; |
| 135 | } |
| 136 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 137 | /** |
| 138 | * irq_domain_add_legacy() - Allocate and register a legacy revmap irq_domain. |
| 139 | * @of_node: pointer to interrupt controller's device tree node. |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 140 | * @size: total number of irqs in legacy mapping |
| 141 | * @first_irq: first number of irq block assigned to the domain |
| 142 | * @first_hwirq: first hwirq number to use for the translation. Should normally |
| 143 | * be '0', but a positive integer can be used if the effective |
| 144 | * hwirqs numbering does not begin at zero. |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 145 | * @ops: map/unmap domain callbacks |
| 146 | * @host_data: Controller private data pointer |
| 147 | * |
| 148 | * Note: the map() callback will be called before this function returns |
| 149 | * for all legacy interrupts except 0 (which is always the invalid irq for |
| 150 | * a legacy controller). |
| 151 | */ |
| 152 | struct irq_domain *irq_domain_add_legacy(struct device_node *of_node, |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 153 | unsigned int size, |
| 154 | unsigned int first_irq, |
| 155 | irq_hw_number_t first_hwirq, |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 156 | const struct irq_domain_ops *ops, |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 157 | void *host_data) |
| 158 | { |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 159 | struct irq_domain *domain; |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 160 | unsigned int i; |
| 161 | |
| 162 | domain = irq_domain_alloc(of_node, IRQ_DOMAIN_MAP_LEGACY, ops, host_data); |
| 163 | if (!domain) |
| 164 | return NULL; |
| 165 | |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 166 | domain->revmap_data.legacy.first_irq = first_irq; |
| 167 | domain->revmap_data.legacy.first_hwirq = first_hwirq; |
| 168 | domain->revmap_data.legacy.size = size; |
| 169 | |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 170 | mutex_lock(&irq_domain_mutex); |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 171 | /* Verify that all the irqs are available */ |
| 172 | for (i = 0; i < size; i++) { |
| 173 | int irq = first_irq + i; |
| 174 | struct irq_data *irq_data = irq_get_irq_data(irq); |
| 175 | |
| 176 | if (WARN_ON(!irq_data || irq_data->domain)) { |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 177 | mutex_unlock(&irq_domain_mutex); |
Paul Mundt | 58ee99a | 2012-05-19 15:11:41 +0900 | [diff] [blame^] | 178 | irq_domain_free(domain); |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 179 | return NULL; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 180 | } |
| 181 | } |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 182 | |
| 183 | /* Claim all of the irqs before registering a legacy domain */ |
| 184 | for (i = 0; i < size; i++) { |
| 185 | struct irq_data *irq_data = irq_get_irq_data(first_irq + i); |
| 186 | irq_data->hwirq = first_hwirq + i; |
| 187 | irq_data->domain = domain; |
| 188 | } |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 189 | mutex_unlock(&irq_domain_mutex); |
| 190 | |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 191 | for (i = 0; i < size; i++) { |
| 192 | int irq = first_irq + i; |
| 193 | int hwirq = first_hwirq + i; |
| 194 | |
| 195 | /* IRQ0 gets ignored */ |
| 196 | if (!irq) |
| 197 | continue; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 198 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 199 | /* Legacy flags are left to default at this point, |
| 200 | * one can then use irq_create_mapping() to |
| 201 | * explicitly change them |
| 202 | */ |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 203 | ops->map(domain, irq, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 204 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 205 | /* Clear norequest flags */ |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 206 | irq_clear_status_flags(irq, IRQ_NOREQUEST); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 207 | } |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 208 | |
| 209 | irq_domain_add(domain); |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 210 | return domain; |
| 211 | } |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 212 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 213 | /** |
| 214 | * irq_domain_add_linear() - Allocate and register a legacy revmap irq_domain. |
| 215 | * @of_node: pointer to interrupt controller's device tree node. |
| 216 | * @ops: map/unmap domain callbacks |
| 217 | * @host_data: Controller private data pointer |
| 218 | */ |
| 219 | struct irq_domain *irq_domain_add_linear(struct device_node *of_node, |
| 220 | unsigned int size, |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 221 | const struct irq_domain_ops *ops, |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 222 | void *host_data) |
| 223 | { |
| 224 | struct irq_domain *domain; |
| 225 | unsigned int *revmap; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 226 | |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 227 | revmap = kzalloc(sizeof(*revmap) * size, GFP_KERNEL); |
| 228 | if (WARN_ON(!revmap)) |
| 229 | return NULL; |
| 230 | |
| 231 | domain = irq_domain_alloc(of_node, IRQ_DOMAIN_MAP_LINEAR, ops, host_data); |
| 232 | if (!domain) { |
| 233 | kfree(revmap); |
| 234 | return NULL; |
| 235 | } |
| 236 | domain->revmap_data.linear.size = size; |
| 237 | domain->revmap_data.linear.revmap = revmap; |
| 238 | irq_domain_add(domain); |
| 239 | return domain; |
| 240 | } |
| 241 | |
| 242 | struct irq_domain *irq_domain_add_nomap(struct device_node *of_node, |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 243 | unsigned int max_irq, |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 244 | const struct irq_domain_ops *ops, |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 245 | void *host_data) |
| 246 | { |
| 247 | struct irq_domain *domain = irq_domain_alloc(of_node, |
| 248 | IRQ_DOMAIN_MAP_NOMAP, ops, host_data); |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 249 | if (domain) { |
| 250 | domain->revmap_data.nomap.max_irq = max_irq ? max_irq : ~0; |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 251 | irq_domain_add(domain); |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 252 | } |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 253 | return domain; |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * irq_domain_add_tree() |
| 258 | * @of_node: pointer to interrupt controller's device tree node. |
| 259 | * @ops: map/unmap domain callbacks |
| 260 | * |
| 261 | * Note: The radix tree will be allocated later during boot automatically |
| 262 | * (the reverse mapping will use the slow path until that happens). |
| 263 | */ |
| 264 | struct irq_domain *irq_domain_add_tree(struct device_node *of_node, |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 265 | const struct irq_domain_ops *ops, |
Grant Likely | a8db8cf | 2012-02-14 14:06:54 -0700 | [diff] [blame] | 266 | void *host_data) |
| 267 | { |
| 268 | struct irq_domain *domain = irq_domain_alloc(of_node, |
| 269 | IRQ_DOMAIN_MAP_TREE, ops, host_data); |
| 270 | if (domain) { |
| 271 | INIT_RADIX_TREE(&domain->revmap_data.tree, GFP_KERNEL); |
| 272 | irq_domain_add(domain); |
| 273 | } |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 274 | return domain; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | /** |
| 278 | * irq_find_host() - Locates a domain for a given device node |
| 279 | * @node: device-tree node of the interrupt controller |
| 280 | */ |
| 281 | struct irq_domain *irq_find_host(struct device_node *node) |
| 282 | { |
| 283 | struct irq_domain *h, *found = NULL; |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 284 | int rc; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 285 | |
| 286 | /* We might want to match the legacy controller last since |
| 287 | * it might potentially be set to match all interrupts in |
| 288 | * the absence of a device node. This isn't a problem so far |
| 289 | * yet though... |
| 290 | */ |
| 291 | mutex_lock(&irq_domain_mutex); |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 292 | list_for_each_entry(h, &irq_domain_list, link) { |
| 293 | if (h->ops->match) |
| 294 | rc = h->ops->match(h, node); |
| 295 | else |
| 296 | rc = (h->of_node != NULL) && (h->of_node == node); |
| 297 | |
| 298 | if (rc) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 299 | found = h; |
| 300 | break; |
| 301 | } |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 302 | } |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 303 | mutex_unlock(&irq_domain_mutex); |
| 304 | return found; |
| 305 | } |
| 306 | EXPORT_SYMBOL_GPL(irq_find_host); |
| 307 | |
| 308 | /** |
| 309 | * irq_set_default_host() - Set a "default" irq domain |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 310 | * @domain: default domain pointer |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 311 | * |
| 312 | * For convenience, it's possible to set a "default" domain that will be used |
| 313 | * whenever NULL is passed to irq_create_mapping(). It makes life easier for |
| 314 | * platforms that want to manipulate a few hard coded interrupt numbers that |
| 315 | * aren't properly represented in the device-tree. |
| 316 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 317 | void irq_set_default_host(struct irq_domain *domain) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 318 | { |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 319 | pr_debug("irq: Default domain set to @0x%p\n", domain); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 320 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 321 | irq_default_domain = domain; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 324 | static int irq_setup_virq(struct irq_domain *domain, unsigned int virq, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 325 | irq_hw_number_t hwirq) |
| 326 | { |
| 327 | struct irq_data *irq_data = irq_get_irq_data(virq); |
| 328 | |
| 329 | irq_data->hwirq = hwirq; |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 330 | irq_data->domain = domain; |
| 331 | if (domain->ops->map(domain, virq, hwirq)) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 332 | pr_debug("irq: -> mapping failed, freeing\n"); |
| 333 | irq_data->domain = NULL; |
| 334 | irq_data->hwirq = 0; |
| 335 | return -1; |
| 336 | } |
| 337 | |
| 338 | irq_clear_status_flags(virq, IRQ_NOREQUEST); |
| 339 | |
| 340 | return 0; |
| 341 | } |
| 342 | |
| 343 | /** |
| 344 | * irq_create_direct_mapping() - Allocate an irq for direct mapping |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 345 | * @domain: domain to allocate the irq for or NULL for default domain |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 346 | * |
| 347 | * This routine is used for irq controllers which can choose the hardware |
| 348 | * interrupt numbers they generate. In such a case it's simplest to use |
| 349 | * the linux irq as the hardware interrupt number. |
| 350 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 351 | unsigned int irq_create_direct_mapping(struct irq_domain *domain) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 352 | { |
| 353 | unsigned int virq; |
| 354 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 355 | if (domain == NULL) |
| 356 | domain = irq_default_domain; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 357 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 358 | BUG_ON(domain == NULL); |
| 359 | WARN_ON(domain->revmap_type != IRQ_DOMAIN_MAP_NOMAP); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 360 | |
| 361 | virq = irq_alloc_desc_from(1, 0); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 362 | if (!virq) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 363 | pr_debug("irq: create_direct virq allocation failed\n"); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 364 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 365 | } |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 366 | if (virq >= domain->revmap_data.nomap.max_irq) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 367 | pr_err("ERROR: no free irqs available below %i maximum\n", |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 368 | domain->revmap_data.nomap.max_irq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 369 | irq_free_desc(virq); |
| 370 | return 0; |
| 371 | } |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 372 | pr_debug("irq: create_direct obtained virq %d\n", virq); |
| 373 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 374 | if (irq_setup_virq(domain, virq, virq)) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 375 | irq_free_desc(virq); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 376 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | return virq; |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * irq_create_mapping() - Map a hardware interrupt into linux irq space |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 384 | * @domain: domain owning this hardware interrupt or NULL for default domain |
| 385 | * @hwirq: hardware irq number in that domain space |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 386 | * |
| 387 | * Only one mapping per hardware interrupt is permitted. Returns a linux |
| 388 | * irq number. |
| 389 | * If the sense/trigger is to be specified, set_irq_type() should be called |
| 390 | * on the number returned from that call. |
| 391 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 392 | unsigned int irq_create_mapping(struct irq_domain *domain, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 393 | irq_hw_number_t hwirq) |
| 394 | { |
David Daney | 5b7526e | 2012-04-05 16:52:13 -0700 | [diff] [blame] | 395 | unsigned int hint; |
| 396 | int virq; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 397 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 398 | pr_debug("irq: irq_create_mapping(0x%p, 0x%lx)\n", domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 399 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 400 | /* Look for default domain if nececssary */ |
| 401 | if (domain == NULL) |
| 402 | domain = irq_default_domain; |
| 403 | if (domain == NULL) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 404 | printk(KERN_WARNING "irq_create_mapping called for" |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 405 | " NULL domain, hwirq=%lx\n", hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 406 | WARN_ON(1); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 407 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 408 | } |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 409 | pr_debug("irq: -> using domain @%p\n", domain); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 410 | |
| 411 | /* Check if mapping already exists */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 412 | virq = irq_find_mapping(domain, hwirq); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 413 | if (virq) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 414 | pr_debug("irq: -> existing mapping on virq %d\n", virq); |
| 415 | return virq; |
| 416 | } |
| 417 | |
| 418 | /* Get a virtual interrupt number */ |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 419 | if (domain->revmap_type == IRQ_DOMAIN_MAP_LEGACY) |
| 420 | return irq_domain_legacy_revmap(domain, hwirq); |
| 421 | |
| 422 | /* Allocate a virtual interrupt number */ |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 423 | hint = hwirq % nr_irqs; |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 424 | if (hint == 0) |
| 425 | hint++; |
| 426 | virq = irq_alloc_desc_from(hint, 0); |
David Daney | 5b7526e | 2012-04-05 16:52:13 -0700 | [diff] [blame] | 427 | if (virq <= 0) |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 428 | virq = irq_alloc_desc_from(1, 0); |
David Daney | 5b7526e | 2012-04-05 16:52:13 -0700 | [diff] [blame] | 429 | if (virq <= 0) { |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 430 | pr_debug("irq: -> virq allocation failed\n"); |
| 431 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 432 | } |
| 433 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 434 | if (irq_setup_virq(domain, virq, hwirq)) { |
| 435 | if (domain->revmap_type != IRQ_DOMAIN_MAP_LEGACY) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 436 | irq_free_desc(virq); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 437 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 438 | } |
| 439 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 440 | pr_debug("irq: irq %lu on domain %s mapped to virtual irq %u\n", |
| 441 | hwirq, domain->of_node ? domain->of_node->full_name : "null", virq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 442 | |
| 443 | return virq; |
| 444 | } |
| 445 | EXPORT_SYMBOL_GPL(irq_create_mapping); |
| 446 | |
| 447 | unsigned int irq_create_of_mapping(struct device_node *controller, |
| 448 | const u32 *intspec, unsigned int intsize) |
| 449 | { |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 450 | struct irq_domain *domain; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 451 | irq_hw_number_t hwirq; |
| 452 | unsigned int type = IRQ_TYPE_NONE; |
| 453 | unsigned int virq; |
| 454 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 455 | domain = controller ? irq_find_host(controller) : irq_default_domain; |
| 456 | if (!domain) { |
Grant Likely | abd2363 | 2012-02-24 08:07:06 -0700 | [diff] [blame] | 457 | #ifdef CONFIG_MIPS |
| 458 | /* |
| 459 | * Workaround to avoid breaking interrupt controller drivers |
| 460 | * that don't yet register an irq_domain. This is temporary |
| 461 | * code. ~~~gcl, Feb 24, 2012 |
| 462 | * |
| 463 | * Scheduled for removal in Linux v3.6. That should be enough |
| 464 | * time. |
| 465 | */ |
| 466 | if (intsize > 0) |
| 467 | return intspec[0]; |
| 468 | #endif |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 469 | printk(KERN_WARNING "irq: no irq domain found for %s !\n", |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 470 | controller->full_name); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 471 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 474 | /* If domain has no translation, then we assume interrupt line */ |
| 475 | if (domain->ops->xlate == NULL) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 476 | hwirq = intspec[0]; |
| 477 | else { |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 478 | if (domain->ops->xlate(domain, controller, intspec, intsize, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 479 | &hwirq, &type)) |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 480 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | /* Create mapping */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 484 | virq = irq_create_mapping(domain, hwirq); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 485 | if (!virq) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 486 | return virq; |
| 487 | |
| 488 | /* Set type if specified and different than the current one */ |
| 489 | if (type != IRQ_TYPE_NONE && |
| 490 | type != (irqd_get_trigger_type(irq_get_irq_data(virq)))) |
| 491 | irq_set_irq_type(virq, type); |
| 492 | return virq; |
| 493 | } |
| 494 | EXPORT_SYMBOL_GPL(irq_create_of_mapping); |
| 495 | |
| 496 | /** |
| 497 | * irq_dispose_mapping() - Unmap an interrupt |
| 498 | * @virq: linux irq number of the interrupt to unmap |
| 499 | */ |
| 500 | void irq_dispose_mapping(unsigned int virq) |
| 501 | { |
| 502 | struct irq_data *irq_data = irq_get_irq_data(virq); |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 503 | struct irq_domain *domain; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 504 | irq_hw_number_t hwirq; |
| 505 | |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 506 | if (!virq || !irq_data) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 507 | return; |
| 508 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 509 | domain = irq_data->domain; |
| 510 | if (WARN_ON(domain == NULL)) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 511 | return; |
| 512 | |
| 513 | /* Never unmap legacy interrupts */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 514 | if (domain->revmap_type == IRQ_DOMAIN_MAP_LEGACY) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 515 | return; |
| 516 | |
| 517 | irq_set_status_flags(virq, IRQ_NOREQUEST); |
| 518 | |
| 519 | /* remove chip and handler */ |
| 520 | irq_set_chip_and_handler(virq, NULL, NULL); |
| 521 | |
| 522 | /* Make sure it's completed */ |
| 523 | synchronize_irq(virq); |
| 524 | |
| 525 | /* Tell the PIC about it */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 526 | if (domain->ops->unmap) |
| 527 | domain->ops->unmap(domain, virq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 528 | smp_mb(); |
| 529 | |
| 530 | /* Clear reverse map */ |
| 531 | hwirq = irq_data->hwirq; |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 532 | switch(domain->revmap_type) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 533 | case IRQ_DOMAIN_MAP_LINEAR: |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 534 | if (hwirq < domain->revmap_data.linear.size) |
| 535 | domain->revmap_data.linear.revmap[hwirq] = 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 536 | break; |
| 537 | case IRQ_DOMAIN_MAP_TREE: |
| 538 | mutex_lock(&revmap_trees_mutex); |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 539 | radix_tree_delete(&domain->revmap_data.tree, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 540 | mutex_unlock(&revmap_trees_mutex); |
| 541 | break; |
| 542 | } |
| 543 | |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 544 | irq_free_desc(virq); |
| 545 | } |
| 546 | EXPORT_SYMBOL_GPL(irq_dispose_mapping); |
| 547 | |
| 548 | /** |
| 549 | * irq_find_mapping() - Find a linux irq from an hw irq number. |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 550 | * @domain: domain owning this hardware interrupt |
| 551 | * @hwirq: hardware irq number in that domain space |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 552 | * |
| 553 | * This is a slow path, for use by generic code. It's expected that an |
| 554 | * irq controller implementation directly calls the appropriate low level |
| 555 | * mapping function. |
| 556 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 557 | unsigned int irq_find_mapping(struct irq_domain *domain, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 558 | irq_hw_number_t hwirq) |
| 559 | { |
| 560 | unsigned int i; |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 561 | unsigned int hint = hwirq % nr_irqs; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 562 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 563 | /* Look for default domain if nececssary */ |
| 564 | if (domain == NULL) |
| 565 | domain = irq_default_domain; |
| 566 | if (domain == NULL) |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 567 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 568 | |
| 569 | /* legacy -> bail early */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 570 | if (domain->revmap_type == IRQ_DOMAIN_MAP_LEGACY) |
Grant Likely | 1bc04f2 | 2012-02-14 14:06:55 -0700 | [diff] [blame] | 571 | return irq_domain_legacy_revmap(domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 572 | |
| 573 | /* Slow path does a linear search of the map */ |
| 574 | if (hint == 0) |
| 575 | hint = 1; |
| 576 | i = hint; |
| 577 | do { |
| 578 | struct irq_data *data = irq_get_irq_data(i); |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 579 | if (data && (data->domain == domain) && (data->hwirq == hwirq)) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 580 | return i; |
| 581 | i++; |
Grant Likely | 6fa6c8e2 | 2012-02-15 15:06:08 -0700 | [diff] [blame] | 582 | if (i >= nr_irqs) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 583 | i = 1; |
| 584 | } while(i != hint); |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 585 | return 0; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 586 | } |
| 587 | EXPORT_SYMBOL_GPL(irq_find_mapping); |
| 588 | |
| 589 | /** |
| 590 | * irq_radix_revmap_lookup() - Find a linux irq from a hw irq number. |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 591 | * @domain: domain owning this hardware interrupt |
| 592 | * @hwirq: hardware irq number in that domain space |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 593 | * |
| 594 | * This is a fast path, for use by irq controller code that uses radix tree |
| 595 | * revmaps |
| 596 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 597 | unsigned int irq_radix_revmap_lookup(struct irq_domain *domain, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 598 | irq_hw_number_t hwirq) |
| 599 | { |
| 600 | struct irq_data *irq_data; |
| 601 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 602 | if (WARN_ON_ONCE(domain->revmap_type != IRQ_DOMAIN_MAP_TREE)) |
| 603 | return irq_find_mapping(domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 604 | |
| 605 | /* |
| 606 | * Freeing an irq can delete nodes along the path to |
| 607 | * do the lookup via call_rcu. |
| 608 | */ |
| 609 | rcu_read_lock(); |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 610 | irq_data = radix_tree_lookup(&domain->revmap_data.tree, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 611 | rcu_read_unlock(); |
| 612 | |
| 613 | /* |
| 614 | * If found in radix tree, then fine. |
| 615 | * Else fallback to linear lookup - this should not happen in practice |
| 616 | * as it means that we failed to insert the node in the radix tree. |
| 617 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 618 | return irq_data ? irq_data->irq : irq_find_mapping(domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | /** |
| 622 | * irq_radix_revmap_insert() - Insert a hw irq to linux irq number mapping. |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 623 | * @domain: domain owning this hardware interrupt |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 624 | * @virq: linux irq number |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 625 | * @hwirq: hardware irq number in that domain space |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 626 | * |
| 627 | * This is for use by irq controllers that use a radix tree reverse |
| 628 | * mapping for fast lookup. |
| 629 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 630 | void irq_radix_revmap_insert(struct irq_domain *domain, unsigned int virq, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 631 | irq_hw_number_t hwirq) |
| 632 | { |
| 633 | struct irq_data *irq_data = irq_get_irq_data(virq); |
| 634 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 635 | if (WARN_ON(domain->revmap_type != IRQ_DOMAIN_MAP_TREE)) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 636 | return; |
| 637 | |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 638 | if (virq) { |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 639 | mutex_lock(&revmap_trees_mutex); |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 640 | radix_tree_insert(&domain->revmap_data.tree, hwirq, irq_data); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 641 | mutex_unlock(&revmap_trees_mutex); |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | /** |
| 646 | * irq_linear_revmap() - Find a linux irq from a hw irq number. |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 647 | * @domain: domain owning this hardware interrupt |
| 648 | * @hwirq: hardware irq number in that domain space |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 649 | * |
| 650 | * This is a fast path, for use by irq controller code that uses linear |
| 651 | * revmaps. It does fallback to the slow path if the revmap doesn't exist |
| 652 | * yet and will create the revmap entry with appropriate locking |
| 653 | */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 654 | unsigned int irq_linear_revmap(struct irq_domain *domain, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 655 | irq_hw_number_t hwirq) |
| 656 | { |
| 657 | unsigned int *revmap; |
| 658 | |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 659 | if (WARN_ON_ONCE(domain->revmap_type != IRQ_DOMAIN_MAP_LINEAR)) |
| 660 | return irq_find_mapping(domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 661 | |
| 662 | /* Check revmap bounds */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 663 | if (unlikely(hwirq >= domain->revmap_data.linear.size)) |
| 664 | return irq_find_mapping(domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 665 | |
| 666 | /* Check if revmap was allocated */ |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 667 | revmap = domain->revmap_data.linear.revmap; |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 668 | if (unlikely(revmap == NULL)) |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 669 | return irq_find_mapping(domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 670 | |
| 671 | /* Fill up revmap with slow path if no mapping found */ |
Grant Likely | 0384837 | 2012-02-14 14:06:52 -0700 | [diff] [blame] | 672 | if (unlikely(!revmap[hwirq])) |
Grant Likely | 6870065 | 2012-02-14 14:06:53 -0700 | [diff] [blame] | 673 | revmap[hwirq] = irq_find_mapping(domain, hwirq); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 674 | |
| 675 | return revmap[hwirq]; |
| 676 | } |
| 677 | |
Grant Likely | 092b2fb | 2012-03-29 14:10:30 -0600 | [diff] [blame] | 678 | #ifdef CONFIG_IRQ_DOMAIN_DEBUG |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 679 | static int virq_debug_show(struct seq_file *m, void *private) |
| 680 | { |
| 681 | unsigned long flags; |
| 682 | struct irq_desc *desc; |
| 683 | const char *p; |
| 684 | static const char none[] = "none"; |
| 685 | void *data; |
| 686 | int i; |
| 687 | |
Grant Likely | 15e06bf | 2012-04-11 00:26:25 -0600 | [diff] [blame] | 688 | seq_printf(m, "%-5s %-7s %-15s %-*s %s\n", "irq", "hwirq", |
Grant Likely | 5269a9a | 2012-04-12 14:42:15 -0600 | [diff] [blame] | 689 | "chip name", (int)(2 * sizeof(void *) + 2), "chip data", |
| 690 | "domain name"); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 691 | |
| 692 | for (i = 1; i < nr_irqs; i++) { |
| 693 | desc = irq_to_desc(i); |
| 694 | if (!desc) |
| 695 | continue; |
| 696 | |
| 697 | raw_spin_lock_irqsave(&desc->lock, flags); |
| 698 | |
| 699 | if (desc->action && desc->action->handler) { |
| 700 | struct irq_chip *chip; |
| 701 | |
| 702 | seq_printf(m, "%5d ", i); |
| 703 | seq_printf(m, "0x%05lx ", desc->irq_data.hwirq); |
| 704 | |
| 705 | chip = irq_desc_get_chip(desc); |
| 706 | if (chip && chip->name) |
| 707 | p = chip->name; |
| 708 | else |
| 709 | p = none; |
| 710 | seq_printf(m, "%-15s ", p); |
| 711 | |
| 712 | data = irq_desc_get_chip_data(desc); |
Grant Likely | 15e06bf | 2012-04-11 00:26:25 -0600 | [diff] [blame] | 713 | seq_printf(m, data ? "0x%p " : " %p ", data); |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 714 | |
Grant Likely | 092b2fb | 2012-03-29 14:10:30 -0600 | [diff] [blame] | 715 | if (desc->irq_data.domain && desc->irq_data.domain->of_node) |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 716 | p = desc->irq_data.domain->of_node->full_name; |
| 717 | else |
| 718 | p = none; |
| 719 | seq_printf(m, "%s\n", p); |
| 720 | } |
| 721 | |
| 722 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
| 723 | } |
| 724 | |
| 725 | return 0; |
| 726 | } |
| 727 | |
| 728 | static int virq_debug_open(struct inode *inode, struct file *file) |
| 729 | { |
| 730 | return single_open(file, virq_debug_show, inode->i_private); |
| 731 | } |
| 732 | |
| 733 | static const struct file_operations virq_debug_fops = { |
| 734 | .open = virq_debug_open, |
| 735 | .read = seq_read, |
| 736 | .llseek = seq_lseek, |
| 737 | .release = single_release, |
| 738 | }; |
| 739 | |
| 740 | static int __init irq_debugfs_init(void) |
| 741 | { |
Grant Likely | 092b2fb | 2012-03-29 14:10:30 -0600 | [diff] [blame] | 742 | if (debugfs_create_file("irq_domain_mapping", S_IRUGO, NULL, |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 743 | NULL, &virq_debug_fops) == NULL) |
| 744 | return -ENOMEM; |
| 745 | |
| 746 | return 0; |
| 747 | } |
| 748 | __initcall(irq_debugfs_init); |
Grant Likely | 092b2fb | 2012-03-29 14:10:30 -0600 | [diff] [blame] | 749 | #endif /* CONFIG_IRQ_DOMAIN_DEBUG */ |
Grant Likely | cc79ca6 | 2012-02-16 01:37:49 -0700 | [diff] [blame] | 750 | |
Grant Likely | 7529495 | 2012-02-14 14:06:57 -0700 | [diff] [blame] | 751 | int irq_domain_simple_map(struct irq_domain *d, unsigned int irq, |
| 752 | irq_hw_number_t hwirq) |
Grant Likely | 08a543a | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 753 | { |
Grant Likely | 7529495 | 2012-02-14 14:06:57 -0700 | [diff] [blame] | 754 | return 0; |
Grant Likely | 08a543a | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 755 | } |
| 756 | |
Grant Likely | 16b2e6e | 2012-01-26 11:26:52 -0700 | [diff] [blame] | 757 | /** |
| 758 | * irq_domain_xlate_onecell() - Generic xlate for direct one cell bindings |
| 759 | * |
| 760 | * Device Tree IRQ specifier translation function which works with one cell |
| 761 | * bindings where the cell value maps directly to the hwirq number. |
| 762 | */ |
| 763 | int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr, |
| 764 | const u32 *intspec, unsigned int intsize, |
| 765 | unsigned long *out_hwirq, unsigned int *out_type) |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 766 | { |
Grant Likely | 16b2e6e | 2012-01-26 11:26:52 -0700 | [diff] [blame] | 767 | if (WARN_ON(intsize < 1)) |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 768 | return -EINVAL; |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 769 | *out_hwirq = intspec[0]; |
| 770 | *out_type = IRQ_TYPE_NONE; |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 771 | return 0; |
| 772 | } |
Grant Likely | 16b2e6e | 2012-01-26 11:26:52 -0700 | [diff] [blame] | 773 | EXPORT_SYMBOL_GPL(irq_domain_xlate_onecell); |
| 774 | |
| 775 | /** |
| 776 | * irq_domain_xlate_twocell() - Generic xlate for direct two cell bindings |
| 777 | * |
| 778 | * Device Tree IRQ specifier translation function which works with two cell |
| 779 | * bindings where the cell values map directly to the hwirq number |
| 780 | * and linux irq flags. |
| 781 | */ |
| 782 | int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr, |
| 783 | const u32 *intspec, unsigned int intsize, |
| 784 | irq_hw_number_t *out_hwirq, unsigned int *out_type) |
| 785 | { |
| 786 | if (WARN_ON(intsize < 2)) |
| 787 | return -EINVAL; |
| 788 | *out_hwirq = intspec[0]; |
| 789 | *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK; |
| 790 | return 0; |
| 791 | } |
| 792 | EXPORT_SYMBOL_GPL(irq_domain_xlate_twocell); |
| 793 | |
| 794 | /** |
| 795 | * irq_domain_xlate_onetwocell() - Generic xlate for one or two cell bindings |
| 796 | * |
| 797 | * Device Tree IRQ specifier translation function which works with either one |
| 798 | * or two cell bindings where the cell values map directly to the hwirq number |
| 799 | * and linux irq flags. |
| 800 | * |
| 801 | * Note: don't use this function unless your interrupt controller explicitly |
| 802 | * supports both one and two cell bindings. For the majority of controllers |
| 803 | * the _onecell() or _twocell() variants above should be used. |
| 804 | */ |
| 805 | int irq_domain_xlate_onetwocell(struct irq_domain *d, |
| 806 | struct device_node *ctrlr, |
| 807 | const u32 *intspec, unsigned int intsize, |
| 808 | unsigned long *out_hwirq, unsigned int *out_type) |
| 809 | { |
| 810 | if (WARN_ON(intsize < 1)) |
| 811 | return -EINVAL; |
| 812 | *out_hwirq = intspec[0]; |
| 813 | *out_type = (intsize > 1) ? intspec[1] : IRQ_TYPE_NONE; |
| 814 | return 0; |
| 815 | } |
| 816 | EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell); |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 817 | |
Grant Likely | a18dc81 | 2012-01-26 12:12:14 -0700 | [diff] [blame] | 818 | const struct irq_domain_ops irq_domain_simple_ops = { |
Grant Likely | 7529495 | 2012-02-14 14:06:57 -0700 | [diff] [blame] | 819 | .map = irq_domain_simple_map, |
Grant Likely | 16b2e6e | 2012-01-26 11:26:52 -0700 | [diff] [blame] | 820 | .xlate = irq_domain_xlate_onetwocell, |
Grant Likely | 7529495 | 2012-02-14 14:06:57 -0700 | [diff] [blame] | 821 | }; |
| 822 | EXPORT_SYMBOL_GPL(irq_domain_simple_ops); |
| 823 | |
| 824 | #ifdef CONFIG_OF_IRQ |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 825 | void irq_domain_generate_simple(const struct of_device_id *match, |
| 826 | u64 phys_base, unsigned int irq_start) |
| 827 | { |
| 828 | struct device_node *node; |
Grant Likely | e1964c5 | 2012-02-14 14:06:48 -0700 | [diff] [blame] | 829 | pr_debug("looking for phys_base=%llx, irq_start=%i\n", |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 830 | (unsigned long long) phys_base, (int) irq_start); |
| 831 | node = of_find_matching_node_by_address(NULL, match, phys_base); |
| 832 | if (node) |
Grant Likely | 6b783f7 | 2012-01-10 17:09:30 -0700 | [diff] [blame] | 833 | irq_domain_add_legacy(node, 32, irq_start, 0, |
| 834 | &irq_domain_simple_ops, NULL); |
Grant Likely | 7e71330 | 2011-07-26 03:19:06 -0600 | [diff] [blame] | 835 | } |
| 836 | EXPORT_SYMBOL_GPL(irq_domain_generate_simple); |
Grant Likely | 7529495 | 2012-02-14 14:06:57 -0700 | [diff] [blame] | 837 | #endif |