Files
OpenCellular/include/extpower.h
Vic Yang 7e49fb5ef4 Rename extpower_usb to extpower_spring
The ID detection and charging circuits on Spring are very different from
that on Kirby. PWM current limit is no longer used. The ID detection
sequence is also different. Also, there is no boost circuit on Kirby.

Given those hardware issues that we had to work around on Spring, it's
unlikely that we will have another board that shares the same/similar
ID detection design with Spring. Let's rename extpower_usb to
extpower_spring to better reflect this.

BUG=None
TEST=Build and boot Spring.
BRANCH=None

Change-Id: I7c212a121eed55665593cb7e1b2b672891819940
Signed-off-by: Vic Yang <victoryang@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/67031
2013-08-28 01:54:48 +00:00

36 lines
796 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.
*/
/* External power detection API for Chrome EC */
#ifndef __CROS_EC_EXTPOWER_H
#define __CROS_EC_EXTPOWER_H
#include "common.h"
#ifdef CONFIG_EXTPOWER_SPRING
/* Spring-USB-power-specific methods */
#include "extpower_spring.h"
#endif
/**
* Return non-zero if external power is present.
*/
int extpower_is_present(void);
/**
* Interrupt handler for external power GPIOs.
*
* @param signal Signal which triggered the interrupt.
*/
void extpower_interrupt(enum gpio_signal signal);
#ifdef CONFIG_EXTPOWER_FALCO
/* Adapter-specific logic */
#include "extpower_falco.h"
#endif
#endif /* __CROS_EC_EXTPOWER_H */