/* Configure mcp config */
        val = cdns_readl(cdns, CDNS_MCP_CONFIG);
 
-       /* Set Max cmd retry to 15 */
-       val |= CDNS_MCP_CONFIG_MCMD_RETRY;
+       /* Set cmd mode for Tx and Rx cmds */
+       val &= ~CDNS_MCP_CONFIG_CMD;
 
-       /* Set frame delay between PREQ and ping frame to 15 frames */
-       val |= 0xF << SDW_REG_SHIFT(CDNS_MCP_CONFIG_MPREQ_DELAY);
+       /* Disable sniffer mode */
+       val &= ~CDNS_MCP_CONFIG_SNIFFER;
 
        /* Disable auto bus release */
        val &= ~CDNS_MCP_CONFIG_BUS_REL;
 
-       /* Disable sniffer mode */
-       val &= ~CDNS_MCP_CONFIG_SNIFFER;
+       /* Multi-master support to be added here */
 
-       /* Set cmd mode for Tx and Rx cmds */
-       val &= ~CDNS_MCP_CONFIG_CMD;
+       /* Set frame delay between PREQ and ping frame to 15 frames */
+       val |= 0xF << SDW_REG_SHIFT(CDNS_MCP_CONFIG_MPREQ_DELAY);
+
+       /* Set Max cmd retry to 15 */
+       val |= CDNS_MCP_CONFIG_MCMD_RETRY;
 
        cdns_writel(cdns, CDNS_MCP_CONFIG, val);