summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801ca/i82801ca_reset.c
blob: 93ef6d9f238e466ac60a97f83ddf8969daa1d668 (plain)
1
2
3
4
5
6
7
8
#include <arch/io.h>

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