struct ocelot *ocelot = priv->port.ocelot;
        int port = priv->chip_port;
 
-       /* The function is only used for PTP operations for now */
-       if (!ocelot->ptp)
-               return -EOPNOTSUPP;
-
-       switch (cmd) {
-       case SIOCSHWTSTAMP:
-               return ocelot_hwstamp_set(ocelot, port, ifr);
-       case SIOCGHWTSTAMP:
-               return ocelot_hwstamp_get(ocelot, port, ifr);
-       default:
-               return -EOPNOTSUPP;
+       if (ocelot->ptp) {
+               switch (cmd) {
+               case SIOCSHWTSTAMP:
+                       return ocelot_hwstamp_set(ocelot, port, ifr);
+               case SIOCGHWTSTAMP:
+                       return ocelot_hwstamp_get(ocelot, port, ifr);
+               }
        }
+
+       return phy_mii_ioctl(dev->phydev, ifr, cmd);
 }
 
 static const struct net_device_ops ocelot_port_netdev_ops = {