Files
cdba/alpaca.h
Bjorn Andersson 0d7ff9e782 alpaca: Hold volume down during boot
For some devices to reliably boot into fastboot mode volume down needs
to be held, so do this as we power on the device and release it as
fastboot appears.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2020-10-19 11:59:19 -05:00

14 lines
265 B
C

#ifndef __ALPACA_H__
#define __ALPACA_H__
#include "device.h"
struct alpaca;
void *alpaca_open(struct device *dev);
int alpaca_power_on(struct device *dev);
int alpaca_power_off(struct device *dev);
void alpaca_fastboot_key(struct device *dev, bool on);
#endif