1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
8 #include <linux/export.h>
9 #include <linux/iommu.h>
10 #include <linux/limits.h>
11 #include <linux/module.h>
13 #include <linux/of_address.h>
14 #include <linux/of_iommu.h>
15 #include <linux/of_pci.h>
16 #include <linux/pci.h>
17 #include <linux/slab.h>
18 #include <linux/fsl/mc.h>
20 static int of_iommu_xlate(struct device *dev,
21 struct of_phandle_args *iommu_spec)
23 const struct iommu_ops *ops;
24 struct fwnode_handle *fwnode = &iommu_spec->np->fwnode;
27 ops = iommu_ops_from_fwnode(fwnode);
28 if ((ops && !ops->of_xlate) ||
29 !of_device_is_available(iommu_spec->np))
32 ret = iommu_fwspec_init(dev, fwnode, ops);
36 * The otherwise-empty fwspec handily serves to indicate the specific
37 * IOMMU device we're waiting for, which will be useful if we ever get
38 * a proper probe-ordering dependency mechanism in future.
41 return driver_deferred_probe_check_state(dev);
43 if (!try_module_get(ops->owner))
46 ret = ops->of_xlate(dev, iommu_spec);
47 module_put(ops->owner);
51 static int of_iommu_configure_dev_id(struct device_node *master_np,
55 struct of_phandle_args iommu_spec = { .args_count = 1 };
58 err = of_map_id(master_np, *id, "iommu-map",
59 "iommu-map-mask", &iommu_spec.np,
64 err = of_iommu_xlate(dev, &iommu_spec);
65 of_node_put(iommu_spec.np);
69 static int of_iommu_configure_dev(struct device_node *master_np,
72 struct of_phandle_args iommu_spec;
73 int err = -ENODEV, idx = 0;
75 while (!of_parse_phandle_with_args(master_np, "iommus",
78 err = of_iommu_xlate(dev, &iommu_spec);
79 of_node_put(iommu_spec.np);
88 struct of_pci_iommu_alias_info {
90 struct device_node *np;
93 static int of_pci_iommu_init(struct pci_dev *pdev, u16 alias, void *data)
95 struct of_pci_iommu_alias_info *info = data;
98 return of_iommu_configure_dev_id(info->np, info->dev, &input_id);
101 static int of_iommu_configure_device(struct device_node *master_np,
102 struct device *dev, const u32 *id)
104 return (id) ? of_iommu_configure_dev_id(master_np, dev, id) :
105 of_iommu_configure_dev(master_np, dev);
110 * 0 on success, an iommu was configured
111 * -ENODEV if the device does not have any IOMMU
112 * -EPROBEDEFER if probing should be tried again
113 * -errno fatal errors
115 int of_iommu_configure(struct device *dev, struct device_node *master_np,
118 struct iommu_fwspec *fwspec;
124 /* Serialise to make dev->iommu stable under our potential fwspec */
125 mutex_lock(&iommu_probe_device_lock);
126 fwspec = dev_iommu_fwspec_get(dev);
129 mutex_unlock(&iommu_probe_device_lock);
132 /* In the deferred case, start again from scratch */
133 iommu_fwspec_free(dev);
137 * We don't currently walk up the tree looking for a parent IOMMU.
138 * See the `Notes:' section of
139 * Documentation/devicetree/bindings/iommu/iommu.txt
141 if (dev_is_pci(dev)) {
142 struct of_pci_iommu_alias_info info = {
148 err = pci_for_each_dma_alias(to_pci_dev(dev),
149 of_pci_iommu_init, &info);
151 err = of_iommu_configure_device(master_np, dev, id);
153 mutex_unlock(&iommu_probe_device_lock);
155 if (err == -ENODEV || err == -EPROBE_DEFER)
160 err = iommu_probe_device(dev);
166 dev_dbg(dev, "Adding to IOMMU failed: %pe\n", ERR_PTR(err));
170 static enum iommu_resv_type __maybe_unused
171 iommu_resv_region_get_type(struct device *dev,
172 struct resource *phys,
173 phys_addr_t start, size_t length)
175 phys_addr_t end = start + length - 1;
178 * IOMMU regions without an associated physical region cannot be
179 * mapped and are simply reservations.
181 if (phys->start >= phys->end)
182 return IOMMU_RESV_RESERVED;
184 /* may be IOMMU_RESV_DIRECT_RELAXABLE for certain cases */
185 if (start == phys->start && end == phys->end)
186 return IOMMU_RESV_DIRECT;
188 dev_warn(dev, "treating non-direct mapping [%pr] -> [%pap-%pap] as reservation\n", phys,
190 return IOMMU_RESV_RESERVED;
194 * of_iommu_get_resv_regions - reserved region driver helper for device tree
195 * @dev: device for which to get reserved regions
196 * @list: reserved region list
198 * IOMMU drivers can use this to implement their .get_resv_regions() callback
199 * for memory regions attached to a device tree node. See the reserved-memory
200 * device tree bindings on how to use these:
202 * Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
204 void of_iommu_get_resv_regions(struct device *dev, struct list_head *list)
206 #if IS_ENABLED(CONFIG_OF_ADDRESS)
207 struct of_phandle_iterator it;
210 of_for_each_phandle(&it, err, dev->of_node, "memory-region", NULL, 0) {
211 const __be32 *maps, *end;
212 struct resource phys;
215 memset(&phys, 0, sizeof(phys));
218 * The "reg" property is optional and can be omitted by reserved-memory regions
219 * that represent reservations in the IOVA space, which are regions that should
222 if (of_find_property(it.node, "reg", NULL)) {
223 err = of_address_to_resource(it.node, 0, &phys);
225 dev_err(dev, "failed to parse memory region %pOF: %d\n",
231 maps = of_get_property(it.node, "iommu-addresses", &size);
235 end = maps + size / sizeof(__be32);
238 struct device_node *np;
241 phandle = be32_to_cpup(maps++);
242 np = of_find_node_by_phandle(phandle);
244 if (np == dev->of_node) {
245 int prot = IOMMU_READ | IOMMU_WRITE;
246 struct iommu_resv_region *region;
247 enum iommu_resv_type type;
251 if (of_dma_is_coherent(dev->of_node))
254 maps = of_translate_dma_region(np, maps, &iova, &length);
256 dev_warn(dev, "Cannot reserve IOVA region of 0 size\n");
259 type = iommu_resv_region_get_type(dev, &phys, iova, length);
261 region = iommu_alloc_resv_region(iova, length, prot, type,
264 list_add_tail(®ion->list, list);
270 EXPORT_SYMBOL(of_iommu_get_resv_regions);