Julius Werner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/32466 )
Change subject: google/kukui: Raising the CPU frequency
......................................................................
Patch Set 3:
Please add explicit measurements if you want to guarantee a certain minimum settle time. You could do something like this:
struct stopwatch voltage_settled;
void function_that_increases_voltage()
{
...voltage increase...
stopwatch_init_usecs_expire(&voltage_settled, 200);
}
void mt6358_init()
{
...other stuff...
while (!stopwatch_expired(&voltage_settled))
/* wait for voltages to settle */;
}
--
To view, visit
https://review.coreboot.org/c/coreboot/+/32466
To unsubscribe, or for help writing mail filters, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I703ffcb99367f87e6792a72485f5634e0505e5ac
Gerrit-Change-Number: 32466
Gerrit-PatchSet: 3
Gerrit-Owner: Tristan Hsieh
tristan.shieh@mediatek.com
Gerrit-Reviewer: Hung-Te Lin
hungte@chromium.org
Gerrit-Reviewer: Julius Werner
jwerner@chromium.org
Gerrit-Reviewer: Tristan Hsieh
tristan.shieh@mediatek.com
Gerrit-Reviewer: Weiyi Lu
weiyi.lu@mediatek.com
Gerrit-Reviewer: You-Cheng Syu
youcheng@google.com
Gerrit-Reviewer: build bot (Jenkins)
no-reply@coreboot.org
Gerrit-Reviewer: hsin-hsiung wang
hsin-hsiung.wang@mediatek.com
Gerrit-Comment-Date: Fri, 26 Apr 2019 21:25:14 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment