summaryrefslogtreecommitdiff
path: root/src/superio/ite/it8629e/chip.h
diff options
context:
space:
mode:
authorNicholas Sudsgaard <devel+coreboot@nsudsgaard.com>2024-02-05 15:54:56 +0900
committerFelix Held <felix-coreboot@felixheld.de>2024-02-26 12:59:19 +0000
commitcaabde1806dc3942da7d34e9d97d9f101592e705 (patch)
treeb814e15e0627ce144d4cd5a9be4114f0f3bc25cb /src/superio/ite/it8629e/chip.h
parent0a1d68ff807071ed55dc256bd48ecd983d3075b4 (diff)
superio/ite: Add IT8629E
Unfortunately, the datasheet for IT8629E is not public. Therefore, we will use the functionally closest chip (i.e. IT8728F) as a reference and try to reverse-engineer where necessary. IT8629E seems to be very similar to IT8628E (again, no public datasheets), as the chip id is 0x8628. Known differences: - LDN 0x08 (functionality is unknown) - Supports 6 fans Change-Id: I44d0377da11f0e118017caa4357012df9373b322 Signed-off-by: Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/80344 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/superio/ite/it8629e/chip.h')
-rw-r--r--src/superio/ite/it8629e/chip.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/superio/ite/it8629e/chip.h b/src/superio/ite/it8629e/chip.h
new file mode 100644
index 0000000000..bad026681b
--- /dev/null
+++ b/src/superio/ite/it8629e/chip.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#ifndef SUPERIO_ITE_IT8629E_CHIP_H
+#define SUPERIO_ITE_IT8629E_CHIP_H
+
+#include <superio/ite/common/env_ctrl_chip.h>
+
+struct superio_ite_it8629e_config {
+ struct ite_ec_config ec;
+};
+
+#endif /* SUPERIO_ITE_IT8629E_CHIP_H */