blob: 614a93aa5305a83d6bf6662f6c236aa7e25d3d68 [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001// SPDX-License-Identifier: GPL-2.0-only
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +03002/*
3 * OF helpers for IOMMU
4 *
5 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +03006 */
7
8#include <linux/export.h>
Will Deacon7eba1d52014-08-27 16:20:32 +01009#include <linux/iommu.h>
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +030010#include <linux/limits.h>
11#include <linux/of.h>
Brian Norriscbff5632013-12-04 17:22:53 -080012#include <linux/of_iommu.h>
Robin Murphyb9964442016-09-12 17:13:41 +010013#include <linux/of_pci.h>
Robin Murphya42a7a12014-12-05 13:41:02 +000014#include <linux/slab.h>
Nipun Guptafa0656b2018-09-10 19:19:17 +053015#include <linux/fsl/mc.h>
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +030016
Robin Murphyda4b0272017-08-04 17:29:06 +010017#define NO_IOMMU 1
18
Hiroshi Doyu4e0ee782012-06-25 14:23:54 +030019/**
20 * of_get_dma_window - Parse *dma-window property and returns 0 if found.
21 *
22 * @dn: device node
23 * @prefix: prefix for property name if any
24 * @index: index to start to parse
25 * @busno: Returns busno if supported. Otherwise pass NULL
26 * @addr: Returns address that DMA starts
27 * @size: Returns the range that DMA can handle
28 *
29 * This supports different formats flexibly. "prefix" can be
30 * configured if any. "busno" and "index" are optionally
31 * specified. Set 0(or NULL) if not used.
32 */
33int of_get_dma_window(struct device_node *dn, const char *prefix, int index,
34 unsigned long *busno, dma_addr_t *addr, size_t *size)
35{
36 const __be32 *dma_window, *end;
37 int bytes, cur_index = 0;
38 char propname[NAME_MAX], addrname[NAME_MAX], sizename[NAME_MAX];
39
40 if (!dn || !addr || !size)
41 return -EINVAL;
42
43 if (!prefix)
44 prefix = "";
45
46 snprintf(propname, sizeof(propname), "%sdma-window", prefix);
47 snprintf(addrname, sizeof(addrname), "%s#dma-address-cells", prefix);
48 snprintf(sizename, sizeof(sizename), "%s#dma-size-cells", prefix);
49
50 dma_window = of_get_property(dn, propname, &bytes);
51 if (!dma_window)
52 return -ENODEV;
53 end = dma_window + bytes / sizeof(*dma_window);
54
55 while (dma_window < end) {
56 u32 cells;
57 const void *prop;
58
59 /* busno is one cell if supported */
60 if (busno)
61 *busno = be32_to_cpup(dma_window++);
62
63 prop = of_get_property(dn, addrname, NULL);
64 if (!prop)
65 prop = of_get_property(dn, "#address-cells", NULL);
66
67 cells = prop ? be32_to_cpup(prop) : of_n_addr_cells(dn);
68 if (!cells)
69 return -EINVAL;
70 *addr = of_read_number(dma_window, cells);
71 dma_window += cells;
72
73 prop = of_get_property(dn, sizename, NULL);
74 cells = prop ? be32_to_cpup(prop) : of_n_size_cells(dn);
75 if (!cells)
76 return -EINVAL;
77 *size = of_read_number(dma_window, cells);
78 dma_window += cells;
79
80 if (cur_index++ == index)
81 break;
82 }
83 return 0;
84}
85EXPORT_SYMBOL_GPL(of_get_dma_window);
Will Deacon1cd076b2014-08-27 14:40:58 +010086
Robin Murphyda4b0272017-08-04 17:29:06 +010087static int of_iommu_xlate(struct device *dev,
88 struct of_phandle_args *iommu_spec)
Robin Murphy2a0c5752017-04-10 16:50:56 +053089{
90 const struct iommu_ops *ops;
91 struct fwnode_handle *fwnode = &iommu_spec->np->fwnode;
92 int err;
93
94 ops = iommu_ops_from_fwnode(fwnode);
Robin Murphyd7b05582017-04-10 16:50:57 +053095 if ((ops && !ops->of_xlate) ||
Rob Herringac6bbf02018-07-09 09:41:52 -060096 !of_device_is_available(iommu_spec->np))
Robin Murphyda4b0272017-08-04 17:29:06 +010097 return NO_IOMMU;
Robin Murphy2a0c5752017-04-10 16:50:56 +053098
99 err = iommu_fwspec_init(dev, &iommu_spec->np->fwnode, ops);
100 if (err)
Robin Murphyda4b0272017-08-04 17:29:06 +0100101 return err;
Robin Murphyd7b05582017-04-10 16:50:57 +0530102 /*
103 * The otherwise-empty fwspec handily serves to indicate the specific
104 * IOMMU device we're waiting for, which will be useful if we ever get
105 * a proper probe-ordering dependency mechanism in future.
106 */
107 if (!ops)
Rob Herring78f307b2018-07-09 09:41:51 -0600108 return driver_deferred_probe_check_state(dev);
Robin Murphy2a0c5752017-04-10 16:50:56 +0530109
Robin Murphyda4b0272017-08-04 17:29:06 +0100110 return ops->of_xlate(dev, iommu_spec);
Robin Murphy2a0c5752017-04-10 16:50:56 +0530111}
112
Robin Murphyd87beb72017-05-31 18:52:29 +0100113struct of_pci_iommu_alias_info {
114 struct device *dev;
115 struct device_node *np;
116};
Robin Murphyb9964442016-09-12 17:13:41 +0100117
Robin Murphyd87beb72017-05-31 18:52:29 +0100118static int of_pci_iommu_init(struct pci_dev *pdev, u16 alias, void *data)
Robin Murphyb9964442016-09-12 17:13:41 +0100119{
Robin Murphyd87beb72017-05-31 18:52:29 +0100120 struct of_pci_iommu_alias_info *info = data;
Robin Murphyd87beb72017-05-31 18:52:29 +0100121 struct of_phandle_args iommu_spec = { .args_count = 1 };
Robin Murphy2a0c5752017-04-10 16:50:56 +0530122 int err;
Robin Murphyb9964442016-09-12 17:13:41 +0100123
Nipun Gupta2a6db712018-09-10 19:19:16 +0530124 err = of_map_rid(info->np, alias, "iommu-map", "iommu-map-mask",
125 &iommu_spec.np, iommu_spec.args);
Robin Murphy2a0c5752017-04-10 16:50:56 +0530126 if (err)
Robin Murphyda4b0272017-08-04 17:29:06 +0100127 return err == -ENODEV ? NO_IOMMU : err;
Robin Murphyb9964442016-09-12 17:13:41 +0100128
Robin Murphyda4b0272017-08-04 17:29:06 +0100129 err = of_iommu_xlate(info->dev, &iommu_spec);
Robin Murphyb9964442016-09-12 17:13:41 +0100130 of_node_put(iommu_spec.np);
Robin Murphyc0d05cd2017-09-21 11:20:58 +0100131 return err;
Robin Murphy2a0c5752017-04-10 16:50:56 +0530132}
Will Deacon7eba1d52014-08-27 16:20:32 +0100133
Nipun Guptafa0656b2018-09-10 19:19:17 +0530134static int of_fsl_mc_iommu_init(struct fsl_mc_device *mc_dev,
135 struct device_node *master_np)
136{
137 struct of_phandle_args iommu_spec = { .args_count = 1 };
138 int err;
139
140 err = of_map_rid(master_np, mc_dev->icid, "iommu-map",
141 "iommu-map-mask", &iommu_spec.np,
142 iommu_spec.args);
143 if (err)
144 return err == -ENODEV ? NO_IOMMU : err;
145
146 err = of_iommu_xlate(&mc_dev->dev, &iommu_spec);
147 of_node_put(iommu_spec.np);
148 return err;
149}
150
Robin Murphy2a0c5752017-04-10 16:50:56 +0530151const struct iommu_ops *of_iommu_configure(struct device *dev,
152 struct device_node *master_np)
153{
Robin Murphyd87beb72017-05-31 18:52:29 +0100154 const struct iommu_ops *ops = NULL;
Joerg Roedel5c7e6bd2018-11-29 14:01:00 +0100155 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
Robin Murphyda4b0272017-08-04 17:29:06 +0100156 int err = NO_IOMMU;
Robin Murphy2a0c5752017-04-10 16:50:56 +0530157
158 if (!master_np)
159 return NULL;
160
Robin Murphyd7b05582017-04-10 16:50:57 +0530161 if (fwspec) {
162 if (fwspec->ops)
163 return fwspec->ops;
164
165 /* In the deferred case, start again from scratch */
166 iommu_fwspec_free(dev);
167 }
168
Robin Murphyd87beb72017-05-31 18:52:29 +0100169 /*
170 * We don't currently walk up the tree looking for a parent IOMMU.
171 * See the `Notes:' section of
172 * Documentation/devicetree/bindings/iommu/iommu.txt
173 */
174 if (dev_is_pci(dev)) {
175 struct of_pci_iommu_alias_info info = {
176 .dev = dev,
177 .np = master_np,
178 };
179
180 err = pci_for_each_dma_alias(to_pci_dev(dev),
181 of_pci_iommu_init, &info);
Nipun Guptafa0656b2018-09-10 19:19:17 +0530182 } else if (dev_is_fsl_mc(dev)) {
183 err = of_fsl_mc_iommu_init(to_fsl_mc_device(dev), master_np);
Robin Murphyd87beb72017-05-31 18:52:29 +0100184 } else {
185 struct of_phandle_args iommu_spec;
186 int idx = 0;
187
188 while (!of_parse_phandle_with_args(master_np, "iommus",
189 "#iommu-cells",
190 idx, &iommu_spec)) {
Robin Murphyda4b0272017-08-04 17:29:06 +0100191 err = of_iommu_xlate(dev, &iommu_spec);
Robin Murphyd87beb72017-05-31 18:52:29 +0100192 of_node_put(iommu_spec.np);
193 idx++;
Robin Murphyda4b0272017-08-04 17:29:06 +0100194 if (err)
Robin Murphyd87beb72017-05-31 18:52:29 +0100195 break;
196 }
197 }
Robin Murphyda4b0272017-08-04 17:29:06 +0100198
Joerg Roedel5c7e6bd2018-11-29 14:01:00 +0100199
Robin Murphyda4b0272017-08-04 17:29:06 +0100200 /*
201 * Two success conditions can be represented by non-negative err here:
202 * >0 : there is no IOMMU, or one was unavailable for non-fatal reasons
203 * 0 : we found an IOMMU, and dev->fwspec is initialised appropriately
204 * <0 : any actual error
205 */
Joerg Roedel5c7e6bd2018-11-29 14:01:00 +0100206 if (!err) {
207 /* The fwspec pointer changed, read it again */
208 fwspec = dev_iommu_fwspec_get(dev);
209 ops = fwspec->ops;
210 }
Robin Murphyd7b05582017-04-10 16:50:57 +0530211 /*
212 * If we have reason to believe the IOMMU driver missed the initial
Joerg Roedel641fb0e2018-12-05 14:39:45 +0100213 * probe for dev, replay it to get things in order.
Robin Murphyd7b05582017-04-10 16:50:57 +0530214 */
Robin Murphye8e683a2019-01-07 17:04:50 +0000215 if (!err && dev->bus && !device_iommu_mapped(dev))
Joerg Roedel641fb0e2018-12-05 14:39:45 +0100216 err = iommu_probe_device(dev);
Robin Murphy2a0c5752017-04-10 16:50:56 +0530217
Sricharan Ra37b19a2017-05-27 19:17:41 +0530218 /* Ignore all other errors apart from EPROBE_DEFER */
Robin Murphyda4b0272017-08-04 17:29:06 +0100219 if (err == -EPROBE_DEFER) {
220 ops = ERR_PTR(err);
221 } else if (err < 0) {
222 dev_dbg(dev, "Adding to IOMMU failed: %d\n", err);
Sricharan Ra37b19a2017-05-27 19:17:41 +0530223 ops = NULL;
224 }
225
Laurent Pinchart7b07cbe2017-04-10 16:51:02 +0530226 return ops;
Will Deacon7eba1d52014-08-27 16:20:32 +0100227}