summaryrefslogtreecommitdiff
path: root/test/test_config.h
diff options
context:
space:
mode:
authorShawn Nematbakhsh <shawnn@chromium.org>2016-01-06 17:02:49 -0800
committerchrome-bot <chrome-bot@chromium.org>2016-01-07 20:12:58 -0800
commit126f48aa3f31065cb0f340a68219fa7894f1b53b (patch)
tree1ab62633dfe39d3956ec549d2da86d7f02b8b444 /test/test_config.h
parentc7c04e673efe535e00003fa66c83f7b19a5a0786 (diff)
downloadchrome-ec-126f48aa3f31065cb0f340a68219fa7894f1b53b.tar.gz
pd: Add common EC_HOST_EVENT_PD_MCU implementation
For TCPMs with an off chip TCPC, PD MCU host event status can be handled in a common way. When a status flag is updated (ex. from charge_manager), notify the AP through the host event, and save the status flag for later retrieval. BUG=chrome-os-partner:49124 BRANCH=None TEST=Verify `cat /sys/class/power_supply/CROS_USB_PD_CHARGER1/online` on chell reflects the actual online status of the charger. Also verify UI charge icon tracks the online status correctly. Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Change-Id: I63bc70205627474590e38ffd282faedaea3bcc66 Reviewed-on: https://chromium-review.googlesource.com/320796 Commit-Ready: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Benson Leung <bleung@chromium.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Diffstat (limited to 'test/test_config.h')
-rw-r--r--test/test_config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_config.h b/test/test_config.h
index c2887ae1cc..d7e4b7b172 100644
--- a/test/test_config.h
+++ b/test/test_config.h
@@ -149,5 +149,10 @@ int ncp15wb_calculate_temp(uint16_t adc);
#define CONFIG_USB_PD_PORT_COUNT 2
#endif
+#ifndef __ASSEMBLER__
+/* Callback function from charge_manager to send host event */
+static inline void pd_send_host_event(int mask) { }
+#endif
+
#endif /* TEST_BUILD */
#endif /* __TEST_TEST_CONFIG_H */