- regulator-system-load: Load in uA present on regulator that is not captured by
   any consumer request.
 - regulator-pull-down: Enable pull down resistor when the regulator is disabled.
+- regulator-over-current-protection: Enable over current protection.
 
 Deprecated properties:
 - regulator-compatible: If a regulator chip contains multiple
 
                }
        }
 
+       if (rdev->constraints->over_current_protection
+               && ops->set_over_current_protection) {
+               ret = ops->set_over_current_protection(rdev);
+               if (ret < 0) {
+                       rdev_err(rdev, "failed to set over current protection\n");
+                       goto out;
+               }
+       }
+
        print_constraints(rdev);
        return 0;
 out:
 
        if (!of_property_read_u32(np, "regulator-system-load", &pval))
                constraints->system_load = pval;
 
+       constraints->over_current_protection = of_property_read_bool(np,
+                                       "regulator-over-current-protection");
+
        for (i = 0; i < ARRAY_SIZE(regulator_states); i++) {
                switch (i) {
                case PM_SUSPEND_MEM:
 
        int (*get_current_limit) (struct regulator_dev *);
 
        int (*set_input_current_limit) (struct regulator_dev *, int lim_uA);
+       int (*set_over_current_protection) (struct regulator_dev *);
 
        /* enable/disable regulator */
        int (*enable) (struct regulator_dev *);
 
        unsigned ramp_disable:1; /* disable ramp delay */
        unsigned soft_start:1;  /* ramp voltage slowly */
        unsigned pull_down:1;   /* pull down resistor when regulator off */
+       unsigned over_current_protection:1; /* auto disable on over current */
 };
 
 /**