From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BD31EC3A5A0 for ; Tue, 20 Aug 2019 03:10:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9960F218BA for ; Tue, 20 Aug 2019 03:10:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728993AbfHTDKT (ORCPT ); Mon, 19 Aug 2019 23:10:19 -0400 Received: from mga06.intel.com ([134.134.136.31]:20591 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728719AbfHTDKT (ORCPT ); Mon, 19 Aug 2019 23:10:19 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Aug 2019 20:10:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,407,1559545200"; d="scan'208";a="377633230" Received: from linux.intel.com ([10.54.29.200]) by fmsmga005.fm.intel.com with ESMTP; 19 Aug 2019 20:10:17 -0700 Received: from [10.226.38.19] (vramuthx-mobl1.gar.corp.intel.com [10.226.38.19]) by linux.intel.com (Postfix) with ESMTP id 3614E58050C; Mon, 19 Aug 2019 20:10:16 -0700 (PDT) Subject: Re: [PATCH v1 2/2] phy: intel-lgm-emmc: Add support for eMMC PHY To: Andy Shevchenko Cc: kishon@ti.com, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, cheol.yong.kim@intel.com, qi-ming.wu@intel.com, peter.harliman.liem@intel.com References: <20190819034416.45192-1-vadivel.muruganx.ramuthevar@linux.intel.com> <20190819034416.45192-2-vadivel.muruganx.ramuthevar@linux.intel.com> <20190819160642.GC30120@smile.fi.intel.com> From: "Ramuthevar, Vadivel MuruganX" Message-ID: <0bae8558-1ecd-e3f0-76c6-ba25c529a12e@linux.intel.com> Date: Tue, 20 Aug 2019 11:10:15 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <20190819160642.GC30120@smile.fi.intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 20/8/2019 12:06 AM, Andy Shevchenko wrote: > On Mon, Aug 19, 2019 at 11:44:16AM +0800, Ramuthevar,Vadivel MuruganX wrote: >> From: Ramuthevar Vadivel Murugan >> >> Adds support for eMMC PHY on Intel's Lightning Mountain SoC. > Adds -> Add. Thanks Andy, agreed. >> +/* eMMC phy register definitions */ >> +#define EMMC_PHYCTRL0_REG 0xa8 >> +#define DR_TY_MASK GENMASK(30, 28) >> +#define DR_TY_50OHM(x) ((~(x) << 28) & DR_TY_MASK) >> +#define OTAPDLYENA BIT(14) >> +#define OTAPDLYSEL_MASK GENMASK(13, 10) >> +#define OTAPDLYSEL_SHIFT(x) (((x) << 10) & OTAPDLYSEL_MASK) >> + >> +#define EMMC_PHYCTRL1_REG 0xac >> +#define PDB_MASK 1 > BIT(0) agreed. >> +#define ENDLL_MASK BIT(7) >> +#define ENDLL_VAL BIT(7) >> + >> +#define EMMC_PHYCTRL2_REG 0xb0 >> +#define FRQSEL_25M 0 >> +#define FRQSEL_150M 3 >> +#define FRQSEL_MASK GENMASK(24, 22) >> +#define FRQSEL_SHIFT(x) ((x) << 22) >> + >> +#define EMMC_PHYSTAT_REG 0xbc >> +#define CALDONE_MASK 1 >> +#define DLLRDY_MASK 1 >> +#define IS_CALDONE(x) ((((x) >> 9) & CALDONE_MASK) == 1) >> +#define IS_DLLRDY(x) ((((x) >> 8) & DLLRDY_MASK) == 1) > These are inconsistent with above: > > #define CALDONE_MASK BIT(9) > ... > #define IS_CALDONE ((x) & CALDONE_MASK) > > Note redundant == part. Agreed, will update. >> +static int intel_emmc_phy_power(struct phy *phy, bool on_off) >> +{ >> + * - PHY driver to probe >> + * - SDHCI driver to start probe >> + * - SDHCI driver to register it's clock >> + * - SDHCI driver to get the PHY >> + * - SDHCI driver to init the PHY >> + * > >> + * The clock is optional, so upon any error we just set to NULL. > No, the clock framework will do it for you. > >> + * >> + * NOTE: we don't do anything special for EPROBE_DEFER here. Given the >> + * above expected use case, EPROBE_DEFER isn't sensible to expect, so >> + * it's just like any other error. > This comment is not correct... Agreed, re-structure the sentence. >> + */ >> + priv->emmcclk = clk_get_optional(&phy->dev, "emmcclk"); >> + if (IS_ERR(priv->emmcclk)) { >> + dev_warn(&phy->dev, "ERROR: getting emmcclk\n"); > ...because here you have to return an error... Agreed. >> + priv->emmcclk = NULL; > ...and here is redundant assignment. > Agreed. >> + } >> + >> + return 0; >> +} > When you send out patches, check that you do this for latest version you got reviewed internally. Thank you so much for the review comments, sure I will recheck and recollect your review comments of different patches forĀ  the same cases . With Best Regards vadivel From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Ramuthevar, Vadivel MuruganX" Subject: Re: [PATCH v1 2/2] phy: intel-lgm-emmc: Add support for eMMC PHY Date: Tue, 20 Aug 2019 11:10:15 +0800 Message-ID: <0bae8558-1ecd-e3f0-76c6-ba25c529a12e@linux.intel.com> References: <20190819034416.45192-1-vadivel.muruganx.ramuthevar@linux.intel.com> <20190819034416.45192-2-vadivel.muruganx.ramuthevar@linux.intel.com> <20190819160642.GC30120@smile.fi.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <20190819160642.GC30120@smile.fi.intel.com> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Andy Shevchenko Cc: kishon@ti.com, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, cheol.yong.kim@intel.com, qi-ming.wu@intel.com, peter.harliman.liem@intel.com List-Id: devicetree@vger.kernel.org On 20/8/2019 12:06 AM, Andy Shevchenko wrote: > On Mon, Aug 19, 2019 at 11:44:16AM +0800, Ramuthevar,Vadivel MuruganX wrote: >> From: Ramuthevar Vadivel Murugan >> >> Adds support for eMMC PHY on Intel's Lightning Mountain SoC. > Adds -> Add. Thanks Andy, agreed. >> +/* eMMC phy register definitions */ >> +#define EMMC_PHYCTRL0_REG 0xa8 >> +#define DR_TY_MASK GENMASK(30, 28) >> +#define DR_TY_50OHM(x) ((~(x) << 28) & DR_TY_MASK) >> +#define OTAPDLYENA BIT(14) >> +#define OTAPDLYSEL_MASK GENMASK(13, 10) >> +#define OTAPDLYSEL_SHIFT(x) (((x) << 10) & OTAPDLYSEL_MASK) >> + >> +#define EMMC_PHYCTRL1_REG 0xac >> +#define PDB_MASK 1 > BIT(0) agreed. >> +#define ENDLL_MASK BIT(7) >> +#define ENDLL_VAL BIT(7) >> + >> +#define EMMC_PHYCTRL2_REG 0xb0 >> +#define FRQSEL_25M 0 >> +#define FRQSEL_150M 3 >> +#define FRQSEL_MASK GENMASK(24, 22) >> +#define FRQSEL_SHIFT(x) ((x) << 22) >> + >> +#define EMMC_PHYSTAT_REG 0xbc >> +#define CALDONE_MASK 1 >> +#define DLLRDY_MASK 1 >> +#define IS_CALDONE(x) ((((x) >> 9) & CALDONE_MASK) == 1) >> +#define IS_DLLRDY(x) ((((x) >> 8) & DLLRDY_MASK) == 1) > These are inconsistent with above: > > #define CALDONE_MASK BIT(9) > ... > #define IS_CALDONE ((x) & CALDONE_MASK) > > Note redundant == part. Agreed, will update. >> +static int intel_emmc_phy_power(struct phy *phy, bool on_off) >> +{ >> + * - PHY driver to probe >> + * - SDHCI driver to start probe >> + * - SDHCI driver to register it's clock >> + * - SDHCI driver to get the PHY >> + * - SDHCI driver to init the PHY >> + * > >> + * The clock is optional, so upon any error we just set to NULL. > No, the clock framework will do it for you. > >> + * >> + * NOTE: we don't do anything special for EPROBE_DEFER here. Given the >> + * above expected use case, EPROBE_DEFER isn't sensible to expect, so >> + * it's just like any other error. > This comment is not correct... Agreed, re-structure the sentence. >> + */ >> + priv->emmcclk = clk_get_optional(&phy->dev, "emmcclk"); >> + if (IS_ERR(priv->emmcclk)) { >> + dev_warn(&phy->dev, "ERROR: getting emmcclk\n"); > ...because here you have to return an error... Agreed. >> + priv->emmcclk = NULL; > ...and here is redundant assignment. > Agreed. >> + } >> + >> + return 0; >> +} > When you send out patches, check that you do this for latest version you got reviewed internally. Thank you so much for the review comments, sure I will recheck and recollect your review comments of different patches forĀ  the same cases . With Best Regards vadivel