of_iommu.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*
  2. * OF helpers for IOMMU
  3. *
  4. * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  18. */
  19. #include <linux/export.h>
  20. #include <linux/iommu.h>
  21. #include <linux/limits.h>
  22. #include <linux/of.h>
  23. #include <linux/of_iommu.h>
  24. #include <linux/of_pci.h>
  25. #include <linux/slab.h>
  26. #define NO_IOMMU 1
  27. static const struct of_device_id __iommu_of_table_sentinel
  28. __used __section(__iommu_of_table_end);
  29. /**
  30. * of_get_dma_window - Parse *dma-window property and returns 0 if found.
  31. *
  32. * @dn: device node
  33. * @prefix: prefix for property name if any
  34. * @index: index to start to parse
  35. * @busno: Returns busno if supported. Otherwise pass NULL
  36. * @addr: Returns address that DMA starts
  37. * @size: Returns the range that DMA can handle
  38. *
  39. * This supports different formats flexibly. "prefix" can be
  40. * configured if any. "busno" and "index" are optionally
  41. * specified. Set 0(or NULL) if not used.
  42. */
  43. int of_get_dma_window(struct device_node *dn, const char *prefix, int index,
  44. unsigned long *busno, dma_addr_t *addr, size_t *size)
  45. {
  46. const __be32 *dma_window, *end;
  47. int bytes, cur_index = 0;
  48. char propname[NAME_MAX], addrname[NAME_MAX], sizename[NAME_MAX];
  49. if (!dn || !addr || !size)
  50. return -EINVAL;
  51. if (!prefix)
  52. prefix = "";
  53. snprintf(propname, sizeof(propname), "%sdma-window", prefix);
  54. snprintf(addrname, sizeof(addrname), "%s#dma-address-cells", prefix);
  55. snprintf(sizename, sizeof(sizename), "%s#dma-size-cells", prefix);
  56. dma_window = of_get_property(dn, propname, &bytes);
  57. if (!dma_window)
  58. return -ENODEV;
  59. end = dma_window + bytes / sizeof(*dma_window);
  60. while (dma_window < end) {
  61. u32 cells;
  62. const void *prop;
  63. /* busno is one cell if supported */
  64. if (busno)
  65. *busno = be32_to_cpup(dma_window++);
  66. prop = of_get_property(dn, addrname, NULL);
  67. if (!prop)
  68. prop = of_get_property(dn, "#address-cells", NULL);
  69. cells = prop ? be32_to_cpup(prop) : of_n_addr_cells(dn);
  70. if (!cells)
  71. return -EINVAL;
  72. *addr = of_read_number(dma_window, cells);
  73. dma_window += cells;
  74. prop = of_get_property(dn, sizename, NULL);
  75. cells = prop ? be32_to_cpup(prop) : of_n_size_cells(dn);
  76. if (!cells)
  77. return -EINVAL;
  78. *size = of_read_number(dma_window, cells);
  79. dma_window += cells;
  80. if (cur_index++ == index)
  81. break;
  82. }
  83. return 0;
  84. }
  85. EXPORT_SYMBOL_GPL(of_get_dma_window);
  86. static bool of_iommu_driver_present(struct device_node *np)
  87. {
  88. /*
  89. * If the IOMMU still isn't ready by the time we reach init, assume
  90. * it never will be. We don't want to defer indefinitely, nor attempt
  91. * to dereference __iommu_of_table after it's been freed.
  92. */
  93. if (system_state >= SYSTEM_RUNNING)
  94. return false;
  95. return of_match_node(&__iommu_of_table, np);
  96. }
  97. static int of_iommu_xlate(struct device *dev,
  98. struct of_phandle_args *iommu_spec)
  99. {
  100. const struct iommu_ops *ops;
  101. struct fwnode_handle *fwnode = &iommu_spec->np->fwnode;
  102. int err;
  103. ops = iommu_ops_from_fwnode(fwnode);
  104. if ((ops && !ops->of_xlate) ||
  105. !of_device_is_available(iommu_spec->np) ||
  106. (!ops && !of_iommu_driver_present(iommu_spec->np)))
  107. return NO_IOMMU;
  108. err = iommu_fwspec_init(dev, &iommu_spec->np->fwnode, ops);
  109. if (err)
  110. return err;
  111. /*
  112. * The otherwise-empty fwspec handily serves to indicate the specific
  113. * IOMMU device we're waiting for, which will be useful if we ever get
  114. * a proper probe-ordering dependency mechanism in future.
  115. */
  116. if (!ops)
  117. return -EPROBE_DEFER;
  118. return ops->of_xlate(dev, iommu_spec);
  119. }
  120. struct of_pci_iommu_alias_info {
  121. struct device *dev;
  122. struct device_node *np;
  123. };
  124. static int of_pci_iommu_init(struct pci_dev *pdev, u16 alias, void *data)
  125. {
  126. struct of_pci_iommu_alias_info *info = data;
  127. struct of_phandle_args iommu_spec = { .args_count = 1 };
  128. int err;
  129. err = of_pci_map_rid(info->np, alias, "iommu-map",
  130. "iommu-map-mask", &iommu_spec.np,
  131. iommu_spec.args);
  132. if (err)
  133. return err == -ENODEV ? NO_IOMMU : err;
  134. err = of_iommu_xlate(info->dev, &iommu_spec);
  135. of_node_put(iommu_spec.np);
  136. if (err)
  137. return err;
  138. return info->np == pdev->bus->dev.of_node;
  139. }
  140. const struct iommu_ops *of_iommu_configure(struct device *dev,
  141. struct device_node *master_np)
  142. {
  143. const struct iommu_ops *ops = NULL;
  144. struct iommu_fwspec *fwspec = dev->iommu_fwspec;
  145. int err = NO_IOMMU;
  146. if (!master_np)
  147. return NULL;
  148. if (fwspec) {
  149. if (fwspec->ops)
  150. return fwspec->ops;
  151. /* In the deferred case, start again from scratch */
  152. iommu_fwspec_free(dev);
  153. }
  154. /*
  155. * We don't currently walk up the tree looking for a parent IOMMU.
  156. * See the `Notes:' section of
  157. * Documentation/devicetree/bindings/iommu/iommu.txt
  158. */
  159. if (dev_is_pci(dev)) {
  160. struct of_pci_iommu_alias_info info = {
  161. .dev = dev,
  162. .np = master_np,
  163. };
  164. err = pci_for_each_dma_alias(to_pci_dev(dev),
  165. of_pci_iommu_init, &info);
  166. } else {
  167. struct of_phandle_args iommu_spec;
  168. int idx = 0;
  169. while (!of_parse_phandle_with_args(master_np, "iommus",
  170. "#iommu-cells",
  171. idx, &iommu_spec)) {
  172. err = of_iommu_xlate(dev, &iommu_spec);
  173. of_node_put(iommu_spec.np);
  174. idx++;
  175. if (err)
  176. break;
  177. }
  178. }
  179. /*
  180. * Two success conditions can be represented by non-negative err here:
  181. * >0 : there is no IOMMU, or one was unavailable for non-fatal reasons
  182. * 0 : we found an IOMMU, and dev->fwspec is initialised appropriately
  183. * <0 : any actual error
  184. */
  185. if (!err)
  186. ops = dev->iommu_fwspec->ops;
  187. /*
  188. * If we have reason to believe the IOMMU driver missed the initial
  189. * add_device callback for dev, replay it to get things in order.
  190. */
  191. if (ops && ops->add_device && dev->bus && !dev->iommu_group)
  192. err = ops->add_device(dev);
  193. /* Ignore all other errors apart from EPROBE_DEFER */
  194. if (err == -EPROBE_DEFER) {
  195. ops = ERR_PTR(err);
  196. } else if (err < 0) {
  197. dev_dbg(dev, "Adding to IOMMU failed: %d\n", err);
  198. ops = NULL;
  199. }
  200. return ops;
  201. }
  202. static int __init of_iommu_init(void)
  203. {
  204. struct device_node *np;
  205. const struct of_device_id *match, *matches = &__iommu_of_table;
  206. for_each_matching_node_and_match(np, matches, &match) {
  207. const of_iommu_init_fn init_fn = match->data;
  208. if (init_fn && init_fn(np))
  209. pr_err("Failed to initialise IOMMU %pOF\n", np);
  210. }
  211. return 0;
  212. }
  213. postcore_initcall_sync(of_iommu_init);