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 BA4D819D086; Thu, 25 Jul 2024 14:40:22 +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=1721918422; cv=none; b=VdQeGKHA2FlRVy4clIxkyE0kbg75FbsU/4VyV/sh1EXCm1aJaPBXCcuDYCnhfJVy6X0IjgI+F+WAh3KHfU/Cy2juiPLHhtF/6nOAsFeUXaoCPN7RbdGSs8DAsW4Yl8eAwcJdD3NvVDyXjgDyexIQnnIqy02ZJK8u07sUnAXpMlg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721918422; c=relaxed/simple; bh=W44xqp43RytdmS3PHGhettmzSAz3F3CZT90235K47pE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WNYwpNqISHdx/PjFJFcWy/wKmhIo/FCeQzP7MV8iNpAQncjt+GFFEuOJmEgE5YOCPSjCHuIopGgON5/xdvd/gITgX0jJGCMNI+UFAbEE5BhyYFIIER/yftR5FUFsaggcy+C5JFtds8UKYMTYeXLuOsAEhDYcHoYUQ4vDzAGM1yU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=lvaIR8BQ; 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="lvaIR8BQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E9DEFC116B1; Thu, 25 Jul 2024 14:40:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1721918422; bh=W44xqp43RytdmS3PHGhettmzSAz3F3CZT90235K47pE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lvaIR8BQ72lLtzGHUsz9+VltwmKZyiUn5g/yxSKPIX8uOve4chW7YrxcSt+wgv+Bw XLD6sq8oDeWUB6CCw4H836af2Q7X/DOX7rZlbLMTPWoNqRdGlrs7dJQCFwCbOx4/AJ 53kEtBOq0BQNiJEMZva0+Rg8kWelNFgEZC0nHwHY= 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 4.19 15/33] bytcr_rt5640 : inverse jack detect for Archos 101 cesium Date: Thu, 25 Jul 2024 16:36:38 +0200 Message-ID: <20240725142729.096758126@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240725142728.511303502@linuxfoundation.org> References: <20240725142728.511303502@linuxfoundation.org> User-Agent: quilt/0.67 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-Transfer-Encoding: 8bit 4.19-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 19f425eb4a40f..16e2ab2903754 100644 --- a/sound/soc/intel/boards/bytcr_rt5640.c +++ b/sound/soc/intel/boards/bytcr_rt5640.c @@ -474,6 +474,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