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>
12 #include <linux/msi.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>
23 * of_get_dma_window - Parse *dma-window property and returns 0 if found.
26 * @prefix: prefix for property name if any
27 * @index: index to start to parse
28 * @busno: Returns busno if supported. Otherwise pass NULL
29 * @addr: Returns address that DMA starts
30 * @size: Returns the range that DMA can handle
32 * This supports different formats flexibly. "prefix" can be
33 * configured if any. "busno" and "index" are optionally
34 * specified. Set 0(or NULL) if not used.
36 int of_get_dma_window(struct device_node
*dn
, const char *prefix
, int index
,
37 unsigned long *busno
, dma_addr_t
*addr
, size_t *size
)
39 const __be32
*dma_window
, *end
;
40 int bytes
, cur_index
= 0;
41 char propname
[NAME_MAX
], addrname
[NAME_MAX
], sizename
[NAME_MAX
];
43 if (!dn
|| !addr
|| !size
)
49 snprintf(propname
, sizeof(propname
), "%sdma-window", prefix
);
50 snprintf(addrname
, sizeof(addrname
), "%s#dma-address-cells", prefix
);
51 snprintf(sizename
, sizeof(sizename
), "%s#dma-size-cells", prefix
);
53 dma_window
= of_get_property(dn
, propname
, &bytes
);
56 end
= dma_window
+ bytes
/ sizeof(*dma_window
);
58 while (dma_window
< end
) {
62 /* busno is one cell if supported */
64 *busno
= be32_to_cpup(dma_window
++);
66 prop
= of_get_property(dn
, addrname
, NULL
);
68 prop
= of_get_property(dn
, "#address-cells", NULL
);
70 cells
= prop
? be32_to_cpup(prop
) : of_n_addr_cells(dn
);
73 *addr
= of_read_number(dma_window
, cells
);
76 prop
= of_get_property(dn
, sizename
, NULL
);
77 cells
= prop
? be32_to_cpup(prop
) : of_n_size_cells(dn
);
80 *size
= of_read_number(dma_window
, cells
);
83 if (cur_index
++ == index
)
88 EXPORT_SYMBOL_GPL(of_get_dma_window
);
90 static int of_iommu_xlate(struct device
*dev
,
91 struct of_phandle_args
*iommu_spec
)
93 const struct iommu_ops
*ops
;
94 struct fwnode_handle
*fwnode
= &iommu_spec
->np
->fwnode
;
97 ops
= iommu_ops_from_fwnode(fwnode
);
98 if ((ops
&& !ops
->of_xlate
) ||
99 !of_device_is_available(iommu_spec
->np
))
102 ret
= iommu_fwspec_init(dev
, &iommu_spec
->np
->fwnode
, ops
);
106 * The otherwise-empty fwspec handily serves to indicate the specific
107 * IOMMU device we're waiting for, which will be useful if we ever get
108 * a proper probe-ordering dependency mechanism in future.
111 return driver_deferred_probe_check_state(dev
);
113 if (!try_module_get(ops
->owner
))
116 ret
= ops
->of_xlate(dev
, iommu_spec
);
117 module_put(ops
->owner
);
121 static int of_iommu_configure_dev_id(struct device_node
*master_np
,
125 struct of_phandle_args iommu_spec
= { .args_count
= 1 };
128 err
= of_map_id(master_np
, *id
, "iommu-map",
129 "iommu-map-mask", &iommu_spec
.np
,
132 return err
== -ENODEV
? NO_IOMMU
: err
;
134 err
= of_iommu_xlate(dev
, &iommu_spec
);
135 of_node_put(iommu_spec
.np
);
139 static int of_iommu_configure_dev(struct device_node
*master_np
,
142 struct of_phandle_args iommu_spec
;
143 int err
= NO_IOMMU
, idx
= 0;
145 while (!of_parse_phandle_with_args(master_np
, "iommus",
148 err
= of_iommu_xlate(dev
, &iommu_spec
);
149 of_node_put(iommu_spec
.np
);
158 struct of_pci_iommu_alias_info
{
160 struct device_node
*np
;
163 static int of_pci_iommu_init(struct pci_dev
*pdev
, u16 alias
, void *data
)
165 struct of_pci_iommu_alias_info
*info
= data
;
166 u32 input_id
= alias
;
168 return of_iommu_configure_dev_id(info
->np
, info
->dev
, &input_id
);
171 static int of_iommu_configure_device(struct device_node
*master_np
,
172 struct device
*dev
, const u32
*id
)
174 return (id
) ? of_iommu_configure_dev_id(master_np
, dev
, id
) :
175 of_iommu_configure_dev(master_np
, dev
);
178 const struct iommu_ops
*of_iommu_configure(struct device
*dev
,
179 struct device_node
*master_np
,
182 const struct iommu_ops
*ops
= NULL
;
183 struct iommu_fwspec
*fwspec
= dev_iommu_fwspec_get(dev
);
193 /* In the deferred case, start again from scratch */
194 iommu_fwspec_free(dev
);
198 * We don't currently walk up the tree looking for a parent IOMMU.
199 * See the `Notes:' section of
200 * Documentation/devicetree/bindings/iommu/iommu.txt
202 if (dev_is_pci(dev
)) {
203 struct of_pci_iommu_alias_info info
= {
209 err
= pci_for_each_dma_alias(to_pci_dev(dev
),
210 of_pci_iommu_init
, &info
);
212 err
= of_iommu_configure_device(master_np
, dev
, id
);
214 fwspec
= dev_iommu_fwspec_get(dev
);
216 of_property_read_u32(master_np
, "pasid-num-bits",
217 &fwspec
->num_pasid_bits
);
221 * Two success conditions can be represented by non-negative err here:
222 * >0 : there is no IOMMU, or one was unavailable for non-fatal reasons
223 * 0 : we found an IOMMU, and dev->fwspec is initialised appropriately
224 * <0 : any actual error
227 /* The fwspec pointer changed, read it again */
228 fwspec
= dev_iommu_fwspec_get(dev
);
232 * If we have reason to believe the IOMMU driver missed the initial
233 * probe for dev, replay it to get things in order.
235 if (!err
&& dev
->bus
&& !device_iommu_mapped(dev
))
236 err
= iommu_probe_device(dev
);
238 /* Ignore all other errors apart from EPROBE_DEFER */
239 if (err
== -EPROBE_DEFER
) {
241 } else if (err
< 0) {
242 dev_dbg(dev
, "Adding to IOMMU failed: %d\n", err
);