struct sfp_eeprom_id id;
        unsigned int module_power_mW;
        unsigned int module_t_start_up;
+       unsigned int module_t_wait;
        unsigned int phy_t_retry;
 
        unsigned int rate_kbd;
 {
        sfp_fixup_10gbaset_30m(sfp);
        sfp_fixup_rollball(sfp);
+
+       /* The RollBall fixup is not enough for FS modules, the AQR chip inside
+        * them does not return 0xffff for PHY ID registers in all MMDs for the
+        * while initializing. They need a 4 second wait before accessing PHY.
+        */
+       sfp->module_t_wait = msecs_to_jiffies(4000);
 }
 
 static void sfp_fixup_halny_gsfp(struct sfp *sfp)
                mask |= SFP_F_RS1;
 
        sfp->module_t_start_up = T_START_UP;
+       sfp->module_t_wait = T_WAIT;
        sfp->phy_t_retry = T_PHY_RETRY;
 
        sfp->state_ignore_mask = 0;
 
                /* We need to check the TX_FAULT state, which is not defined
                 * while TX_DISABLE is asserted. The earliest we want to do
-                * anything (such as probe for a PHY) is 50ms.
+                * anything (such as probe for a PHY) is 50ms (or more on
+                * specific modules).
                 */
-               sfp_sm_next(sfp, SFP_S_WAIT, T_WAIT);
+               sfp_sm_next(sfp, SFP_S_WAIT, sfp->module_t_wait);
                break;
 
        case SFP_S_WAIT:
                         * deasserting.
                         */
                        timeout = sfp->module_t_start_up;
-                       if (timeout > T_WAIT)
-                               timeout -= T_WAIT;
+                       if (timeout > sfp->module_t_wait)
+                               timeout -= sfp->module_t_wait;
                        else
                                timeout = 1;