From: kernel test robot <lkp@intel.com>
To: Samuel Holland <samuel@sholland.org>,
Vinod Koul <vkoul@kernel.org>,
dmaengine@vger.kernel.org
Cc: kbuild-all@lists.01.org, Samuel Holland <samuel@sholland.org>,
Chen-Yu Tsai <wens@csie.org>,
Jernej Skrabec <jernej.skrabec@gmail.com>,
Krzysztof Kozlowski <krzk@kernel.org>,
Maxime Ripard <mripard@kernel.org>,
Rob Herring <robh+dt@kernel.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-sunxi@lists.linux.dev
Subject: Re: [PATCH v2 3/4] dmaengine: sun6i: Add support for 34-bit physical addresses
Date: Mon, 11 Apr 2022 20:03:46 +0800 [thread overview]
Message-ID: <202204111937.ZQ1e600D-lkp@intel.com> (raw)
In-Reply-To: <20220411044633.39014-4-samuel@sholland.org>
Hi Samuel,
I love your patch! Perhaps something to improve:
[auto build test WARNING on vkoul-dmaengine/next]
[also build test WARNING on sunxi/sunxi/for-next v5.18-rc2 next-20220411]
[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/intel-lab-lkp/linux/commits/Samuel-Holland/dmaengine-sun6i-Allwinner-D1-support/20220411-124826
base: https://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git next
config: nios2-randconfig-r011-20220410 (https://download.01.org/0day-ci/archive/20220411/202204111937.ZQ1e600D-lkp@intel.com/config)
compiler: nios2-linux-gcc (GCC) 11.2.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/2e9c7977b871d504bca4e9ee88d3b322a21f3fb7
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Samuel-Holland/dmaengine-sun6i-Allwinner-D1-support/20220411-124826
git checkout 2e9c7977b871d504bca4e9ee88d3b322a21f3fb7
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=nios2 SHELL=/bin/bash drivers/dma/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
In file included from include/linux/device.h:15,
from include/linux/dmaengine.h:8,
from drivers/dma/sun6i-dma.c:12:
drivers/dma/sun6i-dma.c: In function 'sun6i_dma_dump_chan_regs':
drivers/dma/sun6i-dma.c:259:34: warning: format '%lx' expects argument of type 'long unsigned int', but argument 5 has type 'int' [-Wformat=]
259 | dev_dbg(sdev->slave.dev, "Chan %d reg: 0x%lx\n"
| ^~~~~~~~~~~~~~~~~~~~~~
include/linux/dev_printk.h:129:41: note: in definition of macro 'dev_printk'
129 | _dev_printk(level, dev, fmt, ##__VA_ARGS__); \
| ^~~
include/linux/dev_printk.h:158:37: note: in expansion of macro 'dev_fmt'
158 | dev_printk(KERN_DEBUG, dev, dev_fmt(fmt), ##__VA_ARGS__)
| ^~~~~~~
drivers/dma/sun6i-dma.c:259:9: note: in expansion of macro 'dev_dbg'
259 | dev_dbg(sdev->slave.dev, "Chan %d reg: 0x%lx\n"
| ^~~~~~~
drivers/dma/sun6i-dma.c:259:52: note: format string is defined here
259 | dev_dbg(sdev->slave.dev, "Chan %d reg: 0x%lx\n"
| ~~^
| |
| long unsigned int
| %x
drivers/dma/sun6i-dma.c: In function 'sun6i_dma_prep_dma_memcpy':
>> drivers/dma/sun6i-dma.c:99:48: warning: right shift count >= width of type [-Wshift-count-overflow]
99 | #define SET_SRC_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 16)
| ^~
drivers/dma/sun6i-dma.c:674:32: note: in expansion of macro 'SET_SRC_HIGH_ADDR'
674 | v_lli->para |= SET_SRC_HIGH_ADDR(src) |
| ^~~~~~~~~~~~~~~~~
drivers/dma/sun6i-dma.c:100:48: warning: right shift count >= width of type [-Wshift-count-overflow]
100 | #define SET_DST_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 18)
| ^~
drivers/dma/sun6i-dma.c:675:32: note: in expansion of macro 'SET_DST_HIGH_ADDR'
675 | SET_DST_HIGH_ADDR(dest);
| ^~~~~~~~~~~~~~~~~
drivers/dma/sun6i-dma.c: In function 'sun6i_dma_prep_slave_sg':
>> drivers/dma/sun6i-dma.c:99:48: warning: right shift count >= width of type [-Wshift-count-overflow]
99 | #define SET_SRC_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 16)
| ^~
drivers/dma/sun6i-dma.c:737:48: note: in expansion of macro 'SET_SRC_HIGH_ADDR'
737 | v_lli->para |= SET_SRC_HIGH_ADDR(sg_dma_address(sg)) |
| ^~~~~~~~~~~~~~~~~
drivers/dma/sun6i-dma.c:100:48: warning: right shift count >= width of type [-Wshift-count-overflow]
100 | #define SET_DST_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 18)
| ^~
drivers/dma/sun6i-dma.c:738:48: note: in expansion of macro 'SET_DST_HIGH_ADDR'
738 | SET_DST_HIGH_ADDR(sconfig->dst_addr);
| ^~~~~~~~~~~~~~~~~
>> drivers/dma/sun6i-dma.c:99:48: warning: right shift count >= width of type [-Wshift-count-overflow]
99 | #define SET_SRC_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 16)
| ^~
drivers/dma/sun6i-dma.c:753:48: note: in expansion of macro 'SET_SRC_HIGH_ADDR'
753 | v_lli->para |= SET_SRC_HIGH_ADDR(sconfig->src_addr) |
| ^~~~~~~~~~~~~~~~~
drivers/dma/sun6i-dma.c:100:48: warning: right shift count >= width of type [-Wshift-count-overflow]
100 | #define SET_DST_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 18)
| ^~
drivers/dma/sun6i-dma.c:754:48: note: in expansion of macro 'SET_DST_HIGH_ADDR'
754 | SET_DST_HIGH_ADDR(sg_dma_address(sg));
| ^~~~~~~~~~~~~~~~~
drivers/dma/sun6i-dma.c: In function 'sun6i_dma_prep_dma_cyclic':
>> drivers/dma/sun6i-dma.c:99:48: warning: right shift count >= width of type [-Wshift-count-overflow]
99 | #define SET_SRC_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 16)
| ^~
drivers/dma/sun6i-dma.c:826:48: note: in expansion of macro 'SET_SRC_HIGH_ADDR'
826 | v_lli->para |= SET_SRC_HIGH_ADDR(buf_addr + period_len * i) |
| ^~~~~~~~~~~~~~~~~
drivers/dma/sun6i-dma.c:100:48: warning: right shift count >= width of type [-Wshift-count-overflow]
100 | #define SET_DST_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 18)
| ^~
drivers/dma/sun6i-dma.c:827:48: note: in expansion of macro 'SET_DST_HIGH_ADDR'
827 | SET_DST_HIGH_ADDR(sconfig->dst_addr);
| ^~~~~~~~~~~~~~~~~
>> drivers/dma/sun6i-dma.c:99:48: warning: right shift count >= width of type [-Wshift-count-overflow]
99 | #define SET_SRC_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 16)
| ^~
drivers/dma/sun6i-dma.c:835:48: note: in expansion of macro 'SET_SRC_HIGH_ADDR'
835 | v_lli->para |= SET_SRC_HIGH_ADDR(sconfig->src_addr) |
| ^~~~~~~~~~~~~~~~~
drivers/dma/sun6i-dma.c:100:48: warning: right shift count >= width of type [-Wshift-count-overflow]
100 | #define SET_DST_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 18)
| ^~
drivers/dma/sun6i-dma.c:836:48: note: in expansion of macro 'SET_DST_HIGH_ADDR'
836 | SET_DST_HIGH_ADDR(buf_addr + period_len * i);
| ^~~~~~~~~~~~~~~~~
vim +99 drivers/dma/sun6i-dma.c
92
93 /*
94 * LLI address mangling
95 *
96 * The LLI link physical address is also mangled, but we avoid dealing
97 * with that by allocating LLIs from the DMA32 zone.
98 */
> 99 #define SET_SRC_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 16)
100 #define SET_DST_HIGH_ADDR(x) ((((x) >> 32) & 0x3U) << 18)
101
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next prev parent reply other threads:[~2022-04-11 12:04 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-11 4:46 [PATCH v2 0/4] dmaengine: sun6i: Allwinner D1 support Samuel Holland
2022-04-11 4:46 ` [PATCH v2 1/4] dt-bindings: dma: sun50i-a64: Add compatible for D1 Samuel Holland
2022-04-11 4:46 ` [PATCH v2 2/4] dmaengine: sun6i: Do not use virt_to_phys Samuel Holland
2022-04-11 8:10 ` kernel test robot
2022-04-11 8:20 ` kernel test robot
2022-04-11 4:46 ` [PATCH v2 3/4] dmaengine: sun6i: Add support for 34-bit physical addresses Samuel Holland
2022-04-11 12:03 ` kernel test robot [this message]
2022-04-11 4:46 ` [PATCH v2 4/4] dmaengine: sun6i: Add support for the D1 variant Samuel Holland
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=202204111937.ZQ1e600D-lkp@intel.com \
--to=lkp@intel.com \
--cc=devicetree@vger.kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=jernej.skrabec@gmail.com \
--cc=kbuild-all@lists.01.org \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=mripard@kernel.org \
--cc=robh+dt@kernel.org \
--cc=samuel@sholland.org \
--cc=vkoul@kernel.org \
--cc=wens@csie.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