blob: fa713897b61043349ba3767944993a36492f49dd [file] [log] [blame]
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2006 AMD
5 * Written by Yinghai Lu <yinghailu@gmail.com> for AMD.
6 *
7 * Copyright (C) 2007 University of Mannheim
8 * Written by Philipp Degler <pdegler@rumms.uni-mannheim.e> for Uni of Mannheim
9 *
10 * Copyright (C) 2009 University of Heidelberg
11 * Written by Mondrian Nuessle <nuessle@uni-hd.de> for Uni of Heidelberg
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 */
27
28#ifndef MB_SYSCONF_H
29#define MB_SYSCONF_H
30
31struct mb_sysconf_t {
32 unsigned char bus_isa;
33 unsigned char bus_bcm5780[7];
34 unsigned char bus_bcm5785_0;
35 unsigned char bus_bcm5785_1;
36 unsigned char bus_bcm5785_1_1;
37 unsigned apicid_bcm5785[3];
38
39 unsigned sbdn2;
40};
41
42#endif
43