From: kernel test robot <lkp@intel.com>
To: Manikanta Guntupalli <manikanta.guntupalli@amd.com>,
git@amd.com, michal.simek@amd.com, alexandre.belloni@bootlin.com,
Frank.Li@nxp.com, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, pgaj@cadence.com,
wsa+renesas@sang-engineering.com,
tommaso.merciai.xr@bp.renesas.com, arnd@arndb.de,
quic_msavaliy@quicinc.com, Shyam-sundar.S-k@amd.com,
sakari.ailus@linux.intel.com, billy_tsai@aspeedtech.com,
kees@kernel.org, gustavoars@kernel.org,
jarkko.nikula@linux.intel.com, jorge.marques@analog.com,
linux-i3c@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org,
linux-hardening@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, radhey.shyam.pandey@amd.com,
srinivas.goud@amd.com, shubhrajyoti.datta@amd.com,
manion05gk@gmail.com,
Manikanta Guntupalli <manikanta.guntupalli@amd.com>
Subject: Re: [PATCH V7 3/4] i3c: master: Add endianness support for i3c_readl_fifo() and i3c_writel_fifo()
Date: Thu, 25 Sep 2025 20:22:14 +0800 [thread overview]
Message-ID: <202509252022.QvbNmJil-lkp@intel.com> (raw)
In-Reply-To: <20250923154551.2112388-4-manikanta.guntupalli@amd.com>
Hi Manikanta,
kernel test robot noticed the following build warnings:
[auto build test WARNING on robh/for-next]
[also build test WARNING on linus/master arnd-asm-generic/master v6.17-rc7 next-20250924]
[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/Manikanta-Guntupalli/dt-bindings-i3c-Add-AMD-I3C-master-controller-support/20250923-234944
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
patch link: https://lore.kernel.org/r/20250923154551.2112388-4-manikanta.guntupalli%40amd.com
patch subject: [PATCH V7 3/4] i3c: master: Add endianness support for i3c_readl_fifo() and i3c_writel_fifo()
config: mips-randconfig-r123-20250925 (https://download.01.org/0day-ci/archive/20250925/202509252022.QvbNmJil-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project cafc064fc7a96b3979a023ddae1da2b499d6c954)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250925/202509252022.QvbNmJil-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/202509252022.QvbNmJil-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
drivers/i3c/master/i3c-master-cdns.c: note: in included file:
>> drivers/i3c/master/../internals.h:53:25: sparse: sparse: incorrect type in argument 1 (different base types) @@ expected unsigned int [usertype] val @@ got restricted __be32 [usertype] @@
drivers/i3c/master/../internals.h:53:25: sparse: expected unsigned int [usertype] val
drivers/i3c/master/../internals.h:53:25: sparse: got restricted __be32 [usertype]
>> drivers/i3c/master/../internals.h:53:25: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void volatile [noderef] __iomem *mem @@ got unsigned int * @@
drivers/i3c/master/../internals.h:53:25: sparse: expected void volatile [noderef] __iomem *mem
drivers/i3c/master/../internals.h:53:25: sparse: got unsigned int *
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got unsigned int * @@
drivers/i3c/master/../internals.h:78:31: sparse: expected void const volatile [noderef] __iomem *mem
drivers/i3c/master/../internals.h:78:31: sparse: got unsigned int *
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: cast to restricted __be32
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got unsigned int * @@
drivers/i3c/master/../internals.h:78:31: sparse: expected void const volatile [noderef] __iomem *mem
drivers/i3c/master/../internals.h:78:31: sparse: got unsigned int *
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: cast to restricted __be32
vim +53 drivers/i3c/master/../internals.h
31
32 /**
33 * i3c_writel_fifo - Write data buffer to 32bit FIFO
34 * @addr: FIFO Address to write to
35 * @buf: Pointer to the data bytes to write
36 * @nbytes: Number of bytes to write
37 * @endian: Endianness of FIFO write
38 */
39 static inline void i3c_writel_fifo(void __iomem *addr, const void *buf,
40 int nbytes, enum i3c_fifo_endian endian)
41 {
42 if (endian)
43 writesl_be(addr, buf, nbytes / 4);
44 else
45 writesl(addr, buf, nbytes / 4);
46
47 if (nbytes & 3) {
48 u32 tmp = 0;
49
50 memcpy(&tmp, buf + (nbytes & ~3), nbytes & 3);
51
52 if (endian)
> 53 writel_be(tmp, addr);
54 else
55 writel(tmp, addr);
56 }
57 }
58
59 /**
60 * i3c_readl_fifo - Read data buffer from 32bit FIFO
61 * @addr: FIFO Address to read from
62 * @buf: Pointer to the buffer to store read bytes
63 * @nbytes: Number of bytes to read
64 * @endian: Endianness of FIFO read
65 */
66 static inline void i3c_readl_fifo(const void __iomem *addr, void *buf,
67 int nbytes, enum i3c_fifo_endian endian)
68 {
69 if (endian)
70 readsl_be(addr, buf, nbytes / 4);
71 else
72 readsl(addr, buf, nbytes / 4);
73
74 if (nbytes & 3) {
75 u32 tmp;
76
77 if (endian)
> 78 tmp = readl_be(addr);
79 else
80 tmp = readl(addr);
81
82 memcpy(buf + (nbytes & ~3), &tmp, nbytes & 3);
83 }
84 }
85
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Manikanta Guntupalli <manikanta.guntupalli@amd.com>,
git@amd.com, michal.simek@amd.com, alexandre.belloni@bootlin.com,
Frank.Li@nxp.com, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, pgaj@cadence.com,
wsa+renesas@sang-engineering.com,
tommaso.merciai.xr@bp.renesas.com, arnd@arndb.de,
quic_msavaliy@quicinc.com, Shyam-sundar.S-k@amd.com,
sakari.ailus@linux.intel.com, billy_tsai@aspeedtech.com,
kees@kernel.org, gustavoars@kernel.org,
jarkko.nikula@linux.intel.com, jorge.marques@analog.com,
linux-i3c@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org,
linux-hardening@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, radhey.shyam.pandey@amd.com,
srinivas.goud@amd.com, shubhrajyoti.datta@amd.com,
manion05gk@gmail.com,
Manikanta Guntupalli <manikanta.guntupalli@amd.com>
Subject: Re: [PATCH V7 3/4] i3c: master: Add endianness support for i3c_readl_fifo() and i3c_writel_fifo()
Date: Thu, 25 Sep 2025 20:22:14 +0800 [thread overview]
Message-ID: <202509252022.QvbNmJil-lkp@intel.com> (raw)
In-Reply-To: <20250923154551.2112388-4-manikanta.guntupalli@amd.com>
Hi Manikanta,
kernel test robot noticed the following build warnings:
[auto build test WARNING on robh/for-next]
[also build test WARNING on linus/master arnd-asm-generic/master v6.17-rc7 next-20250924]
[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/Manikanta-Guntupalli/dt-bindings-i3c-Add-AMD-I3C-master-controller-support/20250923-234944
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
patch link: https://lore.kernel.org/r/20250923154551.2112388-4-manikanta.guntupalli%40amd.com
patch subject: [PATCH V7 3/4] i3c: master: Add endianness support for i3c_readl_fifo() and i3c_writel_fifo()
config: mips-randconfig-r123-20250925 (https://download.01.org/0day-ci/archive/20250925/202509252022.QvbNmJil-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project cafc064fc7a96b3979a023ddae1da2b499d6c954)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250925/202509252022.QvbNmJil-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/202509252022.QvbNmJil-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
drivers/i3c/master/i3c-master-cdns.c: note: in included file:
>> drivers/i3c/master/../internals.h:53:25: sparse: sparse: incorrect type in argument 1 (different base types) @@ expected unsigned int [usertype] val @@ got restricted __be32 [usertype] @@
drivers/i3c/master/../internals.h:53:25: sparse: expected unsigned int [usertype] val
drivers/i3c/master/../internals.h:53:25: sparse: got restricted __be32 [usertype]
>> drivers/i3c/master/../internals.h:53:25: sparse: sparse: incorrect type in argument 2 (different address spaces) @@ expected void volatile [noderef] __iomem *mem @@ got unsigned int * @@
drivers/i3c/master/../internals.h:53:25: sparse: expected void volatile [noderef] __iomem *mem
drivers/i3c/master/../internals.h:53:25: sparse: got unsigned int *
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got unsigned int * @@
drivers/i3c/master/../internals.h:78:31: sparse: expected void const volatile [noderef] __iomem *mem
drivers/i3c/master/../internals.h:78:31: sparse: got unsigned int *
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: cast to restricted __be32
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const volatile [noderef] __iomem *mem @@ got unsigned int * @@
drivers/i3c/master/../internals.h:78:31: sparse: expected void const volatile [noderef] __iomem *mem
drivers/i3c/master/../internals.h:78:31: sparse: got unsigned int *
>> drivers/i3c/master/../internals.h:78:31: sparse: sparse: cast to restricted __be32
vim +53 drivers/i3c/master/../internals.h
31
32 /**
33 * i3c_writel_fifo - Write data buffer to 32bit FIFO
34 * @addr: FIFO Address to write to
35 * @buf: Pointer to the data bytes to write
36 * @nbytes: Number of bytes to write
37 * @endian: Endianness of FIFO write
38 */
39 static inline void i3c_writel_fifo(void __iomem *addr, const void *buf,
40 int nbytes, enum i3c_fifo_endian endian)
41 {
42 if (endian)
43 writesl_be(addr, buf, nbytes / 4);
44 else
45 writesl(addr, buf, nbytes / 4);
46
47 if (nbytes & 3) {
48 u32 tmp = 0;
49
50 memcpy(&tmp, buf + (nbytes & ~3), nbytes & 3);
51
52 if (endian)
> 53 writel_be(tmp, addr);
54 else
55 writel(tmp, addr);
56 }
57 }
58
59 /**
60 * i3c_readl_fifo - Read data buffer from 32bit FIFO
61 * @addr: FIFO Address to read from
62 * @buf: Pointer to the buffer to store read bytes
63 * @nbytes: Number of bytes to read
64 * @endian: Endianness of FIFO read
65 */
66 static inline void i3c_readl_fifo(const void __iomem *addr, void *buf,
67 int nbytes, enum i3c_fifo_endian endian)
68 {
69 if (endian)
70 readsl_be(addr, buf, nbytes / 4);
71 else
72 readsl(addr, buf, nbytes / 4);
73
74 if (nbytes & 3) {
75 u32 tmp;
76
77 if (endian)
> 78 tmp = readl_be(addr);
79 else
80 tmp = readl(addr);
81
82 memcpy(buf + (nbytes & ~3), &tmp, nbytes & 3);
83 }
84 }
85
--
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-09-25 12:22 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-23 15:45 [PATCH V7 0/4] Add AMD I3C master controller driver and bindings Manikanta Guntupalli
2025-09-23 15:45 ` Manikanta Guntupalli
2025-09-23 15:45 ` [PATCH V7 1/4] dt-bindings: i3c: Add AMD I3C master controller support Manikanta Guntupalli
2025-09-23 15:45 ` Manikanta Guntupalli
2025-09-23 15:45 ` [PATCH V7 2/4] asm-generic/io.h: Add big-endian MMIO accessors Manikanta Guntupalli
2025-09-23 15:45 ` Manikanta Guntupalli
2025-09-23 18:38 ` Arnd Bergmann
2025-09-23 18:38 ` Arnd Bergmann
2025-09-24 8:59 ` Guntupalli, Manikanta
2025-09-24 8:59 ` Guntupalli, Manikanta
2025-09-24 9:46 ` Arnd Bergmann
2025-09-24 9:46 ` Arnd Bergmann
2025-09-24 10:12 ` Guntupalli, Manikanta
2025-09-24 10:12 ` Guntupalli, Manikanta
2025-09-23 18:43 ` Frank Li
2025-09-23 18:43 ` Frank Li
2025-09-24 20:34 ` kernel test robot
2025-09-24 20:34 ` kernel test robot
2025-09-25 6:15 ` kernel test robot
2025-09-25 6:15 ` kernel test robot
2025-09-23 15:45 ` [PATCH V7 3/4] i3c: master: Add endianness support for i3c_readl_fifo() and i3c_writel_fifo() Manikanta Guntupalli
2025-09-23 15:45 ` Manikanta Guntupalli
2025-09-23 18:45 ` Frank Li
2025-09-23 18:45 ` Frank Li
2025-09-23 18:51 ` Arnd Bergmann
2025-09-23 18:51 ` Arnd Bergmann
2025-09-24 9:00 ` Guntupalli, Manikanta
2025-09-24 9:00 ` Guntupalli, Manikanta
2025-09-24 10:00 ` Arnd Bergmann
2025-09-24 10:00 ` Arnd Bergmann
2025-09-24 12:22 ` Guntupalli, Manikanta
2025-09-24 12:22 ` Guntupalli, Manikanta
2025-09-24 14:05 ` Arnd Bergmann
2025-09-24 14:05 ` Arnd Bergmann
2025-09-24 15:23 ` Guntupalli, Manikanta
2025-09-24 15:23 ` Guntupalli, Manikanta
2025-09-24 15:42 ` Arnd Bergmann
2025-09-24 15:42 ` Arnd Bergmann
2025-09-25 9:26 ` Guntupalli, Manikanta
2025-09-25 9:26 ` Guntupalli, Manikanta
2025-09-25 12:14 ` Arnd Bergmann
2025-09-25 12:14 ` Arnd Bergmann
2025-09-25 16:37 ` Guntupalli, Manikanta
2025-09-25 16:37 ` Guntupalli, Manikanta
2025-09-25 16:50 ` Frank Li
2025-09-25 16:50 ` Frank Li
2025-09-25 12:22 ` kernel test robot [this message]
2025-09-25 12:22 ` kernel test robot
2025-09-23 15:45 ` [PATCH V7 4/4] i3c: master: Add AMD I3C bus controller driver Manikanta Guntupalli
2025-09-23 15:45 ` Manikanta Guntupalli
2025-09-23 19:22 ` Frank Li
2025-09-23 19:22 ` Frank Li
2025-09-25 5:42 ` Guntupalli, Manikanta
2025-09-25 5:42 ` Guntupalli, Manikanta
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=202509252022.QvbNmJil-lkp@intel.com \
--to=lkp@intel.com \
--cc=Frank.Li@nxp.com \
--cc=Shyam-sundar.S-k@amd.com \
--cc=alexandre.belloni@bootlin.com \
--cc=arnd@arndb.de \
--cc=billy_tsai@aspeedtech.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=git@amd.com \
--cc=gustavoars@kernel.org \
--cc=jarkko.nikula@linux.intel.com \
--cc=jorge.marques@analog.com \
--cc=kees@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-i3c@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=manikanta.guntupalli@amd.com \
--cc=manion05gk@gmail.com \
--cc=michal.simek@amd.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pgaj@cadence.com \
--cc=quic_msavaliy@quicinc.com \
--cc=radhey.shyam.pandey@amd.com \
--cc=robh@kernel.org \
--cc=sakari.ailus@linux.intel.com \
--cc=shubhrajyoti.datta@amd.com \
--cc=srinivas.goud@amd.com \
--cc=tommaso.merciai.xr@bp.renesas.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 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.