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 | |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 22 | static int of_iommu_xlate(struct device *dev, |
| 23 | struct of_phandle_args *iommu_spec) |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 24 | { |
| 25 | const struct iommu_ops *ops; |
| 26 | struct fwnode_handle *fwnode = &iommu_spec->np->fwnode; |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 27 | int ret; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 28 | |
| 29 | ops = iommu_ops_from_fwnode(fwnode); |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 30 | if ((ops && !ops->of_xlate) || |
Rob Herring | ac6bbf0 | 2018-07-09 09:41:52 -0600 | [diff] [blame] | 31 | !of_device_is_available(iommu_spec->np)) |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 32 | return NO_IOMMU; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 33 | |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 34 | ret = iommu_fwspec_init(dev, &iommu_spec->np->fwnode, ops); |
| 35 | if (ret) |
| 36 | return ret; |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 37 | /* |
| 38 | * The otherwise-empty fwspec handily serves to indicate the specific |
| 39 | * IOMMU device we're waiting for, which will be useful if we ever get |
| 40 | * a proper probe-ordering dependency mechanism in future. |
| 41 | */ |
| 42 | if (!ops) |
Rob Herring | 78f307b | 2018-07-09 09:41:51 -0600 | [diff] [blame] | 43 | return driver_deferred_probe_check_state(dev); |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 44 | |
Will Deacon | 386dce2 | 2019-12-19 12:03:42 +0000 | [diff] [blame] | 45 | if (!try_module_get(ops->owner)) |
| 46 | return -ENODEV; |
| 47 | |
| 48 | ret = ops->of_xlate(dev, iommu_spec); |
| 49 | module_put(ops->owner); |
| 50 | return ret; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 51 | } |
| 52 | |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 53 | static int of_iommu_configure_dev_id(struct device_node *master_np, |
| 54 | struct device *dev, |
| 55 | const u32 *id) |
| 56 | { |
| 57 | struct of_phandle_args iommu_spec = { .args_count = 1 }; |
| 58 | int err; |
| 59 | |
| 60 | err = of_map_id(master_np, *id, "iommu-map", |
| 61 | "iommu-map-mask", &iommu_spec.np, |
| 62 | iommu_spec.args); |
| 63 | if (err) |
| 64 | return err == -ENODEV ? NO_IOMMU : err; |
| 65 | |
| 66 | err = of_iommu_xlate(dev, &iommu_spec); |
| 67 | of_node_put(iommu_spec.np); |
| 68 | return err; |
| 69 | } |
| 70 | |
| 71 | static int of_iommu_configure_dev(struct device_node *master_np, |
| 72 | struct device *dev) |
| 73 | { |
| 74 | struct of_phandle_args iommu_spec; |
| 75 | int err = NO_IOMMU, idx = 0; |
| 76 | |
| 77 | while (!of_parse_phandle_with_args(master_np, "iommus", |
| 78 | "#iommu-cells", |
| 79 | idx, &iommu_spec)) { |
| 80 | err = of_iommu_xlate(dev, &iommu_spec); |
| 81 | of_node_put(iommu_spec.np); |
| 82 | idx++; |
| 83 | if (err) |
| 84 | break; |
| 85 | } |
| 86 | |
| 87 | return err; |
| 88 | } |
| 89 | |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 90 | struct of_pci_iommu_alias_info { |
| 91 | struct device *dev; |
| 92 | struct device_node *np; |
| 93 | }; |
Robin Murphy | b996444 | 2016-09-12 17:13:41 +0100 | [diff] [blame] | 94 | |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 95 | 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] | 96 | { |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 97 | struct of_pci_iommu_alias_info *info = data; |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 98 | u32 input_id = alias; |
Robin Murphy | b996444 | 2016-09-12 17:13:41 +0100 | [diff] [blame] | 99 | |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 100 | return of_iommu_configure_dev_id(info->np, info->dev, &input_id); |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 101 | } |
Will Deacon | 7eba1d5 | 2014-08-27 16:20:32 +0100 | [diff] [blame] | 102 | |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 103 | static int of_iommu_configure_device(struct device_node *master_np, |
| 104 | struct device *dev, const u32 *id) |
Nipun Gupta | fa0656b | 2018-09-10 19:19:17 +0530 | [diff] [blame] | 105 | { |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 106 | return (id) ? of_iommu_configure_dev_id(master_np, dev, id) : |
| 107 | of_iommu_configure_dev(master_np, dev); |
Nipun Gupta | fa0656b | 2018-09-10 19:19:17 +0530 | [diff] [blame] | 108 | } |
| 109 | |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 110 | const struct iommu_ops *of_iommu_configure(struct device *dev, |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 111 | struct device_node *master_np, |
| 112 | const u32 *id) |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 113 | { |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 114 | const struct iommu_ops *ops = NULL; |
Joerg Roedel | 5c7e6bd | 2018-11-29 14:01:00 +0100 | [diff] [blame] | 115 | struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev); |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 116 | int err = NO_IOMMU; |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 117 | |
| 118 | if (!master_np) |
| 119 | return NULL; |
| 120 | |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 121 | if (fwspec) { |
| 122 | if (fwspec->ops) |
| 123 | return fwspec->ops; |
| 124 | |
| 125 | /* In the deferred case, start again from scratch */ |
| 126 | iommu_fwspec_free(dev); |
| 127 | } |
| 128 | |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 129 | /* |
| 130 | * We don't currently walk up the tree looking for a parent IOMMU. |
| 131 | * See the `Notes:' section of |
| 132 | * Documentation/devicetree/bindings/iommu/iommu.txt |
| 133 | */ |
| 134 | if (dev_is_pci(dev)) { |
| 135 | struct of_pci_iommu_alias_info info = { |
| 136 | .dev = dev, |
| 137 | .np = master_np, |
| 138 | }; |
| 139 | |
Will Deacon | 6bf6c24 | 2019-12-19 12:03:38 +0000 | [diff] [blame] | 140 | pci_request_acs(); |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 141 | err = pci_for_each_dma_alias(to_pci_dev(dev), |
| 142 | of_pci_iommu_init, &info); |
Robin Murphy | d87beb7 | 2017-05-31 18:52:29 +0100 | [diff] [blame] | 143 | } else { |
Lorenzo Pieralisi | a081bd4 | 2020-06-19 09:20:08 +0100 | [diff] [blame] | 144 | err = of_iommu_configure_device(master_np, dev, id); |
Jean-Philippe Brucker | 8953582 | 2020-01-15 13:52:29 +0100 | [diff] [blame] | 145 | } |
Joerg Roedel | 5c7e6bd | 2018-11-29 14:01:00 +0100 | [diff] [blame] | 146 | |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 147 | /* |
| 148 | * Two success conditions can be represented by non-negative err here: |
| 149 | * >0 : there is no IOMMU, or one was unavailable for non-fatal reasons |
| 150 | * 0 : we found an IOMMU, and dev->fwspec is initialised appropriately |
| 151 | * <0 : any actual error |
| 152 | */ |
Joerg Roedel | 5c7e6bd | 2018-11-29 14:01:00 +0100 | [diff] [blame] | 153 | if (!err) { |
| 154 | /* The fwspec pointer changed, read it again */ |
| 155 | fwspec = dev_iommu_fwspec_get(dev); |
| 156 | ops = fwspec->ops; |
| 157 | } |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 158 | /* |
| 159 | * If we have reason to believe the IOMMU driver missed the initial |
Joerg Roedel | 641fb0e | 2018-12-05 14:39:45 +0100 | [diff] [blame] | 160 | * probe for dev, replay it to get things in order. |
Robin Murphy | d7b0558 | 2017-04-10 16:50:57 +0530 | [diff] [blame] | 161 | */ |
Robin Murphy | e8e683a | 2019-01-07 17:04:50 +0000 | [diff] [blame] | 162 | if (!err && dev->bus && !device_iommu_mapped(dev)) |
Joerg Roedel | 641fb0e | 2018-12-05 14:39:45 +0100 | [diff] [blame] | 163 | err = iommu_probe_device(dev); |
Robin Murphy | 2a0c575 | 2017-04-10 16:50:56 +0530 | [diff] [blame] | 164 | |
Sricharan R | a37b19a | 2017-05-27 19:17:41 +0530 | [diff] [blame] | 165 | /* Ignore all other errors apart from EPROBE_DEFER */ |
Robin Murphy | da4b027 | 2017-08-04 17:29:06 +0100 | [diff] [blame] | 166 | if (err == -EPROBE_DEFER) { |
| 167 | ops = ERR_PTR(err); |
| 168 | } else if (err < 0) { |
| 169 | dev_dbg(dev, "Adding to IOMMU failed: %d\n", err); |
Sricharan R | a37b19a | 2017-05-27 19:17:41 +0530 | [diff] [blame] | 170 | ops = NULL; |
| 171 | } |
| 172 | |
Laurent Pinchart | 7b07cbe | 2017-04-10 16:51:02 +0530 | [diff] [blame] | 173 | return ops; |
Will Deacon | 7eba1d5 | 2014-08-27 16:20:32 +0100 | [diff] [blame] | 174 | } |