From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 23009407CDE; Wed, 20 May 2026 18:50:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779303015; cv=none; b=h5K6/xi3Q12fdTSSsUkdkg+E9f+QOCl7ghTVKFdQFGjyQjyEHvl7JXMq+qo0Eb3lO0v9SoMsEwA9lqy+j6464sTGnmZ8Q0i7N7IifjaqdhsMWJh7pXfOqcA7WtAIDtaGU01K65kNX5lbPkXHKlzK1OlcZIR0ERzP6yaSYrEscpM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779303015; c=relaxed/simple; bh=ZnkMYMIlQOA3MeSf2c2NS6O0YSZy4ARCdec9ncvCPls=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Xr7Fp5+FqyihrmynqYT4+yFFnMr5RlI4RJ4dZCiuzIm4C5Xw3bpZTnx/zz1yEWyPJ1SSfC8hWfMdEZ1XXu/uU9z3vFaptprUSYiwygcz1QNyyD33db3XR9qG2rkfaxUnrsbUIeDlUljNb9LLIxwUO/H4FsBV4EJhyk5XrEZCsJU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=nC0zHG++; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="nC0zHG++" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3F9BD1F000E9; Wed, 20 May 2026 18:50:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779303011; bh=AxKkpdZMnTbvxj4ZSgg9Wn3gfZFQ8ZQUVE/DKNpyuQ0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=nC0zHG++qPoZxb2jdrh58gma2DRpArumcSnomcBbTHnD/4XNIqPjwZ9lH01EWPTGf bJAWo0n+jnsOR6BI815xDUr4o8R7ahwBPmLsfW9sRlk3fLlc8A+gKkoVjQ4Zv6Ta4Q gH5HvqqIdHaMAuDGgDeQarUo16BzL5BlZKhG2vEo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Naval=20Alcal=C3=A1?= , Lu Baolu , Joerg Roedel Subject: [PATCH 6.6 478/508] iommu/vt-d: Disable DMAR for Intel Q35 IGFX Date: Wed, 20 May 2026 18:25:01 +0200 Message-ID: <20260520162108.950269749@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162058.573354582@linuxfoundation.org> References: <20260520162058.573354582@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Naval Alcalá commit 2cda2e10dc8343ae01eae9e999a876b7e7d37861 upstream. Intel Q35 integrated graphics (8086:29b2) exhibits broken DMAR behaviour similar to other G4x/GM45 devices for which DMAR is already disabled via quirks. When DMAR is enabled, the system may hard lock up during boot or early device initialization, requiring a reset. Add the missing PCI ID to the existing quirk list to disable DMAR for this device. Fixes: 1f76249cc3be ("iommu/vt-d: Declare Broadwell igfx dmar support snafu") Cc: stable@vger.kernel.org Closes: https://bugzilla.kernel.org/show_bug.cgi?id=201185 Closes: https://bugzilla.kernel.org/show_bug.cgi?id=216064 Signed-off-by: Naval Alcalá Link: https://lore.kernel.org/r/20260410161622.13549-1-ari@naval.cat Signed-off-by: Lu Baolu Signed-off-by: Joerg Roedel Signed-off-by: Greg Kroah-Hartman --- drivers/iommu/intel/iommu.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c @@ -4851,6 +4851,9 @@ static void quirk_iommu_igfx(struct pci_ dmar_map_gfx = 0; } +/* Q35 integrated gfx dmar support is totally busted. */ +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x29b2, quirk_iommu_igfx); + /* G4x/GM45 integrated gfx dmar support is totally busted. */ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_igfx); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_igfx);