coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
reset.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <gpio.h>
4 #include <reset.h>
5 
6 void do_board_reset(void)
7 {
8  gpio_output(GPIO(I5), 0);
9 }
@ GPIO
Definition: chip.h:84
void gpio_output(gpio_t gpio, int value)
Definition: gpio.c:194
void do_board_reset(void)
Definition: reset.c:8