mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
The voltage rails, inputs, and sequencing is completely different. Easiest to just handle it separately for each chipset. BUG=chrome-os-partner:18825 BRANCH=slippy TEST=manual Built Link, still works. Change-Id: Ibf26ef47cdf2284b7bfb3a2e5ccfb6841aba5ac6 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/49559 Reviewed-by: Randall Spangler <rspangler@chromium.org>
19 lines
435 B
C
19 lines
435 B
C
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* x86 power module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_X86_POWER_H
|
|
#define __CROS_EC_X86_POWER_H
|
|
|
|
#include "gpio.h"
|
|
|
|
/**
|
|
* Interrupt handler for x86 chipset GPIOs.
|
|
*/
|
|
void x86_power_interrupt(enum gpio_signal signal);
|
|
|
|
#endif /* __CROS_EC_X86_POWER_H */
|