From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.monolithicpower.com (unknown [12.33.0.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 89E1C2E0400; Mon, 15 Dec 2025 02:27:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=12.33.0.20 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765765673; cv=none; b=l8AkXFpj00m68dyJByQtM1Y5jBItMkngA4s2AG4Sjj2ThW4Qzl6Fh9MwMxk8ivHy5EwG6/JyEbvu0klQvlm/uA7eBAoPZ7SjdT9Fy5a8aigmxuAeRCfcIZwXk6EXtSiQu+Bf4EoyiAeC5j0iZm190Vdmme7cJJwEw2HnYs8FBDs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765765673; c=relaxed/simple; bh=OYv/2cm8ZjgmBv1Y9zYXeD8VsLZKK9EOOc+vTiAK510=; h=From:To:CC:Subject:Date:Message-ID:MIME-Version:Content-Type; b=Dfs6r8uRf1TKklGF6B0+0baopZGhxICH8RGmIxMDpEMJQyvbG6gTHhA9hKEEA6hRxqeBKV/sU1S8Sb0VXuFhCpWZOj1eigs/LPrCCkrEzZ+5DiBc3WaUoOem0tobLRjZO2bt45z4k3FPz2RCAjx/rwmvGFdZ0Rsj5THRAsUA5Fw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=monolithicpower.com; spf=pass smtp.mailfrom=monolithicpower.com; arc=none smtp.client-ip=12.33.0.20 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=monolithicpower.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=monolithicpower.com Received: from CD-MSH04.monolithicpower.com (10.10.70.213) by mps-mslbn01.monolithicpower.com (10.10.10.199) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.7; Sun, 14 Dec 2025 18:25:59 -0800 Received: from HZ-200D-C0727.monolithicpower.com (10.53.66.137) by CD-MSH04.monolithicpower.com (10.10.70.213) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.57; Mon, 15 Dec 2025 10:25:54 +0800 From: Yuxi Wang To: , , , , , CC: , , , , Subject: [PATCH v2 RESEND 0/2] hwmon: Add support for MPS mp5926 chip Date: Mon, 15 Dec 2025 10:25:03 +0800 Message-ID: <20251215022505.1602-1-Yuxi.Wang@monolithicpower.com> X-Mailer: git-send-email 2.51.0.windows.1 Precedence: bulk X-Mailing-List: linux-hwmon@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-ClientProxiedBy: CD-MSLBN02.monolithicpower.com (192.168.86.32) To CD-MSH04.monolithicpower.com (10.10.70.213) Add mp5926 driver in hwmon and add dt-binding for it. Change log: v1 -> v2: - Corrected dt-bindings description. - Corrected Kconfig description. - Removed useless comment and code. - Corrected the alignment. v1: - Add mp5926 driver in hwmon and add dt-binding for it. --- Yuxi Wang (2): dt-bindings: hwmon: Add mps mp5926 driver bindings hwmon: add mp5926 driver .../devicetree/bindings/trivial-devices.yaml | 2 + Documentation/hwmon/index.rst | 1 + Documentation/hwmon/mp5926.rst | 92 +++++++++ MAINTAINERS | 7 + drivers/hwmon/pmbus/Kconfig | 9 + drivers/hwmon/pmbus/Makefile | 1 + drivers/hwmon/pmbus/mp5926.c | 190 ++++++++++++++++++ 7 files changed, 302 insertions(+) create mode 100644 Documentation/hwmon/mp5926.rst create mode 100644 drivers/hwmon/pmbus/mp5926.c -- 2.39.2