static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
 {
-       struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
+       struct cpsw_priv *priv = netdev_priv(ndev);
+       struct cpsw_common *cpsw = priv->cpsw;
+       int slave_port = -1;
+
+       if (cpsw->data.dual_emac)
+               slave_port = priv->emac_port + 1;
 
        if (ndev->flags & IFF_PROMISC) {
                /* Enable promiscuous mode */
                cpsw_set_promiscious(ndev, true);
-               cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI);
+               cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI, slave_port);
                return;
        } else {
                /* Disable promiscuous mode */
        }
 
        /* Restore allmulti on vlans if necessary */
-       cpsw_ale_set_allmulti(cpsw->ale, ndev->flags & IFF_ALLMULTI);
+       cpsw_ale_set_allmulti(cpsw->ale,
+                             ndev->flags & IFF_ALLMULTI, slave_port);
 
        /* add/remove mcast address either for real netdev or for vlan */
        __hw_addr_ref_sync_dev(&ndev->mc, ndev, cpsw_add_mc_addr,
 
        return 0;
 }
 
-void cpsw_ale_set_allmulti(struct cpsw_ale *ale, int allmulti)
+void cpsw_ale_set_allmulti(struct cpsw_ale *ale, int allmulti, int port)
 {
        u32 ale_entry[ALE_ENTRY_WORDS];
-       int type, idx;
        int unreg_mcast = 0;
-
-       /* Only bother doing the work if the setting is actually changing */
-       if (ale->allmulti == allmulti)
-               return;
-
-       /* Remember the new setting to check against next time */
-       ale->allmulti = allmulti;
+       int type, idx;
 
        for (idx = 0; idx < ale->params.ale_entries; idx++) {
+               int vlan_members;
+
                cpsw_ale_read(ale, idx, ale_entry);
                type = cpsw_ale_get_entry_type(ale_entry);
                if (type != ALE_TYPE_VLAN)
                        continue;
+               vlan_members =
+                       cpsw_ale_get_vlan_member_list(ale_entry,
+                                                     ale->vlan_field_bits);
+
+               if (port != -1 && !(vlan_members & BIT(port)))
+                       continue;
 
                unreg_mcast =
                        cpsw_ale_get_vlan_unreg_mcast(ale_entry,
 
        struct cpsw_ale_params  params;
        struct timer_list       timer;
        unsigned long           ageout;
-       int                     allmulti;
        u32                     version;
        /* These bits are different on NetCP NU Switch ALE */
        u32                     port_mask_bits;
 int cpsw_ale_add_vlan(struct cpsw_ale *ale, u16 vid, int port, int untag,
                        int reg_mcast, int unreg_mcast);
 int cpsw_ale_del_vlan(struct cpsw_ale *ale, u16 vid, int port);
-void cpsw_ale_set_allmulti(struct cpsw_ale *ale, int allmulti);
+void cpsw_ale_set_allmulti(struct cpsw_ale *ale, int allmulti, int port);
 
 int cpsw_ale_control_get(struct cpsw_ale *ale, int port, int control);
 int cpsw_ale_control_set(struct cpsw_ale *ale, int port,