aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801ex/i82801ex_reset.c
blob: a1d92a7cc1501c5b19979a40b5a602c178f6e055 (plain)
1
2
3
4
5
6
7
#include <arch/io.h>

void i82801ex_hard_reset(void)
{
        /* Try rebooting through port 0xcf9 */
        outb((0 <<3)|(1<<2)|(1<<1), 0xcf9);
}