Zheng Bao (zheng.bao(a)amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3885
-gerrit
commit 2fcff65d134939b82ecdfce9fc57bcdb887991cc
Author: Zheng Bao <fishbaozi(a)gmail.com>
Date: Tue Aug 27 10:23:13 2013 +0800
Locate the generated iasl in acpica-unix-20130626
acpica-unix-20130626 doesn't use bin32 and bin64 to save the objects
any more.
Change-Id: I419ecc987e2adcd860a8ad1bf2f6b5c4dd40fd8a
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
---
util/crossgcc/buildgcc | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index 7dcea38..57f536e 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -603,8 +603,7 @@ printf "Building IASL ${IASL_VERSION} ... "
test $UNAME = "Cygwin" && HOST="_CYGWIN"
HOST="$HOST" OPT_CFLAGS="-O -D_FORTIFY_SOURCE=2" CFLAGS="$CFLAGS" $MAKE CC="$CC" iasl || touch .failed
rm -f $DESTDIR$TARGETDIR/bin/iasl || touch .failed
- if [ -d bin32 ]; then cp bin32/iasl $DESTDIR$TARGETDIR/bin || touch .failed ; fi
- if [ -d bin64 ]; then cp bin64/iasl $DESTDIR$TARGETDIR/bin || touch .failed ; fi
+ cp bin/iasl $DESTDIR$TARGETDIR/bin || touch .failed
if [ ! -f .failed ]; then touch .success; fi
) > $IASL_DIR/source/compiler/crossgcc-build.log 2>&1
test -r $IASL_DIR/generate/unix/.failed && printf "${RED}failed${NC}\n" || \
the following patch was just integrated into master:
commit 9090ff91e175423ee6dce4fc36b338135435b8a3
Author: Stefan Tauner <stefan.tauner(a)gmx.at>
Date: Sun Aug 25 12:35:09 2013 +0200
libpayload: Add a few more PCI constants
flashrom has started to use revision IDs to distinguish AMD chipsets
and fails (even more) to build with libpayload since then because
PCI_REVISION_ID is undefined in libpayload's pci header.
Change-Id: If7440a48c1005a4ba4fc09303f47cdfa9f408ad1
Signed-off-by: Stefan Tauner <stefan.tauner(a)gmx.at>
Reviewed-on: http://review.coreboot.org/3884
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
See http://review.coreboot.org/3884 for details.
-gerrit
Stefan Tauner (stefan.tauner(a)gmx.at) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3884
-gerrit
commit 1c338d39f1562858b0211533abd629441d610abb
Author: Stefan Tauner <stefan.tauner(a)gmx.at>
Date: Sun Aug 25 12:35:09 2013 +0200
libpayload: Add a few more PCI constants
flashrom has started to use revision IDs to distinguish AMD chipsets
and fails (even more) to build with libpayload since then because
PCI_REVISION_ID is undefined in libpayload's pci header.
Change-Id: If7440a48c1005a4ba4fc09303f47cdfa9f408ad1
Signed-off-by: Stefan Tauner <stefan.tauner(a)gmx.at>
---
payloads/libpayload/include/pci/pci.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/payloads/libpayload/include/pci/pci.h b/payloads/libpayload/include/pci/pci.h
index c078bb5..47d62bc 100644
--- a/payloads/libpayload/include/pci/pci.h
+++ b/payloads/libpayload/include/pci/pci.h
@@ -35,6 +35,8 @@
#include <pci.h>
+#define PCI_REVISION_ID REG_REVISION_ID
+#define PCI_CLASS_PROG REG_PROG_IF
#define PCI_CLASS_DEVICE REG_SUBCLASS
#define PCI_SUBSYSTEM_VENDOR_ID REG_SUBSYS_VENDOR_ID
#define PCI_SUBSYSTEM_ID REG_SUBSYS_ID
Stefan Tauner (stefan.tauner(a)gmx.at) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3884
-gerrit
commit 5e4f97222d3cf0ab8d78e0a2baf1459050be6533
Author: Stefan Tauner <stefan.tauner(a)gmx.at>
Date: Sun Aug 25 01:00:32 2013 +0200
libpayload: Add a few more PCI constants
flashrom has started to use revision IDs to distinguish AMD chipsets
and fails (even more) to build with libpayload since then because
PCI_REVISION_ID is undefined in libpayload's pci header.
Change-Id: If7440a48c1005a4ba4fc09303f47cdfa9f408ad1
Signed-off-by: Stefan Tauner <stefan.tauner(a)gmx.at>
---
payloads/libpayload/include/pci/pci.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/payloads/libpayload/include/pci/pci.h b/payloads/libpayload/include/pci/pci.h
index c078bb5..09fbff9 100644
--- a/payloads/libpayload/include/pci/pci.h
+++ b/payloads/libpayload/include/pci/pci.h
@@ -44,6 +44,10 @@
#define PCI_COMMAND_MEMORY REG_COMMAND_MEM
#define PCI_COMMAND_MASTER REG_COMMAND_BM
+#define PCI_REVISION_ID REG_REVISION_ID
+#define PCI_CLASS_PROG REG_PROG_IF
+#define PCI_CLASS_DEVICE REG_SUBCLASS
+
#define PCI_HEADER_TYPE REG_HEADER_TYPE
#define PCI_HEADER_TYPE_NORMAL HEADER_TYPE_NORMAL
#define PCI_HEADER_TYPE_BRIDGE HEADER_TYPE_BRIDGE
the following patch was just integrated into master:
commit 021fa78bcae3224ca8bcdb7a0f5acbd5e90ab897
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Fri Aug 16 06:34:04 2013 +0300
usbdebug: Change reference to EHCI BAR
Change the defines, as follow-up patch will replace use of
constant CONFIG_EHCI_BAR.
Change-Id: I44ff77cb7a2826f3b43d8d46440fd4482a29d18c
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/3875
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin(a)google.com>
See http://review.coreboot.org/3875 for details.
-gerrit
the following patch was just integrated into master:
commit c73acdb69eb8128bbbb3bed63cb0ca1b943027ee
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sat Jun 15 17:16:56 2013 +0300
Add test to match struct device with pci_devfn_t
Add a function to test if pci_devfn_t matches with a device
instance of struct device, by comparing bus:dev.fn.
Change-Id: Ic6c3148ac62c7183246d83302ee504b17064c794
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/3474
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin(a)google.com>
See http://review.coreboot.org/3474 for details.
-gerrit
the following patch was just integrated into master:
commit 842f0bab0416d223ecda97817fb5326c666b0499
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Thu Jun 20 20:25:21 2013 +0300
Add pnp_devfn_t and use with __SIMPLE_DEVICE__
Declare the functions that may be used in both romstage and ramstage
with simple device model. This will later allow to define PNP access
functions for ramstage using the inlined functions from romstage.
Change-Id: I2a0bd8194acaf9c4c7252a29376eec363397e3a6
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/3871
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin(a)google.com>
See http://review.coreboot.org/3871 for details.
-gerrit