blob: d23c614d8f699e898bb5c383415d1e538e401f92 [file] [log] [blame]
Zheng Bao98fcc092011-03-27 16:39:58 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Advanced Micro Devices, Inc.
Timothy Pearson5a0efd22015-06-12 20:08:29 -05005 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
Zheng Bao98fcc092011-03-27 16:39:58 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of 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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Zheng Bao98fcc092011-03-27 16:39:58 +000019 */
20
21#ifndef SR5650_CHIP_H
22#define SR5650_CHIP_H
23
24/* Member variables are defined in Config.lb. */
25struct southbridge_amd_sr5650_config
26{
27 u8 gpp1_configuration; /* The configuration of General Purpose Port. */
28 u8 gpp2_configuration; /* The configuration of General Purpose Port. */
29 u8 gpp3a_configuration; /* The configuration of General Purpose Port. */
30 u16 port_enable; /* Which port is enabled? GPP(2,3,4,5,6,7,9,10,11,12,13) */
Timothy Pearson5a0efd22015-06-12 20:08:29 -050031 uint32_t pcie_settling_time; /* How long to wait after link training for PCI-e devices to
32 * initialize before probing PCI-e busses (in microseconds).
33 */
Zheng Bao98fcc092011-03-27 16:39:58 +000034};
Zheng Bao98fcc092011-03-27 16:39:58 +000035
36#endif /* SR5650_CHIP_H */