[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202512051431.9gYpDLdA-lkp@intel.com>
Date: Fri, 5 Dec 2025 14:41:15 +0800
From: kernel test robot <lkp@...el.com>
To: John Madieu <john.madieu.xa@...renesas.com>,
prabhakar.mahadev-lad.rj@...renesas.com, andrew+netdev@...n.ch,
davem@...emloft.net, edumazet@...gle.com, kuba@...nel.org,
pabeni@...hat.com, robh@...nel.org, krzk+dt@...nel.org,
conor+dt@...nel.org, geert+renesas@...der.be
Cc: llvm@...ts.linux.dev, oe-kbuild-all@...ts.linux.dev,
biju.das.jz@...renesas.com, claudiu.beznea@...on.dev,
linux@...linux.org.uk, magnus.damm@...il.com,
mcoquelin.stm32@...il.com, alexandre.torgue@...s.st.com,
netdev@...r.kernel.org, linux-renesas-soc@...r.kernel.org,
devicetree@...r.kernel.org,
John Madieu <john.madieu.xa@...renesas.com>
Subject: Re: [PATCH net-next 1/3] net: stmmac: add physical port
identification support
Hi John,
kernel test robot noticed the following build warnings:
[auto build test WARNING on robh/for-next]
[also build test WARNING on net/main linus/master v6.18 next-20251204]
[cannot apply to net-next/main]
[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/John-Madieu/dt-bindings-net-renesas-gbeth-Add-port-id-property/20251205-013825
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
patch link: https://lore.kernel.org/r/20251204163729.3036329-2-john.madieu.xa%40bp.renesas.com
patch subject: [PATCH net-next 1/3] net: stmmac: add physical port identification support
config: hexagon-randconfig-001-20251205 (https://download.01.org/0day-ci/archive/20251205/202512051431.9gYpDLdA-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project d8b43edf552840e59a22a7f3cc332697bd434782)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251205/202512051431.9gYpDLdA-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202512051431.9gYpDLdA-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.c:11:
>> include/linux/stmmac.h:273:12: warning: declaration of 'struct netdev_phys_item_id' will not be visible outside of this function [-Wvisibility]
273 | struct netdev_phys_item_id *ppid);
| ^
1 warning generated.
vim +273 include/linux/stmmac.h
188
189 struct plat_stmmacenet_data {
190 int bus_id;
191 int phy_addr;
192 /* MAC ----- optional PCS ----- SerDes ----- optional PHY ----- Media
193 * ^
194 * phy_interface
195 *
196 * The Synopsys dwmac core only covers the MAC and an optional
197 * integrated PCS. Where the integrated PCS is used with a SerDes,
198 * e.g. for 1000base-X or Cisco SGMII, the connection between the
199 * PCS and SerDes will be TBI.
200 *
201 * Where the Synopsys dwmac core has been instantiated with multiple
202 * interface modes, these are selected via core-external configuration
203 * which is sampled when the dwmac core is reset. How this is done is
204 * platform glue specific, but this defines the interface used from
205 * the Synopsys dwmac core to the rest of the SoC.
206 *
207 * Where PCS other than the optional integrated Synopsys dwmac PCS
208 * is used, this counts as "the rest of the SoC" in the above
209 * paragraph.
210 *
211 * phy_interface is the PHY-side interface - the interface used by
212 * an attached PHY or SFP etc. This is equivalent to the interface
213 * that phylink uses.
214 */
215 phy_interface_t phy_interface;
216 struct stmmac_mdio_bus_data *mdio_bus_data;
217 struct device_node *phy_node;
218 struct fwnode_handle *port_node;
219 struct device_node *mdio_node;
220 struct stmmac_dma_cfg *dma_cfg;
221 struct stmmac_safety_feature_cfg *safety_feat_cfg;
222 int clk_csr;
223 int has_gmac;
224 int enh_desc;
225 int tx_coe;
226 int rx_coe;
227 int bugged_jumbo;
228 int pmt;
229 int force_sf_dma_mode;
230 int force_thresh_dma_mode;
231 int riwt_off;
232 int max_speed;
233 int maxmtu;
234 int multicast_filter_bins;
235 int unicast_filter_entries;
236 int tx_fifo_size;
237 int rx_fifo_size;
238 u32 host_dma_width;
239 u32 rx_queues_to_use;
240 u32 tx_queues_to_use;
241 u8 rx_sched_algorithm;
242 u8 tx_sched_algorithm;
243 struct stmmac_rxq_cfg rx_queues_cfg[MTL_MAX_RX_QUEUES];
244 struct stmmac_txq_cfg tx_queues_cfg[MTL_MAX_TX_QUEUES];
245 void (*get_interfaces)(struct stmmac_priv *priv, void *bsp_priv,
246 unsigned long *interfaces);
247 int (*set_clk_tx_rate)(void *priv, struct clk *clk_tx_i,
248 phy_interface_t interface, int speed);
249 void (*fix_mac_speed)(void *priv, int speed, unsigned int mode);
250 int (*fix_soc_reset)(struct stmmac_priv *priv, void __iomem *ioaddr);
251 int (*serdes_powerup)(struct net_device *ndev, void *priv);
252 void (*serdes_powerdown)(struct net_device *ndev, void *priv);
253 int (*mac_finish)(struct net_device *ndev,
254 void *priv,
255 unsigned int mode,
256 phy_interface_t interface);
257 void (*ptp_clk_freq_config)(struct stmmac_priv *priv);
258 int (*init)(struct platform_device *pdev, void *priv);
259 void (*exit)(struct platform_device *pdev, void *priv);
260 int (*suspend)(struct device *dev, void *priv);
261 int (*resume)(struct device *dev, void *priv);
262 struct mac_device_info *(*setup)(void *priv);
263 int (*clks_config)(void *priv, bool enabled);
264 int (*crosststamp)(ktime_t *device, struct system_counterval_t *system,
265 void *ctx);
266 void (*dump_debug_regs)(void *priv);
267 int (*pcs_init)(struct stmmac_priv *priv);
268 void (*pcs_exit)(struct stmmac_priv *priv);
269 struct phylink_pcs *(*select_pcs)(struct stmmac_priv *priv,
270 phy_interface_t interface);
271 /* Physical port identification callbacks (optional, for glue driver override) */
272 int (*get_phys_port_id)(struct net_device *ndev,
> 273 struct netdev_phys_item_id *ppid);
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists