summaryrefslogtreecommitdiff
path: root/common/hooks.c
diff options
context:
space:
mode:
authorDavid Hendricks <dhendrix@chromium.org>2012-08-29 12:03:56 -0700
committerGerrit <chrome-bot@google.com>2012-08-29 18:16:46 -0700
commit8cb10aaf5b9dc20517d74cbde2267cbd03b779c7 (patch)
tree150aab5a8057cc872b1d7eedaf6e62ee441668f6 /common/hooks.c
parent23995de3ee9f041ad8b1e1ed4e7002e871af0e9d (diff)
downloadchrome-ec-8cb10aaf5b9dc20517d74cbde2267cbd03b779c7.tar.gz
add a new hook for pre-chipset startup
This adds a new hook that is intended to be called immediately before host chipset/AP startup to initialize components such as the PMU. Signed-off-by: David Hendricks <dhendrix@chromium.org> BRANCH=snow BUG=chrome-os-partner:13315 TEST=tested in subsequent patches Change-Id: I2b38208de9f0f51abc0b22c49547ee0c4c889b82 Reviewed-on: https://gerrit.chromium.org/gerrit/31738 Reviewed-by: Charlie Mooney <charliemooney@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org> Commit-Ready: David Hendricks <dhendrix@chromium.org> Tested-by: David Hendricks <dhendrix@chromium.org>
Diffstat (limited to 'common/hooks.c')
-rw-r--r--common/hooks.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/hooks.c b/common/hooks.c
index 30154a1060..e51503ed31 100644
--- a/common/hooks.c
+++ b/common/hooks.c
@@ -20,6 +20,7 @@ static const struct hook_ptrs hook_list[] = {
{__hooks_init, __hooks_init_end},
{__hooks_freq_change, __hooks_freq_change_end},
{__hooks_sysjump, __hooks_sysjump_end},
+ {__hooks_chipset_pre_init, __hooks_chipset_pre_init_end},
{__hooks_chipset_startup, __hooks_chipset_startup_end},
{__hooks_chipset_resume, __hooks_chipset_resume_end},
{__hooks_chipset_suspend, __hooks_chipset_suspend_end},