data.type = IS2_ACTION_TYPE_NORMAL;
 
        VCAP_KEY_ANY_SET(PAG);
-       VCAP_KEY_SET(IGR_PORT_MASK, 0, ~BIT(ace->chip_port));
+       VCAP_KEY_SET(IGR_PORT_MASK, 0, ~ace->ingress_port_mask);
        VCAP_KEY_BIT_SET(FIRST, OCELOT_VCAP_BIT_1);
        VCAP_KEY_BIT_SET(HOST_MATCH, OCELOT_VCAP_BIT_ANY);
        VCAP_KEY_BIT_SET(L2_MC, ace->dmac_mc);
 
 static void is2_entry_get(struct ocelot_ace_rule *rule, int ix)
 {
-       struct ocelot *op = rule->port->ocelot;
+       struct ocelot *op = rule->ocelot;
        struct vcap_data data;
        int row = (ix / 2);
        u32 cnt;
        /* Move down the rules to make place for the new rule */
        for (i = acl_block->count - 1; i > index; i--) {
                ace = ocelot_ace_rule_get_rule_index(acl_block, i);
-               is2_entry_set(rule->port->ocelot, i, ace);
+               is2_entry_set(rule->ocelot, i, ace);
        }
 
        /* Now insert the new rule */
-       is2_entry_set(rule->port->ocelot, index, rule);
+       is2_entry_set(rule->ocelot, index, rule);
        return 0;
 }
 
        /* Move up all the blocks over the deleted rule */
        for (i = index; i < acl_block->count; i++) {
                ace = ocelot_ace_rule_get_rule_index(acl_block, i);
-               is2_entry_set(rule->port->ocelot, i, ace);
+               is2_entry_set(rule->ocelot, i, ace);
        }
 
        /* Now delete the last rule, because it is duplicated */
-       is2_entry_set(rule->port->ocelot, acl_block->count, &del_ace);
+       is2_entry_set(rule->ocelot, acl_block->count, &del_ace);
 
        return 0;
 }
        /* After we get the result we need to clear the counters */
        tmp = ocelot_ace_rule_get_rule_index(acl_block, index);
        tmp->stats.pkts = 0;
-       is2_entry_set(rule->port->ocelot, index, tmp);
+       is2_entry_set(rule->ocelot, index, tmp);
 
        return 0;
 }
 
        if (!rule)
                return NULL;
 
-       rule->port = &block->priv->port;
-       rule->chip_port = block->priv->chip_port;
+       rule->ocelot = block->priv->port.ocelot;
+       rule->ingress_port_mask = BIT(block->priv->chip_port);
        return rule;
 }
 
        int ret;
 
        rule.prio = f->common.prio;
-       rule.port = &port_block->priv->port;
+       rule.ocelot = port_block->priv->port.ocelot;
        rule.id = f->cookie;
 
        ret = ocelot_ace_rule_offload_del(&rule);
        int ret;
 
        rule.prio = f->common.prio;
-       rule.port = &port_block->priv->port;
+       rule.ocelot = port_block->priv->port.ocelot;
        rule.id = f->cookie;
        ret = ocelot_ace_rule_stats_update(&rule);
        if (ret)