blob: de45310c62d423c201b91e91ad30573fffd9bf4c [file] [log] [blame]
Knut Kujat081c8972010-02-03 16:04:40 +00001/*
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.
Knut Kujat081c8972010-02-03 16:04:40 +000016 */
17
18#ifndef MB_SYSCONF_H
19#define MB_SYSCONF_H
20
21struct mb_sysconf_t {
Knut Kujat081c8972010-02-03 16:04:40 +000022 unsigned char bus_mcp55[8]; //1
23 unsigned apicid_mcp55;
Knut Kujat081c8972010-02-03 16:04:40 +000024
Uwe Hermannd0d7c012010-02-03 22:07:57 +000025 unsigned char bus_8132_0; //7
26 unsigned char bus_8132_1; //8
27 unsigned char bus_8132_2; //9
28 unsigned apicid_8132_1;
29 unsigned apicid_8132_2;
Knut Kujat081c8972010-02-03 16:04:40 +000030};
31
32#endif