George Lee
8460d09ca2
bcl: Update soft_ocp cooling device am: 7eadb11846 am: 0afab94b3c am: 77af6205e2
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15484343
Change-Id: Ib8da119b83cc70bdddb65a70288c759d57a9b332
2021-08-11 00:06:18 +00:00
TeYuan Wang
db1c81fe9d
thermal: add TPU throttling for SKIN thermal optimization am: bffd5fe31a am: 18b0455bba am: 9eb386fc31
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472709
Change-Id: I01aa18eee45eac9ead2eb8fbd946e7f6bcd1d49f
2021-08-11 00:06:16 +00:00
TeYuan Wang
0279610ca2
thermal: add TPU throttling for SKIN thermal optimization am: bffd5fe31a am: 1062fbdca8 am: fb7d7db044
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472709
Change-Id: I73388ce82b0c96b294c8e5ade7252d9d0726039f
2021-08-11 00:05:45 +00:00
George Lee
ead4f43ff5
bcl: Update soft_ocp cooling device am: 7eadb11846 am: 138d50a95e
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15484343
Change-Id: Id6ba3054ac6e311fcc78bb38a887ad09e418274a
2021-08-10 23:52:15 +00:00
George Lee
56fd621431
bcl: Update soft_ocp cooling device am: 7eadb11846 am: 138d50a95e
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15484343
Change-Id: I7cde7cda1a5608c71578170092e9a3ee31541792
2021-08-10 23:51:50 +00:00
TeYuan Wang
b6cf110a2f
thermal: add TPU throttling for SKIN thermal optimization am: bffd5fe31a am: 18b0455bba
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472709
Change-Id: Ib179450d33d9a9548f710d1930566f15f22b131c
2021-08-10 23:51:46 +00:00
TeYuan Wang
6db205693f
thermal: add TPU throttling for SKIN thermal optimization am: bffd5fe31a am: 18b0455bba
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472709
Change-Id: I780110c9e0a45c01d707241a6f98a8c6283fba7d
2021-08-10 23:51:34 +00:00
George Lee
152c659e39
bcl: Update soft_ocp cooling device am: 7eadb11846 am: 0afab94b3c
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15484343
Change-Id: Id9af7966799c73b066f2c717e6ac32c8f71b8179
2021-08-10 23:51:27 +00:00
TeYuan Wang
739c173859
thermal: add TPU throttling for SKIN thermal optimization am: bffd5fe31a am: 1062fbdca8
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472709
Change-Id: Idba5535220ddeefb91a98647dbfb74e7487d3f13
2021-08-10 23:51:22 +00:00
George Lee
50955b2b74
bcl: Update soft_ocp cooling device am: 7eadb11846
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15484343
Change-Id: Ice7ff5274d9c76b1179fba236ba48f9a9422b832
2021-08-10 23:34:35 +00:00
TeYuan Wang
cabaf44c82
thermal: add TPU throttling for SKIN thermal optimization am: bffd5fe31a
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472709
Change-Id: Ib215d533f040bf501608e5245d14dd2330868d14
2021-08-10 23:34:31 +00:00
George Lee
270a8bb008
bcl: Update soft_ocp cooling device am: 7eadb11846
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15484343
Change-Id: I3d471699e6be725cd274f3b94f4dfc4972ed01e8
2021-08-10 23:34:08 +00:00
TeYuan Wang
756c2fe3e2
thermal: add TPU throttling for SKIN thermal optimization am: bffd5fe31a
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472709
Change-Id: I3be3365f496ce4d0d2d22000962533a866d1a401
2021-08-10 23:34:02 +00:00
George Lee
f7e42d69e0
bcl: Update soft_ocp cooling device
...
Add cooling device for soft_ocp_warn.
Bug: 188701596
Test: Local test and check trip point
Signed-off-by: George Lee <geolee@google.com>
Change-Id: Ife680d79467d9a07e14cc890d60f35aba02c0b65
2021-08-10 23:27:13 +00:00
TeYuan Wang
3f4c1166f6
thermal: add TPU throttling for SKIN thermal optimization
...
Bug: 188701596
Test: Verified by emul temp
Change-Id: I37300afd1aa9678b22e7108c918b515f83347f37
2021-08-10 23:18:01 +00:00
Sasha Smundak
6bbc22597e
Replace PHONE_CAR_BOARD_CONFIG with more specific PHONE_CAR_BOARD_PRODUCT
...
The statement
```
include $(PHONE_CAR_BOARD_CONFIG)
```
is difficult to translate to the Starlark configuration file. Fortunately,
all the potential values of this variable have have similar structure, so
```
PHONE_CAR_BOARD_CONFIG := device/google_car/foo/BoardConfig.mk
....
include $(PHONE_CARD_BOARD_CONFIG)
```
can be changed to
```
PHONE_CAR_BOARD_PRODUCT := foo
....
include device/google_car/$(PHONE_CAR_BOARD_PRODUCT)/BoardConfig.mk
```
Bug: 190051051
Test: treehugger
Change-Id: I3b6e8e1aabfb373ab84c756c109b04893d2e8481
2021-08-10 22:30:05 +00:00
YiHo Cheng
17a3c50ac8
thermal: Update thermal table am: 0f5f85413d am: 167e057207 am: 1997c557c4 am: 77eb14aba5
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: I05ec8fb0bdd33399609193a19233146f0e055530
2021-08-10 03:03:04 +00:00
YiHo Cheng
50e6fa7116
thermal: Update thermal table am: 0f5f85413d am: 167e057207 am: 8c9555610c am: 601d06cfd0
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: I962909278c99eb3ec0d21db68bd41a6bebe1872a
2021-08-10 03:02:53 +00:00
YiHo Cheng
94c7f10bd0
thermal: Update thermal table am: 0f5f85413d am: c99c7d7b19 am: 7ac1aa4bf7 am: 49c2ffd9e5
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: Ieda7ba137daeeb9303666cb7d0ca17c8281a67c3
2021-08-10 03:02:25 +00:00
YiHo Cheng
c21301dbf6
thermal: Update thermal table am: 0f5f85413d am: 167e057207 am: 1997c557c4
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: Ifb3db4a0716769e8bb70119dc6edd71c3801c626
2021-08-10 02:45:17 +00:00
YiHo Cheng
a711eeb399
thermal: Update thermal table am: 0f5f85413d am: 167e057207 am: 8c9555610c
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: I4a344635bd10d5a095c48f3482d2932f62eb5ed7
2021-08-10 02:44:51 +00:00
YiHo Cheng
f317280548
thermal: Update thermal table am: 0f5f85413d am: c99c7d7b19 am: 7ac1aa4bf7
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: I575fdbcaad8efb09e524869714437e312a05d68e
2021-08-10 02:44:42 +00:00
YiHo Cheng
48d1e534e0
thermal: Update thermal table am: 0f5f85413d am: 167e057207
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: I117f0a856d35229f86a0b214477d6c23be3bc657
2021-08-10 02:31:37 +00:00
YiHo Cheng
e088180966
thermal: Update thermal table am: 0f5f85413d am: 167e057207
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: I623528f0675e01b0efaf395e489cc19c02ef1980
2021-08-10 02:31:30 +00:00
YiHo Cheng
c866037b73
thermal: Update thermal table am: 0f5f85413d am: c99c7d7b19
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: Ie357f1bfabf963c7f23f91c2aa64f9e775b7c56d
2021-08-10 02:30:58 +00:00
YiHo Cheng
849bf9c745
thermal: Update thermal table am: 0f5f85413d
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: Ib1610bb1f3612417d0151a55a17e2442efbf482f
2021-08-10 02:09:51 +00:00
YiHo Cheng
db3d9d4643
thermal: Update thermal table am: 0f5f85413d
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15472392
Change-Id: I5798de6da785d4e4e801c9415d09399d6607d54d
2021-08-10 02:08:55 +00:00
YiHo Cheng
773ca4e2ae
thermal: Update thermal table
...
Update pid related settings to get thermal pid control work for o6
proto.
Bug: 195617178
Test: run burn8 and emul_temp to check if pid thermal control work
Change-Id: I82e1a9271cef480b7a4cf33fe0d827316521e93c
2021-08-10 01:59:26 +00:00
YiHo Cheng
00d47bf65f
thermal: Update thermal table am: c86dcb9f96 am: 7a7d56e53d am: 5c6b64fec2 am: 3ffb6987b3
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: Ifa85e0d4418d79f64c5cff938a14fd866819aea6
2021-08-09 19:10:08 +00:00
YiHo Cheng
2859ae5e5e
thermal: Update thermal table am: c86dcb9f96 am: 7a7d56e53d am: 0daa227d0f am: 4110a0caf9
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: I758dc3192b5c214d66c5f55727fa36ad07d2ecf1
2021-08-09 19:10:01 +00:00
YiHo Cheng
6a25fc9313
thermal: Update thermal table am: c86dcb9f96 am: 56a6b14935 am: 1e09ebd1e8 am: efc994d435
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: I28be5f7d36d10b05662b095e708fb8405bab2f27
2021-08-09 19:09:34 +00:00
YiHo Cheng
27ef0f3db6
thermal: Update thermal table am: c86dcb9f96 am: 7a7d56e53d am: 5c6b64fec2
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: Ia81ee32a33a1bba8ab851c7a3ec7f6cbb90a8941
2021-08-09 18:50:52 +00:00
YiHo Cheng
84e9fb9632
thermal: Update thermal table am: c86dcb9f96 am: 7a7d56e53d am: 0daa227d0f
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: I77fe3e9ba4e92b19d112dddf7f226be2ad153bde
2021-08-09 18:50:37 +00:00
YiHo Cheng
abd34a30db
thermal: Update thermal table am: c86dcb9f96 am: 56a6b14935 am: 1e09ebd1e8
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: I42a1522f5ba4368fa61d95d007e0ecca51fd0fcb
2021-08-09 18:50:33 +00:00
YiHo Cheng
b1ff358983
thermal: Update thermal table am: c86dcb9f96 am: 7a7d56e53d
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: I6beea23cde62b9abd32d9f741d9a0030258a359f
2021-08-09 18:37:19 +00:00
YiHo Cheng
58e1447a12
thermal: Update thermal table am: c86dcb9f96 am: 7a7d56e53d
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: I9eebfb99ca793ccda0174510304a5072d1c5ad69
2021-08-09 18:37:13 +00:00
YiHo Cheng
f9f2be685a
thermal: Update thermal table am: c86dcb9f96 am: 56a6b14935
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: Iaf059f6074cbe0ca537b378a5b21fb2f3679bffa
2021-08-09 18:37:04 +00:00
YiHo Cheng
ff3df4c5d0
thermal: Update thermal table am: c86dcb9f96
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: I52c9e91c5284f981fb417ad5a6d8e574bf32975f
2021-08-09 18:24:25 +00:00
YiHo Cheng
53fabda8a7
thermal: Update thermal table am: c86dcb9f96
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15471526
Change-Id: Ie366c41c0ee202fb5128d9f734360bb35944c461
2021-08-09 18:23:43 +00:00
YiHo Cheng
6f960da38c
thermal: Update thermal table
...
There are two addtional OPPs for MID cpu so update power table to keep
align with dvt power table dump data to kick off MID cpu throttling in
time for thermal protection.
Bug: 195617178
Test: use emul_temp and burn8 to check throttling worked as expected
Change-Id: I2b9b3549ab97409920acdd7d0e9f1946bcf0678b
2021-08-09 18:03:09 +00:00
Bill Lin
4c40debc4d
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: 698f40c395 am: 0fa26394d2 am: 8256a9c0c7
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: Idc4e8aae4d51ed417e34e7ffd46962574fcc645c
2021-08-07 10:25:17 +00:00
Bill Lin
bd5ef39ec6
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: 698f40c395 am: 4c71cd9947 am: 02c2d60120
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: I83f84dc786d4b9409d0d7503bb35c4c09cfef302
2021-08-07 10:25:13 +00:00
Bill Lin
3a3e57be61
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: f209abfba3 am: f4e9de8011 am: 83f00d2add
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: Ib5c64fac805fd2f6a10d841609ec8441650d2aeb
2021-08-07 10:25:07 +00:00
Bill Lin
0370726765
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: 698f40c395 am: 0fa26394d2
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: Ia0fa9d5f98983ac519024a025d1f011037156ad9
2021-08-07 10:17:31 +00:00
Bill Lin
2925668e39
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: 698f40c395 am: 4c71cd9947
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: Ia954676956bbd442ae7bc17f27b2afbb69c01a3e
2021-08-07 10:16:49 +00:00
Bill Lin
5eb54ba51a
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: f209abfba3 am: f4e9de8011
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: I73a730c9dcd25554d8fcfae53d2a40ebe8a2f171
2021-08-07 10:16:45 +00:00
Bill Lin
3d0c592847
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: 698f40c395
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: I6df7642778e187658c0c5a4e02c53fcfbca57326
2021-08-07 09:59:19 +00:00
Bill Lin
c74b2f483c
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: 698f40c395
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: Ie2be97d938c16a866d7cf7c1ae2ff6447146f8b3
2021-08-07 09:59:19 +00:00
Bill Lin
c751969f4a
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1 am: f209abfba3
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: I25f26d5a9cb59e9077d85af74e6d5b5c792d6cea
2021-08-07 09:59:03 +00:00
Bill Lin
5078110ce2
Fix system icons container x-axis shift between Keyguard/Home StatusBar am: 95721dbff1
...
Original change: https://googleplex-android-review.googlesource.com/c/device/google/raviole/+/15481536
Change-Id: If8eaf8aabe1cf5d4feb6355923e26bbe9fa34bbe
2021-08-07 09:44:46 +00:00