From: kernel test robot <lkp@intel.com>
To: "Darren.Ye" <darren.ye@mediatek.com>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <brgl@bgdev.pl>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
linux-sound@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, linux-gpio@vger.kernel.org,
Darren Ye <darren.ye@mediatek.com>,
Louis-Alexis Eyraud <louisalexis.eyraud@collabora.com>
Subject: Re: [PATCH v5 01/10] ASoC: mediatek: common: modify mtk afe platform driver for mt8196
Date: Sat, 21 Jun 2025 16:34:28 +0800 [thread overview]
Message-ID: <202506211649.TGCEqNZ6-lkp@intel.com> (raw)
In-Reply-To: <20250620094140.11093-2-darren.ye@mediatek.com>
Hi Darren.Ye,
kernel test robot noticed the following build warnings:
[auto build test WARNING on broonie-sound/for-next]
[also build test WARNING on broonie-spi/for-next robh/for-next linus/master v6.16-rc2 next-20250620]
[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/Darren-Ye/ASoC-mediatek-common-modify-mtk-afe-platform-driver-for-mt8196/20250620-174746
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
patch link: https://lore.kernel.org/r/20250620094140.11093-2-darren.ye%40mediatek.com
patch subject: [PATCH v5 01/10] ASoC: mediatek: common: modify mtk afe platform driver for mt8196
config: hexagon-allmodconfig (https://download.01.org/0day-ci/archive/20250621/202506211649.TGCEqNZ6-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250621/202506211649.TGCEqNZ6-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/202506211649.TGCEqNZ6-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> sound/soc/mediatek/common/mtk-afe-platform-driver.c:125:18: warning: shift count is negative [-Wshift-count-negative]
125 | pcm_ptr_bytes = MTK_ALIGN_16BYTES(hw_ptr - hw_base);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sound/soc/mediatek/common/mtk-afe-platform-driver.h:15:37: note: expanded from macro 'MTK_ALIGN_16BYTES'
15 | #define MTK_ALIGN_16BYTES(x) ((x) & GENMASK(39, 4))
| ^~~~~~~~~~~~~~
include/linux/bits.h:87:31: note: expanded from macro 'GENMASK'
87 | (GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l))
| ^~~~~~~~~~~~~~~
include/uapi/linux/bits.h:7:56: note: expanded from macro '__GENMASK'
7 | #define __GENMASK(h, l) (((~_UL(0)) << (l)) & (~_UL(0) >> (BITS_PER_LONG - 1 - (h))))
| ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
vim +125 sound/soc/mediatek/common/mtk-afe-platform-driver.c
79
80 snd_pcm_uframes_t mtk_afe_pcm_pointer(struct snd_soc_component *component,
81 struct snd_pcm_substream *substream)
82 {
83 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
84 struct mtk_base_afe *afe = snd_soc_component_get_drvdata(component);
85 struct mtk_base_afe_memif *memif = &afe->memif[snd_soc_rtd_to_cpu(rtd, 0)->id];
86 const struct mtk_base_memif_data *memif_data = memif->data;
87 struct regmap *regmap = afe->regmap;
88 struct device *dev = afe->dev;
89 unsigned int hw_ptr_lower32 = 0, hw_ptr_upper32 = 0;
90 unsigned int hw_base_lower32 = 0, hw_base_upper32 = 0;
91 unsigned long long hw_ptr = 0, hw_base = 0;
92 int ret;
93 unsigned long long pcm_ptr_bytes = 0;
94
95 ret = regmap_read(regmap, memif_data->reg_ofs_cur, &hw_ptr_lower32);
96 if (ret || hw_ptr_lower32 == 0) {
97 dev_err(dev, "%s hw_ptr_lower32 err\n", __func__);
98 goto POINTER_RETURN_FRAMES;
99 }
100
101 if (memif_data->reg_ofs_cur_msb) {
102 ret = regmap_read(regmap, memif_data->reg_ofs_cur_msb, &hw_ptr_upper32);
103 if (ret) {
104 dev_err(dev, "%s hw_ptr_upper32 err\n", __func__);
105 goto POINTER_RETURN_FRAMES;
106 }
107 }
108
109 ret = regmap_read(regmap, memif_data->reg_ofs_base, &hw_base_lower32);
110 if (ret || hw_base_lower32 == 0) {
111 dev_err(dev, "%s hw_base_lower32 err\n", __func__);
112 goto POINTER_RETURN_FRAMES;
113 }
114 if (memif_data->reg_ofs_base_msb) {
115 ret = regmap_read(regmap, memif_data->reg_ofs_base_msb, &hw_base_upper32);
116 if (ret) {
117 dev_err(dev, "%s hw_base_upper32 err\n", __func__);
118 goto POINTER_RETURN_FRAMES;
119 }
120 }
121 hw_ptr = ((unsigned long long)hw_ptr_upper32 << 32) + hw_ptr_lower32;
122 hw_base = ((unsigned long long)hw_base_upper32 << 32) + hw_base_lower32;
123
124 POINTER_RETURN_FRAMES:
> 125 pcm_ptr_bytes = MTK_ALIGN_16BYTES(hw_ptr - hw_base);
126 return bytes_to_frames(substream->runtime, (ssize_t)pcm_ptr_bytes);
127 }
128 EXPORT_SYMBOL_GPL(mtk_afe_pcm_pointer);
129
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-06-21 8:38 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-20 9:40 [PATCH v5 00/10] ASoC: mediatek: Add support for MT8196 SoC Darren.Ye
2025-06-20 9:40 ` [PATCH v5 01/10] ASoC: mediatek: common: modify mtk afe platform driver for mt8196 Darren.Ye
2025-06-21 8:34 ` kernel test robot [this message]
2025-06-20 9:40 ` [PATCH v5 02/10] ASoC: mediatek: mt8196: add common header Darren.Ye
2025-06-20 9:40 ` [PATCH v5 03/10] ASoC: mediatek: mt8196: support audio clock control Darren.Ye
2025-06-20 9:40 ` [PATCH v5 04/10] ASoC: mediatek: mt8196: support ADDA in platform driver Darren.Ye
2025-06-20 9:40 ` [PATCH v5 05/10] ASoC: mediatek: mt8196: support I2S " Darren.Ye
2025-06-23 9:05 ` AngeloGioacchino Del Regno
2025-06-20 9:40 ` [PATCH v5 06/10] ASoC: mediatek: mt8196: support TDM " Darren.Ye
2025-06-20 9:40 ` [PATCH v5 07/10] ASoC: mediatek: mt8196: add " Darren.Ye
2025-06-23 9:29 ` AngeloGioacchino Del Regno
2025-06-20 9:40 ` [PATCH v5 08/10] ASoC: dt-bindings: mediatek,mt8196-afe: add support for MT8196 audio AFE controller Darren.Ye
2025-06-22 9:43 ` Krzysztof Kozlowski
2025-06-23 6:52 ` Darren Ye (叶飞)
2025-06-23 7:30 ` Krzysztof Kozlowski
2025-06-20 9:40 ` [PATCH v5 09/10] ASoC: mediatek: mt8196: add machine driver with nau8825 Darren.Ye
2025-06-20 9:40 ` [PATCH v5 10/10] ASoC: dt-bindings: mediatek,mt8196-nau8825: Add audio sound card Darren.Ye
2025-06-22 11:25 ` Krzysztof Kozlowski
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=202506211649.TGCEqNZ6-lkp@intel.com \
--to=lkp@intel.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=brgl@bgdev.pl \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=darren.ye@mediatek.com \
--cc=devicetree@vger.kernel.org \
--cc=krzk@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-sound@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=louisalexis.eyraud@collabora.com \
--cc=matthias.bgg@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=perex@perex.cz \
--cc=robh@kernel.org \
--cc=tiwai@suse.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