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 E8E818468; Thu, 25 Jul 2024 14:49:56 +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=1721918997; cv=none; b=fL1l5vbHg+nB+WfgCDlXKLT1NGhqH230FrL7CIpjfNnvylby7DPdkzHloMm2Sq6y0/7o3ORiOr2rO9acork4MqT/8diO6IYhwcTw3v1qG4LLP2XzuEg3P0QG7TbByWLdIhNPe6c76iHeFCpgZUiyug0JvQ9PBC+zb+DJxtsVGl0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721918997; c=relaxed/simple; bh=JhtOviAJIo4V1pDdSTxb2DUt/+BQi8qtNlOZSMOESqo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CUMh4bRyXpsXDvbHpO4ZRgqhLeD5fH9pz1iZJPx8uJiXMhHM/Y4d84or7ehqw+S1sJngnxBX9gYWcfD0Tua9D0qfkdeQQz0FQPvxWbZqkfEQf6xCUs9rWxa2V8mBAcsba94Tly6f5hipyQVR+BtdeJuDuUPitsbtI9yxmav07fI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TJLrvJCx; 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="TJLrvJCx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 574C9C4AF07; Thu, 25 Jul 2024 14:49:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1721918996; bh=JhtOviAJIo4V1pDdSTxb2DUt/+BQi8qtNlOZSMOESqo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TJLrvJCxD/d/138dXoVKEd6TtNEeX7YhVWyWeCLsnL2AVtMwQj6PLY57TjZCd8tWC V/kz9BzAoHc268/rldLs3z/RP6wqYg0vFhp/CQmZgY8m3zXoLJqilUj8sS1fQ9nvQU clYiVhiJvTmzm0Ryv4McB2h6VpuoAqlU8YpT0xnw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Thomas GENTY , Hans de Goede , Pierre-Louis Bossart , Mark Brown , Sasha Levin Subject: [PATCH 5.10 24/59] bytcr_rt5640 : inverse jack detect for Archos 101 cesium Date: Thu, 25 Jul 2024 16:37:14 +0200 Message-ID: <20240725142734.174374511@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240725142733.262322603@linuxfoundation.org> References: <20240725142733.262322603@linuxfoundation.org> User-Agent: quilt/0.67 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-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Thomas GENTY [ Upstream commit e3209a1827646daaab744aa6a5767b1f57fb5385 ] When headphones are plugged in, they appear absent; when they are removed, they appear present. Add a specific entry in bytcr_rt5640 for this device Signed-off-by: Thomas GENTY Reviewed-by: Hans de Goede Acked-by: Pierre-Louis Bossart Link: https://lore.kernel.org/r/20240608170251.99936-1-tomlohave@gmail.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/intel/boards/bytcr_rt5640.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sound/soc/intel/boards/bytcr_rt5640.c b/sound/soc/intel/boards/bytcr_rt5640.c index 1d049685e7075..47b581d99da67 100644 --- a/sound/soc/intel/boards/bytcr_rt5640.c +++ b/sound/soc/intel/boards/bytcr_rt5640.c @@ -468,6 +468,17 @@ static const struct dmi_system_id byt_rt5640_quirk_table[] = { BYT_RT5640_SSP0_AIF1 | BYT_RT5640_MCLK_EN), }, + { + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ARCHOS"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ARCHOS 101 CESIUM"), + }, + .driver_data = (void *)(BYTCR_INPUT_DEFAULTS | + BYT_RT5640_JD_NOT_INV | + BYT_RT5640_DIFF_MIC | + BYT_RT5640_SSP0_AIF1 | + BYT_RT5640_MCLK_EN), + }, { .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ARCHOS"), -- 2.43.0