blob: 64837f61749415a935c68561a20ebce1e3656fe1 [file] [log] [blame]
Jonathan A. Kollaschd9247822015-10-30 18:15:55 -05001/*
2 * This file is part of the coreboot project.
3 *
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.
16 */
17
18#ifndef MB_SYSCONF_H
19#define MB_SYSCONF_H
20
21struct mb_sysconf_t {
22 unsigned char bus_mcp55;
23 unsigned char bus_mcp55b;
24 unsigned apicid_mcp55;
25 unsigned apicid_mcp55b;
26 unsigned sbdnb;
27};
28
29#endif