Thomas Gleixner | a61127c | 2019-05-29 16:57:49 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Hiroshi Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 2 | /* |
| 3 | * OF helpers for IOMMU |
| 4 | * |
| 5 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. |
Hiroshi Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/export.h> |
Will Deacon | 7eba1d5 | 2014-08-27 16:20:32 +0100 | [diff] [blame] | 9 | #include <linux/iommu.h> |
Hiroshi Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 10 | #include <linux/limits.h> |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 11 | #include <linux/module.h> |
Krzysztof Wilczynski | bbd8810d | 2019-09-03 13:30:59 +0200 | [diff] [blame] | 12 | #include <linux/msi.h> |
Hiroshi Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 13 | #include <linux/of.h> |
Brian Norris | cbff563 | 2013-12-04 17:22:53 -0800 | [diff] [blame] | 14 | #include <linux/of_iommu.h> |
Robin Murphy | b996444 | 2016-09-12 17:13:41 +0100 | [diff] [blame] | 15 | #include <linux/of_pci.h> |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 16 | #include <linux/pci.h> |
Robin Murphy | a42a7a1 | 2014-12-05 13:41:02 +0000 | [diff] [blame] | 17 | #include <linux/slab.h> |
Nipun Gupta | fa0656b | 2018-09-10 19:19:17 +0530 | [diff] [blame] | 18 | #include <linux/fsl/mc.h> |
Hiroshi Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 19 | |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 20 | #define NO_IOMMU 1 |
| 21 | |
Hiroshi Doyu | 4e0ee78 | 2012-06-25 14:23:54 +0300 | [diff] [blame] | 22 | /** |
| 23 | * of_get_dma_window - Parse *dma-window property and returns 0 if found. |
| 24 | * |
| 25 | * @dn: device node |
| 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 |
| 31 | * |
| 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. |
| 35 | */ |
| 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) |
| 38 | { |
| 39 | const __be32 *dma_window, *end; |
| 40 | int bytes, cur_index = 0; |
| 41 | char propname[NAME_MAX], addrname[NAME_MAX], sizename[NAME_MAX]; |
| 42 | |
| 43 | if (!dn || !addr || !size) |
| 44 | return -EINVAL; |
| 45 | |
| 46 | if (!prefix) |
| 47 | prefix = ""; |
| 48 | |
| 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); |
| 52 | |
| 53 | dma_window = of_get_property(dn, propname, &bytes); |
| 54 | if (!dma_window) |
| 55 | return -ENODEV; |
| 56 | end = dma_window + bytes / sizeof(*dma_window); |
| 57 | |
| 58 | while (dma_window < end) { |
| 59 | u32 cells; |
| 60 | const void *prop; |
| 61 | |
| 62 | /* busno is one cell if supported */ |
| 63 | if (busno) |
| 64 | *busno = be32_to_cpup(dma_window++); |
| 65 | |
| 66 | prop = of_get_property(dn, addrname, NULL); |
| 67 | if (!prop) |
| 68 | prop = of_get_property(dn, "#address-cells", NULL); |
| 69 | |
| 70 | cells = prop ? be32_to_cpup(prop) : of_n_addr_cells(dn); |
| 71 | if (!cells) |
| 72 | return -EINVAL; |
| 73 | *addr = of_read_number(dma_window, cells); |
| 74 | dma_window += cells; |
| 75 | |
| 76 | prop = of_get_property(dn, sizename, NULL); |
| 77 | cells = prop ? be32_to_cpup(prop) : of_n_size_cells(dn); |
| 78 | if (!cells) |
| 79 | return -EINVAL; |
| 80 | *size = of_read_number(dma_window, cells); |
| 81 | dma_window += cells; |
| 82 | |
| 83 | if (cur_index++ == index) |
| 84 | break; |
| 85 | } |
| 86 | return 0; |
| 87 | } |
| 88 | EXPORT_SYMBOL_GPL(of_get_dma_window); |
Will Deacon | 1cd076b | 2014-08-27 14:40:58 +0100 | [diff] [blame] | 89 | |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 90 | static int of_iommu_xlate(struct device *dev, |
| 91 | struct of_phandle_args *iommu_spec) |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 92 | { |
| 93 | const struct iommu_ops *ops; |
| 94 | struct fwnode_handle *fwnode = &iommu_spec->np->fwnode; |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 95 | int ret; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 96 | |
| 97 | ops = iommu_ops_from_fwnode(fwnode); |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 98 | if ((ops && !ops->of_xlate) || |
Rob Herring | ac6bbf0 | 2018-07-09 09:41:52 -0600 | [diff] [blame] | 99 | !of_device_is_available(iommu_spec->np)) |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 100 | return NO_IOMMU; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 101 | |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 102 | ret = iommu_fwspec_init(dev, &iommu_spec->np->fwnode, ops); |
| 103 | if (ret) |
| 104 | return ret; |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 105 | /* |
| 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. |
| 109 | */ |
| 110 | if (!ops) |
Rob Herring | 78f307b | 2018-07-09 09:41:51 -0600 | [diff] [blame] | 111 | return driver_deferred_probe_check_state(dev); |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 112 | |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 113 | if (!try_module_get(ops->owner)) |
| 114 | return -ENODEV; |
| 115 | |
| 116 | ret = ops->of_xlate(dev, iommu_spec); |
| 117 | module_put(ops->owner); |
| 118 | return ret; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 119 | } |
| 120 | |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 121 | static int of_iommu_configure_dev_id(struct device_node *master_np, |
| 122 | struct device *dev, |
| 123 | const u32 *id) |
| 124 | { |
| 125 | struct of_phandle_args iommu_spec = { .args_count = 1 }; |
| 126 | int err; |
| 127 | |
| 128 | err = of_map_id(master_np, *id, "iommu-map", |
| 129 | "iommu-map-mask", &iommu_spec.np, |
| 130 | iommu_spec.args); |
| 131 | if (err) |
| 132 | return err == -ENODEV ? NO_IOMMU : err; |
| 133 | |
| 134 | err = of_iommu_xlate(dev, &iommu_spec); |
| 135 | of_node_put(iommu_spec.np); |
| 136 | return err; |
| 137 | } |
| 138 | |
| 139 | static int of_iommu_configure_dev(struct device_node *master_np, |
| 140 | struct device *dev) |
| 141 | { |
| 142 | struct of_phandle_args iommu_spec; |
| 143 | int err = NO_IOMMU, idx = 0; |
| 144 | |
| 145 | while (!of_parse_phandle_with_args(master_np, "iommus", |
| 146 | "#iommu-cells", |
| 147 | idx, &iommu_spec)) { |
| 148 | err = of_iommu_xlate(dev, &iommu_spec); |
| 149 | of_node_put(iommu_spec.np); |
| 150 | idx++; |
| 151 | if (err) |
| 152 | break; |
| 153 | } |
| 154 | |
| 155 | return err; |
| 156 | } |
| 157 | |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 158 | struct of_pci_iommu_alias_info { |
| 159 | struct device *dev; |
| 160 | struct device_node *np; |
| 161 | }; |
Robin Murphy | b996444 | 2016-09-12 17:13:41 +0100 | [diff] [blame] | 162 | |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 163 | static int of_pci_iommu_init(struct pci_dev *pdev, u16 alias, void *data) |
Robin Murphy | b996444 | 2016-09-12 17:13:41 +0100 | [diff] [blame] | 164 | { |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 165 | struct of_pci_iommu_alias_info *info = data; |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 166 | u32 input_id = alias; |
Robin Murphy | b996444 | 2016-09-12 17:13:41 +0100 | [diff] [blame] | 167 | |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 168 | return of_iommu_configure_dev_id(info->np, info->dev, &input_id); |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 169 | } |
Will Deacon | 7eba1d5 | 2014-08-27 16:20:32 +0100 | [diff] [blame] | 170 | |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 171 | static int of_iommu_configure_device(struct device_node *master_np, |
| 172 | struct device *dev, const u32 *id) |
Nipun Gupta | fa0656b | 2018-09-10 19:19:17 +0530 | [diff] [blame] | 173 | { |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 174 | return (id) ? of_iommu_configure_dev_id(master_np, dev, id) : |
| 175 | of_iommu_configure_dev(master_np, dev); |
Nipun Gupta | fa0656b | 2018-09-10 19:19:17 +0530 | [diff] [blame] | 176 | } |
| 177 | |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 178 | const struct iommu_ops *of_iommu_configure(struct device *dev, |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 179 | struct device_node *master_np, |
| 180 | const u32 *id) |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 181 | { |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 182 | const struct iommu_ops *ops = NULL; |
Joerg Roedel | 5c7e6bd | 2018-11-29 14:01:00 +0100 | [diff] [blame] | 183 | struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev); |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 184 | int err = NO_IOMMU; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 185 | |
| 186 | if (!master_np) |
| 187 | return NULL; |
| 188 | |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 189 | if (fwspec) { |
| 190 | if (fwspec->ops) |
| 191 | return fwspec->ops; |
| 192 | |
| 193 | /* In the deferred case, start again from scratch */ |
| 194 | iommu_fwspec_free(dev); |
| 195 | } |
| 196 | |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 197 | /* |
| 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 |
| 201 | */ |
| 202 | if (dev_is_pci(dev)) { |
| 203 | struct of_pci_iommu_alias_info info = { |
| 204 | .dev = dev, |
| 205 | .np = master_np, |
| 206 | }; |
| 207 | |
Will Deacon | 6bf6c24 | 2019-12-19 12:03:38 +0000 | [diff] [blame] | 208 | pci_request_acs(); |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 209 | err = pci_for_each_dma_alias(to_pci_dev(dev), |
| 210 | of_pci_iommu_init, &info); |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 211 | } else { |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 212 | err = of_iommu_configure_device(master_np, dev, id); |
Jean-Philippe Brucker | 8953582 | 2020-01-15 13:52:29 +0100 | [diff] [blame] | 213 | } |
Joerg Roedel | 5c7e6bd | 2018-11-29 14:01:00 +0100 | [diff] [blame] | 214 | |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 215 | /* |
| 216 | * Two success conditions can be represented by non-negative err here: |
| 217 | * >0 : there is no IOMMU, or one was unavailable for non-fatal reasons |
| 218 | * 0 : we found an IOMMU, and dev->fwspec is initialised appropriately |
| 219 | * <0 : any actual error |
| 220 | */ |
Joerg Roedel | 5c7e6bd | 2018-11-29 14:01:00 +0100 | [diff] [blame] | 221 | if (!err) { |
| 222 | /* The fwspec pointer changed, read it again */ |
| 223 | fwspec = dev_iommu_fwspec_get(dev); |
| 224 | ops = fwspec->ops; |
| 225 | } |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 226 | /* |
| 227 | * If we have reason to believe the IOMMU driver missed the initial |
Joerg Roedel | 641fb0e | 2018-12-05 14:39:45 +0100 | [diff] [blame] | 228 | * probe for dev, replay it to get things in order. |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 229 | */ |
Robin Murphy | e8e683a | 2019-01-07 17:04:50 +0000 | [diff] [blame] | 230 | if (!err && dev->bus && !device_iommu_mapped(dev)) |
Joerg Roedel | 641fb0e | 2018-12-05 14:39:45 +0100 | [diff] [blame] | 231 | err = iommu_probe_device(dev); |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 232 | |
Sricharan R | a37b19a | 2017-05-27 19:17:41 +0530 | [diff] [blame] | 233 | /* Ignore all other errors apart from EPROBE_DEFER */ |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 234 | if (err == -EPROBE_DEFER) { |
| 235 | ops = ERR_PTR(err); |
| 236 | } else if (err < 0) { |
| 237 | dev_dbg(dev, "Adding to IOMMU failed: %d\n", err); |
Sricharan R | a37b19a | 2017-05-27 19:17:41 +0530 | [diff] [blame] | 238 | ops = NULL; |
| 239 | } |
| 240 | |
Laurent Pinchart | 7b07cbe | 2017-04-10 16:51:02 +0530 | [diff] [blame] | 241 | return ops; |
Will Deacon | 7eba1d5 | 2014-08-27 16:20:32 +0100 | [diff] [blame] | 242 | } |