linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Sean Anderson <sean.anderson@seco.com>,
	Vinod Koul <vkoul@kernel.org>,
	Kishon Vijay Abraham I <kishon@ti.com>,
	linux-phy@lists.infradead.org
Cc: kbuild-all@lists.01.org, devicetree@vger.kernel.org,
	Ioana Ciornei <ioana.ciornei@nxp.com>,
	linux-arm-kernel@lists.infradead.org,
	Krzysztof Kozlowski <krzk@kernel.org>,
	Madalin Bucur <madalin.bucur@nxp.com>,
	Camelia Alexandra Groza <camelia.groza@nxp.com>,
	linuxppc-dev@lists.ozlabs.org, Rob Herring <robh+dt@kernel.org>,
	Sean Anderson <sean.anderson@seco.com>,
	Jonathan Corbet <corbet@lwn.net>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	linux-clk@vger.kernel.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH v5 4/8] phy: fsl: Add Lynx 10G SerDes driver
Date: Sat, 3 Sep 2022 23:23:44 +0800	[thread overview]
Message-ID: <202209032301.fWPibuKq-lkp@intel.com> (raw)
In-Reply-To: <20220902213721.946138-5-sean.anderson@seco.com>

Hi Sean,

I love your patch! Yet something to improve:

[auto build test ERROR on shawnguo/for-next]
[also build test ERROR on robh/for-next clk/clk-next arm/for-next arm64/for-next/core rockchip/for-next soc/for-next linus/master v6.0-rc3]
[cannot apply to xilinx-xlnx/master next-20220901]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Sean-Anderson/phy-Add-support-for-Lynx-10G-SerDes/20220903-053840
base:   https://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git for-next
config: arc-allyesconfig (https://download.01.org/0day-ci/archive/20220903/202209032301.fWPibuKq-lkp@intel.com/config)
compiler: arceb-elf-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/intel-lab-lkp/linux/commit/cbfe9294ef583cc8dffd9cebf9ff325bbcdb4cef
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Sean-Anderson/phy-Add-support-for-Lynx-10G-SerDes/20220903-053840
        git checkout cbfe9294ef583cc8dffd9cebf9ff325bbcdb4cef
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arc SHELL=/bin/bash

If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/phy/freescale/phy-fsl-lynx-10g-clk.c: In function 'lynx_pll_recalc_rate':
>> drivers/phy/freescale/phy-fsl-lynx-10g-clk.c:255:25: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration]
     255 |         u32 frate_sel = FIELD_GET(PLLaCR0_FRATE_SEL, cr0);
         |                         ^~~~~~~~~
   drivers/phy/freescale/phy-fsl-lynx-10g-clk.c: In function 'lynx_pll_set_rate':
>> drivers/phy/freescale/phy-fsl-lynx-10g-clk.c:340:16: error: implicit declaration of function 'FIELD_PREP' [-Werror=implicit-function-declaration]
     340 |         cr0 |= FIELD_PREP(PLLaCR0_RFCLK_SEL, rfclk_sel);
         |                ^~~~~~~~~~
   drivers/phy/freescale/phy-fsl-lynx-10g-clk.c: In function 'lynx_clk_init':
>> drivers/phy/freescale/phy-fsl-lynx-10g-clk.c:466:9: error: implicit declaration of function 'kfree'; did you mean 'vfree'? [-Werror=implicit-function-declaration]
     466 |         kfree(ref_name);
         |         ^~~~~
         |         vfree
   cc1: some warnings being treated as errors


vim +/FIELD_GET +255 drivers/phy/freescale/phy-fsl-lynx-10g-clk.c

   249	
   250	static unsigned long lynx_pll_recalc_rate(struct clk_hw *hw,
   251						  unsigned long parent_rate)
   252	{
   253		struct lynx_clk *clk = lynx_pll_to_clk(hw);
   254		u32 cr0 = lynx_read(clk, PLLaCR0(clk->idx));
 > 255		u32 frate_sel = FIELD_GET(PLLaCR0_FRATE_SEL, cr0);
   256		u32 rfclk_sel = FIELD_GET(PLLaCR0_RFCLK_SEL, cr0);
   257		u32 ratio = lynx_pll_ratio(frate_sel, rfclk_sel);
   258		unsigned long ret;
   259	
   260		/* Ensure that the parent matches our rfclk selector */
   261		if (rfclk_sel == lynx_rfclk_to_sel(parent_rate))
   262			ret = mult_frac(parent_rate, ratio, HZ_PER_KHZ);
   263		else
   264			ret = 0;
   265	
   266		dev_dbg(clk->dev, "recalc pll%d new=%llu parent=%lu\n", clk->idx,
   267			(u64)ret * HZ_PER_KHZ, parent_rate);
   268		return ret;
   269	}
   270	
   271	static long lynx_pll_round_rate(struct clk_hw *hw, unsigned long rate_khz,
   272					unsigned long *parent_rate)
   273	{
   274		int frate_sel, rfclk_sel;
   275		struct lynx_clk *clk = lynx_pll_to_clk(hw);
   276		u32 ratio;
   277	
   278		dev_dbg(clk->dev, "round pll%d new=%llu parent=%lu\n", clk->idx,
   279			(u64)rate_khz * HZ_PER_KHZ, *parent_rate);
   280	
   281		frate_sel = lynx_frate_to_sel(rate_khz);
   282		if (frate_sel < 0)
   283			return frate_sel;
   284	
   285		/* Try the current parent rate */
   286		rfclk_sel = lynx_rfclk_to_sel(*parent_rate);
   287		if (rfclk_sel >= 0) {
   288			ratio = lynx_pll_ratio(frate_sel, rfclk_sel);
   289			if (ratio)
   290				return mult_frac(*parent_rate, ratio, HZ_PER_KHZ);
   291		}
   292	
   293		/* Try all possible parent rates */
   294		for (rfclk_sel = 0;
   295		     rfclk_sel < ARRAY_SIZE(rfclk_sel_map);
   296		     rfclk_sel++) {
   297			unsigned long new_parent_rate;
   298	
   299			ratio = lynx_pll_ratio(frate_sel, rfclk_sel);
   300			if (!ratio)
   301				continue;
   302	
   303			/* Ensure the reference clock can produce this rate */
   304			new_parent_rate = rfclk_sel_map[rfclk_sel];
   305			new_parent_rate = clk_hw_round_rate(clk->ref, new_parent_rate);
   306			if (rfclk_sel != lynx_rfclk_to_sel(new_parent_rate))
   307				continue;
   308	
   309			*parent_rate = new_parent_rate;
   310			return mult_frac(new_parent_rate, ratio, HZ_PER_KHZ);
   311		}
   312	
   313		return -EINVAL;
   314	}
   315	
   316	static int lynx_pll_set_rate(struct clk_hw *hw, unsigned long rate_khz,
   317				   unsigned long parent_rate)
   318	{
   319		int frate_sel, rfclk_sel;
   320		struct lynx_clk *clk = lynx_pll_to_clk(hw);
   321		u32 ratio, cr0 = lynx_read(clk, PLLaCR0(clk->idx));
   322	
   323		dev_dbg(clk->dev, "set rate pll%d new=%llu parent=%lu\n", clk->idx,
   324			(u64)rate_khz * HZ_PER_KHZ, parent_rate);
   325	
   326		frate_sel = lynx_frate_to_sel(rate_khz);
   327		if (frate_sel < 0)
   328			return frate_sel;
   329	
   330		rfclk_sel = lynx_rfclk_to_sel(parent_rate);
   331		if (rfclk_sel < 0)
   332			return rfclk_sel;
   333	
   334		ratio = lynx_pll_ratio(frate_sel, rfclk_sel);
   335		if (!ratio)
   336			return -EINVAL;
   337	
   338		lynx_pll_stop(clk);
   339		cr0 &= ~(PLLaCR0_RFCLK_SEL | PLLaCR0_FRATE_SEL);
 > 340		cr0 |= FIELD_PREP(PLLaCR0_RFCLK_SEL, rfclk_sel);
   341		cr0 |= FIELD_PREP(PLLaCR0_FRATE_SEL, frate_sel);
   342		lynx_write(clk, cr0, PLLaCR0(clk->idx));
   343		/* Don't bother resetting if it's off */
   344		if (cr0 & PLLaCR0_POFF)
   345			return 0;
   346		return lynx_pll_reset(clk);
   347	}
   348	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2022-09-03 15:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-02 21:37 [PATCH v5 0/8] phy: Add support for Lynx 10G SerDes Sean Anderson
2022-09-02 21:37 ` [PATCH v5 1/8] dt-bindings: phy: Add 2500BASE-X and 10GBASE-R Sean Anderson
2022-09-12 19:49   ` Rob Herring
2022-09-02 21:37 ` [PATCH v5 2/8] dt-bindings: phy: Add Lynx 10G phy binding Sean Anderson
2022-09-12 19:46   ` Rob Herring
2022-09-02 21:37 ` [PATCH v5 3/8] dt-bindings: clock: Add ids for Lynx 10g PLLs Sean Anderson
2022-09-12 19:50   ` Rob Herring
2022-09-02 21:37 ` [PATCH v5 4/8] phy: fsl: Add Lynx 10G SerDes driver Sean Anderson
2022-09-03 15:23   ` kernel test robot [this message]
2022-09-06 16:33     ` Sean Anderson
2022-09-02 21:37 ` [PATCH v5 5/8] arm64: dts: ls1046a: Add serdes bindings Sean Anderson
2022-09-02 21:37 ` [PATCH v5 6/8] arm64: dts: ls1088a: " Sean Anderson
2022-09-02 21:37 ` [PATCH v5 7/8] arm64: dts: ls1046ardb: " Sean Anderson
2022-09-02 21:37 ` [PATCH v5 8/8] [WIP] arm64: dts: ls1088ardb: " Sean Anderson
2022-09-09 15:05 ` [PATCH v5 0/8] phy: Add support for Lynx 10G SerDes Sean Anderson
2022-09-13 17:44   ` Vinod Koul

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202209032301.fWPibuKq-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=camelia.groza@nxp.com \
    --cc=corbet@lwn.net \
    --cc=devicetree@vger.kernel.org \
    --cc=ioana.ciornei@nxp.com \
    --cc=kbuild-all@lists.01.org \
    --cc=kishon@ti.com \
    --cc=krzk@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-phy@lists.infradead.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=madalin.bucur@nxp.com \
    --cc=mturquette@baylibre.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=sean.anderson@seco.com \
    --cc=vkoul@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).