Drivers must use the following standard profile-names:
 
-               ============    ============================================
-               low-power       Low power consumption
-               cool            Cooler operation
-               quiet           Quieter operation
-               balanced        Balance between low power consumption and performance
-               performance     High performance operation
-               ============    ============================================
+               ====================    ========================================
+               low-power               Low power consumption
+               cool                    Cooler operation
+               quiet                   Quieter operation
+               balanced                Balance between low power consumption
+                                       and performance
+               balanced-performance    Balance between performance and low
+                                       power consumption with a slight bias
+                                       towards performance
+               performance             High performance operation
+               ====================    ========================================
 
                Userspace may expect drivers to offer more than one of these
                standard profile names.
 
        [PLATFORM_PROFILE_COOL] = "cool",
        [PLATFORM_PROFILE_QUIET] = "quiet",
        [PLATFORM_PROFILE_BALANCED] = "balanced",
+       [PLATFORM_PROFILE_BALANCED_PERFORMANCE] = "balanced-performance",
        [PLATFORM_PROFILE_PERFORMANCE] = "performance",
 };
 static_assert(ARRAY_SIZE(profile_names) == PLATFORM_PROFILE_LAST);
 
        PLATFORM_PROFILE_COOL,
        PLATFORM_PROFILE_QUIET,
        PLATFORM_PROFILE_BALANCED,
+       PLATFORM_PROFILE_BALANCED_PERFORMANCE,
        PLATFORM_PROFILE_PERFORMANCE,
        PLATFORM_PROFILE_LAST, /*must always be last */
 };