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