]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: board: Add support for translating hwirq to virq numbers
authorGeert Uytterhoeven <geert+renesas@glider.be>
Wed, 17 Jun 2015 08:38:52 +0000 (10:38 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Jun 2015 04:42:51 +0000 (21:42 -0700)
As of commit 9a1091ef0017c40a ("irqchip: gic: Support hierarchy irq
domain."), GIC IRQ numbers are virtual, breaking hardcoded hardware IRQ
numbers in platform device resources.

Add support for translating hardware IRQ numbers to virtual IRQ numbers,
and fixing up platform device resources with hardcoded IRQ numbers.

Add a copyright header, including the original author.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/board/board.c
drivers/staging/board/board.h

index d5a6abc845191c939e7116699511b92bf5e6976f..8712f566b31196e0bac232bf66a13b5c47425802 100644 (file)
@@ -1,10 +1,27 @@
+/*
+ * Copyright (C) 2014 Magnus Damm
+ * Copyright (C) 2015 Glider bvba
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License.  See the file "COPYING" in the main directory of this archive
+ * for more details.
+ */
+
+#define pr_fmt(fmt)    "board_staging: "  fmt
+
 #include <linux/init.h>
+#include <linux/irq.h>
 #include <linux/device.h>
 #include <linux/kernel.h>
 #include <linux/of.h>
 #include <linux/of_address.h>
+#include <linux/of_irq.h>
+
 #include "board.h"
 
+static struct device_node *irqc_node __initdata;
+static unsigned int irqc_base __initdata;
+
 static bool find_by_address(u64 base_address)
 {
        struct device_node *dn = of_find_all_nodes(NULL);
@@ -38,3 +55,66 @@ bool __init board_staging_dt_node_available(const struct resource *resource,
 
        return false; /* Nothing found */
 }
+
+int __init board_staging_gic_setup_xlate(const char *gic_match,
+                                        unsigned int base)
+{
+       WARN_ON(irqc_node);
+
+       irqc_node = of_find_compatible_node(NULL, NULL, gic_match);
+
+       WARN_ON(!irqc_node);
+       if (!irqc_node)
+               return -ENOENT;
+
+       irqc_base = base;
+       return 0;
+}
+
+static void __init gic_fixup_resource(struct resource *res)
+{
+       struct of_phandle_args irq_data;
+       unsigned int hwirq = res->start;
+       unsigned int virq;
+
+       if (resource_type(res) != IORESOURCE_IRQ || !irqc_node)
+               return;
+
+       irq_data.np = irqc_node;
+       irq_data.args_count = 3;
+       irq_data.args[0] = 0;
+       irq_data.args[1] = hwirq - irqc_base;
+       switch (res->flags &
+               (IORESOURCE_IRQ_LOWEDGE | IORESOURCE_IRQ_HIGHEDGE |
+                IORESOURCE_IRQ_LOWLEVEL | IORESOURCE_IRQ_HIGHLEVEL)) {
+       case IORESOURCE_IRQ_LOWEDGE:
+               irq_data.args[2] = IRQ_TYPE_EDGE_FALLING;
+               break;
+       case IORESOURCE_IRQ_HIGHEDGE:
+               irq_data.args[2] = IRQ_TYPE_EDGE_RISING;
+               break;
+       case IORESOURCE_IRQ_LOWLEVEL:
+               irq_data.args[2] = IRQ_TYPE_LEVEL_LOW;
+               break;
+       case IORESOURCE_IRQ_HIGHLEVEL:
+       default:
+               irq_data.args[2] = IRQ_TYPE_LEVEL_HIGH;
+               break;
+       }
+
+       virq = irq_create_of_mapping(&irq_data);
+       if (WARN_ON(!virq))
+               return;
+
+       pr_debug("hwirq %u -> virq %u\n", hwirq, virq);
+       res->start = virq;
+}
+
+void __init board_staging_gic_fixup_resources(struct resource *res,
+                                             unsigned int nres)
+{
+       unsigned int i;
+
+       for (i = 0; i < nres; i++)
+               gic_fixup_resource(&res[i]);
+}
index e9c914985d4acb364b3ff61d917787971dbb027f..3af6dbe22f91ebdcd2468dbd7bde396d4f82d3f3 100644 (file)
@@ -1,10 +1,15 @@
 #ifndef __BOARD_H__
 #define __BOARD_H__
+
 #include <linux/init.h>
 #include <linux/of.h>
 
+struct resource;
+
 bool board_staging_dt_node_available(const struct resource *resource,
                                     unsigned int num_resources);
+int board_staging_gic_setup_xlate(const char *gic_match, unsigned int base);
+void board_staging_gic_fixup_resources(struct resource *res, unsigned int nres);
 
 #define board_staging(str, fn)                 \
 static int __init runtime_board_check(void)    \