From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752054AbbJMJEc (ORCPT ); Tue, 13 Oct 2015 05:04:32 -0400 Received: from mail-wi0-f182.google.com ([209.85.212.182]:37828 "EHLO mail-wi0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751919AbbJMJE1 (ORCPT ); Tue, 13 Oct 2015 05:04:27 -0400 Date: Tue, 13 Oct 2015 10:04:15 +0100 From: Lee Jones To: Krzysztof Kozlowski Cc: Sangbeom Kim , linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org, Bartlomiej Zolnierkiewicz , Marek Szyprowski , Chanwoo Choi , Inki Dae Subject: Re: [PATCH v2 1/3] mfd: sec-core: Dump PMIC revision to find out the HW Message-ID: <20151013090415.GH32409@x1> References: <1444178681-16188-1-git-send-email-k.kozlowski@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1444178681-16188-1-git-send-email-k.kozlowski@samsung.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 07 Oct 2015, Krzysztof Kozlowski wrote: > There are different revisions of the same chipset. For example S2MPS13 has > more than 2 revisions. They differ slightly in regulator constraints. > Print the revision number to easily find which PMIC is used on the board. > > Signed-off-by: Krzysztof Kozlowski > > --- > > Changs since v1: > None. > --- > drivers/mfd/sec-core.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) Applied, thanks. > diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c > index 2d1137a7a0ee..589e5efc2d7f 100644 > --- a/drivers/mfd/sec-core.c > +++ b/drivers/mfd/sec-core.c > @@ -253,6 +253,15 @@ static const struct regmap_config s5m8767_regmap_config = { > .cache_type = REGCACHE_FLAT, > }; > > +static void sec_pmic_dump_rev(struct sec_pmic_dev *sec_pmic) > +{ > + unsigned int val; > + > + /* For each device type, the REG_ID is always the first register */ > + if (!regmap_read(sec_pmic->regmap_pmic, S2MPS11_REG_ID, &val)) > + dev_dbg(sec_pmic->dev, "Revision: 0x%x\n", val); > +} > + > #ifdef CONFIG_OF > /* > * Only the common platform data elements for s5m8767 are parsed here from the > @@ -425,6 +434,7 @@ static int sec_pmic_probe(struct i2c_client *i2c, > goto err_mfd; > > device_init_wakeup(sec_pmic->dev, sec_pmic->wakeup); > + sec_pmic_dump_rev(sec_pmic); > > return ret; > -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog