]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/acpi/arm64/iort.c
9aebb14c23a1b67cd6915f767c5bf921b6989b42
[mirror_ubuntu-zesty-kernel.git] / drivers / acpi / arm64 / iort.c
1 /*
2 * Copyright (C) 2016, Semihalf
3 * Author: Tomasz Nowicki <tn@semihalf.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * This file implements early detection/parsing of I/O mapping
15 * reported to OS through firmware via I/O Remapping Table (IORT)
16 * IORT document number: ARM DEN 0049A
17 */
18
19 #define pr_fmt(fmt) "ACPI: IORT: " fmt
20
21 #include <linux/acpi_iort.h>
22 #include <linux/iommu.h>
23 #include <linux/kernel.h>
24 #include <linux/list.h>
25 #include <linux/pci.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
28
29 #define IORT_TYPE_MASK(type) (1 << (type))
30 #define IORT_MSI_TYPE (1 << ACPI_IORT_NODE_ITS_GROUP)
31 #define IORT_IOMMU_TYPE ((1 << ACPI_IORT_NODE_SMMU) | \
32 (1 << ACPI_IORT_NODE_SMMU_V3))
33
34 struct iort_its_msi_chip {
35 struct list_head list;
36 struct fwnode_handle *fw_node;
37 u32 translation_id;
38 };
39
40 struct iort_fwnode {
41 struct list_head list;
42 struct acpi_iort_node *iort_node;
43 struct fwnode_handle *fwnode;
44 };
45 static LIST_HEAD(iort_fwnode_list);
46 static DEFINE_SPINLOCK(iort_fwnode_lock);
47
48 /**
49 * iort_set_fwnode() - Create iort_fwnode and use it to register
50 * iommu data in the iort_fwnode_list
51 *
52 * @node: IORT table node associated with the IOMMU
53 * @fwnode: fwnode associated with the IORT node
54 *
55 * Returns: 0 on success
56 * <0 on failure
57 */
58 static inline int iort_set_fwnode(struct acpi_iort_node *iort_node,
59 struct fwnode_handle *fwnode)
60 {
61 struct iort_fwnode *np;
62
63 np = kzalloc(sizeof(struct iort_fwnode), GFP_ATOMIC);
64
65 if (WARN_ON(!np))
66 return -ENOMEM;
67
68 INIT_LIST_HEAD(&np->list);
69 np->iort_node = iort_node;
70 np->fwnode = fwnode;
71
72 spin_lock(&iort_fwnode_lock);
73 list_add_tail(&np->list, &iort_fwnode_list);
74 spin_unlock(&iort_fwnode_lock);
75
76 return 0;
77 }
78
79 /**
80 * iort_get_fwnode() - Retrieve fwnode associated with an IORT node
81 *
82 * @node: IORT table node to be looked-up
83 *
84 * Returns: fwnode_handle pointer on success, NULL on failure
85 */
86 static inline
87 struct fwnode_handle *iort_get_fwnode(struct acpi_iort_node *node)
88 {
89 struct iort_fwnode *curr;
90 struct fwnode_handle *fwnode = NULL;
91
92 spin_lock(&iort_fwnode_lock);
93 list_for_each_entry(curr, &iort_fwnode_list, list) {
94 if (curr->iort_node == node) {
95 fwnode = curr->fwnode;
96 break;
97 }
98 }
99 spin_unlock(&iort_fwnode_lock);
100
101 return fwnode;
102 }
103
104 /**
105 * iort_delete_fwnode() - Delete fwnode associated with an IORT node
106 *
107 * @node: IORT table node associated with fwnode to delete
108 */
109 static inline void iort_delete_fwnode(struct acpi_iort_node *node)
110 {
111 struct iort_fwnode *curr, *tmp;
112
113 spin_lock(&iort_fwnode_lock);
114 list_for_each_entry_safe(curr, tmp, &iort_fwnode_list, list) {
115 if (curr->iort_node == node) {
116 list_del(&curr->list);
117 kfree(curr);
118 break;
119 }
120 }
121 spin_unlock(&iort_fwnode_lock);
122 }
123
124 typedef acpi_status (*iort_find_node_callback)
125 (struct acpi_iort_node *node, void *context);
126
127 /* Root pointer to the mapped IORT table */
128 static struct acpi_table_header *iort_table;
129
130 static LIST_HEAD(iort_msi_chip_list);
131 static DEFINE_SPINLOCK(iort_msi_chip_lock);
132
133 /**
134 * iort_register_domain_token() - register domain token and related ITS ID
135 * to the list from where we can get it back later on.
136 * @trans_id: ITS ID.
137 * @fw_node: Domain token.
138 *
139 * Returns: 0 on success, -ENOMEM if no memory when allocating list element
140 */
141 int iort_register_domain_token(int trans_id, struct fwnode_handle *fw_node)
142 {
143 struct iort_its_msi_chip *its_msi_chip;
144
145 its_msi_chip = kzalloc(sizeof(*its_msi_chip), GFP_KERNEL);
146 if (!its_msi_chip)
147 return -ENOMEM;
148
149 its_msi_chip->fw_node = fw_node;
150 its_msi_chip->translation_id = trans_id;
151
152 spin_lock(&iort_msi_chip_lock);
153 list_add(&its_msi_chip->list, &iort_msi_chip_list);
154 spin_unlock(&iort_msi_chip_lock);
155
156 return 0;
157 }
158
159 /**
160 * iort_deregister_domain_token() - Deregister domain token based on ITS ID
161 * @trans_id: ITS ID.
162 *
163 * Returns: none.
164 */
165 void iort_deregister_domain_token(int trans_id)
166 {
167 struct iort_its_msi_chip *its_msi_chip, *t;
168
169 spin_lock(&iort_msi_chip_lock);
170 list_for_each_entry_safe(its_msi_chip, t, &iort_msi_chip_list, list) {
171 if (its_msi_chip->translation_id == trans_id) {
172 list_del(&its_msi_chip->list);
173 kfree(its_msi_chip);
174 break;
175 }
176 }
177 spin_unlock(&iort_msi_chip_lock);
178 }
179
180 /**
181 * iort_find_domain_token() - Find domain token based on given ITS ID
182 * @trans_id: ITS ID.
183 *
184 * Returns: domain token when find on the list, NULL otherwise
185 */
186 struct fwnode_handle *iort_find_domain_token(int trans_id)
187 {
188 struct fwnode_handle *fw_node = NULL;
189 struct iort_its_msi_chip *its_msi_chip;
190
191 spin_lock(&iort_msi_chip_lock);
192 list_for_each_entry(its_msi_chip, &iort_msi_chip_list, list) {
193 if (its_msi_chip->translation_id == trans_id) {
194 fw_node = its_msi_chip->fw_node;
195 break;
196 }
197 }
198 spin_unlock(&iort_msi_chip_lock);
199
200 return fw_node;
201 }
202
203 static struct acpi_iort_node *iort_scan_node(enum acpi_iort_node_type type,
204 iort_find_node_callback callback,
205 void *context)
206 {
207 struct acpi_iort_node *iort_node, *iort_end;
208 struct acpi_table_iort *iort;
209 int i;
210
211 if (!iort_table)
212 return NULL;
213
214 /* Get the first IORT node */
215 iort = (struct acpi_table_iort *)iort_table;
216 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort,
217 iort->node_offset);
218 iort_end = ACPI_ADD_PTR(struct acpi_iort_node, iort_table,
219 iort_table->length);
220
221 for (i = 0; i < iort->node_count; i++) {
222 if (WARN_TAINT(iort_node >= iort_end, TAINT_FIRMWARE_WORKAROUND,
223 "IORT node pointer overflows, bad table!\n"))
224 return NULL;
225
226 if (iort_node->type == type &&
227 ACPI_SUCCESS(callback(iort_node, context)))
228 return iort_node;
229
230 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node,
231 iort_node->length);
232 }
233
234 return NULL;
235 }
236
237 static acpi_status
238 iort_match_type_callback(struct acpi_iort_node *node, void *context)
239 {
240 return AE_OK;
241 }
242
243 bool iort_node_match(u8 type)
244 {
245 struct acpi_iort_node *node;
246
247 node = iort_scan_node(type, iort_match_type_callback, NULL);
248
249 return node != NULL;
250 }
251
252 static acpi_status iort_match_node_callback(struct acpi_iort_node *node,
253 void *context)
254 {
255 struct device *dev = context;
256 acpi_status status = AE_NOT_FOUND;
257
258 if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT) {
259 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
260 struct acpi_device *adev = to_acpi_device_node(dev->fwnode);
261 struct acpi_iort_named_component *ncomp;
262
263 if (!adev)
264 goto out;
265
266 status = acpi_get_name(adev->handle, ACPI_FULL_PATHNAME, &buf);
267 if (ACPI_FAILURE(status)) {
268 dev_warn(dev, "Can't get device full path name\n");
269 goto out;
270 }
271
272 ncomp = (struct acpi_iort_named_component *)node->node_data;
273 status = !strcmp(ncomp->device_name, buf.pointer) ?
274 AE_OK : AE_NOT_FOUND;
275 acpi_os_free(buf.pointer);
276 } else if (node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) {
277 struct acpi_iort_root_complex *pci_rc;
278 struct pci_bus *bus;
279
280 bus = to_pci_bus(dev);
281 pci_rc = (struct acpi_iort_root_complex *)node->node_data;
282
283 /*
284 * It is assumed that PCI segment numbers maps one-to-one
285 * with root complexes. Each segment number can represent only
286 * one root complex.
287 */
288 status = pci_rc->pci_segment_number == pci_domain_nr(bus) ?
289 AE_OK : AE_NOT_FOUND;
290 }
291 out:
292 return status;
293 }
294
295 static int iort_id_map(struct acpi_iort_id_mapping *map, u8 type, u32 rid_in,
296 u32 *rid_out)
297 {
298 /* Single mapping does not care for input id */
299 if (map->flags & ACPI_IORT_ID_SINGLE_MAPPING) {
300 if (type == ACPI_IORT_NODE_NAMED_COMPONENT ||
301 type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) {
302 *rid_out = map->output_base;
303 return 0;
304 }
305
306 pr_warn(FW_BUG "[map %p] SINGLE MAPPING flag not allowed for node type %d, skipping ID map\n",
307 map, type);
308 return -ENXIO;
309 }
310
311 if (rid_in < map->input_base ||
312 (rid_in >= map->input_base + map->id_count))
313 return -ENXIO;
314
315 *rid_out = map->output_base + (rid_in - map->input_base);
316 return 0;
317 }
318
319 static
320 struct acpi_iort_node *iort_node_get_id(struct acpi_iort_node *node,
321 u32 *id_out, int index)
322 {
323 struct acpi_iort_node *parent;
324 struct acpi_iort_id_mapping *map;
325
326 if (!node->mapping_offset || !node->mapping_count ||
327 index >= node->mapping_count)
328 return NULL;
329
330 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node,
331 node->mapping_offset + index * sizeof(*map));
332
333 /* Firmware bug! */
334 if (!map->output_reference) {
335 pr_err(FW_BUG "[node %p type %d] ID map has NULL parent reference\n",
336 node, node->type);
337 return NULL;
338 }
339
340 parent = ACPI_ADD_PTR(struct acpi_iort_node, iort_table,
341 map->output_reference);
342
343 if (map->flags & ACPI_IORT_ID_SINGLE_MAPPING) {
344 if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT ||
345 node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) {
346 *id_out = map->output_base;
347 return parent;
348 }
349 }
350
351 return NULL;
352 }
353
354 static struct acpi_iort_node *iort_node_map_id(struct acpi_iort_node *node,
355 u32 id_in, u32 *id_out,
356 u8 type_mask)
357 {
358 u32 id = id_in;
359
360 /* Parse the ID mapping tree to find specified node type */
361 while (node) {
362 struct acpi_iort_id_mapping *map;
363 int i;
364
365 if (IORT_TYPE_MASK(node->type) & type_mask) {
366 if (id_out)
367 *id_out = id;
368 return node;
369 }
370
371 if (!node->mapping_offset || !node->mapping_count)
372 goto fail_map;
373
374 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node,
375 node->mapping_offset);
376
377 /* Firmware bug! */
378 if (!map->output_reference) {
379 pr_err(FW_BUG "[node %p type %d] ID map has NULL parent reference\n",
380 node, node->type);
381 goto fail_map;
382 }
383
384 /* Do the ID translation */
385 for (i = 0; i < node->mapping_count; i++, map++) {
386 if (!iort_id_map(map, node->type, id, &id))
387 break;
388 }
389
390 if (i == node->mapping_count)
391 goto fail_map;
392
393 node = ACPI_ADD_PTR(struct acpi_iort_node, iort_table,
394 map->output_reference);
395 }
396
397 fail_map:
398 /* Map input ID to output ID unchanged on mapping failure */
399 if (id_out)
400 *id_out = id_in;
401
402 return NULL;
403 }
404
405 static
406 struct acpi_iort_node *iort_node_map_platform_id(struct acpi_iort_node *node,
407 u32 *id_out, u8 type_mask,
408 int index)
409 {
410 struct acpi_iort_node *parent;
411 u32 id;
412
413 /* step 1: retrieve the initial dev id */
414 parent = iort_node_get_id(node, &id, index);
415 if (!parent)
416 return NULL;
417
418 /*
419 * optional step 2: map the initial dev id if its parent is not
420 * the target type we want, map it again for the use cases such
421 * as NC (named component) -> SMMU -> ITS. If the type is matched,
422 * return the initial dev id and its parent pointer directly.
423 */
424 if (!(IORT_TYPE_MASK(parent->type) & type_mask))
425 parent = iort_node_map_id(parent, id, id_out, type_mask);
426 else
427 if (id_out)
428 *id_out = id;
429
430 return parent;
431 }
432
433 static struct acpi_iort_node *iort_find_dev_node(struct device *dev)
434 {
435 struct pci_bus *pbus;
436
437 if (!dev_is_pci(dev))
438 return iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT,
439 iort_match_node_callback, dev);
440
441 /* Find a PCI root bus */
442 pbus = to_pci_dev(dev)->bus;
443 while (!pci_is_root_bus(pbus))
444 pbus = pbus->parent;
445
446 return iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX,
447 iort_match_node_callback, &pbus->dev);
448 }
449
450 /**
451 * iort_msi_map_rid() - Map a MSI requester ID for a device
452 * @dev: The device for which the mapping is to be done.
453 * @req_id: The device requester ID.
454 *
455 * Returns: mapped MSI RID on success, input requester ID otherwise
456 */
457 u32 iort_msi_map_rid(struct device *dev, u32 req_id)
458 {
459 struct acpi_iort_node *node;
460 u32 dev_id;
461
462 node = iort_find_dev_node(dev);
463 if (!node)
464 return req_id;
465
466 iort_node_map_id(node, req_id, &dev_id, IORT_MSI_TYPE);
467 return dev_id;
468 }
469
470 /**
471 * iort_pmsi_get_dev_id() - Get the device id for a device
472 * @dev: The device for which the mapping is to be done.
473 * @dev_id: The device ID found.
474 *
475 * Returns: 0 for successful find a dev id, -ENODEV on error
476 */
477 int iort_pmsi_get_dev_id(struct device *dev, u32 *dev_id)
478 {
479 int i;
480 struct acpi_iort_node *node;
481
482 node = iort_find_dev_node(dev);
483 if (!node)
484 return -ENODEV;
485
486 for (i = 0; i < node->mapping_count; i++) {
487 if (iort_node_map_platform_id(node, dev_id, IORT_MSI_TYPE, i))
488 return 0;
489 }
490
491 return -ENODEV;
492 }
493
494 /**
495 * iort_dev_find_its_id() - Find the ITS identifier for a device
496 * @dev: The device.
497 * @req_id: Device's requester ID
498 * @idx: Index of the ITS identifier list.
499 * @its_id: ITS identifier.
500 *
501 * Returns: 0 on success, appropriate error value otherwise
502 */
503 static int iort_dev_find_its_id(struct device *dev, u32 req_id,
504 unsigned int idx, int *its_id)
505 {
506 struct acpi_iort_its_group *its;
507 struct acpi_iort_node *node;
508
509 node = iort_find_dev_node(dev);
510 if (!node)
511 return -ENXIO;
512
513 node = iort_node_map_id(node, req_id, NULL, IORT_MSI_TYPE);
514 if (!node)
515 return -ENXIO;
516
517 /* Move to ITS specific data */
518 its = (struct acpi_iort_its_group *)node->node_data;
519 if (idx > its->its_count) {
520 dev_err(dev, "requested ITS ID index [%d] is greater than available [%d]\n",
521 idx, its->its_count);
522 return -ENXIO;
523 }
524
525 *its_id = its->identifiers[idx];
526 return 0;
527 }
528
529 /**
530 * iort_get_device_domain() - Find MSI domain related to a device
531 * @dev: The device.
532 * @req_id: Requester ID for the device.
533 *
534 * Returns: the MSI domain for this device, NULL otherwise
535 */
536 struct irq_domain *iort_get_device_domain(struct device *dev, u32 req_id)
537 {
538 struct fwnode_handle *handle;
539 int its_id;
540
541 if (iort_dev_find_its_id(dev, req_id, 0, &its_id))
542 return NULL;
543
544 handle = iort_find_domain_token(its_id);
545 if (!handle)
546 return NULL;
547
548 return irq_find_matching_fwnode(handle, DOMAIN_BUS_PCI_MSI);
549 }
550
551 static int __get_pci_rid(struct pci_dev *pdev, u16 alias, void *data)
552 {
553 u32 *rid = data;
554
555 *rid = alias;
556 return 0;
557 }
558
559 static int arm_smmu_iort_xlate(struct device *dev, u32 streamid,
560 struct fwnode_handle *fwnode,
561 const struct iommu_ops *ops)
562 {
563 int ret = iommu_fwspec_init(dev, fwnode, ops);
564
565 if (!ret)
566 ret = iommu_fwspec_add_ids(dev, &streamid, 1);
567
568 return ret;
569 }
570
571 static const struct iommu_ops *iort_iommu_xlate(struct device *dev,
572 struct acpi_iort_node *node,
573 u32 streamid)
574 {
575 const struct iommu_ops *ops = NULL;
576 int ret = -ENODEV;
577 struct fwnode_handle *iort_fwnode;
578
579 if (node) {
580 iort_fwnode = iort_get_fwnode(node);
581 if (!iort_fwnode)
582 return NULL;
583
584 ops = iommu_get_instance(iort_fwnode);
585 if (!ops)
586 return NULL;
587
588 ret = arm_smmu_iort_xlate(dev, streamid, iort_fwnode, ops);
589 }
590
591 return ret ? NULL : ops;
592 }
593
594 /**
595 * iort_set_dma_mask - Set-up dma mask for a device.
596 *
597 * @dev: device to configure
598 */
599 void iort_set_dma_mask(struct device *dev)
600 {
601 /*
602 * Set default coherent_dma_mask to 32 bit. Drivers are expected to
603 * setup the correct supported mask.
604 */
605 if (!dev->coherent_dma_mask)
606 dev->coherent_dma_mask = DMA_BIT_MASK(32);
607
608 /*
609 * Set it to coherent_dma_mask by default if the architecture
610 * code has not set it.
611 */
612 if (!dev->dma_mask)
613 dev->dma_mask = &dev->coherent_dma_mask;
614 }
615
616 /**
617 * iort_iommu_configure - Set-up IOMMU configuration for a device.
618 *
619 * @dev: device to configure
620 *
621 * Returns: iommu_ops pointer on configuration success
622 * NULL on configuration failure
623 */
624 const struct iommu_ops *iort_iommu_configure(struct device *dev)
625 {
626 struct acpi_iort_node *node, *parent;
627 const struct iommu_ops *ops = NULL;
628 u32 streamid = 0;
629
630 if (dev_is_pci(dev)) {
631 struct pci_bus *bus = to_pci_dev(dev)->bus;
632 u32 rid;
633
634 pci_for_each_dma_alias(to_pci_dev(dev), __get_pci_rid,
635 &rid);
636
637 node = iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX,
638 iort_match_node_callback, &bus->dev);
639 if (!node)
640 return NULL;
641
642 parent = iort_node_map_id(node, rid, &streamid,
643 IORT_IOMMU_TYPE);
644
645 ops = iort_iommu_xlate(dev, parent, streamid);
646
647 } else {
648 int i = 0;
649
650 node = iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT,
651 iort_match_node_callback, dev);
652 if (!node)
653 return NULL;
654
655 parent = iort_node_map_platform_id(node, &streamid,
656 IORT_IOMMU_TYPE, i++);
657
658 while (parent) {
659 ops = iort_iommu_xlate(dev, parent, streamid);
660
661 parent = iort_node_map_platform_id(node, &streamid,
662 IORT_IOMMU_TYPE,
663 i++);
664 }
665 }
666
667 return ops;
668 }
669
670 static void __init acpi_iort_register_irq(int hwirq, const char *name,
671 int trigger,
672 struct resource *res)
673 {
674 int irq = acpi_register_gsi(NULL, hwirq, trigger,
675 ACPI_ACTIVE_HIGH);
676
677 if (irq <= 0) {
678 pr_err("could not register gsi hwirq %d name [%s]\n", hwirq,
679 name);
680 return;
681 }
682
683 res->start = irq;
684 res->end = irq;
685 res->flags = IORESOURCE_IRQ;
686 res->name = name;
687 }
688
689 static int __init arm_smmu_v3_count_resources(struct acpi_iort_node *node)
690 {
691 struct acpi_iort_smmu_v3 *smmu;
692 /* Always present mem resource */
693 int num_res = 1;
694
695 /* Retrieve SMMUv3 specific data */
696 smmu = (struct acpi_iort_smmu_v3 *)node->node_data;
697
698 if (smmu->event_gsiv)
699 num_res++;
700
701 if (smmu->pri_gsiv)
702 num_res++;
703
704 if (smmu->gerr_gsiv)
705 num_res++;
706
707 if (smmu->sync_gsiv)
708 num_res++;
709
710 return num_res;
711 }
712
713 static void __init arm_smmu_v3_init_resources(struct resource *res,
714 struct acpi_iort_node *node)
715 {
716 struct acpi_iort_smmu_v3 *smmu;
717 int num_res = 0;
718
719 /* Retrieve SMMUv3 specific data */
720 smmu = (struct acpi_iort_smmu_v3 *)node->node_data;
721
722 res[num_res].start = smmu->base_address;
723 res[num_res].end = smmu->base_address + SZ_128K - 1;
724 res[num_res].flags = IORESOURCE_MEM;
725
726 num_res++;
727
728 if (smmu->event_gsiv)
729 acpi_iort_register_irq(smmu->event_gsiv, "eventq",
730 ACPI_EDGE_SENSITIVE,
731 &res[num_res++]);
732
733 if (smmu->pri_gsiv)
734 acpi_iort_register_irq(smmu->pri_gsiv, "priq",
735 ACPI_EDGE_SENSITIVE,
736 &res[num_res++]);
737
738 if (smmu->gerr_gsiv)
739 acpi_iort_register_irq(smmu->gerr_gsiv, "gerror",
740 ACPI_EDGE_SENSITIVE,
741 &res[num_res++]);
742
743 if (smmu->sync_gsiv)
744 acpi_iort_register_irq(smmu->sync_gsiv, "cmdq-sync",
745 ACPI_EDGE_SENSITIVE,
746 &res[num_res++]);
747 }
748
749 static bool __init arm_smmu_v3_is_coherent(struct acpi_iort_node *node)
750 {
751 struct acpi_iort_smmu_v3 *smmu;
752
753 /* Retrieve SMMUv3 specific data */
754 smmu = (struct acpi_iort_smmu_v3 *)node->node_data;
755
756 return smmu->flags & ACPI_IORT_SMMU_V3_COHACC_OVERRIDE;
757 }
758
759 static int __init arm_smmu_count_resources(struct acpi_iort_node *node)
760 {
761 struct acpi_iort_smmu *smmu;
762
763 /* Retrieve SMMU specific data */
764 smmu = (struct acpi_iort_smmu *)node->node_data;
765
766 /*
767 * Only consider the global fault interrupt and ignore the
768 * configuration access interrupt.
769 *
770 * MMIO address and global fault interrupt resources are always
771 * present so add them to the context interrupt count as a static
772 * value.
773 */
774 return smmu->context_interrupt_count + 2;
775 }
776
777 static void __init arm_smmu_init_resources(struct resource *res,
778 struct acpi_iort_node *node)
779 {
780 struct acpi_iort_smmu *smmu;
781 int i, hw_irq, trigger, num_res = 0;
782 u64 *ctx_irq, *glb_irq;
783
784 /* Retrieve SMMU specific data */
785 smmu = (struct acpi_iort_smmu *)node->node_data;
786
787 res[num_res].start = smmu->base_address;
788 res[num_res].end = smmu->base_address + smmu->span - 1;
789 res[num_res].flags = IORESOURCE_MEM;
790 num_res++;
791
792 glb_irq = ACPI_ADD_PTR(u64, node, smmu->global_interrupt_offset);
793 /* Global IRQs */
794 hw_irq = IORT_IRQ_MASK(glb_irq[0]);
795 trigger = IORT_IRQ_TRIGGER_MASK(glb_irq[0]);
796
797 acpi_iort_register_irq(hw_irq, "arm-smmu-global", trigger,
798 &res[num_res++]);
799
800 /* Context IRQs */
801 ctx_irq = ACPI_ADD_PTR(u64, node, smmu->context_interrupt_offset);
802 for (i = 0; i < smmu->context_interrupt_count; i++) {
803 hw_irq = IORT_IRQ_MASK(ctx_irq[i]);
804 trigger = IORT_IRQ_TRIGGER_MASK(ctx_irq[i]);
805
806 acpi_iort_register_irq(hw_irq, "arm-smmu-context", trigger,
807 &res[num_res++]);
808 }
809 }
810
811 static bool __init arm_smmu_is_coherent(struct acpi_iort_node *node)
812 {
813 struct acpi_iort_smmu *smmu;
814
815 /* Retrieve SMMU specific data */
816 smmu = (struct acpi_iort_smmu *)node->node_data;
817
818 return smmu->flags & ACPI_IORT_SMMU_COHERENT_WALK;
819 }
820
821 struct iort_iommu_config {
822 const char *name;
823 int (*iommu_init)(struct acpi_iort_node *node);
824 bool (*iommu_is_coherent)(struct acpi_iort_node *node);
825 int (*iommu_count_resources)(struct acpi_iort_node *node);
826 void (*iommu_init_resources)(struct resource *res,
827 struct acpi_iort_node *node);
828 };
829
830 static const struct iort_iommu_config iort_arm_smmu_v3_cfg __initconst = {
831 .name = "arm-smmu-v3",
832 .iommu_is_coherent = arm_smmu_v3_is_coherent,
833 .iommu_count_resources = arm_smmu_v3_count_resources,
834 .iommu_init_resources = arm_smmu_v3_init_resources
835 };
836
837 static const struct iort_iommu_config iort_arm_smmu_cfg __initconst = {
838 .name = "arm-smmu",
839 .iommu_is_coherent = arm_smmu_is_coherent,
840 .iommu_count_resources = arm_smmu_count_resources,
841 .iommu_init_resources = arm_smmu_init_resources
842 };
843
844 static __init
845 const struct iort_iommu_config *iort_get_iommu_cfg(struct acpi_iort_node *node)
846 {
847 switch (node->type) {
848 case ACPI_IORT_NODE_SMMU_V3:
849 return &iort_arm_smmu_v3_cfg;
850 case ACPI_IORT_NODE_SMMU:
851 return &iort_arm_smmu_cfg;
852 default:
853 return NULL;
854 }
855 }
856
857 /**
858 * iort_add_smmu_platform_device() - Allocate a platform device for SMMU
859 * @node: Pointer to SMMU ACPI IORT node
860 *
861 * Returns: 0 on success, <0 failure
862 */
863 static int __init iort_add_smmu_platform_device(struct acpi_iort_node *node)
864 {
865 struct fwnode_handle *fwnode;
866 struct platform_device *pdev;
867 struct resource *r;
868 enum dev_dma_attr attr;
869 int ret, count;
870 const struct iort_iommu_config *ops = iort_get_iommu_cfg(node);
871
872 if (!ops)
873 return -ENODEV;
874
875 pdev = platform_device_alloc(ops->name, PLATFORM_DEVID_AUTO);
876 if (!pdev)
877 return PTR_ERR(pdev);
878
879 count = ops->iommu_count_resources(node);
880
881 r = kcalloc(count, sizeof(*r), GFP_KERNEL);
882 if (!r) {
883 ret = -ENOMEM;
884 goto dev_put;
885 }
886
887 ops->iommu_init_resources(r, node);
888
889 ret = platform_device_add_resources(pdev, r, count);
890 /*
891 * Resources are duplicated in platform_device_add_resources,
892 * free their allocated memory
893 */
894 kfree(r);
895
896 if (ret)
897 goto dev_put;
898
899 /*
900 * Add a copy of IORT node pointer to platform_data to
901 * be used to retrieve IORT data information.
902 */
903 ret = platform_device_add_data(pdev, &node, sizeof(node));
904 if (ret)
905 goto dev_put;
906
907 /*
908 * We expect the dma masks to be equivalent for
909 * all SMMUs set-ups
910 */
911 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
912
913 fwnode = iort_get_fwnode(node);
914
915 if (!fwnode) {
916 ret = -ENODEV;
917 goto dev_put;
918 }
919
920 pdev->dev.fwnode = fwnode;
921
922 attr = ops->iommu_is_coherent(node) ?
923 DEV_DMA_COHERENT : DEV_DMA_NON_COHERENT;
924
925 /* Configure DMA for the page table walker */
926 acpi_dma_configure(&pdev->dev, attr);
927
928 ret = platform_device_add(pdev);
929 if (ret)
930 goto dma_deconfigure;
931
932 return 0;
933
934 dma_deconfigure:
935 acpi_dma_deconfigure(&pdev->dev);
936 dev_put:
937 platform_device_put(pdev);
938
939 return ret;
940 }
941
942 static void __init iort_init_platform_devices(void)
943 {
944 struct acpi_iort_node *iort_node, *iort_end;
945 struct acpi_table_iort *iort;
946 struct fwnode_handle *fwnode;
947 int i, ret;
948
949 /*
950 * iort_table and iort both point to the start of IORT table, but
951 * have different struct types
952 */
953 iort = (struct acpi_table_iort *)iort_table;
954
955 /* Get the first IORT node */
956 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort,
957 iort->node_offset);
958 iort_end = ACPI_ADD_PTR(struct acpi_iort_node, iort,
959 iort_table->length);
960
961 for (i = 0; i < iort->node_count; i++) {
962 if (iort_node >= iort_end) {
963 pr_err("iort node pointer overflows, bad table\n");
964 return;
965 }
966
967 if ((iort_node->type == ACPI_IORT_NODE_SMMU) ||
968 (iort_node->type == ACPI_IORT_NODE_SMMU_V3)) {
969
970 fwnode = acpi_alloc_fwnode_static();
971 if (!fwnode)
972 return;
973
974 iort_set_fwnode(iort_node, fwnode);
975
976 ret = iort_add_smmu_platform_device(iort_node);
977 if (ret) {
978 iort_delete_fwnode(iort_node);
979 acpi_free_fwnode_static(fwnode);
980 return;
981 }
982 }
983
984 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node,
985 iort_node->length);
986 }
987 }
988
989 void __init acpi_iort_init(void)
990 {
991 acpi_status status;
992
993 status = acpi_get_table(ACPI_SIG_IORT, 0, &iort_table);
994 if (ACPI_FAILURE(status)) {
995 if (status != AE_NOT_FOUND) {
996 const char *msg = acpi_format_exception(status);
997
998 pr_err("Failed to get table, %s\n", msg);
999 }
1000
1001 return;
1002 }
1003
1004 iort_init_platform_devices();
1005
1006 acpi_probe_device_table(iort);
1007 }