From: kernel test robot <lkp@intel.com>
To: Daniel Golle <daniel@makrotopia.org>,
Felix Fietkau <nbd@nbd.name>, John Crispin <john@phrozen.org>,
Sean Wang <sean.wang@mediatek.com>,
Mark Lee <Mark-MC.Lee@mediatek.com>,
Lorenzo Bianconi <lorenzo@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org
Cc: oe-kbuild-all@lists.linux.dev, netdev@vger.kernel.org
Subject: Re: [PATCH net] net: ethernet: mtk_eth_soc: add reset bits for MT7988
Date: Tue, 22 Aug 2023 02:38:12 +0800 [thread overview]
Message-ID: <202308220205.gbt5lcAY-lkp@intel.com> (raw)
In-Reply-To: <b983a3adf5184a30e4ce620fbbf028c9c76648ae.1692382239.git.daniel@makrotopia.org>
Hi Daniel,
kernel test robot noticed the following build errors:
[auto build test ERROR on linux-next/master]
[cannot apply to net/main linus/master v6.5-rc7]
[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/Daniel-Golle/net-ethernet-mtk_eth_soc-add-reset-bits-for-MT7988/20230821-102205
base: linux-next/master
patch link: https://lore.kernel.org/r/b983a3adf5184a30e4ce620fbbf028c9c76648ae.1692382239.git.daniel%40makrotopia.org
patch subject: [PATCH net] net: ethernet: mtk_eth_soc: add reset bits for MT7988
config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20230822/202308220205.gbt5lcAY-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 12.3.0
reproduce: (https://download.01.org/0day-ci/archive/20230822/202308220205.gbt5lcAY-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202308220205.gbt5lcAY-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/net/ethernet/mediatek/mtk_eth_soc.c:31:
drivers/net/ethernet/mediatek/mtk_eth_soc.c: In function 'mtk_hw_reset':
>> drivers/net/ethernet/mediatek/mtk_eth_soc.c:3625:50: error: 'MTK_RSTCTRL_PPE2' undeclared (first use in this function); did you mean 'MTK_RSTCTRL_PPE1'?
3625 | if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE2))
| ^~~~~~~~~~~~~~~~
drivers/net/ethernet/mediatek/mtk_eth_soc.h:1022:53: note: in definition of macro 'MTK_HAS_CAPS'
1022 | #define MTK_HAS_CAPS(caps, _x) (((caps) & (_x)) == (_x))
| ^~
drivers/net/ethernet/mediatek/mtk_eth_soc.c:3625:50: note: each undeclared identifier is reported only once for each function it appears in
3625 | if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE2))
| ^~~~~~~~~~~~~~~~
drivers/net/ethernet/mediatek/mtk_eth_soc.h:1022:53: note: in definition of macro 'MTK_HAS_CAPS'
1022 | #define MTK_HAS_CAPS(caps, _x) (((caps) & (_x)) == (_x))
| ^~
drivers/net/ethernet/mediatek/mtk_eth_soc.c: In function 'mtk_hw_warm_reset':
drivers/net/ethernet/mediatek/mtk_eth_soc.c:3673:50: error: 'MTK_RSTCTRL_PPE2' undeclared (first use in this function); did you mean 'MTK_RSTCTRL_PPE1'?
3673 | if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE2))
| ^~~~~~~~~~~~~~~~
drivers/net/ethernet/mediatek/mtk_eth_soc.h:1022:53: note: in definition of macro 'MTK_HAS_CAPS'
1022 | #define MTK_HAS_CAPS(caps, _x) (((caps) & (_x)) == (_x))
| ^~
drivers/net/ethernet/mediatek/mtk_eth_soc.c: In function 'mtk_prepare_for_reset':
drivers/net/ethernet/mediatek/mtk_eth_soc.c:4042:50: error: 'MTK_RSTCTRL_PPE2' undeclared (first use in this function); did you mean 'MTK_RSTCTRL_PPE1'?
4042 | if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE2))
| ^~~~~~~~~~~~~~~~
drivers/net/ethernet/mediatek/mtk_eth_soc.h:1022:53: note: in definition of macro 'MTK_HAS_CAPS'
1022 | #define MTK_HAS_CAPS(caps, _x) (((caps) & (_x)) == (_x))
| ^~
drivers/net/ethernet/mediatek/mtk_eth_soc.c: In function 'mtk_pending_work':
drivers/net/ethernet/mediatek/mtk_eth_soc.c:4113:50: error: 'MTK_RSTCTRL_PPE2' undeclared (first use in this function); did you mean 'MTK_RSTCTRL_PPE1'?
4113 | if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE2))
| ^~~~~~~~~~~~~~~~
drivers/net/ethernet/mediatek/mtk_eth_soc.h:1022:53: note: in definition of macro 'MTK_HAS_CAPS'
1022 | #define MTK_HAS_CAPS(caps, _x) (((caps) & (_x)) == (_x))
| ^~
vim +3625 drivers/net/ethernet/mediatek/mtk_eth_soc.c
3611
3612 static void mtk_hw_reset(struct mtk_eth *eth)
3613 {
3614 u32 val;
3615
3616 if (mtk_is_netsys_v2_or_greater(eth))
3617 regmap_write(eth->ethsys, ETHSYS_FE_RST_CHK_IDLE_EN, 0);
3618
3619 if (mtk_is_netsys_v3_or_greater(eth)) {
3620 val = RSTCTRL_PPE0_V3;
3621
3622 if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE1))
3623 val |= RSTCTRL_PPE1_V3;
3624
> 3625 if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE2))
3626 val |= RSTCTRL_PPE2;
3627
3628 val |= RSTCTRL_WDMA0 | RSTCTRL_WDMA1 | RSTCTRL_WDMA2;
3629 } else if (mtk_is_netsys_v2_or_greater(eth)) {
3630 val = RSTCTRL_PPE0_V2;
3631
3632 if (MTK_HAS_CAPS(eth->soc->caps, MTK_RSTCTRL_PPE1))
3633 val |= RSTCTRL_PPE1;
3634 } else {
3635 val = RSTCTRL_PPE0;
3636 }
3637
3638 ethsys_reset(eth, RSTCTRL_ETH | RSTCTRL_FE | val);
3639
3640 if (mtk_is_netsys_v3_or_greater(eth))
3641 regmap_write(eth->ethsys, ETHSYS_FE_RST_CHK_IDLE_EN,
3642 0x6f8ff);
3643 else if (mtk_is_netsys_v2_or_greater(eth))
3644 regmap_write(eth->ethsys, ETHSYS_FE_RST_CHK_IDLE_EN,
3645 0x3ffffff);
3646 }
3647
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2023-08-21 19:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-18 18:15 [PATCH net] net: ethernet: mtk_eth_soc: add reset bits for MT7988 Daniel Golle
2023-08-19 14:41 ` Simon Horman
2023-08-21 18:38 ` 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=202308220205.gbt5lcAY-lkp@intel.com \
--to=lkp@intel.com \
--cc=Mark-MC.Lee@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=daniel@makrotopia.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=john@phrozen.org \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=lorenzo@kernel.org \
--cc=matthias.bgg@gmail.com \
--cc=nbd@nbd.name \
--cc=netdev@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pabeni@redhat.com \
--cc=sean.wang@mediatek.com \
/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).