blob: 7db0d9f377bd13d1d8cf4ba64d65a4ce617dd543 [file] [log] [blame]
Timothy Pearson53538be2015-04-30 01:47:31 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Advanced Micro Devices, Inc.
5 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
6 *
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.
Timothy Pearson53538be2015-04-30 01:47:31 -050015 */
16
17#ifndef MB_SYSCONF_H
18
19#define MB_SYSCONF_H
20
21struct mb_sysconf_t {
22 u8 bus_isa;
23 u8 bus_8132_0;
24 u8 bus_8132_1;
25 u8 bus_8132_2;
26 u8 bus_8111_0;
27 u8 bus_8111_1;
28 u8 bus_8132a[31][3];
29 u8 bus_8151[31][2];
30
31 u32 apicid_8111;
32 u32 apicid_8132_1;
33 u32 apicid_8132_2;
34 u32 apicid_8132a[31][2];
35 u32 sbdn3;
36 u32 sbdn3a[31];
37 u32 sbdn5[31];
38};
39
40#endif