summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/dl145_g1/mb_sysconf.h
diff options
context:
space:
mode:
authorOskar Enoksson <enok@lysator.liu.se>2011-10-04 22:15:51 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2011-11-07 22:14:16 +0100
commitdf073cb439b2acbe1d578f94be20ef983193b128 (patch)
treefa5d8dce96af686d450dd88f1e961c982a23e242 /src/mainboard/hp/dl145_g1/mb_sysconf.h
parent355092b7b843e081cf7d9f7dce488ad9ed85cbcf (diff)
downloadcoreboot-df073cb439b2acbe1d578f94be20ef983193b128.tar.xz
Added RAMINIT_SYSINFO and declared the necessary structs
Using RAMINIT_SYSINFO should be beneficial for this platform. It is also more clean/safe to put data in struct mb_sysconf_t. It's more consistent with other MB's and I've tested it thoroughly on my DL145. Signed-off-by: Oskar Enoksson <enok@lysator.liu.se> Change-Id: Ie90a134a1efc9605b3fe17a5b5008856226984be Reviewed-on: http://review.coreboot.org/236 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/hp/dl145_g1/mb_sysconf.h')
-rw-r--r--src/mainboard/hp/dl145_g1/mb_sysconf.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mainboard/hp/dl145_g1/mb_sysconf.h b/src/mainboard/hp/dl145_g1/mb_sysconf.h
new file mode 100644
index 0000000000..0bceab4ae9
--- /dev/null
+++ b/src/mainboard/hp/dl145_g1/mb_sysconf.h
@@ -0,0 +1,20 @@
+#ifndef MB_SYSCONF_H
+
+#define MB_SYSCONF_H
+
+struct mb_sysconf_t {
+ unsigned char bus_8131_0;
+ unsigned char bus_8131_1;
+ unsigned char bus_8131_2;
+ unsigned char bus_8111_0;
+ unsigned char bus_8111_1;
+
+ unsigned apicid_8111;
+ unsigned apicid_8131_1;
+ unsigned apicid_8131_2;
+
+ unsigned sbdn3;
+};
+
+#endif
+