aboutsummaryrefslogtreecommitdiff
path: root/src/ec/google/chromeec/chip.h
diff options
context:
space:
mode:
authorTim Wawrzynczak <twawrzynczak@chromium.org>2020-09-30 13:12:26 -0600
committerTim Wawrzynczak <twawrzynczak@chromium.org>2020-10-30 15:23:34 +0000
commite7881ed447c9a6ce5aea99f53c12f5c43fbd81dd (patch)
tree916be1d28867f07e583b0f8d818e5ef714d20688 /src/ec/google/chromeec/chip.h
parentdd0066a91957cb3ec036a2466a66d86069edc5d2 (diff)
soc/intel/tigerlake: Replace soc_get_pmc_mux_device with device pointers
Now that device aliases can be used in the devicetree, the hacky function 'soc_get_pmc_mux_device' can be removed and replaced with pointers to the devices the function was supposed to return (1 for each port). Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Change-Id: Ie00834c79bd5304998adaccb388ae74a108192b1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/45747 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/google/chromeec/chip.h')
-rw-r--r--src/ec/google/chromeec/chip.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ec/google/chromeec/chip.h b/src/ec/google/chromeec/chip.h
index 9bfb1c4fd1..3915cf92e7 100644
--- a/src/ec/google/chromeec/chip.h
+++ b/src/ec/google/chromeec/chip.h
@@ -3,7 +3,14 @@
#ifndef EC_GOOGLE_CHROMEEC_CHIP_H
#define EC_GOOGLE_CHROMEEC_CHIP_H
+#include <device/device.h>
+#include <stddef.h>
+
+#define MAX_TYPEC_PORTS 4
+
struct ec_google_chromeec_config {
+ /* Pointer to PMC Mux connector for each Type-C port */
+ DEVTREE_CONST struct device *mux_conn[MAX_TYPEC_PORTS];
};
#endif /* EC_GOOGLE_CHROMEEC_CHIP_H */