GNU Linux-libre 4.14.257-gnu1
[releases.git] / drivers / staging / fsl-mc / bus / irq-gic-v3-its-fsl-mc-msi.c
1 /*
2  * Freescale Management Complex (MC) bus driver MSI support
3  *
4  * Copyright (C) 2015-2016 Freescale Semiconductor, Inc.
5  * Author: German Rivera <German.Rivera@freescale.com>
6  *
7  * This file is licensed under the terms of the GNU General Public
8  * License version 2. This program is licensed "as is" without any
9  * warranty of any kind, whether express or implied.
10  */
11
12 #include <linux/of_device.h>
13 #include <linux/of_address.h>
14 #include <linux/irq.h>
15 #include <linux/msi.h>
16 #include <linux/of.h>
17 #include <linux/of_irq.h>
18 #include "fsl-mc-private.h"
19
20 static struct irq_chip its_msi_irq_chip = {
21         .name = "ITS-fMSI",
22         .irq_mask = irq_chip_mask_parent,
23         .irq_unmask = irq_chip_unmask_parent,
24         .irq_eoi = irq_chip_eoi_parent,
25         .irq_set_affinity = msi_domain_set_affinity
26 };
27
28 static int its_fsl_mc_msi_prepare(struct irq_domain *msi_domain,
29                                   struct device *dev,
30                                   int nvec, msi_alloc_info_t *info)
31 {
32         struct fsl_mc_device *mc_bus_dev;
33         struct msi_domain_info *msi_info;
34
35         if (WARN_ON(!dev_is_fsl_mc(dev)))
36                 return -EINVAL;
37
38         mc_bus_dev = to_fsl_mc_device(dev);
39         if (WARN_ON(!(mc_bus_dev->flags & FSL_MC_IS_DPRC)))
40                 return -EINVAL;
41
42         /*
43          * Set the device Id to be passed to the GIC-ITS:
44          *
45          * NOTE: This device id corresponds to the IOMMU stream ID
46          * associated with the DPRC object (ICID).
47          */
48 #ifdef GENERIC_MSI_DOMAIN_OPS
49         info->scratchpad[0].ul = mc_bus_dev->icid;
50 #endif
51         msi_info = msi_get_domain_info(msi_domain->parent);
52         return msi_info->ops->msi_prepare(msi_domain->parent, dev, nvec, info);
53 }
54
55 static struct msi_domain_ops its_fsl_mc_msi_ops __ro_after_init = {
56         .msi_prepare = its_fsl_mc_msi_prepare,
57 };
58
59 static struct msi_domain_info its_fsl_mc_msi_domain_info = {
60         .flags  = (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS),
61         .ops    = &its_fsl_mc_msi_ops,
62         .chip   = &its_msi_irq_chip,
63 };
64
65 static const struct of_device_id its_device_id[] = {
66         {       .compatible     = "arm,gic-v3-its",     },
67         {},
68 };
69
70 int __init its_fsl_mc_msi_init(void)
71 {
72         struct device_node *np;
73         struct irq_domain *parent;
74         struct irq_domain *mc_msi_domain;
75
76         for (np = of_find_matching_node(NULL, its_device_id); np;
77              np = of_find_matching_node(np, its_device_id)) {
78                 if (!of_device_is_available(np))
79                         continue;
80                 if (!of_property_read_bool(np, "msi-controller"))
81                         continue;
82
83                 parent = irq_find_matching_host(np, DOMAIN_BUS_NEXUS);
84                 if (!parent || !msi_get_domain_info(parent)) {
85                         pr_err("%pOF: unable to locate ITS domain\n", np);
86                         continue;
87                 }
88
89                 mc_msi_domain = fsl_mc_msi_create_irq_domain(
90                                                  of_node_to_fwnode(np),
91                                                  &its_fsl_mc_msi_domain_info,
92                                                  parent);
93                 if (!mc_msi_domain) {
94                         pr_err("%pOF: unable to create fsl-mc domain\n", np);
95                         continue;
96                 }
97
98                 WARN_ON(mc_msi_domain->host_data !=
99                         &its_fsl_mc_msi_domain_info);
100
101                 pr_info("fsl-mc MSI: %pOF domain created\n", np);
102         }
103
104         return 0;
105 }
106
107 void its_fsl_mc_msi_cleanup(void)
108 {
109         struct device_node *np;
110
111         for (np = of_find_matching_node(NULL, its_device_id); np;
112              np = of_find_matching_node(np, its_device_id)) {
113                 struct irq_domain *mc_msi_domain = irq_find_matching_host(
114                                                         np,
115                                                         DOMAIN_BUS_FSL_MC_MSI);
116
117                 if (!of_property_read_bool(np, "msi-controller"))
118                         continue;
119
120                 if (mc_msi_domain &&
121                     mc_msi_domain->host_data == &its_fsl_mc_msi_domain_info)
122                         irq_domain_remove(mc_msi_domain);
123         }
124 }