blob: 6aae49c35a95869846102d70cbf6de911c22446d [file] [log] [blame]
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +02001/*
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>
Lorenzo Pieralisi846f0e92016-11-21 10:01:41 +000022#include <linux/iommu.h>
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +020023#include <linux/kernel.h>
Lorenzo Pieralisi7936df92016-11-21 10:01:35 +000024#include <linux/list.h>
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +020025#include <linux/pci.h>
Lorenzo Pieralisi846f0e92016-11-21 10:01:41 +000026#include <linux/platform_device.h>
Lorenzo Pieralisi7936df92016-11-21 10:01:35 +000027#include <linux/slab.h>
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +020028
Lorenzo Pieralisiea50b522016-11-21 10:01:46 +000029#define IORT_TYPE_MASK(type) (1 << (type))
30#define IORT_MSI_TYPE (1 << ACPI_IORT_NODE_ITS_GROUP)
31
Tomasz Nowicki4bf2efd2016-09-12 20:32:21 +020032struct iort_its_msi_chip {
33 struct list_head list;
34 struct fwnode_handle *fw_node;
35 u32 translation_id;
36};
37
Lorenzo Pieralisi7936df92016-11-21 10:01:35 +000038struct iort_fwnode {
39 struct list_head list;
40 struct acpi_iort_node *iort_node;
41 struct fwnode_handle *fwnode;
42};
43static LIST_HEAD(iort_fwnode_list);
44static DEFINE_SPINLOCK(iort_fwnode_lock);
45
46/**
47 * iort_set_fwnode() - Create iort_fwnode and use it to register
48 * iommu data in the iort_fwnode_list
49 *
50 * @node: IORT table node associated with the IOMMU
51 * @fwnode: fwnode associated with the IORT node
52 *
53 * Returns: 0 on success
54 * <0 on failure
55 */
56static inline int iort_set_fwnode(struct acpi_iort_node *iort_node,
57 struct fwnode_handle *fwnode)
58{
59 struct iort_fwnode *np;
60
61 np = kzalloc(sizeof(struct iort_fwnode), GFP_ATOMIC);
62
63 if (WARN_ON(!np))
64 return -ENOMEM;
65
66 INIT_LIST_HEAD(&np->list);
67 np->iort_node = iort_node;
68 np->fwnode = fwnode;
69
70 spin_lock(&iort_fwnode_lock);
71 list_add_tail(&np->list, &iort_fwnode_list);
72 spin_unlock(&iort_fwnode_lock);
73
74 return 0;
75}
76
77/**
78 * iort_get_fwnode() - Retrieve fwnode associated with an IORT node
79 *
80 * @node: IORT table node to be looked-up
81 *
82 * Returns: fwnode_handle pointer on success, NULL on failure
83 */
84static inline
85struct fwnode_handle *iort_get_fwnode(struct acpi_iort_node *node)
86{
87 struct iort_fwnode *curr;
88 struct fwnode_handle *fwnode = NULL;
89
90 spin_lock(&iort_fwnode_lock);
91 list_for_each_entry(curr, &iort_fwnode_list, list) {
92 if (curr->iort_node == node) {
93 fwnode = curr->fwnode;
94 break;
95 }
96 }
97 spin_unlock(&iort_fwnode_lock);
98
99 return fwnode;
100}
101
102/**
103 * iort_delete_fwnode() - Delete fwnode associated with an IORT node
104 *
105 * @node: IORT table node associated with fwnode to delete
106 */
107static inline void iort_delete_fwnode(struct acpi_iort_node *node)
108{
109 struct iort_fwnode *curr, *tmp;
110
111 spin_lock(&iort_fwnode_lock);
112 list_for_each_entry_safe(curr, tmp, &iort_fwnode_list, list) {
113 if (curr->iort_node == node) {
114 list_del(&curr->list);
115 kfree(curr);
116 break;
117 }
118 }
119 spin_unlock(&iort_fwnode_lock);
120}
121
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200122typedef acpi_status (*iort_find_node_callback)
123 (struct acpi_iort_node *node, void *context);
124
125/* Root pointer to the mapped IORT table */
126static struct acpi_table_header *iort_table;
127
128static LIST_HEAD(iort_msi_chip_list);
129static DEFINE_SPINLOCK(iort_msi_chip_lock);
130
Tomasz Nowicki4bf2efd2016-09-12 20:32:21 +0200131/**
132 * iort_register_domain_token() - register domain token and related ITS ID
133 * to the list from where we can get it back later on.
134 * @trans_id: ITS ID.
135 * @fw_node: Domain token.
136 *
137 * Returns: 0 on success, -ENOMEM if no memory when allocating list element
138 */
139int iort_register_domain_token(int trans_id, struct fwnode_handle *fw_node)
140{
141 struct iort_its_msi_chip *its_msi_chip;
142
143 its_msi_chip = kzalloc(sizeof(*its_msi_chip), GFP_KERNEL);
144 if (!its_msi_chip)
145 return -ENOMEM;
146
147 its_msi_chip->fw_node = fw_node;
148 its_msi_chip->translation_id = trans_id;
149
150 spin_lock(&iort_msi_chip_lock);
151 list_add(&its_msi_chip->list, &iort_msi_chip_list);
152 spin_unlock(&iort_msi_chip_lock);
153
154 return 0;
155}
156
157/**
158 * iort_deregister_domain_token() - Deregister domain token based on ITS ID
159 * @trans_id: ITS ID.
160 *
161 * Returns: none.
162 */
163void iort_deregister_domain_token(int trans_id)
164{
165 struct iort_its_msi_chip *its_msi_chip, *t;
166
167 spin_lock(&iort_msi_chip_lock);
168 list_for_each_entry_safe(its_msi_chip, t, &iort_msi_chip_list, list) {
169 if (its_msi_chip->translation_id == trans_id) {
170 list_del(&its_msi_chip->list);
171 kfree(its_msi_chip);
172 break;
173 }
174 }
175 spin_unlock(&iort_msi_chip_lock);
176}
177
178/**
179 * iort_find_domain_token() - Find domain token based on given ITS ID
180 * @trans_id: ITS ID.
181 *
182 * Returns: domain token when find on the list, NULL otherwise
183 */
184struct fwnode_handle *iort_find_domain_token(int trans_id)
185{
186 struct fwnode_handle *fw_node = NULL;
187 struct iort_its_msi_chip *its_msi_chip;
188
189 spin_lock(&iort_msi_chip_lock);
190 list_for_each_entry(its_msi_chip, &iort_msi_chip_list, list) {
191 if (its_msi_chip->translation_id == trans_id) {
192 fw_node = its_msi_chip->fw_node;
193 break;
194 }
195 }
196 spin_unlock(&iort_msi_chip_lock);
197
198 return fw_node;
199}
200
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200201static struct acpi_iort_node *iort_scan_node(enum acpi_iort_node_type type,
202 iort_find_node_callback callback,
203 void *context)
204{
205 struct acpi_iort_node *iort_node, *iort_end;
206 struct acpi_table_iort *iort;
207 int i;
208
209 if (!iort_table)
210 return NULL;
211
212 /* Get the first IORT node */
213 iort = (struct acpi_table_iort *)iort_table;
214 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort,
215 iort->node_offset);
216 iort_end = ACPI_ADD_PTR(struct acpi_iort_node, iort_table,
217 iort_table->length);
218
219 for (i = 0; i < iort->node_count; i++) {
220 if (WARN_TAINT(iort_node >= iort_end, TAINT_FIRMWARE_WORKAROUND,
221 "IORT node pointer overflows, bad table!\n"))
222 return NULL;
223
224 if (iort_node->type == type &&
225 ACPI_SUCCESS(callback(iort_node, context)))
226 return iort_node;
227
228 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node,
229 iort_node->length);
230 }
231
232 return NULL;
233}
234
Lorenzo Pieralisibdca0c02016-11-21 10:01:40 +0000235static acpi_status
236iort_match_type_callback(struct acpi_iort_node *node, void *context)
237{
238 return AE_OK;
239}
240
241bool iort_node_match(u8 type)
242{
243 struct acpi_iort_node *node;
244
245 node = iort_scan_node(type, iort_match_type_callback, NULL);
246
247 return node != NULL;
248}
249
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200250static acpi_status iort_match_node_callback(struct acpi_iort_node *node,
251 void *context)
252{
253 struct device *dev = context;
254 acpi_status status;
255
256 if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT) {
257 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
258 struct acpi_device *adev = to_acpi_device_node(dev->fwnode);
259 struct acpi_iort_named_component *ncomp;
260
261 if (!adev) {
262 status = AE_NOT_FOUND;
263 goto out;
264 }
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 } else {
291 status = AE_NOT_FOUND;
292 }
293out:
294 return status;
295}
296
297static int iort_id_map(struct acpi_iort_id_mapping *map, u8 type, u32 rid_in,
298 u32 *rid_out)
299{
300 /* Single mapping does not care for input id */
301 if (map->flags & ACPI_IORT_ID_SINGLE_MAPPING) {
302 if (type == ACPI_IORT_NODE_NAMED_COMPONENT ||
303 type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) {
304 *rid_out = map->output_base;
305 return 0;
306 }
307
308 pr_warn(FW_BUG "[map %p] SINGLE MAPPING flag not allowed for node type %d, skipping ID map\n",
309 map, type);
310 return -ENXIO;
311 }
312
313 if (rid_in < map->input_base ||
314 (rid_in >= map->input_base + map->id_count))
315 return -ENXIO;
316
317 *rid_out = map->output_base + (rid_in - map->input_base);
318 return 0;
319}
320
Lorenzo Pieralisi618f5352016-11-21 10:01:47 +0000321static
322struct acpi_iort_node *iort_node_get_id(struct acpi_iort_node *node,
323 u32 *id_out, u8 type_mask,
324 int index)
325{
326 struct acpi_iort_node *parent;
327 struct acpi_iort_id_mapping *map;
328
329 if (!node->mapping_offset || !node->mapping_count ||
330 index >= node->mapping_count)
331 return NULL;
332
333 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node,
334 node->mapping_offset);
335
336 /* Firmware bug! */
337 if (!map->output_reference) {
338 pr_err(FW_BUG "[node %p type %d] ID map has NULL parent reference\n",
339 node, node->type);
340 return NULL;
341 }
342
343 parent = ACPI_ADD_PTR(struct acpi_iort_node, iort_table,
344 map->output_reference);
345
346 if (!(IORT_TYPE_MASK(parent->type) & type_mask))
347 return NULL;
348
349 if (map[index].flags & ACPI_IORT_ID_SINGLE_MAPPING) {
350 if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT ||
351 node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) {
352 *id_out = map[index].output_base;
353 return parent;
354 }
355 }
356
357 return NULL;
358}
359
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200360static struct acpi_iort_node *iort_node_map_rid(struct acpi_iort_node *node,
361 u32 rid_in, u32 *rid_out,
Lorenzo Pieralisiea50b522016-11-21 10:01:46 +0000362 u8 type_mask)
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200363{
364 u32 rid = rid_in;
365
366 /* Parse the ID mapping tree to find specified node type */
367 while (node) {
368 struct acpi_iort_id_mapping *map;
369 int i;
370
Lorenzo Pieralisiea50b522016-11-21 10:01:46 +0000371 if (IORT_TYPE_MASK(node->type) & type_mask) {
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200372 if (rid_out)
373 *rid_out = rid;
374 return node;
375 }
376
377 if (!node->mapping_offset || !node->mapping_count)
378 goto fail_map;
379
380 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node,
381 node->mapping_offset);
382
383 /* Firmware bug! */
384 if (!map->output_reference) {
385 pr_err(FW_BUG "[node %p type %d] ID map has NULL parent reference\n",
386 node, node->type);
387 goto fail_map;
388 }
389
390 /* Do the RID translation */
391 for (i = 0; i < node->mapping_count; i++, map++) {
392 if (!iort_id_map(map, node->type, rid, &rid))
393 break;
394 }
395
396 if (i == node->mapping_count)
397 goto fail_map;
398
399 node = ACPI_ADD_PTR(struct acpi_iort_node, iort_table,
400 map->output_reference);
401 }
402
403fail_map:
404 /* Map input RID to output RID unchanged on mapping failure*/
405 if (rid_out)
406 *rid_out = rid_in;
407
408 return NULL;
409}
410
411static struct acpi_iort_node *iort_find_dev_node(struct device *dev)
412{
413 struct pci_bus *pbus;
414
415 if (!dev_is_pci(dev))
416 return iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT,
417 iort_match_node_callback, dev);
418
419 /* Find a PCI root bus */
420 pbus = to_pci_dev(dev)->bus;
421 while (!pci_is_root_bus(pbus))
422 pbus = pbus->parent;
423
424 return iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX,
425 iort_match_node_callback, &pbus->dev);
426}
427
Tomasz Nowicki4bf2efd2016-09-12 20:32:21 +0200428/**
429 * iort_msi_map_rid() - Map a MSI requester ID for a device
430 * @dev: The device for which the mapping is to be done.
431 * @req_id: The device requester ID.
432 *
433 * Returns: mapped MSI RID on success, input requester ID otherwise
434 */
435u32 iort_msi_map_rid(struct device *dev, u32 req_id)
436{
437 struct acpi_iort_node *node;
438 u32 dev_id;
439
440 node = iort_find_dev_node(dev);
441 if (!node)
442 return req_id;
443
Lorenzo Pieralisiea50b522016-11-21 10:01:46 +0000444 iort_node_map_rid(node, req_id, &dev_id, IORT_MSI_TYPE);
Tomasz Nowicki4bf2efd2016-09-12 20:32:21 +0200445 return dev_id;
446}
447
448/**
449 * iort_dev_find_its_id() - Find the ITS identifier for a device
450 * @dev: The device.
451 * @idx: Index of the ITS identifier list.
452 * @its_id: ITS identifier.
453 *
454 * Returns: 0 on success, appropriate error value otherwise
455 */
456static int iort_dev_find_its_id(struct device *dev, u32 req_id,
457 unsigned int idx, int *its_id)
458{
459 struct acpi_iort_its_group *its;
460 struct acpi_iort_node *node;
461
462 node = iort_find_dev_node(dev);
463 if (!node)
464 return -ENXIO;
465
Lorenzo Pieralisiea50b522016-11-21 10:01:46 +0000466 node = iort_node_map_rid(node, req_id, NULL, IORT_MSI_TYPE);
Tomasz Nowicki4bf2efd2016-09-12 20:32:21 +0200467 if (!node)
468 return -ENXIO;
469
470 /* Move to ITS specific data */
471 its = (struct acpi_iort_its_group *)node->node_data;
472 if (idx > its->its_count) {
473 dev_err(dev, "requested ITS ID index [%d] is greater than available [%d]\n",
474 idx, its->its_count);
475 return -ENXIO;
476 }
477
478 *its_id = its->identifiers[idx];
479 return 0;
480}
481
482/**
483 * iort_get_device_domain() - Find MSI domain related to a device
484 * @dev: The device.
485 * @req_id: Requester ID for the device.
486 *
487 * Returns: the MSI domain for this device, NULL otherwise
488 */
489struct irq_domain *iort_get_device_domain(struct device *dev, u32 req_id)
490{
491 struct fwnode_handle *handle;
492 int its_id;
493
494 if (iort_dev_find_its_id(dev, req_id, 0, &its_id))
495 return NULL;
496
497 handle = iort_find_domain_token(its_id);
498 if (!handle)
499 return NULL;
500
501 return irq_find_matching_fwnode(handle, DOMAIN_BUS_PCI_MSI);
502}
503
Lorenzo Pieralisie4dadfa2016-11-21 10:01:43 +0000504static void __init acpi_iort_register_irq(int hwirq, const char *name,
505 int trigger,
506 struct resource *res)
507{
508 int irq = acpi_register_gsi(NULL, hwirq, trigger,
509 ACPI_ACTIVE_HIGH);
510
511 if (irq <= 0) {
512 pr_err("could not register gsi hwirq %d name [%s]\n", hwirq,
513 name);
514 return;
515 }
516
517 res->start = irq;
518 res->end = irq;
519 res->flags = IORESOURCE_IRQ;
520 res->name = name;
521}
522
523static int __init arm_smmu_v3_count_resources(struct acpi_iort_node *node)
524{
525 struct acpi_iort_smmu_v3 *smmu;
526 /* Always present mem resource */
527 int num_res = 1;
528
529 /* Retrieve SMMUv3 specific data */
530 smmu = (struct acpi_iort_smmu_v3 *)node->node_data;
531
532 if (smmu->event_gsiv)
533 num_res++;
534
535 if (smmu->pri_gsiv)
536 num_res++;
537
538 if (smmu->gerr_gsiv)
539 num_res++;
540
541 if (smmu->sync_gsiv)
542 num_res++;
543
544 return num_res;
545}
546
547static void __init arm_smmu_v3_init_resources(struct resource *res,
548 struct acpi_iort_node *node)
549{
550 struct acpi_iort_smmu_v3 *smmu;
551 int num_res = 0;
552
553 /* Retrieve SMMUv3 specific data */
554 smmu = (struct acpi_iort_smmu_v3 *)node->node_data;
555
556 res[num_res].start = smmu->base_address;
557 res[num_res].end = smmu->base_address + SZ_128K - 1;
558 res[num_res].flags = IORESOURCE_MEM;
559
560 num_res++;
561
562 if (smmu->event_gsiv)
563 acpi_iort_register_irq(smmu->event_gsiv, "eventq",
564 ACPI_EDGE_SENSITIVE,
565 &res[num_res++]);
566
567 if (smmu->pri_gsiv)
568 acpi_iort_register_irq(smmu->pri_gsiv, "priq",
569 ACPI_EDGE_SENSITIVE,
570 &res[num_res++]);
571
572 if (smmu->gerr_gsiv)
573 acpi_iort_register_irq(smmu->gerr_gsiv, "gerror",
574 ACPI_EDGE_SENSITIVE,
575 &res[num_res++]);
576
577 if (smmu->sync_gsiv)
578 acpi_iort_register_irq(smmu->sync_gsiv, "cmdq-sync",
579 ACPI_EDGE_SENSITIVE,
580 &res[num_res++]);
581}
582
583static bool __init arm_smmu_v3_is_coherent(struct acpi_iort_node *node)
584{
585 struct acpi_iort_smmu_v3 *smmu;
586
587 /* Retrieve SMMUv3 specific data */
588 smmu = (struct acpi_iort_smmu_v3 *)node->node_data;
589
590 return smmu->flags & ACPI_IORT_SMMU_V3_COHACC_OVERRIDE;
591}
592
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +0000593static int __init arm_smmu_count_resources(struct acpi_iort_node *node)
594{
595 struct acpi_iort_smmu *smmu;
596
597 /* Retrieve SMMU specific data */
598 smmu = (struct acpi_iort_smmu *)node->node_data;
599
600 /*
601 * Only consider the global fault interrupt and ignore the
602 * configuration access interrupt.
603 *
604 * MMIO address and global fault interrupt resources are always
605 * present so add them to the context interrupt count as a static
606 * value.
607 */
608 return smmu->context_interrupt_count + 2;
609}
610
611static void __init arm_smmu_init_resources(struct resource *res,
612 struct acpi_iort_node *node)
613{
614 struct acpi_iort_smmu *smmu;
615 int i, hw_irq, trigger, num_res = 0;
616 u64 *ctx_irq, *glb_irq;
617
618 /* Retrieve SMMU specific data */
619 smmu = (struct acpi_iort_smmu *)node->node_data;
620
621 res[num_res].start = smmu->base_address;
622 res[num_res].end = smmu->base_address + smmu->span - 1;
623 res[num_res].flags = IORESOURCE_MEM;
624 num_res++;
625
626 glb_irq = ACPI_ADD_PTR(u64, node, smmu->global_interrupt_offset);
627 /* Global IRQs */
628 hw_irq = IORT_IRQ_MASK(glb_irq[0]);
629 trigger = IORT_IRQ_TRIGGER_MASK(glb_irq[0]);
630
631 acpi_iort_register_irq(hw_irq, "arm-smmu-global", trigger,
632 &res[num_res++]);
633
634 /* Context IRQs */
635 ctx_irq = ACPI_ADD_PTR(u64, node, smmu->context_interrupt_offset);
636 for (i = 0; i < smmu->context_interrupt_count; i++) {
637 hw_irq = IORT_IRQ_MASK(ctx_irq[i]);
638 trigger = IORT_IRQ_TRIGGER_MASK(ctx_irq[i]);
639
640 acpi_iort_register_irq(hw_irq, "arm-smmu-context", trigger,
641 &res[num_res++]);
642 }
643}
644
645static bool __init arm_smmu_is_coherent(struct acpi_iort_node *node)
646{
647 struct acpi_iort_smmu *smmu;
648
649 /* Retrieve SMMU specific data */
650 smmu = (struct acpi_iort_smmu *)node->node_data;
651
652 return smmu->flags & ACPI_IORT_SMMU_COHERENT_WALK;
653}
654
Lorenzo Pieralisi846f0e92016-11-21 10:01:41 +0000655struct iort_iommu_config {
656 const char *name;
657 int (*iommu_init)(struct acpi_iort_node *node);
658 bool (*iommu_is_coherent)(struct acpi_iort_node *node);
659 int (*iommu_count_resources)(struct acpi_iort_node *node);
660 void (*iommu_init_resources)(struct resource *res,
661 struct acpi_iort_node *node);
662};
663
Lorenzo Pieralisie4dadfa2016-11-21 10:01:43 +0000664static const struct iort_iommu_config iort_arm_smmu_v3_cfg __initconst = {
665 .name = "arm-smmu-v3",
666 .iommu_is_coherent = arm_smmu_v3_is_coherent,
667 .iommu_count_resources = arm_smmu_v3_count_resources,
668 .iommu_init_resources = arm_smmu_v3_init_resources
669};
670
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +0000671static const struct iort_iommu_config iort_arm_smmu_cfg __initconst = {
672 .name = "arm-smmu",
673 .iommu_is_coherent = arm_smmu_is_coherent,
674 .iommu_count_resources = arm_smmu_count_resources,
675 .iommu_init_resources = arm_smmu_init_resources
676};
677
Lorenzo Pieralisi846f0e92016-11-21 10:01:41 +0000678static __init
679const struct iort_iommu_config *iort_get_iommu_cfg(struct acpi_iort_node *node)
680{
Lorenzo Pieralisie4dadfa2016-11-21 10:01:43 +0000681 switch (node->type) {
682 case ACPI_IORT_NODE_SMMU_V3:
683 return &iort_arm_smmu_v3_cfg;
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +0000684 case ACPI_IORT_NODE_SMMU:
685 return &iort_arm_smmu_cfg;
Lorenzo Pieralisie4dadfa2016-11-21 10:01:43 +0000686 default:
687 return NULL;
688 }
Lorenzo Pieralisi846f0e92016-11-21 10:01:41 +0000689}
690
691/**
692 * iort_add_smmu_platform_device() - Allocate a platform device for SMMU
693 * @node: Pointer to SMMU ACPI IORT node
694 *
695 * Returns: 0 on success, <0 failure
696 */
697static int __init iort_add_smmu_platform_device(struct acpi_iort_node *node)
698{
699 struct fwnode_handle *fwnode;
700 struct platform_device *pdev;
701 struct resource *r;
702 enum dev_dma_attr attr;
703 int ret, count;
704 const struct iort_iommu_config *ops = iort_get_iommu_cfg(node);
705
706 if (!ops)
707 return -ENODEV;
708
709 pdev = platform_device_alloc(ops->name, PLATFORM_DEVID_AUTO);
710 if (!pdev)
711 return PTR_ERR(pdev);
712
713 count = ops->iommu_count_resources(node);
714
715 r = kcalloc(count, sizeof(*r), GFP_KERNEL);
716 if (!r) {
717 ret = -ENOMEM;
718 goto dev_put;
719 }
720
721 ops->iommu_init_resources(r, node);
722
723 ret = platform_device_add_resources(pdev, r, count);
724 /*
725 * Resources are duplicated in platform_device_add_resources,
726 * free their allocated memory
727 */
728 kfree(r);
729
730 if (ret)
731 goto dev_put;
732
733 /*
734 * Add a copy of IORT node pointer to platform_data to
735 * be used to retrieve IORT data information.
736 */
737 ret = platform_device_add_data(pdev, &node, sizeof(node));
738 if (ret)
739 goto dev_put;
740
741 /*
742 * We expect the dma masks to be equivalent for
743 * all SMMUs set-ups
744 */
745 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
746
747 fwnode = iort_get_fwnode(node);
748
749 if (!fwnode) {
750 ret = -ENODEV;
751 goto dev_put;
752 }
753
754 pdev->dev.fwnode = fwnode;
755
756 attr = ops->iommu_is_coherent(node) ?
757 DEV_DMA_COHERENT : DEV_DMA_NON_COHERENT;
758
759 /* Configure DMA for the page table walker */
760 acpi_dma_configure(&pdev->dev, attr);
761
762 ret = platform_device_add(pdev);
763 if (ret)
764 goto dma_deconfigure;
765
766 return 0;
767
768dma_deconfigure:
769 acpi_dma_deconfigure(&pdev->dev);
770dev_put:
771 platform_device_put(pdev);
772
773 return ret;
774}
775
776static void __init iort_init_platform_devices(void)
777{
778 struct acpi_iort_node *iort_node, *iort_end;
779 struct acpi_table_iort *iort;
780 struct fwnode_handle *fwnode;
781 int i, ret;
782
783 /*
784 * iort_table and iort both point to the start of IORT table, but
785 * have different struct types
786 */
787 iort = (struct acpi_table_iort *)iort_table;
788
789 /* Get the first IORT node */
790 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort,
791 iort->node_offset);
792 iort_end = ACPI_ADD_PTR(struct acpi_iort_node, iort,
793 iort_table->length);
794
795 for (i = 0; i < iort->node_count; i++) {
796 if (iort_node >= iort_end) {
797 pr_err("iort node pointer overflows, bad table\n");
798 return;
799 }
800
801 if ((iort_node->type == ACPI_IORT_NODE_SMMU) ||
802 (iort_node->type == ACPI_IORT_NODE_SMMU_V3)) {
803
804 fwnode = acpi_alloc_fwnode_static();
805 if (!fwnode)
806 return;
807
808 iort_set_fwnode(iort_node, fwnode);
809
810 ret = iort_add_smmu_platform_device(iort_node);
811 if (ret) {
812 iort_delete_fwnode(iort_node);
813 acpi_free_fwnode_static(fwnode);
814 return;
815 }
816 }
817
818 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node,
819 iort_node->length);
820 }
821}
822
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200823void __init acpi_iort_init(void)
824{
825 acpi_status status;
826
827 status = acpi_get_table(ACPI_SIG_IORT, 0, &iort_table);
Lorenzo Pieralisi34ceea22016-11-21 10:01:34 +0000828 if (ACPI_FAILURE(status)) {
829 if (status != AE_NOT_FOUND) {
830 const char *msg = acpi_format_exception(status);
831
832 pr_err("Failed to get table, %s\n", msg);
833 }
834
835 return;
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200836 }
Lorenzo Pieralisi34ceea22016-11-21 10:01:34 +0000837
Lorenzo Pieralisi846f0e92016-11-21 10:01:41 +0000838 iort_init_platform_devices();
839
Lorenzo Pieralisi34ceea22016-11-21 10:01:34 +0000840 acpi_probe_device_table(iort);
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +0200841}