summaryrefslogtreecommitdiffstats
path: root/src/superio/ite
diff options
context:
space:
mode:
authorMichael Büchler <michael.buechler@posteo.net>2020-08-02 15:38:10 +0200
committerFelix Held <felix-coreboot@felixheld.de>2020-08-10 12:44:17 +0000
commita815272b7b9dbf23ac170ec6c7ec44093cd52406 (patch)
tree412fa100dc58d01a3271270cc0bdc04c8e7c4efa /src/superio/ite
parente693b1d549621acfd20aaad876d4d5888ad5ca99 (diff)
downloadcoreboot-a815272b7b9dbf23ac170ec6c7ec44093cd52406.tar.gz
coreboot-a815272b7b9dbf23ac170ec6c7ec44093cd52406.tar.bz2
coreboot-a815272b7b9dbf23ac170ec6c7ec44093cd52406.zip
superio/ite: allow 24 MHz clock for external sensor interface
The interface selection register of the environment controller (EC) gives the choice between "Internal generated 32 MHz" and "24 MHz" for the "SST/PECI Host Controller Clock Selection". Previously the chip was always configured for the 32 MHz clock. Add an option that can be set from devicetree.cb to allow using the 24 MHz clock. Without this setting the automatic fan control on an Acer Aspire M3800 was slow to respond to temperature changes. Signed-off-by: Michael Büchler <michael.buechler@posteo.net> Change-Id: Ib2bce10a828fb4a7d837f6c5f5b1d00cc51be0ce Reviewed-on: https://review.coreboot.org/c/coreboot/+/44166 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/superio/ite')
-rw-r--r--src/superio/ite/common/env_ctrl.c7
-rw-r--r--src/superio/ite/common/env_ctrl_chip.h5
2 files changed, 12 insertions, 0 deletions
diff --git a/src/superio/ite/common/env_ctrl.c b/src/superio/ite/common/env_ctrl.c
index fbf74468b009..866811071367 100644
--- a/src/superio/ite/common/env_ctrl.c
+++ b/src/superio/ite/common/env_ctrl.c
@@ -264,6 +264,13 @@ void ite_ec_init(const u16 base, const struct ite_ec_config *const conf)
ITE_EC_INTERFACE_SMB_ENABLE);
}
+ /* Set SST/PECI Host Controller Clock to either 24 MHz or internal 32 MHz */
+ if (conf->smbus_24mhz) {
+ pnp_write_hwm5_index(base, ITE_EC_INTERFACE_SELECT,
+ pnp_read_hwm5_index(base, ITE_EC_INTERFACE_SELECT) |
+ ITE_EC_INTERFACE_CLOCK_24MHZ);
+ }
+
/* Enable reading of voltage pins */
pnp_write_hwm5_index(base, ITE_EC_ADC_VOLTAGE_CHANNEL_ENABLE, conf->vin_mask);
diff --git a/src/superio/ite/common/env_ctrl_chip.h b/src/superio/ite/common/env_ctrl_chip.h
index 09577a4d84e9..fa896e40748a 100644
--- a/src/superio/ite/common/env_ctrl_chip.h
+++ b/src/superio/ite/common/env_ctrl_chip.h
@@ -91,6 +91,11 @@ struct ite_ec_config {
* Enable SMBus for external thermal sensor.
*/
bool smbus_en;
+ /*
+ * Select 24 MHz clock for external host instead of an
+ * internally generated 32 MHz clock.
+ */
+ bool smbus_24mhz;
};
/* Some shorthands for device trees */