public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: kobarity <kobarity@gmail.com>
To: Aditya Garg <gargaditya08@live.com>
Cc: "Berkel Jörg" <joerg.berkel@bfh.ch>,
	"Robin Murphy" <robin.murphy@arm.com>,
	"Baolu Lu" <baolu.lu@linux.intel.com>,
	"linux-input@vger.kernel.org" <linux-input@vger.kernel.org>,
	"dmitry.torokhov@gmail.com" <dmitry.torokhov@gmail.com>,
	"stable@vger.kernel.org" <stable@vger.kernel.org>,
	"regressions@lists.linux.dev" <regressions@lists.linux.dev>,
	"linux-spi@vger.kernel.org" <linux-spi@vger.kernel.org>,
	"lukas@wunner.de" <lukas@wunner.de>,
	"David Woodhouse" <dwmw2@infradead.org>,
	"iommu@lists.linux.dev" <iommu@lists.linux.dev>,
	"Joerg Roedel" <joro@8bytes.org>, "Will Deacon" <will@kernel.org>
Subject: Re: [REGRESSION] applespi from 6.12 onwards
Date: Sun, 11 May 2025 22:31:29 +0900	[thread overview]
Message-ID: <eke7wmanw9xq.wl-kobarity@gmail.com> (raw)
In-Reply-To: <PN3PR01MB959708DEEA1567DD38447D5AB895A@PN3PR01MB9597.INDPRD01.PROD.OUTLOOK.COM>

[-- Attachment #1: Type: text/plain, Size: 1132 bytes --]


Hi

I'm also experiencing this problem on my MacBookPro14,3.

Aditya Garg wrote:
> 
> Hi Jörg
> 
> Can you test the kernel here to see if this fixes your issue:
> 
> https://github.com/t2linux/T2-Debian-and-Ubuntu-Kernel/actions/runs/14944200356
> 
> Alternatively you can try compiling your own kernel with this patch:
> 
> https://lore.kernel.org/all/0-v1-c26553717e90+65f-iommu_vtd_ss_wo_jgg@nvidia.com/

As far as I have tried, this patch did not solve the problem.

By bisecting, I found that this problem was introduced by commit
2031c469f816 ("iommu/vt-d: Add support for static identity domain").
In fact, since this commit, it will panic at startup.  This panic was
fixed by commit 6e02a277f1db ("iommu/vt-d: Fix incorrect
pci_for_each_dma_alias() for non-PCI devices").  So I applied commit
6e02a277f1db on commit 2031c469f816 and confirmed that the keyboard
and touchpad is not working.

I also found that I can workaround this problem by reverting only the
intel_iommu_attach_device() change in commit 2031c469f816 as in the
attached patch, but I'm not sure if this is a reasonable fix.


[-- Attachment #2: workaround.patch --]
[-- Type: application/octet-stream, Size: 601 bytes --]

diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c
index cb0b993bebb4..14da33490fa1 100644
--- a/drivers/iommu/intel/iommu.c
+++ b/drivers/iommu/intel/iommu.c
@@ -3484,9 +3484,11 @@ int paging_domain_compatible(struct iommu_domain *domain, struct device *dev)
 static int intel_iommu_attach_device(struct iommu_domain *domain,
 				     struct device *dev)
 {
+	struct device_domain_info *info = dev_iommu_priv_get(dev);
 	int ret;
 
-	device_block_translation(dev);
+	if (info->domain)
+		device_block_translation(dev);
 
 	ret = paging_domain_compatible(domain, dev);
 	if (ret)

  reply	other threads:[~2025-05-11 13:31 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-07  7:18 [REGRESSION] applespi from 6.12 onwards Berkel Jörg
2025-05-07 16:31 ` Aditya Garg
2025-05-07 20:24   ` Berkel Jörg
2025-05-07 17:07 ` Aditya Garg
2025-05-08  2:15   ` Baolu Lu
2025-05-08  6:22     ` Dmitry Torokhov
2025-05-08 11:00       ` Aditya Garg
2025-05-08 11:29     ` Robin Murphy
2025-05-08 12:54       ` Aditya Garg
2025-05-09 15:23         ` Berkel Jörg
2025-05-10  9:57           ` Aditya Garg
2025-05-11 13:31             ` kobarity [this message]
2025-05-12  5:12               ` Baolu Lu
2025-05-12 12:16                 ` kobarity
2025-05-13  1:37                   ` Baolu Lu
2025-05-13 12:08                     ` kobarity
2025-05-14  3:39                       ` Baolu Lu
2025-05-09  2:47       ` Baolu Lu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=eke7wmanw9xq.wl-kobarity@gmail.com \
    --to=kobarity@gmail.com \
    --cc=baolu.lu@linux.intel.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=dwmw2@infradead.org \
    --cc=gargaditya08@live.com \
    --cc=iommu@lists.linux.dev \
    --cc=joerg.berkel@bfh.ch \
    --cc=joro@8bytes.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-spi@vger.kernel.org \
    --cc=lukas@wunner.de \
    --cc=regressions@lists.linux.dev \
    --cc=robin.murphy@arm.com \
    --cc=stable@vger.kernel.org \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox