[coreboot] [commit] r6303 - in trunk/src: mainboard/getac/p470 northbridge/intel/i945

2011-01-27 Thread repository service
Author: stuge Date: Thu Jan 27 12:09:36 2011 New Revision: 6303 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6303 Log: SMM code on i945 platforms needs udelay() smm-y wasn't required before, because udelay.c used to be #included from various files in src/mainboard. Signed-off-by:

[coreboot] [commit] r6304 - in trunk: . src src/ec src/ec/acpi src/mainboard/getac/p470 src/mainboard/roda/rk886ex

2011-01-27 Thread repository service
Author: stuge Date: Thu Jan 27 12:43:03 2011 New Revision: 6304 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6304 Log: Add new ec subdir for Embedded Controllers and common ACPI EC support Adds a new src/ec subdir for embedded controllers (mostly found in laptops) and converts Getac

Re: [coreboot] [PATCH] Add new ec subdir for Embedded Controllers

2011-01-27 Thread Peter Stuge
Sven Schnelle wrote: Signed-off-by: Sven Schnelle sv...@stackframe.org Acked-by: Peter Stuge pe...@stuge.se r6304 +++ src/mainboard/roda/rk886ex/mainboard_smi.c(working copy) @@ -24,6 +24,7 @@ #include console/console.h #include cpu/x86/smm.h #include

Re: [coreboot] missing read_resources for CK804

2011-01-27 Thread Myles Watson
On Thu, Jan 27, 2011 at 5:29 AM, Joseph Smith j...@settoplinux.org wrote: Hello, Working on a new CK804 board Which board did you base it on? What are the differences? and I have it almost booting but it seems the resource allocator does not like / or want to enumerate the CK804. It fails

Re: [coreboot] missing read_resources for CK804

2011-01-27 Thread Joseph Smith
On Thu, 27 Jan 2011 06:15:34 -0700, Myles Watson myle...@gmail.com wrote: On Thu, Jan 27, 2011 at 5:29 AM, Joseph Smith j...@settoplinux.org wrote: Hello, Working on a new CK804 board Which board did you base it on? What are the differences? I based it on the Asus A8N-E. The only

Re: [coreboot] missing read_resources for CK804

2011-01-27 Thread Myles Watson
On Thu, Jan 27, 2011 at 6:38 AM, Joseph Smith j...@settoplinux.org wrote: On Thu, 27 Jan 2011 06:15:34 -0700, Myles Watson myle...@gmail.com wrote: On Thu, Jan 27, 2011 at 5:29 AM, Joseph Smith j...@settoplinux.org wrote: Hello, Working on a new CK804 board Which board did you base it on?

[coreboot] [PATCH 0/6]Reorganize nvramtool code

2011-01-27 Thread Patrick Georgi
Hi, I intend to make nvramtool usable in a payload environment. For this, the code needs to be moved around a bit so code using FILE* interfaces (that don't exist in libpayload) doesn't prevent the non-FILE* parts from building. While at it, I also clean up things here and there, whose purpose I

[coreboot] [PATCH 1/6] No need to add varargs magic to a simple regex wrapper.

2011-01-27 Thread Patrick Georgi
Einfaches Textdokument attachment (20110127-1-less-magic-for-regex.diff) Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Index: nvramtool/input_file.c === --- nvramtool.orig/input_file.c +++ nvramtool/input_file.c @@ -88,8

[coreboot] [PATCH 6/6] Separate CMOS layout from lbtable handling.

2011-01-27 Thread Patrick Georgi
Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Index: nvramtool/accessors/layout-bin.c === --- /dev/null +++ nvramtool/accessors/layout-bin.c @@ -0,0 +1,460 @@

Re: [coreboot] missing read_resources for CK804

2011-01-27 Thread Joseph Smith
On Thu, 27 Jan 2011 07:02:04 -0700, Myles Watson myle...@gmail.com wrote: On Thu, Jan 27, 2011 at 6:38 AM, Joseph Smith j...@settoplinux.org wrote: On Thu, 27 Jan 2011 06:15:34 -0700, Myles Watson myle...@gmail.com wrote: On Thu, Jan 27, 2011 at 5:29 AM, Joseph Smith j...@settoplinux.org

Re: [coreboot] missing read_resources for CK804

2011-01-27 Thread Joseph Smith
On 01/27/2011 10:26 AM, Joseph Smith wrote: On Thu, 27 Jan 2011 07:02:04 -0700, Myles Watsonmyle...@gmail.com wrote: On Thu, Jan 27, 2011 at 6:38 AM, Joseph Smithj...@settoplinux.org wrote: On Thu, 27 Jan 2011 06:15:34 -0700, Myles Watsonmyle...@gmail.com wrote: On Thu, Jan 27, 2011 at

[coreboot] Question about new_resource()

2011-01-27 Thread Sven Schnelle
Hi List, while adding support for the Lenovo PMH7 Embedded Controller, i was wondering about the index parameter for new_resource(). From looking at the coreboot source, it looks like it is an arbitrary number, depending on the device type for which the resource is allocated. What would be the

[coreboot] build service results for r6292

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stuge checked in revision 6292 to the coreboot repository. This caused the following changes: Change Log: Clone a tag rather than SeaBIOS stable branch HEAD Use a tag (rel-0.6.1.3) for SeaBIOS stable

[coreboot] build service results for r6293

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer zbao checked in revision 6293 to the coreboot repository. This caused the following changes: Change Log: Change fadt revision back to 3. The AcpiPmaCntBlk have to be set. Further research is needed to find out

[coreboot] build service results for r6294

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer ruik checked in revision 6294 to the coreboot repository. This caused the following changes: Change Log: Add CFLAGS when compiling resulting executable. It broke 64bit systems, because the rest uses -m32 now.

[coreboot] build service results for r6295

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stepan checked in revision 6295 to the coreboot repository. This caused the following changes: Change Log: This patch fixes an 'write_tables: coreboot table didn't fit (f0221)' issue. Signed-off-by: Josef

Re: [coreboot] [PATCH 1/6] No need to add varargs magic to a simple regex wrapper.

2011-01-27 Thread Stefan Reinauer
* Patrick Georgi patrick.geo...@secunet.com [110127 15:15]: Einfaches Textdokument attachment (20110127-1-less-magic-for-regex.diff) Not a good changelog suggestion ;-) Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer stefan.reina...@coreboot.org

Re: [coreboot] [PATCH 2/6] Eliminate a couple of 3-line functions that barely wrap *printf calls

2011-01-27 Thread Stefan Reinauer
* Patrick Georgi patrick.geo...@secunet.com [110127 15:07]: Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer stefan.reina...@coreboot.org -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [PATCH 4/6] Move the parser for cmos.layout text files to accessors. No API change yet

2011-01-27 Thread Stefan Reinauer
* Patrick Georgi patrick.geo...@secunet.com [110127 15:07]: Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer stefan.reina...@coreboot.org -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

[coreboot] build service results for r6296

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stepan checked in revision 6296 to the coreboot repository. This caused the following changes: Change Log: If the tool has 64bit issues, we need to find and fix them. No papering over them. Signed-off-by:

Re: [coreboot] [PATCH 5/6] Move CMOS handling into separate files in accessors. No API change yet

2011-01-27 Thread Stefan Reinauer
* Patrick Georgi patrick.geo...@secunet.com [110127 15:07]: Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer stefan.reina...@coreboot.org -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [PATCH 6/6] Separate CMOS layout from lbtable handling.

2011-01-27 Thread Stefan Reinauer
* Patrick Georgi patrick.geo...@secunet.com [110127 15:07]: Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Mixed use of uint32_t and u32. Otherwise Acked-by: Stefan Reinauer stefan.reina...@coreboot.org Index: nvramtool/accessors/layout-bin.c

Re: [coreboot] [PATCH 3/6] Move CLI portion of nvramtool into cli/ subdirectory as first step towards librarization.

2011-01-27 Thread Stefan Reinauer
* Patrick Georgi patrick.geo...@secunet.com [110127 15:07]: Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer stefan.reina...@coreboot.org -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

[coreboot] build service results for r6297

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer zbao checked in revision 6297 to the coreboot repository. This caused the following changes: Change Log: Set the SB800 SATA PHY correctly. Signed-off-by: Zheng Bao zheng@amd.com Acked-by: Zheng Bao

[coreboot] build service results for r6298

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stepan checked in revision 6298 to the coreboot repository. This caused the following changes: Change Log: Fix abuild thanks to Kevin who came up with this Signed-off-by: Stefan Reinauer

[coreboot] build service results for r6299

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stepan checked in revision 6299 to the coreboot repository. This caused the following changes: Change Log: oops. this is weird. CAR addresses should be specified in the socket and not in the board. I thought

[coreboot] build service results for r6301

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer zbao checked in revision 6301 to the coreboot repository. This caused the following changes: Change Log: Trivial. Re-indent the code. Signed-off-by: Zheng Bao zheng@amd.com Acked-by: Zheng Bao

[coreboot] build service results for r6302

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer oxygene checked in revision 6302 to the coreboot repository. This caused the following changes: Change Log: Add a new CMOS variable which triggers activation of the LPT port. With the CMOS variable set, LPT is

[coreboot] build service results for r6303

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stuge checked in revision 6303 to the coreboot repository. This caused the following changes: Change Log: SMM code on i945 platforms needs udelay() smm-y wasn't required before, because udelay.c used to be

[coreboot] build service results for r6304

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stuge checked in revision 6304 to the coreboot repository. This caused the following changes: Change Log: Add new ec subdir for Embedded Controllers and common ACPI EC support Adds a new src/ec subdir for

[coreboot] [commit] r6305 - trunk/src/ec

2011-01-27 Thread repository service
Author: stepan Date: Fri Jan 28 00:56:48 2011 New Revision: 6305 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6305 Log: Only add EC code if EC is selected in Kconfig Signed-off-by: Stefan Reinauer stefan.reina...@coreboot.org Acked-by: Stefan Reinauer stefan.reina...@coreboot.org

[coreboot] build service results for r6305

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stepan checked in revision 6305 to the coreboot repository. This caused the following changes: Change Log: Only add EC code if EC is selected in Kconfig Signed-off-by: Stefan Reinauer

[coreboot] [commit] r6306 - trunk/src/mainboard/roda/rk886ex

2011-01-27 Thread repository service
Author: stepan Date: Fri Jan 28 02:03:18 2011 New Revision: 6306 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6306 Log: rk886ex lacked EC_ACPI Signed-off-by: Stefan Reinauer stefan.reina...@coreboot.org Acked-by: Stefan Reinauer stefan.reina...@coreboot.org Modified:

[coreboot] [commit] r6307 - trunk/src/southbridge/amd/sb800

2011-01-27 Thread repository service
Author: stepan Date: Fri Jan 28 02:06:39 2011 New Revision: 6307 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6307 Log: Fix Bimini build Signed-off-by: Stefan Reinauer stefan.reina...@coreboot.org Acked-by: Stefan Reinauer stefan.reina...@coreboot.org Modified:

[coreboot] build service results for r6306

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stepan checked in revision 6306 to the coreboot repository. This caused the following changes: Change Log: rk886ex lacked EC_ACPI Signed-off-by: Stefan Reinauer stefan.reina...@coreboot.org Acked-by: Stefan

[coreboot] build service results for r6307

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer stepan checked in revision 6307 to the coreboot repository. This caused the following changes: Change Log: Fix Bimini build Signed-off-by: Stefan Reinauer stefan.reina...@coreboot.org Acked-by: Stefan

Re: [coreboot] core boot ehci debug

2011-01-27 Thread Stefan Reinauer
* trevor.davenp...@gmail.com trevor.davenp...@gmail.com [110127 02:56]: Hi, I've been trying to get coreboot to work a machine i have (http:// www.coreboot.org/pipermail/coreboot/2010-November/061987.html) but have so far have not had any luck.  I've tried most board types that are similar

[coreboot] [PATCH] get USB debug console working in ROM stage

2011-01-27 Thread Stefan Reinauer
See patch. This patch gets usbdebug console working in romstage. - actually hook up usbdebug in printk/print_ for romstage - make usbdebug.c more similar to the Linux kernel version it was originally derived from. - increase retries and timing for usbdebug init (at least one chipset seems to

Re: [coreboot] [PATCH] get USB debug console working in ROM stage

2011-01-27 Thread Georgi, Patrick
Am Donnerstag, den 27.01.2011, 18:16 -0800 schrieb Stefan Reinauer: +#if defined(__ROMCC__) +#define printk(BIOS_DEBUG, fmt, arg...) do {} while(0) +#else romcc doesn't support variadic macros. This only works because no chipset that uses romcc supports USB debug. Given the age of

Re: [coreboot] [PATCH] rename CONFIG_SERIAL_POST to CONFIG_CONSOLE_POST

2011-01-27 Thread Georgi, Patrick
Am Donnerstag, den 27.01.2011, 18:15 -0800 schrieb Stefan Reinauer: See patch. Acked-by: Patrick Georgi patrick.geo...@secunet.com signature.asc Description: This is a digitally signed message part -- coreboot mailing list: coreboot@coreboot.org

[coreboot] [commit] r6308 - trunk/util/nvramtool

2011-01-27 Thread repository service
Author: oxygene Date: Fri Jan 28 08:40:08 2011 New Revision: 6308 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6308 Log: No need to add varargs magic to a simple regex wrapper. Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer

[coreboot] [commit] r6309 - trunk/util/nvramtool

2011-01-27 Thread repository service
Author: oxygene Date: Fri Jan 28 08:41:10 2011 New Revision: 6309 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6309 Log: Eliminate a couple of 3-line functions that barely wrap *printf calls Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer

[coreboot] [commit] r6310 - in trunk/util/nvramtool: . cli

2011-01-27 Thread repository service
Author: oxygene Date: Fri Jan 28 08:47:10 2011 New Revision: 6310 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6310 Log: Move CLI portion of nvramtool into cli/ subdirectory as first step towards librarization. Also: update one regex wrapper user. Signed-off-by: Patrick Georgi

[coreboot] [commit] r6311 - trunk/src/console

2011-01-27 Thread repository service
Author: stepan Date: Fri Jan 28 08:47:35 2011 New Revision: 6311 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6311 Log: rename CONFIG_SERIAL_POST to CONFIG_CONSOLE_POST because that is what it does. Signed-off-by: Stefan Reinauer reina...@google.com Acked-by: Patrick Georgi

[coreboot] [commit] r6312 - in trunk/util/nvramtool: . accessors cli

2011-01-27 Thread repository service
Author: oxygene Date: Fri Jan 28 08:50:33 2011 New Revision: 6312 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6312 Log: Move the parser for cmos.layout text files to accessors Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer

[coreboot] [commit] r6313 - in trunk/util/nvramtool: . accessors

2011-01-27 Thread repository service
Author: oxygene Date: Fri Jan 28 08:54:11 2011 New Revision: 6313 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6313 Log: Move CMOS handling into separate files in accessors Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer

[coreboot] [commit] r6314 - in trunk/util/nvramtool: . accessors

2011-01-27 Thread repository service
Author: oxygene Date: Fri Jan 28 08:56:39 2011 New Revision: 6314 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6314 Log: Separate CMOS layout from lbtable handling Signed-off-by: Patrick Georgi patrick.geo...@secunet.com Acked-by: Stefan Reinauer stefan.reina...@coreboot.org Added:

[coreboot] build service results for r6308

2011-01-27 Thread repository service
Dear coreboot readers! This is the automatic build system of coreboot. The developer oxygene checked in revision 6308 to the coreboot repository. This caused the following changes: Change Log: No need to add varargs magic to a simple regex wrapper. Signed-off-by: Patrick Georgi