Received: by 2002:ac0:8c9a:0:0:0:0:0 with SMTP id r26csp92231ima; Thu, 31 Jan 2019 23:40:08 -0800 (PST) X-Google-Smtp-Source: AHgI3IYm3FvQThBfLXCGO1NNOl9rIyfY2X3Wgzh2naOLV27b8hKvBq3wzXCohLMg0Pi1Lqf0m8/C X-Received: by 2002:a63:8f45:: with SMTP id r5mr1136944pgn.222.1549006808208; Thu, 31 Jan 2019 23:40:08 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1549006808; cv=none; d=google.com; s=arc-20160816; b=yG2cCgkxUVOn+rzJd/jBS1lfSh6mlVqMVZBxivMbrKlSUZqfMVMVOGfpPPPXsWo05u DQN65rEyWypi1C58f82dfdeY4bI/x60VhlBMJxDlXPVDuY6Uthl2+KAwCYt7M+IvTkns pS/KhF/JkhFhxs2rPU7Pp9i7uif8RediB2aNfqkime1j7bVihrZBqUgeXvK2QI2wr0eH QEmn7a4+VMSUebzNxpoHj+00RE3xF/p6clpWfA00N2u1RLC8Kvc8WSgIh6abyfKh9o1f jHB1ajNO8MBBYVxITQ5iUnbTFiqupJ9Y2TTHCrKv7ocMECFR7/eHn61qdg/aao1ya9So tIMQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from; bh=V97V/6UI4edwRE3DZ4yHkBozrfc0g+MrGhNHHuvbTr8=; b=f4jhAg62fqDKGsrH79iCyR6mGT+fKsvHT/5Uqnqp51/ONQCDGby/HtYO/yrveGpRbW MecCoc3QWin36oYEyVsn2M/+4kt15uDuEeUa1ieyXS7abUR53F7Gqd8M283GpdoLuYUA 8VnfoN8QkkfV7c70iHdCjKr8DYU7t9zWsWagasoIYV7xzJ5DciJ07OOT1Ugeuse2074Q Pt9QImoq2TtIj1cZSwUQHXL4wSaRRVJfzr8tIZK6hKDG5wiHzLXLFuXH627miLiM2Lsu svX5nQrSCFcu2f9CeDJm4qF+5ENnz3FUifTnvE7XlfAKQZvAnrO3pRFpe5sEMVq0Wq7w Ze7Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r25si6796402pfk.28.2019.01.31.23.39.52; Thu, 31 Jan 2019 23:40:08 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726635AbfBAHiV (ORCPT + 99 others); Fri, 1 Feb 2019 02:38:21 -0500 Received: from mailgw01.mediatek.com ([210.61.82.183]:10828 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1725837AbfBAHiU (ORCPT ); Fri, 1 Feb 2019 02:38:20 -0500 X-UUID: c2a30b5c1bf74f1aa13e99b018edfc3a-20190201 X-UUID: c2a30b5c1bf74f1aa13e99b018edfc3a-20190201 Received: from mtkmrs01.mediatek.inc [(172.21.131.159)] by mailgw01.mediatek.com (envelope-from ) (mhqrelay.mediatek.com ESMTP with TLS) with ESMTP id 298394473; Fri, 01 Feb 2019 15:38:16 +0800 Received: from MTKCAS06.mediatek.inc (172.21.101.30) by mtkmbs01n1.mediatek.inc (172.21.101.68) with Microsoft SMTP Server (TLS) id 15.0.1395.4; Fri, 1 Feb 2019 15:38:15 +0800 Received: from mtksdccf07.mediatek.inc (172.21.84.99) by MTKCAS06.mediatek.inc (172.21.101.73) with Microsoft SMTP Server id 15.0.1395.4 via Frontend Transport; Fri, 1 Feb 2019 15:38:15 +0800 From: To: =Zhang Rui , =Eduardo Valentin , =Daniel Lezcano , =Rob Herring , =Mark Rutland , =Matthias Brugger CC: , , , , , , Michael Kao Subject: [PATCH 0/7] Add Mediatek thermal dirver for mt8183 Date: Fri, 1 Feb 2019 15:38:06 +0800 Message-ID: <1549006693-11659-1-git-send-email-michael.kao@mediatek.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain X-MTK: N Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Michael Kao This patchset supports for mt8183 chip to mtk_thermal.c. MT8183 has six temperature sensors and two thermal controllers. It has different calibration coefficent with past project, and doesn't need to select bank. As a result, we add the common architecture for scalability. Michael Kao (7): thermal: mediatek: fix register index error thermal: mediatek: add common index of vts settings. thermal: mediatek: add calibration item thermal: mediatek: add thermal controller offset thermal: mediatek: add flag for bank selection dt-bindings: thermal: add binding document for mt8183 thermal controller thermal: mediatek: add support for MT8183 .../bindings/thermal/mediatek-thermal.txt | 1 + drivers/thermal/mtk_thermal.c | 315 +++++++++++++++++---- 2 files changed, 257 insertions(+), 59 deletions(-) -- 1.9.1