Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1482249

Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU platform devices creation

From Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Newsgroups linux.kernel
Subject Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU platform devices creation
Date 2016-09-13 10:30 +0200
Message-ID <sgRgm-7LF-11@gated-at.bofh.it> (permalink)
References <sfuYx-40N-3@gated-at.bofh.it> <sfuYy-40N-33@gated-at.bofh.it> <sgQDD-7fb-15@gated-at.bofh.it> <sgR6F-7I4-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Sep 13, 2016 at 04:15:31PM +0800, Hanjun Guo wrote:

[...]

> >>+static acpi_status __init iort_match_iommu_callback(struct
> >>acpi_iort_node *node,
> >>+                            void *context)
> >>+{
> >>+    int ret;
> >>+    struct fwnode_handle *fwnode;
> >>+
> >>+    fwnode = iort_get_fwnode(node);
> >>+
> >>+    if (!fwnode)
> >>+        return AE_NOT_FOUND;
> >>+
> >>+    ret = iort_add_smmu_platform_device(fwnode, node);
> >>+    if (ret) {
> >>+        pr_err("Error in platform device creation\n");
> >>+        return AE_ERROR;
> >>+    }
> >>+
> >>+    return AE_OK;
> >>+}
> >>+
> >>+static void __init iort_smmu_init(void)
> >>+{
> >>+    iort_scan_node(ACPI_IORT_NODE_SMMU, iort_match_iommu_callback,
> >>NULL);
> >>+    iort_scan_node(ACPI_IORT_NODE_SMMU_V3, iort_match_iommu_callback,
> >>NULL);
> >
> >Since iort_scan_node() returns after the first successful match it finds,
> >only the first SMMU_V3 in my IORT is being enumerated. I think you need
> >to go back to the "iterator" like approach you had been using or make
> >iort_match_iommu_callback() always return a non-AE_OK value so the scan
> >continues and has a chance to visit all of the SMMU_V3 nodes.
> 
> Please use the updated version of IORT patch (aka Tomasz's v11)
> then things will work fine.

Nate is right, I was too keen on using iort_scan_node(), it does
not really work here (unless as he said I return a value !AE_OK in
the callback, which is horrible), I reverted back to the iterator
approach and I can push out a fixed up branch if useful before next
posting.

Thanks,
Lorenzo

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU platform devices creation Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2016-09-09 16:30 +0200
  Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU  platform devices creation nwatters@codeaurora.org - 2016-09-13 09:50 +0200
    Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU  platform devices creation Hanjun Guo <hanjun.guo@linaro.org> - 2016-09-13 10:20 +0200
      Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU  platform devices creation Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2016-09-13 10:30 +0200
        Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU  platform devices creation Hanjun Guo <hanjun.guo@linaro.org> - 2016-09-13 10:50 +0200
  Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU  platform devices creation Robin Murphy <robin.murphy@arm.com> - 2016-09-13 17:30 +0200
    Re: [PATCH v5 07/14] drivers: acpi: iort: add support for ARM SMMU  platform devices creation Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2016-09-13 18:30 +0200

csiph-web