summaryrefslogtreecommitdiff
path: root/baseboard/trogdor/hibernate.c
blob: c28082e75dcf6f07e8c9d03996360ec9722e09f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright 2021 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.
 */

#include "gpio.h"
#include "system.h"

void board_hibernate_late(void)
{
	/* Set the hibernate GPIO to turn off the rails */
	gpio_set_level(GPIO_HIBERNATE_L, 0);
}