blob: e4ba9f4cbd1ab607ee53b1c96d69ff97b11155f0 [file] [log] [blame]
Marc Zyngier1e6db002015-07-28 14:46:22 +01001/*
2 * Copyright (C) 2013-2015 ARM Limited, All Rights Reserved.
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
Hanjun Guof785f7d2017-03-07 20:40:02 +080018#include <linux/acpi_iort.h>
Marc Zyngier1e6db002015-07-28 14:46:22 +010019#include <linux/device.h>
20#include <linux/msi.h>
21#include <linux/of.h>
22#include <linux/of_irq.h>
23
24static struct irq_chip its_pmsi_irq_chip = {
25 .name = "ITS-pMSI",
26};
27
Hanjun Guo9ab460c2017-03-07 20:40:00 +080028static int of_pmsi_get_dev_id(struct irq_domain *domain, struct device *dev,
29 u32 *dev_id)
Marc Zyngier1e6db002015-07-28 14:46:22 +010030{
Marc Zyngierdeac7fc2015-09-18 14:07:40 +010031 int ret, index = 0;
Marc Zyngier1e6db002015-07-28 14:46:22 +010032
Marc Zyngier1e6db002015-07-28 14:46:22 +010033 /* Suck the DeviceID out of the msi-parent property */
Marc Zyngierdeac7fc2015-09-18 14:07:40 +010034 do {
35 struct of_phandle_args args;
36
37 ret = of_parse_phandle_with_args(dev->of_node,
38 "msi-parent", "#msi-cells",
39 index, &args);
40 if (args.np == irq_domain_get_of_node(domain)) {
41 if (WARN_ON(args.args_count != 1))
42 return -EINVAL;
Hanjun Guo9ab460c2017-03-07 20:40:00 +080043 *dev_id = args.args[0];
Marc Zyngierdeac7fc2015-09-18 14:07:40 +010044 break;
45 }
46 } while (!ret);
47
Hanjun Guo9ab460c2017-03-07 20:40:00 +080048 return ret;
49}
50
51static int its_pmsi_prepare(struct irq_domain *domain, struct device *dev,
52 int nvec, msi_alloc_info_t *info)
53{
54 struct msi_domain_info *msi_info;
55 u32 dev_id;
56 int ret;
57
58 msi_info = msi_get_domain_info(domain->parent);
59
60 ret = of_pmsi_get_dev_id(domain, dev, &dev_id);
Marc Zyngier1e6db002015-07-28 14:46:22 +010061 if (ret)
62 return ret;
63
64 /* ITS specific DeviceID, as the core ITS ignores dev. */
65 info->scratchpad[0].ul = dev_id;
66
67 return msi_info->ops->msi_prepare(domain->parent,
68 dev, nvec, info);
69}
70
71static struct msi_domain_ops its_pmsi_ops = {
72 .msi_prepare = its_pmsi_prepare,
73};
74
75static struct msi_domain_info its_pmsi_domain_info = {
76 .flags = (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS),
77 .ops = &its_pmsi_ops,
78 .chip = &its_pmsi_irq_chip,
79};
80
81static struct of_device_id its_device_id[] = {
82 { .compatible = "arm,gic-v3-its", },
83 {},
84};
85
Hanjun Guo42677db2017-03-07 20:40:01 +080086static int __init its_pmsi_init_one(struct fwnode_handle *fwnode,
87 const char *name)
88{
89 struct irq_domain *parent;
90
91 parent = irq_find_matching_fwnode(fwnode, DOMAIN_BUS_NEXUS);
92 if (!parent || !msi_get_domain_info(parent)) {
93 pr_err("%s: unable to locate ITS domain\n", name);
94 return -ENXIO;
95 }
96
97 if (!platform_msi_create_irq_domain(fwnode, &its_pmsi_domain_info,
98 parent)) {
99 pr_err("%s: unable to create platform domain\n", name);
100 return -ENXIO;
101 }
102
103 pr_info("Platform MSI: %s domain created\n", name);
104 return 0;
105}
106
Hanjun Guof785f7d2017-03-07 20:40:02 +0800107#ifdef CONFIG_ACPI
108static int __init
109its_pmsi_parse_madt(struct acpi_subtable_header *header,
110 const unsigned long end)
111{
112 struct acpi_madt_generic_translator *its_entry;
113 struct fwnode_handle *domain_handle;
114 const char *node_name;
115 int err = -ENXIO;
116
117 its_entry = (struct acpi_madt_generic_translator *)header;
118 node_name = kasprintf(GFP_KERNEL, "ITS@0x%lx",
119 (long)its_entry->base_address);
120 domain_handle = iort_find_domain_token(its_entry->translation_id);
121 if (!domain_handle) {
122 pr_err("%s: Unable to locate ITS domain handle\n", node_name);
123 goto out;
124 }
125
126 err = its_pmsi_init_one(domain_handle, node_name);
127
128out:
129 kfree(node_name);
130 return err;
131}
132
133static void __init its_pmsi_acpi_init(void)
134{
135 acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR,
136 its_pmsi_parse_madt, 0);
137}
138#else
139static inline void its_pmsi_acpi_init(void) { }
140#endif
141
Hanjun Guo42677db2017-03-07 20:40:01 +0800142static void __init its_pmsi_of_init(void)
Marc Zyngier1e6db002015-07-28 14:46:22 +0100143{
144 struct device_node *np;
Marc Zyngier1e6db002015-07-28 14:46:22 +0100145
146 for (np = of_find_matching_node(NULL, its_device_id); np;
147 np = of_find_matching_node(np, its_device_id)) {
148 if (!of_property_read_bool(np, "msi-controller"))
149 continue;
150
Hanjun Guo42677db2017-03-07 20:40:01 +0800151 its_pmsi_init_one(of_node_to_fwnode(np), np->full_name);
Marc Zyngier1e6db002015-07-28 14:46:22 +0100152 }
Hanjun Guo42677db2017-03-07 20:40:01 +0800153}
Marc Zyngier1e6db002015-07-28 14:46:22 +0100154
Hanjun Guo42677db2017-03-07 20:40:01 +0800155static int __init its_pmsi_init(void)
156{
157 its_pmsi_of_init();
Hanjun Guof785f7d2017-03-07 20:40:02 +0800158 its_pmsi_acpi_init();
Marc Zyngier1e6db002015-07-28 14:46:22 +0100159 return 0;
160}
161early_initcall(its_pmsi_init);