From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) (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 5EF0D30F95A; Thu, 15 Jan 2026 06:58:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=92.121.34.21 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768460299; cv=none; b=XKjaLqYYQRGgnq2RFJe2RWQ++4SoxG2GAgUbYuTV0DCZjJube3xUblEsMEKzJSq6cklKl40XB12ipASMsjOWlEaQatUBX7sP5L1YnxtuP/VjhzmTvqrMRQ0vkzzY8KKxczE97lmP0wT7SqLPQxImbhFab+F2c+JDDjWBKjWl20g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768460299; c=relaxed/simple; bh=xqdGvVbYLjQkRKPCOEE75c58OzOS6v49VYyu+/NVLhE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DuG3F99X1LEVeWl2XMWrT9c7axws+cDanXyZFBJDadoOPNPvbS8MSCPaK7pV8di14kXnTV0CZlhe0CYocxrOQGLglYcSVMtskhQHY4DhN3jPBwR91sZ+OhovmnVxD9/7CGDDQmJm+G++j7ATtb+Icj/at7mwHETbnzFe846lkiU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=nxp.com; spf=pass smtp.mailfrom=nxp.com; arc=none smtp.client-ip=92.121.34.21 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=nxp.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=nxp.com Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 4E2F32004FB; Thu, 15 Jan 2026 07:58:07 +0100 (CET) Received: from aprdc01srsp001v.ap-rdc01.nxp.com (aprdc01srsp001v.ap-rdc01.nxp.com [165.114.16.16]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 1979C2004FC; Thu, 15 Jan 2026 07:58:07 +0100 (CET) Received: from NXL37714.wbi.nxp.com (nxl37714.wbi.nxp.com [10.31.156.112]) by aprdc01srsp001v.ap-rdc01.nxp.com (Postfix) with ESMTP id 5AD461800082; Thu, 15 Jan 2026 14:58:05 +0800 (+08) From: Mayank Mahajan To: linux@roeck-us.net, corbet@lwn.net, robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org, linux-hwmon@vger.kernel.org, devicetree@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Cc: priyanka.jain@nxp.com, vikash.bansal@nxp.com, Mayank Mahajan Subject: [PATCH v2 3/3] hwmon: (tmp108) Add P3T1035 and P3T2030 support Date: Thu, 15 Jan 2026 12:27:57 +0530 Message-ID: <20260115065757.35-3-mayankmahajan.x@nxp.com> X-Mailer: git-send-email 2.47.1.windows.1 In-Reply-To: <20260115065757.35-1-mayankmahajan.x@nxp.com> References: <20260115065757.35-1-mayankmahajan.x@nxp.com> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP Update the hwmon driver documentation for sensors: P3T1035 and P3T2030. Signed-off-by: Mayank Mahajan --- V1 -> V2: - No changes in v2. Documentation/hwmon/tmp108.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Documentation/hwmon/tmp108.rst b/Documentation/hwmon/tmp108.rst index bc4941d98268..c218ea333dd6 100644 --- a/Documentation/hwmon/tmp108.rst +++ b/Documentation/hwmon/tmp108.rst @@ -3,6 +3,15 @@ Kernel driver tmp108 Supported chips: + * NXP P3T1035 + + Prefix: 'p3t1035' + + Addresses scanned: none + + Datasheet: https://www.nxp.com/docs/en/data-sheet/P3T1035XUK_P3T2030XUK.pdf + + * NXP P3T1085 Prefix: 'p3t1085' @@ -11,6 +20,14 @@ Supported chips: Datasheet: https://www.nxp.com/docs/en/data-sheet/P3T1085UK.pdf + * NXP P3T2030 + + Prefix: 'p3t2030' + + Addresses scanned: none + + Datasheet: https://www.nxp.com/docs/en/data-sheet/P3T1035XUK_P3T2030XUK.pdf + * Texas Instruments TMP108 Prefix: 'tmp108' -- 2.34.1