b53_write16(dev, B53_VLAN_PAGE,
                            B53_VLAN_PORT_DEF_TAG(i), def_vid);
 
-       if (!is5325(dev) && !is5365(dev))
-               b53_set_jumbo(dev, dev->enable_jumbo, false);
-
        return 0;
 }
 EXPORT_SYMBOL(b53_configure_vlan);
 static int b53_reset_switch(struct b53_device *priv)
 {
        /* reset vlans */
-       priv->enable_jumbo = false;
-
        memset(priv->vlans, 0, sizeof(*priv->vlans) * priv->num_vlans);
        memset(priv->ports, 0, sizeof(*priv->ports) * priv->num_ports);
 
 }
 EXPORT_SYMBOL(b53_set_mac_eee);
 
+static int b53_change_mtu(struct dsa_switch *ds, int port, int mtu)
+{
+       struct b53_device *dev = ds->priv;
+       bool enable_jumbo;
+       bool allow_10_100;
+
+       if (is5325(dev) || is5365(dev))
+               return -EOPNOTSUPP;
+
+       enable_jumbo = (mtu >= JMS_MIN_SIZE);
+       allow_10_100 = (dev->chip_id == BCM583XX_DEVICE_ID);
+
+       return b53_set_jumbo(dev, enable_jumbo, allow_10_100);
+}
+
+static int b53_get_max_mtu(struct dsa_switch *ds, int port)
+{
+       return JMS_MAX_SIZE;
+}
+
 static const struct dsa_switch_ops b53_switch_ops = {
        .get_tag_protocol       = b53_get_tag_protocol,
        .setup                  = b53_setup,
        .port_mdb_prepare       = b53_mdb_prepare,
        .port_mdb_add           = b53_mdb_add,
        .port_mdb_del           = b53_mdb_del,
+       .port_max_mtu           = b53_get_max_mtu,
+       .port_change_mtu        = b53_change_mtu,
 };
 
 struct b53_chip_data {