[PATCHv4 2/7] driver/core: Populate IOMMU'able devices in order
Stephen Warren
swarren at wwwdotorg.org
Tue Nov 12 18:34:20 EST 2013
On 11/11/2013 01:31 AM, Hiroshi Doyu wrote:
> An "IOMMU device" on the bus is poplulated first, "IOMMU'able devices"
> are done later.
>
> With CONFIG_OF_IOMMU, "#stream-id-cells" DT binding would be used to
> identify whether a device is IOMMU'able or not. If a device is
> IOMMU'able, we'll defer to populate that device till an iommu device
> is populated. Once an iommu device is populated, "dev->bus->iommu_ops"
> is set in the bus. Then, those defered IOMMU'able devices are
> populated and configured as IOMMU'abled with help of the already
> populated iommu device via iommu_ops->add_device().
This looks fairly neat and clean.
I'm still worried about using #stream-id-cells in DT nodes though. While
I do understand that the *Linux* device model currently only allows each
struct device to be affected by a single IOMMU, I worry that encoding
that same restriction into DT is a mistake. I'd far rather see a
property like:
SMMU:
smmu: smmu at xxxxxx {
#smmu-cells = <1>;
}
Affected device:
smmus = <&smmu 1>;
(perhaps with smmu-names too)
That would allow the DT to represent basically arbitrary HW configurations.
The implementation of this patch would then be almost as trivial; you'd
just need to walk the smmus property to find each phandle in turn, just
like any other phandle+specifier property, and validate that the SMMU
driver was already probe()d for each.
More information about the linux-arm-kernel
mailing list