devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Li Jun <jun.li@nxp.com>, vkoul@kernel.org
Cc: kbuild-all@lists.01.org, kishon@ti.com, robh+dt@kernel.org,
	shawnguo@kernel.org, s.hauer@pengutronix.de,
	kernel@pengutronix.de, festevam@gmail.com, linux-imx@nxp.com,
	jun.li@nxp.com, devicetree@vger.kernel.org
Subject: Re: [PATCH v2 2/2] phy: freescale: imx8mq-usb: add support for imx8mp usb phy
Date: Mon, 24 Aug 2020 17:46:49 +0800	[thread overview]
Message-ID: <202008241728.a5HPDKEH%lkp@intel.com> (raw)
In-Reply-To: <1598250878-28055-2-git-send-email-jun.li@nxp.com>

[-- Attachment #1: Type: text/plain, Size: 3464 bytes --]

Hi Li,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on robh/for-next]
[also build test ERROR on linus/master phy/next v5.9-rc2 next-20200824]
[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]

url:    https://github.com/0day-ci/linux/commits/Li-Jun/dt-bindings-phy-imx8mq-usb-add-compatible-string-for-imx8mp-usb-phy/20200824-144136
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: nios2-randconfig-r005-20200824 (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.3.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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 

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

All errors (new ones prefixed by >>):

   drivers/phy/freescale/phy-fsl-imx8mq-usb.c: In function 'imx8mp_usb_phy_init':
>> drivers/phy/freescale/phy-fsl-imx8mq-usb.c:74:11: error: implicit declaration of function 'FIELD_PREP' [-Werror=implicit-function-declaration]
      74 |  value |= FIELD_PREP(PHY_CTRL0_FSEL_MASK, PHY_CTRL0_FSEL_24M);
         |           ^~~~~~~~~~
   cc1: some warnings being treated as errors

# https://github.com/0day-ci/linux/commit/e9388d5c8e328a7be2ffe214e8c6a5d510eecf1c
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Li-Jun/dt-bindings-phy-imx8mq-usb-add-compatible-string-for-imx8mp-usb-phy/20200824-144136
git checkout e9388d5c8e328a7be2ffe214e8c6a5d510eecf1c
vim +/FIELD_PREP +74 drivers/phy/freescale/phy-fsl-imx8mq-usb.c

    65	
    66	static int imx8mp_usb_phy_init(struct phy *phy)
    67	{
    68		struct imx8mq_usb_phy *imx_phy = phy_get_drvdata(phy);
    69		u32 value;
    70	
    71		/* USB3.0 PHY signal fsel for 24M ref */
    72		value = readl(imx_phy->base + PHY_CTRL0);
    73		value &= ~PHY_CTRL0_FSEL_MASK;
  > 74		value |= FIELD_PREP(PHY_CTRL0_FSEL_MASK, PHY_CTRL0_FSEL_24M);
    75		writel(value, imx_phy->base + PHY_CTRL0);
    76	
    77		/* Disable alt_clk_en and use internal MPLL clocks */
    78		value = readl(imx_phy->base + PHY_CTRL6);
    79		value &= ~(PHY_CTRL6_ALT_CLK_SEL | PHY_CTRL6_ALT_CLK_EN);
    80		writel(value, imx_phy->base + PHY_CTRL6);
    81	
    82		value = readl(imx_phy->base + PHY_CTRL1);
    83		value &= ~(PHY_CTRL1_VDATSRCENB0 | PHY_CTRL1_VDATDETENB0);
    84		value |= PHY_CTRL1_RESET | PHY_CTRL1_ATERESET;
    85		writel(value, imx_phy->base + PHY_CTRL1);
    86	
    87		value = readl(imx_phy->base + PHY_CTRL0);
    88		value |= PHY_CTRL0_REF_SSP_EN;
    89		writel(value, imx_phy->base + PHY_CTRL0);
    90	
    91		value = readl(imx_phy->base + PHY_CTRL2);
    92		value |= PHY_CTRL2_TXENABLEN0 | PHY_CTRL2_OTG_DISABLE;
    93		writel(value, imx_phy->base + PHY_CTRL2);
    94	
    95		udelay(10);
    96	
    97		value = readl(imx_phy->base + PHY_CTRL1);
    98		value &= ~(PHY_CTRL1_RESET | PHY_CTRL1_ATERESET);
    99		writel(value, imx_phy->base + PHY_CTRL1);
   100	
   101		return 0;
   102	}
   103	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 22318 bytes --]

      parent reply	other threads:[~2020-08-24  9:47 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-24  6:34 [PATCH v2 1/2] dt-bindings: phy-imx8mq-usb: add compatible string for imx8mp usb phy Li Jun
2020-08-24  6:34 ` [PATCH v2 2/2] phy: freescale: imx8mq-usb: add support " Li Jun
2020-08-24  9:18   ` kernel test robot
2020-08-24  9:46   ` kernel test robot [this message]

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=202008241728.a5HPDKEH%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=jun.li@nxp.com \
    --cc=kbuild-all@lists.01.org \
    --cc=kernel@pengutronix.de \
    --cc=kishon@ti.com \
    --cc=linux-imx@nxp.com \
    --cc=robh+dt@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --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).