From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="lsrvxtps" Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.115]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 82666133 for ; Fri, 8 Dec 2023 05:22:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1702041721; x=1733577721; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7F9pKUKkgbIsuxLviTWduDuddL+0J+DEhNkNOFIdf8w=; b=lsrvxtpsHcPaVX5gWLL3LRKXErD0X3WiZ5HamAW0p/1uwumx8dPviwyb Y/IBwFZJcOqPhICWsHaCGM/kgB6tEKmIOt4ODP4UHvqRWdBOnbrsmuxaY Yg7uHtUXQeTUX4jLwoKRE1yeE5QR5PwaNZrsQnk2R3y0ryupxfoYpbM9d cz8NoMX9gjlPhBfwBWvu8BE7plpFeF+0PDsoI9cMouhzRlQI3FQB0tlAO a+WW5QrswHxH4aLZzdHVNSsIBGMOBQvSG/BYuEGLuOPO4ulU125U7EX6H MWWDBnJZOIhENLkI4KF4zFXjiu7ZzJCc4dK4Q+OPq0ci4xNZc0NVubImK A==; X-IronPort-AV: E=McAfee;i="6600,9927,10917"; a="394141786" X-IronPort-AV: E=Sophos;i="6.04,261,1695711600"; d="scan'208";a="394141786" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Dec 2023 05:22:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10917"; a="915948551" X-IronPort-AV: E=Sophos;i="6.04,261,1695711600"; d="scan'208";a="915948551" Received: from eliteleevi.tm.intel.com ([10.237.54.20]) by fmsmga001.fm.intel.com with ESMTP; 08 Dec 2023 05:21:59 -0800 From: Kai Vehmanen To: linux-sound@vger.kernel.org, tiwai@suse.de Cc: kai.vehmanen@linux.intel.com, alsa-devel@alsa-project.org, =?UTF-8?q?Ville=20Syrj=C3=A4l=C3=A4?= , Jani Saarinen Subject: [PATCH 2/2] ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants Date: Fri, 8 Dec 2023 15:21:27 +0200 Message-ID: <20231208132127.2438067-3-kai.vehmanen@linux.intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20231208132127.2438067-1-kai.vehmanen@linux.intel.com> References: <20231208132127.2438067-1-kai.vehmanen@linux.intel.com> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On ASUSTeK Z170M PLUS and Z170 PRO GAMING systems, the display codec pins are not registered properly without the force-connect quirk. The codec will report only one pin as having external connectivity, but i915 finds all three connectors on the system, so the two drivers are not in sync. Issue found with DRM igt-gpu-tools test kms_hdmi_inject@inject-audio. Link: https://gitlab.freedesktop.org/drm/intel/-/issues/9801 Cc: Ville Syrjälä Cc: Jani Saarinen Signed-off-by: Kai Vehmanen --- sound/pci/hda/patch_hdmi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c index 88d7e037a57c..200779296a1b 100644 --- a/sound/pci/hda/patch_hdmi.c +++ b/sound/pci/hda/patch_hdmi.c @@ -1993,6 +1993,8 @@ static const struct snd_pci_quirk force_connect_list[] = { SND_PCI_QUIRK(0x103c, 0x871a, "HP", 1), SND_PCI_QUIRK(0x103c, 0x8711, "HP", 1), SND_PCI_QUIRK(0x103c, 0x8715, "HP", 1), + SND_PCI_QUIRK(0x1043, 0x86ae, "ASUS", 1), /* Z170 PRO */ + SND_PCI_QUIRK(0x1043, 0x86c7, "ASUS", 1), /* Z170M PLUS */ SND_PCI_QUIRK(0x1462, 0xec94, "MS-7C94", 1), SND_PCI_QUIRK(0x8086, 0x2060, "Intel NUC5CPYB", 1), SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", 1), -- 2.43.0