summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu-An Chen <yu-an.chen@quanta.corp-partner.google.com>2022-06-01 15:32:00 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-02 07:14:17 +0000
commit9caff41316064a23eb0e05ff51d93bbb51fc38bf (patch)
tree145fd4b23a84718eba17ebd444b359b358f9c95d
parent12719d2cb9a142a4329e456c37d9075bfa85e4a3 (diff)
downloadchrome-ec-9caff41316064a23eb0e05ff51d93bbb51fc38bf.tar.gz
osiris: Update PWM setting
Update PWM setting, osiris PWM setting is follow kano BUG=b:234545460 b:229039902 BRANCH=none TEST=build pass Signed-off-by: Yu-An Chen <yu-an.chen@quanta.corp-partner.google.com> Change-Id: I2c9aeee96be7869008f6b98029bdf242d67d8afa Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3682985 Reviewed-by: Kenny Pan <kennypan@google.com>
-rw-r--r--board/osiris/pwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/osiris/pwm.c b/board/osiris/pwm.c
index 0d31ae1d37..530a777a8f 100644
--- a/board/osiris/pwm.c
+++ b/board/osiris/pwm.c
@@ -20,12 +20,12 @@ const struct pwm_t pwm_channels[] = {
* lower PWM frequencies, but higher frequencies record a much
* lower maximum power.
*/
- .freq = 2400,
+ .freq = 25000,
},
[PWM_CH_FAN] = {
.channel = 5,
- .flags = PWM_CONFIG_OPEN_DRAIN | PWM_CONFIG_DSLEEP,
- .freq = 1000
+ .flags = PWM_CONFIG_OPEN_DRAIN,
+ .freq = 25000
},
};
BUILD_ASSERT(ARRAY_SIZE(pwm_channels) == PWM_CH_COUNT);