This does the following:
[coreboot.git] / src / southbridge / intel / i82801cx / i82801cx_reset.c
1 #include <arch/io.h>
2
3 void i82801cx_hard_reset(void)
4 {
5         /* Try rebooting through port 0xcf9 */
6         // Hard reset without power cycle
7         outb((0 <<3)|(1<<2)|(1<<1), 0xcf9);
8 }