From: kernel test robot <lkp@intel.com>
To: Billy Tsai <billy_tsai@aspeedtech.com>,
jk@codeconstruct.com.au, alexandre.belloni@bootlin.com,
Frank.Li@nxp.com, aniketmaurya@google.com,
jarkko.nikula@linux.intel.com, Shyam-sundar.S-k@amd.com,
wsa+renesas@sang-engineering.com, linux-i3c@lists.infradead.org,
linux-kernel@vger.kernel.org, BMC-SW@aspeedtech.com,
elbadrym@google.com, romlem@google.com
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH] i3c: ast2600: Generate T-bits to terminate IBI storm
Date: Thu, 12 Jun 2025 03:44:25 +0800 [thread overview]
Message-ID: <202506120357.1kFiVfmV-lkp@intel.com> (raw)
In-Reply-To: <20250611040203.487734-1-billy_tsai@aspeedtech.com>
Hi Billy,
kernel test robot noticed the following build errors:
[auto build test ERROR on linus/master]
[also build test ERROR on v6.16-rc1 next-20250611]
[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/Billy-Tsai/i3c-ast2600-Generate-T-bits-to-terminate-IBI-storm/20250611-120300
base: linus/master
patch link: https://lore.kernel.org/r/20250611040203.487734-1-billy_tsai%40aspeedtech.com
patch subject: [PATCH] i3c: ast2600: Generate T-bits to terminate IBI storm
config: powerpc64-randconfig-r072-20250612 (https://download.01.org/0day-ci/archive/20250612/202506120357.1kFiVfmV-lkp@intel.com/config)
compiler: powerpc64-linux-gcc (GCC) 8.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250612/202506120357.1kFiVfmV-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/202506120357.1kFiVfmV-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
drivers/i3c/master/ast2600-i3c-master.c: In function 'ast2600_i3c_fsm_exit_serv_ibi':
>> drivers/i3c/master/ast2600-i3c-master.c:146:10: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration]
state = FIELD_GET(CM_TFR_STS, readl(dw->regs + PRESENT_STATE));
^~~~~~~~~
In file included from include/linux/device.h:15,
from include/linux/platform_device.h:13,
from drivers/i3c/master/ast2600-i3c-master.c:11:
drivers/i3c/master/ast2600-i3c-master.c: In function 'ast2600_i3c_gen_tbits_in':
>> drivers/i3c/master/ast2600-i3c-master.c:174:4: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'int' [-Wformat=]
"Failed to exit the I3C fsm from %lx(MASTER_SERV_IBI): %d",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/dev_printk.h:110:16: note: in definition of macro 'dev_printk_index_wrap'
_p_func(dev, fmt, ##__VA_ARGS__); \
^~~
include/linux/dev_printk.h:154:49: note: in expansion of macro 'dev_fmt'
dev_printk_index_wrap(_dev_err, KERN_ERR, dev, dev_fmt(fmt), ##__VA_ARGS__)
^~~~~~~
drivers/i3c/master/ast2600-i3c-master.c:173:3: note: in expansion of macro 'dev_err'
dev_err(&dw->base.dev,
^~~~~~~
cc1: some warnings being treated as errors
vim +/FIELD_GET +146 drivers/i3c/master/ast2600-i3c-master.c
136
137 static bool ast2600_i3c_fsm_exit_serv_ibi(struct dw_i3c_master *dw)
138 {
139 u32 state;
140
141 /*
142 * Clear the IBI queue to enable the hardware to generate SCL and
143 * begin detecting the T-bit low to stop reading IBI data.
144 */
145 readl(dw->regs + IBI_QUEUE_STATUS);
> 146 state = FIELD_GET(CM_TFR_STS, readl(dw->regs + PRESENT_STATE));
147 if (state == CM_TFR_STS_MASTER_SERV_IBI)
148 return false;
149
150 return true;
151 }
152
153 static void ast2600_i3c_gen_tbits_in(struct dw_i3c_master *dw)
154 {
155 struct ast2600_i3c *i3c = to_ast2600_i3c(dw);
156 bool is_idle;
157 int ret;
158
159 regmap_write_bits(i3c->global_regs, AST2600_I3CG_REG1(i3c->global_idx),
160 AST2600_I3CG_REG1_SDA_IN_SW_MODE_VAL,
161 AST2600_I3CG_REG1_SDA_IN_SW_MODE_VAL);
162 regmap_write_bits(i3c->global_regs, AST2600_I3CG_REG1(i3c->global_idx),
163 AST2600_I3CG_REG1_SDA_IN_SW_MODE_EN,
164 AST2600_I3CG_REG1_SDA_IN_SW_MODE_EN);
165
166 regmap_write_bits(i3c->global_regs, AST2600_I3CG_REG1(i3c->global_idx),
167 AST2600_I3CG_REG1_SDA_IN_SW_MODE_VAL, 0);
168 ret = readx_poll_timeout_atomic(ast2600_i3c_fsm_exit_serv_ibi, dw,
169 is_idle, is_idle, 0, 2000000);
170 regmap_write_bits(i3c->global_regs, AST2600_I3CG_REG1(i3c->global_idx),
171 AST2600_I3CG_REG1_SDA_IN_SW_MODE_EN, 0);
172 if (ret)
173 dev_err(&dw->base.dev,
> 174 "Failed to exit the I3C fsm from %lx(MASTER_SERV_IBI): %d",
175 FIELD_GET(CM_TFR_STS, readl(dw->regs + PRESENT_STATE)),
176 ret);
177 }
178
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
--
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c
next prev parent reply other threads:[~2025-06-11 21:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-11 4:02 [PATCH] i3c: ast2600: Generate T-bits to terminate IBI storm Billy Tsai
2025-06-11 17:05 ` Frank Li
2025-06-18 5:02 ` Billy Tsai
2025-06-11 19:44 ` kernel test robot [this message]
2025-06-16 2:31 ` Joshua Yeong
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=202506120357.1kFiVfmV-lkp@intel.com \
--to=lkp@intel.com \
--cc=BMC-SW@aspeedtech.com \
--cc=Frank.Li@nxp.com \
--cc=Shyam-sundar.S-k@amd.com \
--cc=alexandre.belloni@bootlin.com \
--cc=aniketmaurya@google.com \
--cc=billy_tsai@aspeedtech.com \
--cc=elbadrym@google.com \
--cc=jarkko.nikula@linux.intel.com \
--cc=jk@codeconstruct.com.au \
--cc=linux-i3c@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=romlem@google.com \
--cc=wsa+renesas@sang-engineering.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