RM6785: overlays: Switch to stock brightness configs
Change-Id: I946166cf484158061273808ffee1d2e701c60906
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index 63b1b5e..c1f9068 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -12,6 +12,89 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <!-- Array of output values for LCD backlight corresponding to the LUX values
+ in the config_autoBrightnessLevels array. This array should have size one greater
+ than the size of the config_autoBrightnessLevels array.
+ This must be overridden in platform specific overlays -->
+ <integer-array name="config_autoBrightnessLcdBacklightValues">
+ <item>8</item>
+ <item>64</item>
+ <item>98</item>
+ <item>104</item>
+ <item>110</item>
+ <item>116</item>
+ <item>122</item>
+ <item>128</item>
+ <item>134</item>
+ <item>182</item>
+ <item>255</item>
+ <item>255</item>
+ <item>255</item>
+ <item>255</item>
+ <item>255</item>
+ <item>255</item>
+ <item>255</item>
+ <item>255</item>
+ </integer-array>
+
+ <!-- Array of light sensor lux values to define our levels for auto backlight brightness support.
+ The N entries of this array define N + 1 control points as follows:
+ (1-based arrays)
+ Point 1: (0, value[1]): lux <= 0
+ Point 2: (level[1], value[2]): 0 < lux <= level[1]
+ Point 3: (level[2], value[3]): level[2] < lux <= level[3]
+ ...
+ Point N+1: (level[N], value[N+1]): level[N] < lux
+ The control points must be strictly increasing. Each control point
+ corresponds to an entry in the brightness backlight values arrays.
+ For example, if lux == level[1] (first element of the levels array)
+ then the brightness will be determined by value[2] (second element
+ of the brightness values array).
+ Spline interpolation is used to determine the auto-brightness
+ backlight values for lux levels between these control points.
+ Must be overridden in platform specific overlays -->
+ <integer-array name="config_autoBrightnessLevels">
+ <item>128</item>
+ <item>256</item>
+ <item>384</item>
+ <item>512</item>
+ <item>640</item>
+ <item>768</item>
+ <item>896</item>
+ <item>1024</item>
+ <item>2048</item>
+ <item>4096</item>
+ <item>6144</item>
+ <item>8192</item>
+ <item>10240</item>
+ <item>12288</item>
+ <item>14336</item>
+ <item>16384</item>
+ <item>18432</item>
+ </integer-array>
+
+ <!-- Default screen brightness setting set.
+ -2 is invalid so setting will resort to int value specified above.
+ Must be in the range specified by minimum and maximum. -->
+ <item name="config_screenBrightnessSettingDefaultFloat" format="float" type="dimen">0.75</item>
+
+ <!-- Maximum screen brightness allowed by the power manager.
+ -2 is invalid so setting will resort to int value specified above.
+ Set this to 1.0 for maximum brightness range.
+ The user is forbidden from setting the brightness above this level. -->
+ <item name="config_screenBrightnessSettingMaximumFloat" format="float" type="dimen">1.0</item>
+
+ <!-- Minimum screen brightness setting allowed by power manager.
+ -2 is invalid so setting will resort to int value specified above.
+ Set this to 0.0 to allow screen to go to minimal brightness.
+ The user is forbidden from setting the brightness below this level. -->
+ <item name="config_screenBrightnessSettingMinimumFloat" format="float" type="dimen">0.16</item>
+
+ <!-- Screen brightness used to dim the screen while dozing in a very low power state.
+ May be less than the minimum allowed brightness setting
+ that can be set by the user. -->
+ <integer name="config_screenBrightnessDoze">5</integer>
+
<!-- Flag indicating whether the we should enable the automatic brightness in Settings.
Software implementation will be used if config_hardware_auto_brightness_available is not set -->
<bool name="config_automatic_brightness_available">true</bool>
@@ -58,21 +141,6 @@
<dimen name="status_bar_height_default">32dp</dimen>
<dimen name="status_bar_height_landscape">32dp</dimen>
- <!-- Stability requirements in milliseconds for accepting a new brightness level. This is used
- for debouncing the light sensor. Different constants are used to debounce the light sensor
- when adapting to brighter or darker environments. This parameter controls how quickly
- brightness changes occur in response to an observed change in light level that exceeds the
- hysteresis threshold. -->
- <integer name="config_autoBrightnessBrighteningLightDebounce">1000</integer>
- <integer name="config_autoBrightnessDarkeningLightDebounce">4000</integer>
-
- <!-- Minimum screen brightness allowed by the power manager. -->
- <integer name="config_screenBrightnessDim">2</integer>
-
- <!-- Minimum screen brightness setting allowed by the power manager.
- The user is forbidden from setting the brightness below this level. -->
- <integer name="config_screenBrightnessSettingMinimum">1</integer>
-
<!-- The bounding path of the cutout region of the main built-in display.
Must either be empty if there is no cutout region, or a string that is parsable by
{@link android.util.PathParser}.
@@ -102,119 +170,6 @@
<!-- The restoring is handled by modem if it is true-->
<bool name="skip_restoring_network_selection">true</bool>
- <!-- Array of desired screen brightness in nits corresponding to the lux values
- in the config_autoBrightnessLevels array. As with config_screenBrightnessMinimumNits and
- config_screenBrightnessMaximumNits, the display brightness is defined as the measured
- brightness of an all-white image.
- If this is defined then:
- - config_autoBrightnessLcdBacklightValues should not be defined
- - config_screenBrightnessNits must be defined
- - config_screenBrightnessBacklight must be defined
- This array should have size one greater than the size of the config_autoBrightnessLevels
- array. The brightness values must be non-negative and non-decreasing. This must be
- overridden in platform specific overlays -->
- <array name="config_autoBrightnessDisplayValuesNits">
- <item>10.45935</item> <!-- 0-1 -->
- <item>29.25559</item> <!-- 1-2 -->
- <item>34.240692</item> <!-- 2-3 -->
- <item>37.514347</item> <!-- 3-4 -->
- <item>40.018696</item> <!-- 4-8 -->
- <item>46.885098</item> <!-- 8-12 -->
- <item>51.626434</item> <!-- 12-20 -->
- <item>58.610405</item> <!-- 20-33 -->
- <item>66.890915</item> <!-- 33-55 -->
- <item>77.61644</item> <!-- 55-90 -->
- <item>90.221886</item> <!-- 90-148 -->
- <item>105.80314</item> <!-- 148-245 -->
- <item>126.073845</item> <!-- 245-403 -->
- <item>154.16931</item> <!-- 403-665 -->
- <item>191.83717</item> <!-- 665-1097 -->
- <item>240.74442</item> <!-- 1097-1808 -->
- <item>294.84857</item> <!-- 1808-2981 -->
- <item>348.05453</item> <!-- 2981-5000 -->
- <item>394.98703</item> <!-- 5000+ -->
- </array>
-
- <!-- Array of light sensor LUX values to define our levels for auto backlight brightness support.
- The N entries of this array define N 1 zones as follows:
- Zone 0: 0 <= LUX < array[0]
- Zone 1: array[0] <= LUX < array[1]
- ...
- Zone N: array[N - 1] <= LUX < array[N]
- Zone N + 1 array[N] <= LUX < infinity
- Must be overridden in platform specific overlays -->
- <integer-array name="config_autoBrightnessLevels">
- <item>1</item>
- <item>2</item>
- <item>3</item>
- <item>4</item>
- <item>8</item>
- <item>12</item>
- <item>20</item>
- <item>33</item>
- <item>55</item>
- <item>90</item>
- <item>148</item>
- <item>245</item>
- <item>403</item>
- <item>665</item>
- <item>1097</item>
- <item>1808</item>
- <item>2981</item>
- <item>5000</item>
- </integer-array>
-
- <!-- An array describing the screen's backlight values corresponding to the brightness
- values in the config_screenBrightnessNits array.
- This array should be equal in size to config_screenBrightnessBacklight. -->
- <integer-array name="config_screenBrightnessBacklight">
- <item>0</item>
- <item>15</item>
- <item>30</item>
- <item>45</item>
- <item>60</item>
- <item>75</item>
- <item>90</item>
- <item>105</item>
- <item>120</item>
- <item>135</item>
- <item>150</item>
- <item>165</item>
- <item>180</item>
- <item>195</item>
- <item>210</item>
- <item>225</item>
- <item>240</item>
- <item>255</item>
- </integer-array>
-
- <!-- An array of floats describing the screen brightness in nits corresponding to the backlight
- values in the config_screenBrightnessBacklight array. On OLED displays these values
- should be measured with an all white image while the display is in the fully on state.
- Note that this value should *not* reflect the maximum brightness value for any high
- brightness modes but only the maximum brightness value obtainable in a sustainable manner.
- This array should be equal in size to config_screenBrightnessBacklight -->
- <array name="config_screenBrightnessNits">
- <item>0</item>
- <item>26.11</item>
- <item>50.5</item>
- <item>74.17</item>
- <item>96.89</item>
- <item>118.3</item>
- <item>139.8</item>
- <item>162.9</item>
- <item>189.8</item>
- <item>217.4</item>
- <item>240.4</item>
- <item>265.3</item>
- <item>288.7</item>
- <item>316</item>
- <item>340.8</item>
- <item>357.9</item>
- <item>376.2</item>
- <item>392.9</item>
- </array>
-
<!-- Default list of files pinned by the Pinner Service -->
<string-array translatable="false" name="config_defaultPinnerServiceFiles">
<item>"/system/framework/framework.jar"</item>