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 D9204346A04; Sat, 30 May 2026 16:24:36 +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=1780158277; cv=none; b=IokAmruF3F7U8T/c4EzZtJxecgm4KUL5ZaO89VxhIrhAzsxyGkWa/iPwmQoF+N5U/AmrjDFlSg5OPnVi4IddH6dV2JuQtmC9j89FmxXuuPu1g5dbF2u2UrnbXzVlx0GBAHuuCrmBx+LnFyG3qY2Ibi3lh7eldZ6/aOdJAHPLDMs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780158277; c=relaxed/simple; bh=FSFc9K3gEXIdgb5uGYN+O+Ai5+jkmXnk+4MCiRcJk44=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=phJQnBGobagKnXstr9zM0BNLvvTcwoEtacgQlh8NmNObyxgQiM0I/uj3B3+r/MhyczKY5FjjTV3yXZOrp48bKd2B3AGRCHlqppQINdvCfK/+FraiXArmlaydlO0bsOYRfyeoSgL1FjpKDqokbUzg5Q+NdQCA+vF1xHiaCTQCWXE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=sjkXfR5C; 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="sjkXfR5C" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8710C1F00893; Sat, 30 May 2026 16:24:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1780158276; bh=JkflEZDoHpxmVVgPEKQuDIfhvDOHncDqO13/A6GHYnw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=sjkXfR5COqEzu76Jl+nOApVSM+xofX5fqoFYbV3+w/oEWiV3Hg0Eg+0RT9AK2uIZR akoIEgOsV4M/0P5K15WGcfWvdshlqZjOw2M3ejTuH9QM7YZ7tU2aroG75K9zd4+xSq Kk9gJuEJ72TkGtAS5MaVtDWPSFWhcXaccaICGehM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Gilson=20Marquato=20J=C3=BAnior?= , Mark Brown , Sasha Levin Subject: [PATCH 6.1 016/969] ASoC: amd: yc: Add DMI entry for HP Laptop 15-fc0xxx Date: Sat, 30 May 2026 17:52:20 +0200 Message-ID: <20260530160300.915299164@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260530160300.485627683@linuxfoundation.org> References: <20260530160300.485627683@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Gilson Marquato Júnior [ Upstream commit 8ec017cf31299c4b6287ebe27afe81c986aeef88 ] The HP Laptop 15-fc0xxx (subsystem ID 0x103c8dc9) has an internal DMIC connected to the AMD ACP6x audio coprocessor. Add a DMI quirk entry so the internal microphone is properly detected on this model. Tested on HP Laptop 15-fc0237ns with Fedora 43 (kernel 6.19.9). Signed-off-by: Gilson Marquato Júnior Link: https://patch.msgid.link/20260330-hp-15-fc0xxx-dmic-v2-v1-1-6dd6f53a1917@hotmail.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/amd/yc/acp6x-mach.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c index d650091d3f302..c9bc2289d3661 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -45,6 +45,13 @@ static struct snd_soc_card acp6x_card = { }; static const struct dmi_system_id yc_acp_quirk_table[] = { + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP Laptop 15-fc0xxx"), + } + }, { .driver_data = &acp6x_card, .matches = { -- 2.53.0