summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801cx/reset.c
blob: 6883ff089b07f355ce4f3520e6b6100d1d98cc25 (plain)
1
2
3
4
5
6
7
8
9
#include <arch/io.h>
#include <reset.h>

void hard_reset(void)
{
        /* Try rebooting through port 0xcf9 */
        // Hard reset without power cycle
        outb((0 <<3)|(1<<2)|(1<<1), 0xcf9);
}