if (index > U8_MAX)
                return -EINVAL;
 
+       if (of_property_read_bool(led, "active-high"))
+               set_bit(PHY_LED_ACTIVE_HIGH, &modes);
        if (of_property_read_bool(led, "active-low"))
                set_bit(PHY_LED_ACTIVE_LOW, &modes);
        if (of_property_read_bool(led, "inactive-high-impedance"))
                set_bit(PHY_LED_INACTIVE_HIGH_IMPEDANCE, &modes);
 
+       if (WARN_ON(modes & BIT(PHY_LED_ACTIVE_LOW) &&
+                   modes & BIT(PHY_LED_ACTIVE_HIGH)))
+               return -EINVAL;
+
        if (modes) {
                /* Return error if asked to set polarity modes but not supported */
                if (!phydev->drv->led_polarity_set)
 
 
 /* Modes for PHY LED configuration */
 enum phy_led_modes {
-       PHY_LED_ACTIVE_LOW = 0,
-       PHY_LED_INACTIVE_HIGH_IMPEDANCE = 1,
+       PHY_LED_ACTIVE_HIGH = 0,
+       PHY_LED_ACTIVE_LOW = 1,
+       PHY_LED_INACTIVE_HIGH_IMPEDANCE = 2,
 
        /* keep it last */
        __PHY_LED_MODES_NUM,