1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2016, Semihalf
4 * Author: Tomasz Nowicki <tn@semihalf.com>
6 * This file implements early detection/parsing of I/O mapping
7 * reported to OS through firmware via I/O Remapping Table (IORT)
8 * IORT document number: ARM DEN 0049A
11 #define pr_fmt(fmt) "ACPI: IORT: " fmt
13 #include <linux/acpi_iort.h>
14 #include <linux/iommu.h>
15 #include <linux/kernel.h>
16 #include <linux/list.h>
17 #include <linux/pci.h>
18 #include <linux/platform_device.h>
19 #include <linux/slab.h>
21 #define IORT_TYPE_MASK(type) (1 << (type))
22 #define IORT_MSI_TYPE (1 << ACPI_IORT_NODE_ITS_GROUP)
23 #define IORT_IOMMU_TYPE ((1 << ACPI_IORT_NODE_SMMU) | \
24 (1 << ACPI_IORT_NODE_SMMU_V3))
26 struct iort_its_msi_chip
{
27 struct list_head list
;
28 struct fwnode_handle
*fw_node
;
29 phys_addr_t base_addr
;
34 struct list_head list
;
35 struct acpi_iort_node
*iort_node
;
36 struct fwnode_handle
*fwnode
;
38 static LIST_HEAD(iort_fwnode_list
);
39 static DEFINE_SPINLOCK(iort_fwnode_lock
);
42 * iort_set_fwnode() - Create iort_fwnode and use it to register
43 * iommu data in the iort_fwnode_list
45 * @node: IORT table node associated with the IOMMU
46 * @fwnode: fwnode associated with the IORT node
48 * Returns: 0 on success
51 static inline int iort_set_fwnode(struct acpi_iort_node
*iort_node
,
52 struct fwnode_handle
*fwnode
)
54 struct iort_fwnode
*np
;
56 np
= kzalloc(sizeof(struct iort_fwnode
), GFP_ATOMIC
);
61 INIT_LIST_HEAD(&np
->list
);
62 np
->iort_node
= iort_node
;
65 spin_lock(&iort_fwnode_lock
);
66 list_add_tail(&np
->list
, &iort_fwnode_list
);
67 spin_unlock(&iort_fwnode_lock
);
73 * iort_get_fwnode() - Retrieve fwnode associated with an IORT node
75 * @node: IORT table node to be looked-up
77 * Returns: fwnode_handle pointer on success, NULL on failure
79 static inline struct fwnode_handle
*iort_get_fwnode(
80 struct acpi_iort_node
*node
)
82 struct iort_fwnode
*curr
;
83 struct fwnode_handle
*fwnode
= NULL
;
85 spin_lock(&iort_fwnode_lock
);
86 list_for_each_entry(curr
, &iort_fwnode_list
, list
) {
87 if (curr
->iort_node
== node
) {
88 fwnode
= curr
->fwnode
;
92 spin_unlock(&iort_fwnode_lock
);
98 * iort_delete_fwnode() - Delete fwnode associated with an IORT node
100 * @node: IORT table node associated with fwnode to delete
102 static inline void iort_delete_fwnode(struct acpi_iort_node
*node
)
104 struct iort_fwnode
*curr
, *tmp
;
106 spin_lock(&iort_fwnode_lock
);
107 list_for_each_entry_safe(curr
, tmp
, &iort_fwnode_list
, list
) {
108 if (curr
->iort_node
== node
) {
109 list_del(&curr
->list
);
114 spin_unlock(&iort_fwnode_lock
);
118 * iort_get_iort_node() - Retrieve iort_node associated with an fwnode
120 * @fwnode: fwnode associated with device to be looked-up
122 * Returns: iort_node pointer on success, NULL on failure
124 static inline struct acpi_iort_node
*iort_get_iort_node(
125 struct fwnode_handle
*fwnode
)
127 struct iort_fwnode
*curr
;
128 struct acpi_iort_node
*iort_node
= NULL
;
130 spin_lock(&iort_fwnode_lock
);
131 list_for_each_entry(curr
, &iort_fwnode_list
, list
) {
132 if (curr
->fwnode
== fwnode
) {
133 iort_node
= curr
->iort_node
;
137 spin_unlock(&iort_fwnode_lock
);
142 typedef acpi_status (*iort_find_node_callback
)
143 (struct acpi_iort_node
*node
, void *context
);
145 /* Root pointer to the mapped IORT table */
146 static struct acpi_table_header
*iort_table
;
148 static LIST_HEAD(iort_msi_chip_list
);
149 static DEFINE_SPINLOCK(iort_msi_chip_lock
);
152 * iort_register_domain_token() - register domain token along with related
153 * ITS ID and base address to the list from where we can get it back later on.
155 * @base: ITS base address.
156 * @fw_node: Domain token.
158 * Returns: 0 on success, -ENOMEM if no memory when allocating list element
160 int iort_register_domain_token(int trans_id
, phys_addr_t base
,
161 struct fwnode_handle
*fw_node
)
163 struct iort_its_msi_chip
*its_msi_chip
;
165 its_msi_chip
= kzalloc(sizeof(*its_msi_chip
), GFP_KERNEL
);
169 its_msi_chip
->fw_node
= fw_node
;
170 its_msi_chip
->translation_id
= trans_id
;
171 its_msi_chip
->base_addr
= base
;
173 spin_lock(&iort_msi_chip_lock
);
174 list_add(&its_msi_chip
->list
, &iort_msi_chip_list
);
175 spin_unlock(&iort_msi_chip_lock
);
181 * iort_deregister_domain_token() - Deregister domain token based on ITS ID
186 void iort_deregister_domain_token(int trans_id
)
188 struct iort_its_msi_chip
*its_msi_chip
, *t
;
190 spin_lock(&iort_msi_chip_lock
);
191 list_for_each_entry_safe(its_msi_chip
, t
, &iort_msi_chip_list
, list
) {
192 if (its_msi_chip
->translation_id
== trans_id
) {
193 list_del(&its_msi_chip
->list
);
198 spin_unlock(&iort_msi_chip_lock
);
202 * iort_find_domain_token() - Find domain token based on given ITS ID
205 * Returns: domain token when find on the list, NULL otherwise
207 struct fwnode_handle
*iort_find_domain_token(int trans_id
)
209 struct fwnode_handle
*fw_node
= NULL
;
210 struct iort_its_msi_chip
*its_msi_chip
;
212 spin_lock(&iort_msi_chip_lock
);
213 list_for_each_entry(its_msi_chip
, &iort_msi_chip_list
, list
) {
214 if (its_msi_chip
->translation_id
== trans_id
) {
215 fw_node
= its_msi_chip
->fw_node
;
219 spin_unlock(&iort_msi_chip_lock
);
224 static struct acpi_iort_node
*iort_scan_node(enum acpi_iort_node_type type
,
225 iort_find_node_callback callback
,
228 struct acpi_iort_node
*iort_node
, *iort_end
;
229 struct acpi_table_iort
*iort
;
235 /* Get the first IORT node */
236 iort
= (struct acpi_table_iort
*)iort_table
;
237 iort_node
= ACPI_ADD_PTR(struct acpi_iort_node
, iort
,
239 iort_end
= ACPI_ADD_PTR(struct acpi_iort_node
, iort_table
,
242 for (i
= 0; i
< iort
->node_count
; i
++) {
243 if (WARN_TAINT(iort_node
>= iort_end
, TAINT_FIRMWARE_WORKAROUND
,
244 "IORT node pointer overflows, bad table!\n"))
247 if (iort_node
->type
== type
&&
248 ACPI_SUCCESS(callback(iort_node
, context
)))
251 iort_node
= ACPI_ADD_PTR(struct acpi_iort_node
, iort_node
,
258 static acpi_status
iort_match_node_callback(struct acpi_iort_node
*node
,
261 struct device
*dev
= context
;
262 acpi_status status
= AE_NOT_FOUND
;
264 if (node
->type
== ACPI_IORT_NODE_NAMED_COMPONENT
) {
265 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
, NULL
};
266 struct acpi_device
*adev
= to_acpi_device_node(dev
->fwnode
);
267 struct acpi_iort_named_component
*ncomp
;
272 status
= acpi_get_name(adev
->handle
, ACPI_FULL_PATHNAME
, &buf
);
273 if (ACPI_FAILURE(status
)) {
274 dev_warn(dev
, "Can't get device full path name\n");
278 ncomp
= (struct acpi_iort_named_component
*)node
->node_data
;
279 status
= !strcmp(ncomp
->device_name
, buf
.pointer
) ?
280 AE_OK
: AE_NOT_FOUND
;
281 acpi_os_free(buf
.pointer
);
282 } else if (node
->type
== ACPI_IORT_NODE_PCI_ROOT_COMPLEX
) {
283 struct acpi_iort_root_complex
*pci_rc
;
286 bus
= to_pci_bus(dev
);
287 pci_rc
= (struct acpi_iort_root_complex
*)node
->node_data
;
290 * It is assumed that PCI segment numbers maps one-to-one
291 * with root complexes. Each segment number can represent only
294 status
= pci_rc
->pci_segment_number
== pci_domain_nr(bus
) ?
295 AE_OK
: AE_NOT_FOUND
;
301 struct iort_workaround_oem_info
{
302 char oem_id
[ACPI_OEM_ID_SIZE
+ 1];
303 char oem_table_id
[ACPI_OEM_TABLE_ID_SIZE
+ 1];
307 static bool apply_id_count_workaround
;
309 static struct iort_workaround_oem_info wa_info
[] __initdata
= {
312 .oem_table_id
= "HIP07 ",
316 .oem_table_id
= "HIP08 ",
322 iort_check_id_count_workaround(struct acpi_table_header
*tbl
)
326 for (i
= 0; i
< ARRAY_SIZE(wa_info
); i
++) {
327 if (!memcmp(wa_info
[i
].oem_id
, tbl
->oem_id
, ACPI_OEM_ID_SIZE
) &&
328 !memcmp(wa_info
[i
].oem_table_id
, tbl
->oem_table_id
, ACPI_OEM_TABLE_ID_SIZE
) &&
329 wa_info
[i
].oem_revision
== tbl
->oem_revision
) {
330 apply_id_count_workaround
= true;
331 pr_warn(FW_BUG
"ID count for ID mapping entry is wrong, applying workaround\n");
337 static inline u32
iort_get_map_max(struct acpi_iort_id_mapping
*map
)
339 u32 map_max
= map
->input_base
+ map
->id_count
;
342 * The IORT specification revision D (Section 3, table 4, page 9) says
343 * Number of IDs = The number of IDs in the range minus one, but the
344 * IORT code ignored the "minus one", and some firmware did that too,
345 * so apply a workaround here to keep compatible with both the spec
346 * compliant and non-spec compliant firmwares.
348 if (apply_id_count_workaround
)
354 static int iort_id_map(struct acpi_iort_id_mapping
*map
, u8 type
, u32 rid_in
,
357 /* Single mapping does not care for input id */
358 if (map
->flags
& ACPI_IORT_ID_SINGLE_MAPPING
) {
359 if (type
== ACPI_IORT_NODE_NAMED_COMPONENT
||
360 type
== ACPI_IORT_NODE_PCI_ROOT_COMPLEX
) {
361 *rid_out
= map
->output_base
;
365 pr_warn(FW_BUG
"[map %p] SINGLE MAPPING flag not allowed for node type %d, skipping ID map\n",
370 if (rid_in
< map
->input_base
|| rid_in
> iort_get_map_max(map
))
373 *rid_out
= map
->output_base
+ (rid_in
- map
->input_base
);
377 static struct acpi_iort_node
*iort_node_get_id(struct acpi_iort_node
*node
,
378 u32
*id_out
, int index
)
380 struct acpi_iort_node
*parent
;
381 struct acpi_iort_id_mapping
*map
;
383 if (!node
->mapping_offset
|| !node
->mapping_count
||
384 index
>= node
->mapping_count
)
387 map
= ACPI_ADD_PTR(struct acpi_iort_id_mapping
, node
,
388 node
->mapping_offset
+ index
* sizeof(*map
));
391 if (!map
->output_reference
) {
392 pr_err(FW_BUG
"[node %p type %d] ID map has NULL parent reference\n",
397 parent
= ACPI_ADD_PTR(struct acpi_iort_node
, iort_table
,
398 map
->output_reference
);
400 if (map
->flags
& ACPI_IORT_ID_SINGLE_MAPPING
) {
401 if (node
->type
== ACPI_IORT_NODE_NAMED_COMPONENT
||
402 node
->type
== ACPI_IORT_NODE_PCI_ROOT_COMPLEX
||
403 node
->type
== ACPI_IORT_NODE_SMMU_V3
||
404 node
->type
== ACPI_IORT_NODE_PMCG
) {
405 *id_out
= map
->output_base
;
413 static int iort_get_id_mapping_index(struct acpi_iort_node
*node
)
415 struct acpi_iort_smmu_v3
*smmu
;
417 switch (node
->type
) {
418 case ACPI_IORT_NODE_SMMU_V3
:
420 * SMMUv3 dev ID mapping index was introduced in revision 1
421 * table, not available in revision 0
423 if (node
->revision
< 1)
426 smmu
= (struct acpi_iort_smmu_v3
*)node
->node_data
;
428 * ID mapping index is only ignored if all interrupts are
431 if (smmu
->event_gsiv
&& smmu
->pri_gsiv
&& smmu
->gerr_gsiv
435 if (smmu
->id_mapping_index
>= node
->mapping_count
) {
436 pr_err(FW_BUG
"[node %p type %d] ID mapping index overflows valid mappings\n",
441 return smmu
->id_mapping_index
;
442 case ACPI_IORT_NODE_PMCG
:
449 static struct acpi_iort_node
*iort_node_map_id(struct acpi_iort_node
*node
,
450 u32 id_in
, u32
*id_out
,
455 /* Parse the ID mapping tree to find specified node type */
457 struct acpi_iort_id_mapping
*map
;
460 if (IORT_TYPE_MASK(node
->type
) & type_mask
) {
466 if (!node
->mapping_offset
|| !node
->mapping_count
)
469 map
= ACPI_ADD_PTR(struct acpi_iort_id_mapping
, node
,
470 node
->mapping_offset
);
473 if (!map
->output_reference
) {
474 pr_err(FW_BUG
"[node %p type %d] ID map has NULL parent reference\n",
480 * Get the special ID mapping index (if any) and skip its
481 * associated ID map to prevent erroneous multi-stage
482 * IORT ID translations.
484 index
= iort_get_id_mapping_index(node
);
486 /* Do the ID translation */
487 for (i
= 0; i
< node
->mapping_count
; i
++, map
++) {
488 /* if it is special mapping index, skip it */
492 if (!iort_id_map(map
, node
->type
, id
, &id
))
496 if (i
== node
->mapping_count
)
499 node
= ACPI_ADD_PTR(struct acpi_iort_node
, iort_table
,
500 map
->output_reference
);
504 /* Map input ID to output ID unchanged on mapping failure */
511 static struct acpi_iort_node
*iort_node_map_platform_id(
512 struct acpi_iort_node
*node
, u32
*id_out
, u8 type_mask
,
515 struct acpi_iort_node
*parent
;
518 /* step 1: retrieve the initial dev id */
519 parent
= iort_node_get_id(node
, &id
, index
);
524 * optional step 2: map the initial dev id if its parent is not
525 * the target type we want, map it again for the use cases such
526 * as NC (named component) -> SMMU -> ITS. If the type is matched,
527 * return the initial dev id and its parent pointer directly.
529 if (!(IORT_TYPE_MASK(parent
->type
) & type_mask
))
530 parent
= iort_node_map_id(parent
, id
, id_out
, type_mask
);
538 static struct acpi_iort_node
*iort_find_dev_node(struct device
*dev
)
540 struct pci_bus
*pbus
;
542 if (!dev_is_pci(dev
)) {
543 struct acpi_iort_node
*node
;
545 * scan iort_fwnode_list to see if it's an iort platform
546 * device (such as SMMU, PMCG),its iort node already cached
547 * and associated with fwnode when iort platform devices
550 node
= iort_get_iort_node(dev
->fwnode
);
555 * if not, then it should be a platform device defined in
556 * DSDT/SSDT (with Named Component node in IORT)
558 return iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT
,
559 iort_match_node_callback
, dev
);
562 /* Find a PCI root bus */
563 pbus
= to_pci_dev(dev
)->bus
;
564 while (!pci_is_root_bus(pbus
))
567 return iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX
,
568 iort_match_node_callback
, &pbus
->dev
);
572 * iort_msi_map_rid() - Map a MSI requester ID for a device
573 * @dev: The device for which the mapping is to be done.
574 * @req_id: The device requester ID.
576 * Returns: mapped MSI RID on success, input requester ID otherwise
578 u32
iort_msi_map_rid(struct device
*dev
, u32 req_id
)
580 struct acpi_iort_node
*node
;
583 node
= iort_find_dev_node(dev
);
587 iort_node_map_id(node
, req_id
, &dev_id
, IORT_MSI_TYPE
);
592 * iort_pmsi_get_dev_id() - Get the device id for a device
593 * @dev: The device for which the mapping is to be done.
594 * @dev_id: The device ID found.
596 * Returns: 0 for successful find a dev id, -ENODEV on error
598 int iort_pmsi_get_dev_id(struct device
*dev
, u32
*dev_id
)
601 struct acpi_iort_node
*node
;
603 node
= iort_find_dev_node(dev
);
607 index
= iort_get_id_mapping_index(node
);
608 /* if there is a valid index, go get the dev_id directly */
610 if (iort_node_get_id(node
, dev_id
, index
))
613 for (i
= 0; i
< node
->mapping_count
; i
++) {
614 if (iort_node_map_platform_id(node
, dev_id
,
623 static int __maybe_unused
iort_find_its_base(u32 its_id
, phys_addr_t
*base
)
625 struct iort_its_msi_chip
*its_msi_chip
;
628 spin_lock(&iort_msi_chip_lock
);
629 list_for_each_entry(its_msi_chip
, &iort_msi_chip_list
, list
) {
630 if (its_msi_chip
->translation_id
== its_id
) {
631 *base
= its_msi_chip
->base_addr
;
636 spin_unlock(&iort_msi_chip_lock
);
642 * iort_dev_find_its_id() - Find the ITS identifier for a device
644 * @req_id: Device's requester ID
645 * @idx: Index of the ITS identifier list.
646 * @its_id: ITS identifier.
648 * Returns: 0 on success, appropriate error value otherwise
650 static int iort_dev_find_its_id(struct device
*dev
, u32 req_id
,
651 unsigned int idx
, int *its_id
)
653 struct acpi_iort_its_group
*its
;
654 struct acpi_iort_node
*node
;
656 node
= iort_find_dev_node(dev
);
660 node
= iort_node_map_id(node
, req_id
, NULL
, IORT_MSI_TYPE
);
664 /* Move to ITS specific data */
665 its
= (struct acpi_iort_its_group
*)node
->node_data
;
666 if (idx
>= its
->its_count
) {
667 dev_err(dev
, "requested ITS ID index [%d] overruns ITS entries [%d]\n",
668 idx
, its
->its_count
);
672 *its_id
= its
->identifiers
[idx
];
677 * iort_get_device_domain() - Find MSI domain related to a device
679 * @req_id: Requester ID for the device.
681 * Returns: the MSI domain for this device, NULL otherwise
683 struct irq_domain
*iort_get_device_domain(struct device
*dev
, u32 req_id
)
685 struct fwnode_handle
*handle
;
688 if (iort_dev_find_its_id(dev
, req_id
, 0, &its_id
))
691 handle
= iort_find_domain_token(its_id
);
695 return irq_find_matching_fwnode(handle
, DOMAIN_BUS_PCI_MSI
);
698 static void iort_set_device_domain(struct device
*dev
,
699 struct acpi_iort_node
*node
)
701 struct acpi_iort_its_group
*its
;
702 struct acpi_iort_node
*msi_parent
;
703 struct acpi_iort_id_mapping
*map
;
704 struct fwnode_handle
*iort_fwnode
;
705 struct irq_domain
*domain
;
708 index
= iort_get_id_mapping_index(node
);
712 map
= ACPI_ADD_PTR(struct acpi_iort_id_mapping
, node
,
713 node
->mapping_offset
+ index
* sizeof(*map
));
716 if (!map
->output_reference
||
717 !(map
->flags
& ACPI_IORT_ID_SINGLE_MAPPING
)) {
718 pr_err(FW_BUG
"[node %p type %d] Invalid MSI mapping\n",
723 msi_parent
= ACPI_ADD_PTR(struct acpi_iort_node
, iort_table
,
724 map
->output_reference
);
726 if (!msi_parent
|| msi_parent
->type
!= ACPI_IORT_NODE_ITS_GROUP
)
729 /* Move to ITS specific data */
730 its
= (struct acpi_iort_its_group
*)msi_parent
->node_data
;
732 iort_fwnode
= iort_find_domain_token(its
->identifiers
[0]);
736 domain
= irq_find_matching_fwnode(iort_fwnode
, DOMAIN_BUS_PLATFORM_MSI
);
738 dev_set_msi_domain(dev
, domain
);
742 * iort_get_platform_device_domain() - Find MSI domain related to a
744 * @dev: the dev pointer associated with the platform device
746 * Returns: the MSI domain for this device, NULL otherwise
748 static struct irq_domain
*iort_get_platform_device_domain(struct device
*dev
)
750 struct acpi_iort_node
*node
, *msi_parent
= NULL
;
751 struct fwnode_handle
*iort_fwnode
;
752 struct acpi_iort_its_group
*its
;
755 /* find its associated iort node */
756 node
= iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT
,
757 iort_match_node_callback
, dev
);
761 /* then find its msi parent node */
762 for (i
= 0; i
< node
->mapping_count
; i
++) {
763 msi_parent
= iort_node_map_platform_id(node
, NULL
,
772 /* Move to ITS specific data */
773 its
= (struct acpi_iort_its_group
*)msi_parent
->node_data
;
775 iort_fwnode
= iort_find_domain_token(its
->identifiers
[0]);
779 return irq_find_matching_fwnode(iort_fwnode
, DOMAIN_BUS_PLATFORM_MSI
);
782 void acpi_configure_pmsi_domain(struct device
*dev
)
784 struct irq_domain
*msi_domain
;
786 msi_domain
= iort_get_platform_device_domain(dev
);
788 dev_set_msi_domain(dev
, msi_domain
);
791 static int __maybe_unused
__get_pci_rid(struct pci_dev
*pdev
, u16 alias
,
800 #ifdef CONFIG_IOMMU_API
801 static struct acpi_iort_node
*iort_get_msi_resv_iommu(struct device
*dev
)
803 struct acpi_iort_node
*iommu
;
804 struct iommu_fwspec
*fwspec
= dev_iommu_fwspec_get(dev
);
806 iommu
= iort_get_iort_node(fwspec
->iommu_fwnode
);
808 if (iommu
&& (iommu
->type
== ACPI_IORT_NODE_SMMU_V3
)) {
809 struct acpi_iort_smmu_v3
*smmu
;
811 smmu
= (struct acpi_iort_smmu_v3
*)iommu
->node_data
;
812 if (smmu
->model
== ACPI_IORT_SMMU_V3_HISILICON_HI161X
)
819 static inline const struct iommu_ops
*iort_fwspec_iommu_ops(struct device
*dev
)
821 struct iommu_fwspec
*fwspec
= dev_iommu_fwspec_get(dev
);
823 return (fwspec
&& fwspec
->ops
) ? fwspec
->ops
: NULL
;
826 static inline int iort_add_device_replay(const struct iommu_ops
*ops
,
831 if (dev
->bus
&& !device_iommu_mapped(dev
))
832 err
= iommu_probe_device(dev
);
838 * iort_iommu_msi_get_resv_regions - Reserved region driver helper
839 * @dev: Device from iommu_get_resv_regions()
840 * @head: Reserved region list from iommu_get_resv_regions()
842 * Returns: Number of msi reserved regions on success (0 if platform
843 * doesn't require the reservation or no associated msi regions),
844 * appropriate error value otherwise. The ITS interrupt translation
845 * spaces (ITS_base + SZ_64K, SZ_64K) associated with the device
846 * are the msi reserved regions.
848 int iort_iommu_msi_get_resv_regions(struct device
*dev
, struct list_head
*head
)
850 struct iommu_fwspec
*fwspec
= dev_iommu_fwspec_get(dev
);
851 struct acpi_iort_its_group
*its
;
852 struct acpi_iort_node
*iommu_node
, *its_node
= NULL
;
855 iommu_node
= iort_get_msi_resv_iommu(dev
);
860 * Current logic to reserve ITS regions relies on HW topologies
861 * where a given PCI or named component maps its IDs to only one
862 * ITS group; if a PCI or named component can map its IDs to
863 * different ITS groups through IORT mappings this function has
864 * to be reworked to ensure we reserve regions for all ITS groups
865 * a given PCI or named component may map IDs to.
868 for (i
= 0; i
< fwspec
->num_ids
; i
++) {
869 its_node
= iort_node_map_id(iommu_node
,
871 NULL
, IORT_MSI_TYPE
);
879 /* Move to ITS specific data */
880 its
= (struct acpi_iort_its_group
*)its_node
->node_data
;
882 for (i
= 0; i
< its
->its_count
; i
++) {
885 if (!iort_find_its_base(its
->identifiers
[i
], &base
)) {
886 int prot
= IOMMU_WRITE
| IOMMU_NOEXEC
| IOMMU_MMIO
;
887 struct iommu_resv_region
*region
;
889 region
= iommu_alloc_resv_region(base
+ SZ_64K
, SZ_64K
,
890 prot
, IOMMU_RESV_MSI
);
892 list_add_tail(®ion
->list
, head
);
898 return (resv
== its
->its_count
) ? resv
: -ENODEV
;
901 static inline bool iort_iommu_driver_enabled(u8 type
)
904 case ACPI_IORT_NODE_SMMU_V3
:
905 return IS_BUILTIN(CONFIG_ARM_SMMU_V3
);
906 case ACPI_IORT_NODE_SMMU
:
907 return IS_BUILTIN(CONFIG_ARM_SMMU
);
909 pr_warn("IORT node type %u does not describe an SMMU\n", type
);
914 static int arm_smmu_iort_xlate(struct device
*dev
, u32 streamid
,
915 struct fwnode_handle
*fwnode
,
916 const struct iommu_ops
*ops
)
918 int ret
= iommu_fwspec_init(dev
, fwnode
, ops
);
921 ret
= iommu_fwspec_add_ids(dev
, &streamid
, 1);
926 static bool iort_pci_rc_supports_ats(struct acpi_iort_node
*node
)
928 struct acpi_iort_root_complex
*pci_rc
;
930 pci_rc
= (struct acpi_iort_root_complex
*)node
->node_data
;
931 return pci_rc
->ats_attribute
& ACPI_IORT_ATS_SUPPORTED
;
934 static int iort_iommu_xlate(struct device
*dev
, struct acpi_iort_node
*node
,
937 const struct iommu_ops
*ops
;
938 struct fwnode_handle
*iort_fwnode
;
943 iort_fwnode
= iort_get_fwnode(node
);
948 * If the ops look-up fails, this means that either
949 * the SMMU drivers have not been probed yet or that
950 * the SMMU drivers are not built in the kernel;
951 * Depending on whether the SMMU drivers are built-in
952 * in the kernel or not, defer the IOMMU configuration
955 ops
= iommu_ops_from_fwnode(iort_fwnode
);
957 return iort_iommu_driver_enabled(node
->type
) ?
958 -EPROBE_DEFER
: -ENODEV
;
960 return arm_smmu_iort_xlate(dev
, streamid
, iort_fwnode
, ops
);
963 struct iort_pci_alias_info
{
965 struct acpi_iort_node
*node
;
968 static int iort_pci_iommu_init(struct pci_dev
*pdev
, u16 alias
, void *data
)
970 struct iort_pci_alias_info
*info
= data
;
971 struct acpi_iort_node
*parent
;
974 parent
= iort_node_map_id(info
->node
, alias
, &streamid
,
976 return iort_iommu_xlate(info
->dev
, parent
, streamid
);
980 * iort_iommu_configure - Set-up IOMMU configuration for a device.
982 * @dev: device to configure
984 * Returns: iommu_ops pointer on configuration success
985 * NULL on configuration failure
987 const struct iommu_ops
*iort_iommu_configure(struct device
*dev
)
989 struct acpi_iort_node
*node
, *parent
;
990 const struct iommu_ops
*ops
;
995 * If we already translated the fwspec there
996 * is nothing left to do, return the iommu_ops.
998 ops
= iort_fwspec_iommu_ops(dev
);
1002 if (dev_is_pci(dev
)) {
1003 struct pci_bus
*bus
= to_pci_dev(dev
)->bus
;
1004 struct iort_pci_alias_info info
= { .dev
= dev
};
1006 node
= iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX
,
1007 iort_match_node_callback
, &bus
->dev
);
1012 err
= pci_for_each_dma_alias(to_pci_dev(dev
),
1013 iort_pci_iommu_init
, &info
);
1015 if (!err
&& iort_pci_rc_supports_ats(node
))
1016 dev
->iommu_fwspec
->flags
|= IOMMU_FWSPEC_PCI_RC_ATS
;
1020 node
= iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT
,
1021 iort_match_node_callback
, dev
);
1026 parent
= iort_node_map_platform_id(node
, &streamid
,
1031 err
= iort_iommu_xlate(dev
, parent
, streamid
);
1032 } while (parent
&& !err
);
1036 * If we have reason to believe the IOMMU driver missed the initial
1037 * add_device callback for dev, replay it to get things in order.
1040 ops
= iort_fwspec_iommu_ops(dev
);
1041 err
= iort_add_device_replay(ops
, dev
);
1044 /* Ignore all other errors apart from EPROBE_DEFER */
1045 if (err
== -EPROBE_DEFER
) {
1048 dev_dbg(dev
, "Adding to IOMMU failed: %d\n", err
);
1055 static inline const struct iommu_ops
*iort_fwspec_iommu_ops(struct device
*dev
)
1057 static inline int iort_add_device_replay(const struct iommu_ops
*ops
,
1060 int iort_iommu_msi_get_resv_regions(struct device
*dev
, struct list_head
*head
)
1062 const struct iommu_ops
*iort_iommu_configure(struct device
*dev
)
1066 static int nc_dma_get_range(struct device
*dev
, u64
*size
)
1068 struct acpi_iort_node
*node
;
1069 struct acpi_iort_named_component
*ncomp
;
1071 node
= iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT
,
1072 iort_match_node_callback
, dev
);
1076 ncomp
= (struct acpi_iort_named_component
*)node
->node_data
;
1078 *size
= ncomp
->memory_address_limit
>= 64 ? U64_MAX
:
1079 1ULL<<ncomp
->memory_address_limit
;
1084 static int rc_dma_get_range(struct device
*dev
, u64
*size
)
1086 struct acpi_iort_node
*node
;
1087 struct acpi_iort_root_complex
*rc
;
1088 struct pci_bus
*pbus
= to_pci_dev(dev
)->bus
;
1090 node
= iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX
,
1091 iort_match_node_callback
, &pbus
->dev
);
1092 if (!node
|| node
->revision
< 1)
1095 rc
= (struct acpi_iort_root_complex
*)node
->node_data
;
1097 *size
= rc
->memory_address_limit
>= 64 ? U64_MAX
:
1098 1ULL<<rc
->memory_address_limit
;
1104 * iort_dma_setup() - Set-up device DMA parameters.
1106 * @dev: device to configure
1107 * @dma_addr: device DMA address result pointer
1108 * @size: DMA range size result pointer
1110 void iort_dma_setup(struct device
*dev
, u64
*dma_addr
, u64
*dma_size
)
1112 u64 end
, mask
, dmaaddr
= 0, size
= 0, offset
= 0;
1116 * If @dev is expected to be DMA-capable then the bus code that created
1117 * it should have initialised its dma_mask pointer by this point. For
1118 * now, we'll continue the legacy behaviour of coercing it to the
1119 * coherent mask if not, but we'll no longer do so quietly.
1121 if (!dev
->dma_mask
) {
1122 dev_warn(dev
, "DMA mask not set\n");
1123 dev
->dma_mask
= &dev
->coherent_dma_mask
;
1126 if (dev
->coherent_dma_mask
)
1127 size
= max(dev
->coherent_dma_mask
, dev
->coherent_dma_mask
+ 1);
1131 if (dev_is_pci(dev
)) {
1132 ret
= acpi_dma_get_range(dev
, &dmaaddr
, &offset
, &size
);
1134 ret
= rc_dma_get_range(dev
, &size
);
1136 ret
= nc_dma_get_range(dev
, &size
);
1141 * Limit coherent and dma mask based on size retrieved from
1144 end
= dmaaddr
+ size
- 1;
1145 mask
= DMA_BIT_MASK(ilog2(end
) + 1);
1146 dev
->bus_dma_limit
= end
;
1147 dev
->coherent_dma_mask
= mask
;
1148 *dev
->dma_mask
= mask
;
1151 *dma_addr
= dmaaddr
;
1154 dev
->dma_pfn_offset
= PFN_DOWN(offset
);
1155 dev_dbg(dev
, "dma_pfn_offset(%#08llx)\n", offset
);
1158 static void __init
acpi_iort_register_irq(int hwirq
, const char *name
,
1160 struct resource
*res
)
1162 int irq
= acpi_register_gsi(NULL
, hwirq
, trigger
,
1166 pr_err("could not register gsi hwirq %d name [%s]\n", hwirq
,
1173 res
->flags
= IORESOURCE_IRQ
;
1177 static int __init
arm_smmu_v3_count_resources(struct acpi_iort_node
*node
)
1179 struct acpi_iort_smmu_v3
*smmu
;
1180 /* Always present mem resource */
1183 /* Retrieve SMMUv3 specific data */
1184 smmu
= (struct acpi_iort_smmu_v3
*)node
->node_data
;
1186 if (smmu
->event_gsiv
)
1192 if (smmu
->gerr_gsiv
)
1195 if (smmu
->sync_gsiv
)
1201 static bool arm_smmu_v3_is_combined_irq(struct acpi_iort_smmu_v3
*smmu
)
1204 * Cavium ThunderX2 implementation doesn't not support unique
1205 * irq line. Use single irq line for all the SMMUv3 interrupts.
1207 if (smmu
->model
!= ACPI_IORT_SMMU_V3_CAVIUM_CN99XX
)
1211 * ThunderX2 doesn't support MSIs from the SMMU, so we're checking
1214 return smmu
->event_gsiv
== smmu
->pri_gsiv
&&
1215 smmu
->event_gsiv
== smmu
->gerr_gsiv
&&
1216 smmu
->event_gsiv
== smmu
->sync_gsiv
;
1219 static unsigned long arm_smmu_v3_resource_size(struct acpi_iort_smmu_v3
*smmu
)
1222 * Override the size, for Cavium ThunderX2 implementation
1223 * which doesn't support the page 1 SMMU register space.
1225 if (smmu
->model
== ACPI_IORT_SMMU_V3_CAVIUM_CN99XX
)
1231 static void __init
arm_smmu_v3_init_resources(struct resource
*res
,
1232 struct acpi_iort_node
*node
)
1234 struct acpi_iort_smmu_v3
*smmu
;
1237 /* Retrieve SMMUv3 specific data */
1238 smmu
= (struct acpi_iort_smmu_v3
*)node
->node_data
;
1240 res
[num_res
].start
= smmu
->base_address
;
1241 res
[num_res
].end
= smmu
->base_address
+
1242 arm_smmu_v3_resource_size(smmu
) - 1;
1243 res
[num_res
].flags
= IORESOURCE_MEM
;
1246 if (arm_smmu_v3_is_combined_irq(smmu
)) {
1247 if (smmu
->event_gsiv
)
1248 acpi_iort_register_irq(smmu
->event_gsiv
, "combined",
1249 ACPI_EDGE_SENSITIVE
,
1253 if (smmu
->event_gsiv
)
1254 acpi_iort_register_irq(smmu
->event_gsiv
, "eventq",
1255 ACPI_EDGE_SENSITIVE
,
1259 acpi_iort_register_irq(smmu
->pri_gsiv
, "priq",
1260 ACPI_EDGE_SENSITIVE
,
1263 if (smmu
->gerr_gsiv
)
1264 acpi_iort_register_irq(smmu
->gerr_gsiv
, "gerror",
1265 ACPI_EDGE_SENSITIVE
,
1268 if (smmu
->sync_gsiv
)
1269 acpi_iort_register_irq(smmu
->sync_gsiv
, "cmdq-sync",
1270 ACPI_EDGE_SENSITIVE
,
1275 static void __init
arm_smmu_v3_dma_configure(struct device
*dev
,
1276 struct acpi_iort_node
*node
)
1278 struct acpi_iort_smmu_v3
*smmu
;
1279 enum dev_dma_attr attr
;
1281 /* Retrieve SMMUv3 specific data */
1282 smmu
= (struct acpi_iort_smmu_v3
*)node
->node_data
;
1284 attr
= (smmu
->flags
& ACPI_IORT_SMMU_V3_COHACC_OVERRIDE
) ?
1285 DEV_DMA_COHERENT
: DEV_DMA_NON_COHERENT
;
1287 /* We expect the dma masks to be equivalent for all SMMUv3 set-ups */
1288 dev
->dma_mask
= &dev
->coherent_dma_mask
;
1290 /* Configure DMA for the page table walker */
1291 acpi_dma_configure(dev
, attr
);
1294 #if defined(CONFIG_ACPI_NUMA)
1296 * set numa proximity domain for smmuv3 device
1298 static int __init
arm_smmu_v3_set_proximity(struct device
*dev
,
1299 struct acpi_iort_node
*node
)
1301 struct acpi_iort_smmu_v3
*smmu
;
1303 smmu
= (struct acpi_iort_smmu_v3
*)node
->node_data
;
1304 if (smmu
->flags
& ACPI_IORT_SMMU_V3_PXM_VALID
) {
1305 int dev_node
= acpi_map_pxm_to_node(smmu
->pxm
);
1307 if (dev_node
!= NUMA_NO_NODE
&& !node_online(dev_node
))
1310 set_dev_node(dev
, dev_node
);
1311 pr_info("SMMU-v3[%llx] Mapped to Proximity domain %d\n",
1318 #define arm_smmu_v3_set_proximity NULL
1321 static int __init
arm_smmu_count_resources(struct acpi_iort_node
*node
)
1323 struct acpi_iort_smmu
*smmu
;
1325 /* Retrieve SMMU specific data */
1326 smmu
= (struct acpi_iort_smmu
*)node
->node_data
;
1329 * Only consider the global fault interrupt and ignore the
1330 * configuration access interrupt.
1332 * MMIO address and global fault interrupt resources are always
1333 * present so add them to the context interrupt count as a static
1336 return smmu
->context_interrupt_count
+ 2;
1339 static void __init
arm_smmu_init_resources(struct resource
*res
,
1340 struct acpi_iort_node
*node
)
1342 struct acpi_iort_smmu
*smmu
;
1343 int i
, hw_irq
, trigger
, num_res
= 0;
1344 u64
*ctx_irq
, *glb_irq
;
1346 /* Retrieve SMMU specific data */
1347 smmu
= (struct acpi_iort_smmu
*)node
->node_data
;
1349 res
[num_res
].start
= smmu
->base_address
;
1350 res
[num_res
].end
= smmu
->base_address
+ smmu
->span
- 1;
1351 res
[num_res
].flags
= IORESOURCE_MEM
;
1354 glb_irq
= ACPI_ADD_PTR(u64
, node
, smmu
->global_interrupt_offset
);
1356 hw_irq
= IORT_IRQ_MASK(glb_irq
[0]);
1357 trigger
= IORT_IRQ_TRIGGER_MASK(glb_irq
[0]);
1359 acpi_iort_register_irq(hw_irq
, "arm-smmu-global", trigger
,
1363 ctx_irq
= ACPI_ADD_PTR(u64
, node
, smmu
->context_interrupt_offset
);
1364 for (i
= 0; i
< smmu
->context_interrupt_count
; i
++) {
1365 hw_irq
= IORT_IRQ_MASK(ctx_irq
[i
]);
1366 trigger
= IORT_IRQ_TRIGGER_MASK(ctx_irq
[i
]);
1368 acpi_iort_register_irq(hw_irq
, "arm-smmu-context", trigger
,
1373 static void __init
arm_smmu_dma_configure(struct device
*dev
,
1374 struct acpi_iort_node
*node
)
1376 struct acpi_iort_smmu
*smmu
;
1377 enum dev_dma_attr attr
;
1379 /* Retrieve SMMU specific data */
1380 smmu
= (struct acpi_iort_smmu
*)node
->node_data
;
1382 attr
= (smmu
->flags
& ACPI_IORT_SMMU_COHERENT_WALK
) ?
1383 DEV_DMA_COHERENT
: DEV_DMA_NON_COHERENT
;
1385 /* We expect the dma masks to be equivalent for SMMU set-ups */
1386 dev
->dma_mask
= &dev
->coherent_dma_mask
;
1388 /* Configure DMA for the page table walker */
1389 acpi_dma_configure(dev
, attr
);
1392 static int __init
arm_smmu_v3_pmcg_count_resources(struct acpi_iort_node
*node
)
1394 struct acpi_iort_pmcg
*pmcg
;
1396 /* Retrieve PMCG specific data */
1397 pmcg
= (struct acpi_iort_pmcg
*)node
->node_data
;
1400 * There are always 2 memory resources.
1401 * If the overflow_gsiv is present then add that for a total of 3.
1403 return pmcg
->overflow_gsiv
? 3 : 2;
1406 static void __init
arm_smmu_v3_pmcg_init_resources(struct resource
*res
,
1407 struct acpi_iort_node
*node
)
1409 struct acpi_iort_pmcg
*pmcg
;
1411 /* Retrieve PMCG specific data */
1412 pmcg
= (struct acpi_iort_pmcg
*)node
->node_data
;
1414 res
[0].start
= pmcg
->page0_base_address
;
1415 res
[0].end
= pmcg
->page0_base_address
+ SZ_4K
- 1;
1416 res
[0].flags
= IORESOURCE_MEM
;
1417 res
[1].start
= pmcg
->page1_base_address
;
1418 res
[1].end
= pmcg
->page1_base_address
+ SZ_4K
- 1;
1419 res
[1].flags
= IORESOURCE_MEM
;
1421 if (pmcg
->overflow_gsiv
)
1422 acpi_iort_register_irq(pmcg
->overflow_gsiv
, "overflow",
1423 ACPI_EDGE_SENSITIVE
, &res
[2]);
1426 static struct acpi_platform_list pmcg_plat_info
[] __initdata
= {
1427 /* HiSilicon Hip08 Platform */
1428 {"HISI ", "HIP08 ", 0, ACPI_SIG_IORT
, greater_than_or_equal
,
1429 "Erratum #162001800", IORT_SMMU_V3_PMCG_HISI_HIP08
},
1433 static int __init
arm_smmu_v3_pmcg_add_platdata(struct platform_device
*pdev
)
1438 idx
= acpi_match_platform_list(pmcg_plat_info
);
1440 model
= pmcg_plat_info
[idx
].data
;
1442 model
= IORT_SMMU_V3_PMCG_GENERIC
;
1444 return platform_device_add_data(pdev
, &model
, sizeof(model
));
1447 struct iort_dev_config
{
1449 int (*dev_init
)(struct acpi_iort_node
*node
);
1450 void (*dev_dma_configure
)(struct device
*dev
,
1451 struct acpi_iort_node
*node
);
1452 int (*dev_count_resources
)(struct acpi_iort_node
*node
);
1453 void (*dev_init_resources
)(struct resource
*res
,
1454 struct acpi_iort_node
*node
);
1455 int (*dev_set_proximity
)(struct device
*dev
,
1456 struct acpi_iort_node
*node
);
1457 int (*dev_add_platdata
)(struct platform_device
*pdev
);
1460 static const struct iort_dev_config iort_arm_smmu_v3_cfg __initconst
= {
1461 .name
= "arm-smmu-v3",
1462 .dev_dma_configure
= arm_smmu_v3_dma_configure
,
1463 .dev_count_resources
= arm_smmu_v3_count_resources
,
1464 .dev_init_resources
= arm_smmu_v3_init_resources
,
1465 .dev_set_proximity
= arm_smmu_v3_set_proximity
,
1468 static const struct iort_dev_config iort_arm_smmu_cfg __initconst
= {
1470 .dev_dma_configure
= arm_smmu_dma_configure
,
1471 .dev_count_resources
= arm_smmu_count_resources
,
1472 .dev_init_resources
= arm_smmu_init_resources
,
1475 static const struct iort_dev_config iort_arm_smmu_v3_pmcg_cfg __initconst
= {
1476 .name
= "arm-smmu-v3-pmcg",
1477 .dev_count_resources
= arm_smmu_v3_pmcg_count_resources
,
1478 .dev_init_resources
= arm_smmu_v3_pmcg_init_resources
,
1479 .dev_add_platdata
= arm_smmu_v3_pmcg_add_platdata
,
1482 static __init
const struct iort_dev_config
*iort_get_dev_cfg(
1483 struct acpi_iort_node
*node
)
1485 switch (node
->type
) {
1486 case ACPI_IORT_NODE_SMMU_V3
:
1487 return &iort_arm_smmu_v3_cfg
;
1488 case ACPI_IORT_NODE_SMMU
:
1489 return &iort_arm_smmu_cfg
;
1490 case ACPI_IORT_NODE_PMCG
:
1491 return &iort_arm_smmu_v3_pmcg_cfg
;
1498 * iort_add_platform_device() - Allocate a platform device for IORT node
1499 * @node: Pointer to device ACPI IORT node
1501 * Returns: 0 on success, <0 failure
1503 static int __init
iort_add_platform_device(struct acpi_iort_node
*node
,
1504 const struct iort_dev_config
*ops
)
1506 struct fwnode_handle
*fwnode
;
1507 struct platform_device
*pdev
;
1511 pdev
= platform_device_alloc(ops
->name
, PLATFORM_DEVID_AUTO
);
1515 if (ops
->dev_set_proximity
) {
1516 ret
= ops
->dev_set_proximity(&pdev
->dev
, node
);
1521 count
= ops
->dev_count_resources(node
);
1523 r
= kcalloc(count
, sizeof(*r
), GFP_KERNEL
);
1529 ops
->dev_init_resources(r
, node
);
1531 ret
= platform_device_add_resources(pdev
, r
, count
);
1533 * Resources are duplicated in platform_device_add_resources,
1534 * free their allocated memory
1542 * Platform devices based on PMCG nodes uses platform_data to
1543 * pass the hardware model info to the driver. For others, add
1544 * a copy of IORT node pointer to platform_data to be used to
1545 * retrieve IORT data information.
1547 if (ops
->dev_add_platdata
)
1548 ret
= ops
->dev_add_platdata(pdev
);
1550 ret
= platform_device_add_data(pdev
, &node
, sizeof(node
));
1555 fwnode
= iort_get_fwnode(node
);
1562 pdev
->dev
.fwnode
= fwnode
;
1564 if (ops
->dev_dma_configure
)
1565 ops
->dev_dma_configure(&pdev
->dev
, node
);
1567 iort_set_device_domain(&pdev
->dev
, node
);
1569 ret
= platform_device_add(pdev
);
1571 goto dma_deconfigure
;
1576 arch_teardown_dma_ops(&pdev
->dev
);
1578 platform_device_put(pdev
);
1584 static void __init
iort_enable_acs(struct acpi_iort_node
*iort_node
)
1586 static bool acs_enabled __initdata
;
1591 if (iort_node
->type
== ACPI_IORT_NODE_PCI_ROOT_COMPLEX
) {
1592 struct acpi_iort_node
*parent
;
1593 struct acpi_iort_id_mapping
*map
;
1596 map
= ACPI_ADD_PTR(struct acpi_iort_id_mapping
, iort_node
,
1597 iort_node
->mapping_offset
);
1599 for (i
= 0; i
< iort_node
->mapping_count
; i
++, map
++) {
1600 if (!map
->output_reference
)
1603 parent
= ACPI_ADD_PTR(struct acpi_iort_node
,
1604 iort_table
, map
->output_reference
);
1606 * If we detect a RC->SMMU mapping, make sure
1607 * we enable ACS on the system.
1609 if ((parent
->type
== ACPI_IORT_NODE_SMMU
) ||
1610 (parent
->type
== ACPI_IORT_NODE_SMMU_V3
)) {
1619 static inline void iort_enable_acs(struct acpi_iort_node
*iort_node
) { }
1622 static void __init
iort_init_platform_devices(void)
1624 struct acpi_iort_node
*iort_node
, *iort_end
;
1625 struct acpi_table_iort
*iort
;
1626 struct fwnode_handle
*fwnode
;
1628 const struct iort_dev_config
*ops
;
1631 * iort_table and iort both point to the start of IORT table, but
1632 * have different struct types
1634 iort
= (struct acpi_table_iort
*)iort_table
;
1636 /* Get the first IORT node */
1637 iort_node
= ACPI_ADD_PTR(struct acpi_iort_node
, iort
,
1639 iort_end
= ACPI_ADD_PTR(struct acpi_iort_node
, iort
,
1640 iort_table
->length
);
1642 for (i
= 0; i
< iort
->node_count
; i
++) {
1643 if (iort_node
>= iort_end
) {
1644 pr_err("iort node pointer overflows, bad table\n");
1648 iort_enable_acs(iort_node
);
1650 ops
= iort_get_dev_cfg(iort_node
);
1652 fwnode
= acpi_alloc_fwnode_static();
1656 iort_set_fwnode(iort_node
, fwnode
);
1658 ret
= iort_add_platform_device(iort_node
, ops
);
1660 iort_delete_fwnode(iort_node
);
1661 acpi_free_fwnode_static(fwnode
);
1666 iort_node
= ACPI_ADD_PTR(struct acpi_iort_node
, iort_node
,
1671 void __init
acpi_iort_init(void)
1675 status
= acpi_get_table(ACPI_SIG_IORT
, 0, &iort_table
);
1676 if (ACPI_FAILURE(status
)) {
1677 if (status
!= AE_NOT_FOUND
) {
1678 const char *msg
= acpi_format_exception(status
);
1680 pr_err("Failed to get table, %s\n", msg
);
1686 iort_check_id_count_workaround(iort_table
);
1687 iort_init_platform_devices();