Hi Bastiaan, Are you trying board-to-board connection? I am not familiar with WRS SBC8548 board - which type of connector they use for SRIO?
Assuming that all configuration is correct, I would recommend first to try setting up x1 link mode at the lowest link speed. The x4 mode may present challenges in some cases. For quick test you may just add port width override into fsl_rio.c like shown below (ugly but sometimes it helps ;) ): @@ -1461,10 +1461,16 @@ int fsl_rio_setup(struct platform_device *dev) rio_register_mport(port); priv->regs_win = ioremap(regs.start, regs.end - regs.start + 1); rio_regs_win = priv->regs_win; +dev_info(&dev->dev, "Overriding RIO_PORT setting to single lane 0\n"); +out_be32(priv->regs_win + 0x15C, in_be32(priv->regs_win + 0x15C) | 0x800000); +out_be32(priv->regs_win + 0x15C, in_be32(priv->regs_win + 0x15C) | 0x2000000); +out_be32(priv->regs_win + 0x15C, in_be32(priv->regs_win + 0x15C) & ~0x800000); +msleep(100); + /* Probe the master port phy type */ ccsr = in_be32(priv->regs_win + RIO_CCSR); port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL; dev_info(&dev->dev, "RapidIO PHY type: %s\n", (port->phy_type == RIO_PHY_PARALLEL) ? "parallel" : Let me know what happens. Please keep me in the CC: list next time when posting RapidIO questions to the linuxppc-dev or kernel mailing lists. Regards, Alex. _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev