blob: 38a97d82cbd7e1a27d9eb69f27fed246d7a96eb1 [file] [log] [blame]
Furquan Shaikh84bbab92014-06-24 17:38:03 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Furquan Shaikh84bbab92014-06-24 17:38:03 -070014 */
15
Aaron Durbin44e5e4c2014-08-05 13:30:38 -050016#include <reset.h>
Furquan Shaikh84bbab92014-06-24 17:38:03 -070017
Aaron Durbin44e5e4c2014-08-05 13:30:38 -050018/*
19 * Promote cpu_reset() to a hard_reset(). A shallower reset can be added,
20 * if needed, at a later time.
21 */
22void cpu_reset(void)
23{
24 hard_reset();
25}