From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 44B401EB5CE; Mon, 20 Apr 2026 15:57:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700652; cv=none; b=Xu+xxWFzAk2yFarbGP2uRwl6xN0RQm/FcEhJm+l0dce1zBRM+nzIuuhNDqJaDWi6CE98j365v295zmwGGp2e4lLIzBFSGjndE3Iskh+GqsqQhPyQxdCUS70O3wbA+Y7kfn5h2bvVxmQGLyVo4ul7cDFnZgPi/Uvt5YR/fOrcsuM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700652; c=relaxed/simple; bh=dzvMO5IZG8z9djbgwdKWzJ8ut9+WUuHf0Z13kOWr6rg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=CuBJQ/HBDdVjUarMZrnqorRPqaK59CGD79KOe+S9TlUZd0KuQR487rtpaIB+ndDHHzI73ElPyyUXN6jAkuwe1tYGEVGx5R3mwFt53qPKn8tl3XzeAlQoBto28Cge14FVc8YgV016XeCJYcPiS3pmp/G71aKIx96IhHa8L8ILZSQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=gcHqoyVm; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="gcHqoyVm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9507FC19425; Mon, 20 Apr 2026 15:57:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776700651; bh=dzvMO5IZG8z9djbgwdKWzJ8ut9+WUuHf0Z13kOWr6rg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gcHqoyVm6YEpKbRGo1mrdweXMC9fJieSB9bx8K0j8VG+sAqEdiqYfCQXYF2Agn0FE IJBWoxrezSC2PYe/NzAHE3lu0H0YdGsA+aWH+JXK8b5bfOtOASbXZNnzA3GWVyV/YH XDziKQcTEIaLkJf9/naV0lV8PkhzSH80iezf4Hvw= 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.18 033/198] ASoC: amd: yc: Add DMI entry for HP Laptop 15-fc0xxx Date: Mon, 20 Apr 2026 17:40:12 +0200 Message-ID: <20260420153936.811251904@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153935.605963767@linuxfoundation.org> References: <20260420153935.605963767@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.18-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 6f1c105ca77e3..4c0acdad13ea1 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