blob: 2574565f7513a4b9aadd90290132706b1e0f57ed [file] [log] [blame]
Patrick Georgibe61a172010-12-18 07:48:43 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Patrick Georgibe61a172010-12-18 07:48:43 +000015 */
16
17#include <arch/io.h>
18#include <reset.h>
19
20void soft_reset(void)
21{
Uwe Hermann405721d2010-12-18 13:22:37 +000022 outb(0x04, 0xcf9);
Patrick Georgibe61a172010-12-18 07:48:43 +000023}
24
25void hard_reset(void)
26{
Uwe Hermann405721d2010-12-18 13:22:37 +000027 outb(0x02, 0xcf9);
28 outb(0x06, 0xcf9);
Patrick Georgibe61a172010-12-18 07:48:43 +000029}