blob: f6dae0a9a4492ecacf4c40c879e2e11a2f54cadb [file] [log] [blame]
Zheng Baoeff2ffd2010-03-16 01:38:54 +00001/*
2 * This file is part of the coreboot project.
3 *
efdesign9800c8c4a2011-07-20 12:37:58 -06004 * Copyright (C) 2010 - 2011 Advanced Micro Devices, Inc.
Zheng Baoeff2ffd2010-03-16 01:38:54 +00005 *
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Zheng Baoeff2ffd2010-03-16 01:38:54 +000018 */
19
Kyösti Mälkkief844012013-06-25 23:17:43 +030020// Use simple device model for this file even in ramstage
21#define __SIMPLE_DEVICE__
22
Stefan Reinauer24d1d4b2013-03-21 11:51:41 -070023#include <arch/io.h>
24#include <reset.h>
Zheng Baoeff2ffd2010-03-16 01:38:54 +000025
efdesign9800c8c4a2011-07-20 12:37:58 -060026#define HT_INIT_CONTROL 0x6C
27#define HTIC_BIOSR_Detect (1<<5)
28
29#if CONFIG_MAX_PHYSICAL_CPUS > 32
30#define NODE_PCI(x, fn) ((x<32)?(PCI_DEV(CONFIG_CBB,(CONFIG_CDB+x),fn)):(PCI_DEV((CONFIG_CBB-1),(CONFIG_CDB+x-32),fn)))
31#else
32#define NODE_PCI(x, fn) PCI_DEV(CONFIG_CBB,(CONFIG_CDB+x),fn)
33#endif
34
35static void set_bios_reset(void)
36{
37 u32 nodes;
38 u32 htic;
Kyösti Mälkki3f9a62e2013-06-20 20:25:21 +030039 pci_devfn_t dev;
efdesign9800c8c4a2011-07-20 12:37:58 -060040 int i;
41
42 nodes = ((pci_read_config32(PCI_DEV(CONFIG_CBB, CONFIG_CDB, 0), 0x60) >> 4) & 7) + 1;
43 for(i = 0; i < nodes; i++) {
44 dev = NODE_PCI(i, 0);
45 htic = pci_read_config32(dev, HT_INIT_CONTROL);
46 htic &= ~HTIC_BIOSR_Detect;
47 pci_write_config32(dev, HT_INIT_CONTROL, htic);
48 }
49}
Zheng Baoeff2ffd2010-03-16 01:38:54 +000050
51void hard_reset(void)
52{
53 set_bios_reset();
efdesign9800c8c4a2011-07-20 12:37:58 -060054
Zheng Baoeff2ffd2010-03-16 01:38:54 +000055 /* Try rebooting through port 0xcf9 */
efdesign9800c8c4a2011-07-20 12:37:58 -060056 /* Actually it is not a real hard_reset
57 * --- it only reset coherent link table, but not reset link freq and width
58 */
Zheng Baoeff2ffd2010-03-16 01:38:54 +000059 outb((0 << 3) | (0 << 2) | (1 << 1), 0xcf9);
60 outb((0 << 3) | (1 << 2) | (1 << 1), 0xcf9);
61}
efdesign9800c8c4a2011-07-20 12:37:58 -060062
63void soft_reset(void)
64{
65 set_bios_reset();
66 /* link reset */
67 outb(0x06, 0x0cf9);
68}