The default 'pci_set_subsystem' sets the subvendor/device id register #0x2c. In fact for a few devices in the RS690 the register is 0x4c respectively 0x50. Moved the default set_subsystem implementation to chipset specific.
Signed-off-by: Josef Kellermann<seppk(a)arcor.de> <mailto://seppk@arcor.de>
I've compiled support for the Siemens 'sitemp' Mainboard. The board is similar to the AMD dbm690t.
I adapt the code from dbm690t according to customer requirement specification.
Linux is booting with seabios/filo.
Windows XP is booting with seabios.
This board comes with two hardware variants so I have to set up subvendor/device ids accordingly.
Also I've found an issue:
The default 'pci_set_subsystem' sets the subvendor/device id register# 0x2c. However, for a few devices in the RS690 the register is 0x4c respectively 0x50.
Moved 'pci_set_subsystem' to a weak function in 'pci_device.c'. So boards can add an override for the default function in mainboard/../override_df.c (or mainboard.c) and set it up too.
Hoping to receive a 'ack'.
Thanks
Signed-off-by: Josef Kellermann joseph.kellermann(a)heitec.de
**********************************************************************************************
IMPORTANT NOTICE / WICHTIGER HINWEIS
This communication contains information which is confidential and may also be privileged. It is for the
exclusive use of the intended recipient(s). If you are not the intended recipient(s) please note that any
distribution, copying or use of this communication or the information in it is strictly prohibited. If you have
received this communication in error please notify us immediately by email or by telephone and then delete
this email and any copies of it.
Diese E-Mail koennte vertrauliche und/oder rechtlich geschuetzte Informationen enthalten. Wenn Sie nicht
der richtige Adressat sind oder diese E-Mail irrtuemlich erhalten haben, informieren Sie bitte sofort den
Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser
Mail sind nicht gestattet.
HEITEC AG, Werner-von-Siemens-Str. 61, 91052 Erlangen, HRB 7754, RG Fuerth, Vorstandsvorsitzender:
Richard Heindl, Vorstand: Harald Preiml, Finanzvorstand: Rene-Oliver Rosner, Aufsichtsratsvorsitzender: Dr.
Lorenz M. Raith, WWW: http://www.heitec.de
**********************************************************************************************
Hi List,
my commit in r6325 missed a src/ec/Makefile.inc change.
Lets add it and make the buildsystem happy.
Signed-off-by: Sven Schnelle <svens(a)stackframe.org>
Hi List,
this patch adds support for the NSC PC87392 Super I/O. It is
used in Lenovo Docking Stations as Super I/O chip.
Signed-off-by: Sven Schnelle <svens(a)stackframe.org>
Hi List,
this patch adds support for NSC PC87382 Super I/O. IT is
used in many Lenovo Notebooks as Docking LPC Switch.
Signed-off-by: Sven Schnelle <svens(a)stackframe.org>
The undocumented config argument for the -t option implicitly assumes
the config file is within the mainboard directory but fails to honor
this assumption when it comes to copying the file.
Signed-off-by: Mathias Krause <mathias.krause(a)secunet.com>
Author: oxygene
Date: Tue Feb 1 11:42:52 2011
New Revision: 6324
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6324
Log:
Fix using custom build configs in abuild
The undocumented config argument for the -t option implicitly assumes
the config file is within the mainboard directory but fails to honor
this assumption when it comes to copying the file.
Signed-off-by: Mathias Krause <mathias.krause(a)secunet.com>
Acked-by: Patrick Georgi <patrick.georgi(a)secunet.com>
Modified:
trunk/util/abuild/abuild
Modified: trunk/util/abuild/abuild
==============================================================================
--- trunk/util/abuild/abuild Mon Jan 31 22:16:48 2011 (r6323)
+++ trunk/util/abuild/abuild Tue Feb 1 11:42:52 2011 (r6324)
@@ -161,7 +161,7 @@
if [ "$CONFIG" != "" ]; then
printf " Using existing configuration $CONFIG ... "
xml " <config>$CONFIG</config>"
- cp $CONFIG ${build_dir}/config.build
+ cp src/mainboard/$VENDOR/$MAINBOARD/$CONFIG ${build_dir}/config.build
else
printf " Creating config file... "
xml " <config>autogenerated</config>"