On Tue, Sep 24, 2019 at 01:27:24PM +0200, Michal Vokáč wrote: > Hi, > > just tried booting latest next-20190920 on our imx6dl-yapp4-hydra platform > with QCA8334 switch and got this: > > [ 7.424620] [<806840e0>] (phy_support_asym_pause) from [<80686724>] > (qca8k_port_enable+0x40/0x48) > [ 7.436911] [<806866e4>] (qca8k_port_enable) from [<80a74134>] > (dsa_port_enable+0x3c/0x6c) > [ 7.448629] r7:00000000 r6:e88a02cc r5:e812d090 r4:e812d090 > [ 7.457708] [<80a740f8>] (dsa_port_enable) from [<80a730bc>] > (dsa_register_switch+0x798/0xacc) > [ 7.469833] r5:e812d0cc r4:e812d090
Hi Michal Please could you add a printk to verify it is the CPU port, and that in qca8k_port_enable() phy is a NULL pointer. I think the fix is going to look something like: diff --git a/drivers/net/dsa/qca8k.c b/drivers/net/dsa/qca8k.c index 16f15c93a102..86c80a873e30 100644 --- a/drivers/net/dsa/qca8k.c +++ b/drivers/net/dsa/qca8k.c @@ -939,7 +939,8 @@ qca8k_port_enable(struct dsa_switch *ds, int port, qca8k_port_set_status(priv, port, 1); priv->port_sts[port].enabled = 1; - phy_support_asym_pause(phy); + if (phy) + phy_support_asym_pause(phy); return 0; } But i want to take a closer look at what priv->port_sts[port].enabled = 1; does. Also, if there are any other port_enable() functions which always assume a valid phy device. Andrew