blob: 925d64d9413cdcc588a21aaf2c6a73ae118b79a1 [file] [log] [blame]
/*
* Copyright (c) 2011 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.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*/
#include <common.h>
#include <chromeos/common.h>
#include <chromeos/cros_gpio.h>
#include <vboot_api.h>
#include "boot_device.h"
#define PREFIX "misc: "
uint32_t VbExIsShutdownRequested(void)
{
cros_gpio_t lidsw, pwrsw;
/* if lid is NOT OPEN */
if (!cros_gpio_fetch(CROS_GPIO_LIDSW, &lidsw) && !lidsw.value) {
VBDEBUG(PREFIX "Lid-closed is detected.\n");
return 1;
}
/* if power switch is pressed */
if (!cros_gpio_fetch(CROS_GPIO_PWRSW, &pwrsw) && pwrsw.value) {
VBDEBUG(PREFIX "Power-key-pressed is detected.\n");
return 1;
}
/*
* Either the gpios don't exist, or the lid is up and and power button
* is not pressed. No-Shutdown-Requested.
*/
return 0;
}
int vbexport_init(void)
{
int err = boot_device_init();
if (err) {
printf("vbexport_init: boot devices probe failed\n");
return -1;
}
return 0;
}