summaryrefslogtreecommitdiff
path: root/src/mainboard/supermicro/x6dai_g/reset.c
blob: 2f21605e7c6ae398173fa8254e514b5c79d857f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <arch/io.h>
#include <reset.h>

void soft_reset(void)
{
        outb(0x04, 0xcf9);
}
void hard_reset(void)
{
        outb(0x02, 0xcf9);
        outb(0x06, 0xcf9);
}