blob: 8827fb6114465ca1afafb131dc4d0bb1b2003956 [file] [log] [blame]
Zheng Bao910f4ca2011-03-28 04:38:14 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 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.
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
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef MB_SYSCONF_H
21
22#define MB_SYSCONF_H
23
24struct mb_sysconf_t {
25 u8 bus_isa;
26 u8 bus_8132_0;
27 u8 bus_8132_1;
28 u8 bus_8132_2;
29 u8 bus_8111_0;
30 u8 bus_8111_1;
31 u8 bus_8132a[31][3];
32 u8 bus_8151[31][2];
33
34 u32 apicid_8111;
35 u32 apicid_8132_1;
36 u32 apicid_8132_2;
37 u32 apicid_8132a[31][2];
38 u32 sbdn3;
39 u32 sbdn3a[31];
40 u32 sbdn5[31];
41 u32 bus_type[256];
42};
43
44#endif
45