blob: 64837f61749415a935c68561a20ebce1e3656fe1 [file] [log] [blame]
Yinghai Luf55b58d2007-02-17 14:28:11 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Yinghai Luf55b58d2007-02-17 14:28:11 +00003 *
4 * Copyright (C) 2007 AMD
5 * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
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; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Yinghai Luf55b58d2007-02-17 14:28:11 +000016 */
17
18#ifndef MB_SYSCONF_H
19#define MB_SYSCONF_H
20
21struct mb_sysconf_t {
Myles Watsona643ea32008-10-06 21:00:46 +000022 unsigned char bus_mcp55;
23 unsigned char bus_mcp55b;
24 unsigned apicid_mcp55;
25 unsigned apicid_mcp55b;
Yinghai Luf55b58d2007-02-17 14:28:11 +000026 unsigned sbdnb;
Yinghai Luf55b58d2007-02-17 14:28:11 +000027};
28
29#endif