From c215c50a5bb982b0e671c951e2fe8df06db85db2 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 7 Apr 2014 01:19:27 -0700 Subject: [PATCH] nyan*: Reduce the EC SPI bus frequency to 3 MHz. The EC doesn't seem to be able to handle its bus running at 4 MHz or higher. To avoid it not being able to keep up, we reduce the frequency of that bus on all nyan derivatives to 3 MHz. Because PLLP can't be divided that low, we switch the clock source to CLKM. BUG=chrome-os-partner:22849 TEST=Built and booted on nyan. BRANCH=None Change-Id: I8f31b41098d64634427b4686f5333012f643fada Signed-off-by: Gabe Black Reviewed-on: https://chromium-review.googlesource.com/193349 Commit-Queue: Gabe Black Tested-by: Gabe Black Reviewed-by: Gabe Black --- src/mainboard/google/nyan/romstage.c | 2 +- src/mainboard/google/nyan_big/romstage.c | 2 +- src/mainboard/google/nyan_blaze/romstage.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mainboard/google/nyan/romstage.c b/src/mainboard/google/nyan/romstage.c index eeec9bdb56..7310cc873a 100644 --- a/src/mainboard/google/nyan/romstage.c +++ b/src/mainboard/google/nyan/romstage.c @@ -129,7 +129,7 @@ static void setup_pinmux(void) static void configure_ec_spi_bus(void) { - clock_configure_source(sbc1, PLLP, 5000); + clock_configure_source(sbc1, CLK_M, 3000); } static void configure_tpm_i2c_bus(void) diff --git a/src/mainboard/google/nyan_big/romstage.c b/src/mainboard/google/nyan_big/romstage.c index 6327c97ba3..d7cc1bf3a3 100644 --- a/src/mainboard/google/nyan_big/romstage.c +++ b/src/mainboard/google/nyan_big/romstage.c @@ -129,7 +129,7 @@ static void setup_pinmux(void) static void configure_ec_spi_bus(void) { - clock_configure_source(sbc1, PLLP, 5000); + clock_configure_source(sbc1, CLK_M, 3000); } static void configure_tpm_i2c_bus(void) diff --git a/src/mainboard/google/nyan_blaze/romstage.c b/src/mainboard/google/nyan_blaze/romstage.c index 6327c97ba3..d7cc1bf3a3 100644 --- a/src/mainboard/google/nyan_blaze/romstage.c +++ b/src/mainboard/google/nyan_blaze/romstage.c @@ -129,7 +129,7 @@ static void setup_pinmux(void) static void configure_ec_spi_bus(void) { - clock_configure_source(sbc1, PLLP, 5000); + clock_configure_source(sbc1, CLK_M, 3000); } static void configure_tpm_i2c_bus(void)