blob: db0aebb9ee615936fc2dacd371f557b7accaaa43 [file] [log] [blame]
Kerry Sheha3f06072012-02-07 20:32:38 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 - 2012 Advanced Micro Devices, 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.
Kerry Sheha3f06072012-02-07 20:32:38 +080014 */
15
Kyösti Mälkkief844012013-06-25 23:17:43 +030016// Use simple device model for this file even in ramstage
17#define __SIMPLE_DEVICE__
18
Stefan Reinauer24d1d4b2013-03-21 11:51:41 -070019#include <arch/io.h>
Nico Huber3e1b3b12018-10-07 12:45:47 +020020#include <cf9_reset.h>
Kerry Sheha3f06072012-02-07 20:32:38 +080021#include <reset.h>
Kerry Sheha3f06072012-02-07 20:32:38 +080022
23#define HT_INIT_CONTROL 0x6C
24#define HTIC_BIOSR_Detect (1<<5)
25
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020026#define DEV_CDB 0x18
27#define NODE_PCI(x, fn) (((DEV_CDB+x)<32)?(PCI_DEV(0,(DEV_CDB+x),fn)):(PCI_DEV((0-1),(DEV_CDB+x-32),fn)))
Kerry Sheha3f06072012-02-07 20:32:38 +080028
Nico Huber3e1b3b12018-10-07 12:45:47 +020029void cf9_reset_prepare(void)
Kerry Sheha3f06072012-02-07 20:32:38 +080030{
31 u32 nodes;
32 u32 htic;
Kyösti Mälkki3f9a62e2013-06-20 20:25:21 +030033 pci_devfn_t dev;
Kerry Sheha3f06072012-02-07 20:32:38 +080034 int i;
35
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020036 nodes = ((pci_read_config32(PCI_DEV(0, DEV_CDB, 0), 0x60) >> 4) & 7) + 1;
Elyes HAOUASba28e8d2016-08-31 19:22:16 +020037 for (i = 0; i < nodes; i++) {
Kerry Sheha3f06072012-02-07 20:32:38 +080038 dev = NODE_PCI(i, 0);
39 htic = pci_read_config32(dev, HT_INIT_CONTROL);
40 htic &= ~HTIC_BIOSR_Detect;
41 pci_write_config32(dev, HT_INIT_CONTROL, htic);
42 }
43}
44
Nico Huber3e1b3b12018-10-07 12:45:47 +020045void do_board_reset(void)
Kerry Sheha3f06072012-02-07 20:32:38 +080046{
Nico Huber3e1b3b12018-10-07 12:45:47 +020047 system_reset();
Kerry Sheha3f06072012-02-07 20:32:38 +080048}