Commit d7f5a9d8 authored by Ioana Ciornei's avatar Ioana Ciornei Committed by David S. Miller

dpaa2-eth: defer probe on object allocate

The fsl_mc_object_allocate function can fail because not all allocatable
objects are probed by the fsl_mc_allocator at the call time. Defer the
dpaa2-eth probe when this happens.
Signed-off-by: default avatarIoana Ciornei <ioana.ciornei@nxp.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 029a3743
...@@ -1434,8 +1434,11 @@ static struct fsl_mc_device *setup_dpcon(struct dpaa2_eth_priv *priv) ...@@ -1434,8 +1434,11 @@ static struct fsl_mc_device *setup_dpcon(struct dpaa2_eth_priv *priv)
err = fsl_mc_object_allocate(to_fsl_mc_device(dev), err = fsl_mc_object_allocate(to_fsl_mc_device(dev),
FSL_MC_POOL_DPCON, &dpcon); FSL_MC_POOL_DPCON, &dpcon);
if (err) { if (err) {
dev_info(dev, "Not enough DPCONs, will go on as-is\n"); if (err == -ENXIO)
return NULL; err = -EPROBE_DEFER;
else
dev_info(dev, "Not enough DPCONs, will go on as-is\n");
return ERR_PTR(err);
} }
err = dpcon_open(priv->mc_io, 0, dpcon->obj_desc.id, &dpcon->mc_handle); err = dpcon_open(priv->mc_io, 0, dpcon->obj_desc.id, &dpcon->mc_handle);
...@@ -1493,8 +1496,10 @@ alloc_channel(struct dpaa2_eth_priv *priv) ...@@ -1493,8 +1496,10 @@ alloc_channel(struct dpaa2_eth_priv *priv)
return NULL; return NULL;
channel->dpcon = setup_dpcon(priv); channel->dpcon = setup_dpcon(priv);
if (!channel->dpcon) if (IS_ERR_OR_NULL(channel->dpcon)) {
err = PTR_ERR(channel->dpcon);
goto err_setup; goto err_setup;
}
err = dpcon_get_attributes(priv->mc_io, 0, channel->dpcon->mc_handle, err = dpcon_get_attributes(priv->mc_io, 0, channel->dpcon->mc_handle,
&attr); &attr);
...@@ -1513,7 +1518,7 @@ alloc_channel(struct dpaa2_eth_priv *priv) ...@@ -1513,7 +1518,7 @@ alloc_channel(struct dpaa2_eth_priv *priv)
free_dpcon(priv, channel->dpcon); free_dpcon(priv, channel->dpcon);
err_setup: err_setup:
kfree(channel); kfree(channel);
return NULL; return ERR_PTR(err);
} }
static void free_channel(struct dpaa2_eth_priv *priv, static void free_channel(struct dpaa2_eth_priv *priv,
...@@ -1547,10 +1552,11 @@ static int setup_dpio(struct dpaa2_eth_priv *priv) ...@@ -1547,10 +1552,11 @@ static int setup_dpio(struct dpaa2_eth_priv *priv)
for_each_online_cpu(i) { for_each_online_cpu(i) {
/* Try to allocate a channel */ /* Try to allocate a channel */
channel = alloc_channel(priv); channel = alloc_channel(priv);
if (!channel) { if (IS_ERR_OR_NULL(channel)) {
dev_info(dev, err = PTR_ERR(channel);
"No affine channel for cpu %d and above\n", i); if (err != -EPROBE_DEFER)
err = -ENODEV; dev_info(dev,
"No affine channel for cpu %d and above\n", i);
goto err_alloc_ch; goto err_alloc_ch;
} }
...@@ -1608,9 +1614,12 @@ static int setup_dpio(struct dpaa2_eth_priv *priv) ...@@ -1608,9 +1614,12 @@ static int setup_dpio(struct dpaa2_eth_priv *priv)
err_service_reg: err_service_reg:
free_channel(priv, channel); free_channel(priv, channel);
err_alloc_ch: err_alloc_ch:
if (err == -EPROBE_DEFER)
return err;
if (cpumask_empty(&priv->dpio_cpumask)) { if (cpumask_empty(&priv->dpio_cpumask)) {
dev_err(dev, "No cpu with an affine DPIO/DPCON\n"); dev_err(dev, "No cpu with an affine DPIO/DPCON\n");
return err; return -ENODEV;
} }
dev_info(dev, "Cores %*pbl available for processing ingress traffic\n", dev_info(dev, "Cores %*pbl available for processing ingress traffic\n",
...@@ -1732,7 +1741,10 @@ static int setup_dpbp(struct dpaa2_eth_priv *priv) ...@@ -1732,7 +1741,10 @@ static int setup_dpbp(struct dpaa2_eth_priv *priv)
err = fsl_mc_object_allocate(to_fsl_mc_device(dev), FSL_MC_POOL_DPBP, err = fsl_mc_object_allocate(to_fsl_mc_device(dev), FSL_MC_POOL_DPBP,
&dpbp_dev); &dpbp_dev);
if (err) { if (err) {
dev_err(dev, "DPBP device allocation failed\n"); if (err == -ENXIO)
err = -EPROBE_DEFER;
else
dev_err(dev, "DPBP device allocation failed\n");
return err; return err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment