lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <0f3c9f9e-caf9-462a-ba8d-882266d4c7c4@www.fastmail.com>
Date:   Tue, 30 Nov 2021 17:35:16 +0100
From:   "Sven Peter" <sven@...npeter.dev>
To:     "Bjorn Helgaas" <helgaas@...nel.org>,
        "Manivannan Sadhasivam" <manivannan.sadhasivam@...aro.org>
Cc:     "Lorenzo Pieralisi" <lorenzo.pieralisi@....com>,
        "Bjorn Helgaas" <bhelgaas@...gle.com>, svarbanov@...sol.com,
        bjorn.andersson@...aro.org, "Rob Herring" <robh@...nel.org>,
        linux-pci@...r.kernel.org, linux-arm-msm@...r.kernel.org,
        linux-kernel@...r.kernel.org, "kernel test robot" <lkp@...el.com>,
        "Marc Zyngier" <maz@...nel.org>,
        "Alyssa Rosenzweig" <alyssa@...enzweig.io>
Subject: Re: [PATCH] PCI: qcom: Fix warning generated due to the incorrect data type

Hi,

On Tue, Nov 30, 2021, at 17:03, Bjorn Helgaas wrote:
> [+cc Marc, Alyssa, Sven for RID-to-SID mapping insight.  The patch at
> https://lore.kernel.org/all/20211130062137.GD205712@thinkpad/ merely
> fixes a warning.  My meta-question is about the qcom BDF-to-SID
> mapping.]
>
> On Tue, Nov 30, 2021 at 11:51:37AM +0530, Manivannan Sadhasivam wrote:
>> On Mon, Nov 29, 2021 at 09:36:14PM -0600, Bjorn Helgaas wrote:
>> > ...
>> > I'm also curious why pcie-qcom.c is the only driver that does this.
>> > "iommu-map" is not specific to qcom, but no other drivers do similar
>> > things with it.
>> 
>> Yes, on the recent qcom platforms starting from sm8250 we need to program
>> the BDF to SID mapping in the controller and that's the reason we are
>> extracting the "iommu-map" property in DT.
>
> This sounds like something that may not really be specific to sm8250.

So a single IOMMU can possibly differentiate between N different devices [1].
Each device [1] is identified by some number which is called sid (stream id?
security id? who knows.) on Apple hardware (and apparently also on qcom).
Now I don't know much about PCI but the way I understand it is that the
bus/device/function tuple can be used to uniquely identify a single device on the bus.
All iommu-map does is to provide the mapping between those two different spaces [2].

For most iommus this seems to be just a static mapping that's hardwired in silicon
and I think that's why almost no PCI driver needs to care about it: The iommu
core will just use it to convert the PCI requester ID to a number the iommu
driver understands.

Apple's frankenchip however allows to configure this mapping from software
after a device has been attached and that's why we need that special code inside
the PCI driver: We have to make sure that whatever is configured inside iommu-map
(and used by the iommu core to match PCI devices to iommu groups) matches to what
the HW does.

I can only assume that qcom does something similar. It looks like the qcom HW can be
fully configured during probe time though while we really have to wait until a device
is attached for the Apple chip (mostly because we only have 16 slots there).


Hope that helps.


Best,

Sven



[1] Technically the smallest unit are iommu groups which can contain multiple
devices but we can just ignore that. The iommu code will do the correct thing
if it gets told that two PCI devices have the same identification number.

[2] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/iommu/of_iommu.c#n53

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ