All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Andrea della Porta <andrea.porta@suse.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH 02/12] bcm2835-dma: Add proper 40-bit DMA support
Date: Fri, 9 Feb 2024 18:29:08 +0800	[thread overview]
Message-ID: <202402091831.DXlfjVKF-lkp@intel.com> (raw)
In-Reply-To: <eeb94204c30c2182f5ffd3ec083c04399ecdee32.1706948717.git.andrea.porta@suse.com>

Hi Andrea,

kernel test robot noticed the following build warnings:

[auto build test WARNING on vkoul-dmaengine/next]
[also build test WARNING on linus/master v6.8-rc3 next-20240209]
[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/Andrea-della-Porta/bcm2835-dma-Add-support-for-per-channel-flags/20240204-150430
base:   https://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git next
patch link:    https://lore.kernel.org/r/eeb94204c30c2182f5ffd3ec083c04399ecdee32.1706948717.git.andrea.porta%40suse.com
patch subject: [PATCH 02/12] bcm2835-dma: Add proper 40-bit DMA support
config: arm64-randconfig-r131-20240209 (https://download.01.org/0day-ci/archive/20240209/202402091831.DXlfjVKF-lkp@intel.com/config)
compiler: clang version 19.0.0git (https://github.com/llvm/llvm-project 7dd790db8b77c4a833c06632e903dc4f13877a64)
reproduce: (https://download.01.org/0day-ci/archive/20240209/202402091831.DXlfjVKF-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/202402091831.DXlfjVKF-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
>> drivers/dma/bcm2835-dma.c:288:23: sparse: sparse: symbol 'memcpy_parent' was not declared. Should it be static?
>> drivers/dma/bcm2835-dma.c:292:1: sparse: sparse: symbol 'memcpy_lock' was not declared. Should it be static?

vim +/memcpy_parent +288 drivers/dma/bcm2835-dma.c

   276	
   277	#define BCM2711_DMA40_MEMCPY_FLAGS \
   278		(BCM2711_DMA40_QOS(0) | \
   279		 BCM2711_DMA40_PANIC_QOS(0) | \
   280		 BCM2711_DMA40_WAIT_FOR_WRITES | \
   281		 BCM2711_DMA40_DISDEBUG)
   282	
   283	#define BCM2711_DMA40_MEMCPY_XFER_INFO \
   284		(BCM2711_DMA40_SIZE_128 | \
   285		 BCM2711_DMA40_INC | \
   286		 BCM2711_DMA40_BURST_LEN(16))
   287	
 > 288	struct bcm2835_dmadev *memcpy_parent;
   289	static void __iomem *memcpy_chan;
   290	static struct bcm2711_dma40_scb *memcpy_scb;
   291	static dma_addr_t memcpy_scb_dma;
 > 292	DEFINE_SPINLOCK(memcpy_lock);
   293	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  parent reply	other threads:[~2024-02-09 10:29 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-04  6:59 [PATCH 00/12] Add support for BCM2712 DMA engine Andrea della Porta
2024-02-04  6:59 ` Andrea della Porta
2024-02-04  6:59 ` [PATCH 01/12] bcm2835-dma: Add support for per-channel flags Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-04  6:59 ` [PATCH 02/12] bcm2835-dma: Add proper 40-bit DMA support Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-05  0:52   ` kernel test robot
2024-02-05  0:52   ` kernel test robot
2024-02-05 18:50   ` Stefan Wahren
2024-02-05 18:50     ` Stefan Wahren
2024-02-06 16:31     ` Dave Stevenson
2024-02-06 16:31       ` Dave Stevenson
2024-02-06 18:08       ` Stefan Wahren
2024-02-06 18:08         ` Stefan Wahren
2024-02-06 18:11         ` Stefan Wahren
2024-02-06 18:11           ` Stefan Wahren
2024-02-09 10:29   ` kernel test robot [this message]
2024-02-04  6:59 ` [PATCH 03/12] bcm2835-dma: Add NO_WAIT_RESP, DMA_WIDE_SOURCE and DMA_WIDE_DEST flag Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-04  6:59 ` [PATCH 04/12] bcm2835-dma: Advertise the full DMA range Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-05 17:55   ` Robin Murphy
2024-02-05 17:55     ` Robin Murphy
2024-03-01 13:55     ` Andrea della Porta
2024-03-01 13:55       ` Andrea della Porta
2024-02-05 18:25   ` Stefan Wahren
2024-02-05 18:25     ` Stefan Wahren
2024-02-04  6:59 ` [PATCH 05/12] bcm2835-dma: Derive slave DMA addresses correctly Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-05 18:03   ` Robin Murphy
2024-02-05 18:03     ` Robin Murphy
2024-02-04  6:59 ` [PATCH 06/12] dmaengine: bcm2835: Use to_bcm2711_cbaddr where relevant Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-04 17:04   ` Florian Fainelli
2024-02-04 17:04     ` Florian Fainelli
2024-02-05 10:25     ` Andrea della Porta
2024-02-05 10:25       ` Andrea della Porta
2024-02-04  6:59 ` [PATCH 07/12] bcm2835-dma: Support dma flags for multi-beat burst Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-07  8:22   ` Vinod Koul
2024-02-07  8:22     ` Vinod Koul
2024-02-04  6:59 ` [PATCH 08/12] bcm2835-dma: Need to keep PROT bits set in CS on 40bit controller Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-04  6:59 ` [PATCH 09/12] dmaengine: bcm2835: Add BCM2712 support Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-04  6:59 ` [PATCH 10/12] dmaengine: bcm2835: Support DMA-Lite channels Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-07  8:26   ` Vinod Koul
2024-02-07  8:26     ` Vinod Koul
2024-02-04  6:59 ` [PATCH 11/12] dmaengine: bcm2835: Rename to_bcm2711_cbaddr to to_40bit_cbaddr Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-04  6:59 ` [PATCH 12/12] bcm2835-dma: Fixes for dma_abort Andrea della Porta
2024-02-04  6:59   ` Andrea della Porta
2024-02-05 19:06 ` [PATCH 00/12] Add support for BCM2712 DMA engine Stefan Wahren
2024-02-05 19:06   ` Stefan Wahren
2024-02-07  8:19 ` Vinod Koul
2024-02-07  8:19   ` Vinod Koul
2024-02-07 10:24   ` Andrea della Porta
2024-02-07 10:24     ` Andrea della Porta

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=202402091831.DXlfjVKF-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=andrea.porta@suse.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.