Re: [coreboot] [PATCH]fallback/normal for kconfig, selectable tinybootblock handler

2010-02-24 Thread Stefan Reinauer
/init/tinybootblock_normal.c src/arch/i386/init/tinybootblock_simple.c and bootblock.c itself be removed (the patch does that, but your patch(1) might not delete the file properly). Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste

Re: [coreboot] [PATCH] drivers vs. obj

2010-02-23 Thread Stefan Reinauer
myle...@gmail.com I updated the patch, with all the boards converted that appeared in Kconfig after this patch was made, too. There's not a single driver in src/mainboard left. Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste...@coresystems.de

Re: [coreboot] [PATCH] drivers vs. obj

2010-02-23 Thread Stefan Reinauer
...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] VIA-ME6000-LVDS coreboot capable?

2010-02-23 Thread Stefan Reinauer
On 2/23/10 11:13 PM, Riot wrote: Hi! I've got a VIA ME6000-LVDS (Board only says: EPIA-M rev B) Where i can't really confirm the north- and southbridge, as they're glued to a large passive cooler. Is that board compatible? It looks very similar to the via epia-m in the tree. But we

[coreboot] [RFC] ASSERT

2010-02-22 Thread Stefan Reinauer
/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 /* * This file is part of the coreboot project. * * Copyright (C) 2010 coresystems GmbH * * This program is free software; you can redistribute it and/or * modify it under the terms

Re: [coreboot] [RFC] ASSERT

2010-02-22 Thread Stefan Reinauer
On 2/22/10 1:56 PM, Joseph Smith wrote: I use die in raminit for memory compatibility checks. If the memory is not compatible, there is no use moving on...so we die(). I agree... to some extent... The file I posted does not change the explicit die() calls though but only the implicit die()

Re: [coreboot] [commit] r5141 - in trunk/src: cpu/x86/smm include/cpu/x86

2010-02-22 Thread Stefan Reinauer
On 2/22/10 1:25 PM, Peter Stuge wrote: repository service wrote: +++ trunk/src/cpu/x86/smm/smihandler.c Mon Feb 22 10:32:33 2010 (r5141) .. @@ -145,8 +146,12 @@ /* Call chipset specific SMI handlers. This would be the place to * add a CPU or

Re: [coreboot] [RFC] ASSERT

2010-02-22 Thread Stefan Reinauer
On 2/22/10 1:33 PM, Peter Stuge wrote: Stefan Reinauer wrote: Also, do we want to die() on an assert? Ideally I would like coreboot to be so structured that an assert just leads to the current task being aborted, and then we try to continue as best as possible. Yes. I agree

Re: [coreboot] [PATCH] (somewhat) clean up intel southbridge drivers

2010-02-22 Thread Stefan Reinauer
On 2/22/10 3:57 PM, Uwe Hermann wrote: So folks, if you agree that we should clean up coreboot and make it easier for people, send me an Acked-by: for the above idea. Signed-off-by: Stefan Reinauer ste...@coresystems.de Acked-by: Uwe Hermann u...@hermann-uwe.de Awesome, thanks

Re: [coreboot] [PATCH] Janitor Tasks - coreboot cleanup

2010-02-22 Thread Stefan Reinauer
On 2/22/10 4:45 PM, Uwe Hermann wrote: --- src/southbridge/intel/i82801gx/i82801gx_pcie.c (revision 5133) +++ src/southbridge/intel/i82801gx/i82801gx_pcie.c (working copy) @@ -75,7 +75,7 @@ reg16 |= (1 6); pci_write_config16(dev, 0x50, reg16); -#if EVEN_MORE_DEBUG +#ifdef

Re: [coreboot] [patch]: memcpy/memset inline asm config_compress disabled when needed

2010-02-22 Thread Stefan Reinauer
On 2/22/10 5:29 PM, ron minnich wrote: I'm glad this works, but I am afraid I have a concern about it. I've become opposed to inline assembly on several principles in the last few years: I have another one: - no assembly outside of cpu/ and arch/i386 -- coreboot mailing list:

Re: [coreboot] Panic room

2010-02-22 Thread Stefan Reinauer
On 2/22/10 5:59 PM, Peter Stuge wrote: ron minnich wrote: I still try to fancy what that panic room is. Is it the gdb handler for the case that gdb is enabled? in my ideal world, the panic room is SerialICE. That's a nice idea. I think interesting suggestions for panic

[coreboot] [PATCH] e7501 register pressure

2010-02-22 Thread Stefan Reinauer
See patch wow this code could use an indent,... but I just exchanged all the ctrl-d0 by PCI_DEV(0, 0, 0) which took off a significant amount of register pressure while compiling with romcc. Enough to keep the code working with the unified assert.h I posted today. Signed-off-by: Stefan Reinauer

Re: [coreboot] [PATCH] e7501 register pressure

2010-02-22 Thread Stefan Reinauer
On 2/23/10 12:45 AM, ron minnich wrote: There's a way to test this? Not for me... it's 2 boards out of 20+ But we did the same conversion for i945 and i830 before, so it's generally a good idea. The smarter thing would be to convert the board to CAR, but if I had to choose between those

Re: [coreboot] [PATCH] remove support for the S3 on M2V-MX SE

2010-02-21 Thread Stefan Reinauer
...@assembler.cz Sorry for leaving this broken for so long... can't fix it, I don't have the hardware and it's not sold anymore Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i

[coreboot] [PATCH] (somewhat) clean up intel southbridge drivers

2010-02-20 Thread Stefan Reinauer
don't know if you have an ICH0 or ICH4, you can't do a coreboot port, because you will fail in so many other places before and after that. So folks, if you agree that we should clean up coreboot and make it easier for people, send me an Acked-by: for the above idea. Signed-off-by: Stefan

[coreboot] [PATCH] Janitor Tasks - coreboot cleanup

2010-02-20 Thread Stefan Reinauer
See patch -- coresystems GmbH . Brahmsstr. 16 . D-79104 Freiburg i. Br. Tel.: +49 761 7668825 . Fax: +49 761 7664613 Email: i...@coresystems.de . http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866

Re: [coreboot] YABEL full debug problems

2010-02-19 Thread Stefan Reinauer
://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] YABEL full debug problems

2010-02-19 Thread Stefan Reinauer
7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [PATCH] YABEL debug flags

2010-02-19 Thread Stefan Reinauer
Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [PATCH] YABEL debug flags

2010-02-19 Thread Stefan Reinauer
...@coresystems.de . http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [PATCH] YABEL debug flags

2010-02-19 Thread Stefan Reinauer
On 2/19/10 8:53 PM, Myles Watson wrote: On Fri, Feb 19, 2010 at 12:46 PM, Stefan Reinauer ste...@coresystems.de mailto:ste...@coresystems.de wrote: On 2/19/10 8:42 PM, Myles Watson wrote: Oh shoot. This broke all the patches I am just preparing... Oh well.. It'll have to wait

Re: [coreboot] [PATCH] Update LinuxBIOS/coreboot support in memtest86 3.5

2010-02-17 Thread Stefan Reinauer
On 2/17/10 7:39 PM, Jeremy Jackson wrote: On Sat, 2010-01-23 at 09:43 -0700, Myles Watson wrote: On Sat, Jan 23, 2010 at 8:50 AM, Stefan Reinauer ste...@coresystems.de wrote: Hi, the attached patch does the following: In Message-ID: 4b5cb231.7030

Re: [coreboot] MP table multicore patch

2010-02-16 Thread Stefan Reinauer
On 2/16/10 5:11 AM, Timothy Pearson wrote: Here is a cleaned up and tested version of the SMP APIC autodetect patch. Signed-off-by: Timothy Pearson tpear...@raptorengineeringinc.com --- It would of course be helpful to attach the patch. My Webmail client keeps eating it... Timothy

Re: [coreboot] MP table multicore patch

2010-02-16 Thread Stefan Reinauer
On 2/16/10 8:42 PM, Myles Watson wrote: On Tue, Feb 16, 2010 at 12:02 PM, Stefan Reinauer ste...@coresystems.de mailto:ste...@coresystems.de wrote: On 2/16/10 5:11 AM, Timothy Pearson wrote: Here is a cleaned up and tested version of the SMP APIC autodetect patch

Re: [coreboot] Building Televideo/TC7010 on Fedora 12

2010-02-15 Thread Stefan Reinauer
clean your output directory and start fresh. Stefan -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan

[coreboot] [PATCH] drop quotes

2010-02-11 Thread Stefan Reinauer
without this patch coreboot's romstage will come up with coreboot-4.0 date. starting.. The patch removes the Not sure what causes this, but I think romcc assumes that is a protected instead of an empty string (Better fix might be to fix that) Acked-by: Stefan Reinauer ste...@coresystems.de

Re: [coreboot] [PATCH]Use proper XIP_ROM_BASE everywhere

2010-02-11 Thread Stefan Reinauer
the right thing to do Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656

Re: [coreboot] [PATCH]Remove perl dependency

2010-02-10 Thread Stefan Reinauer
dependency list in README. Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http

[coreboot] [PATCH] separate build.h and config.h

2010-02-10 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 separate

Re: [coreboot] [PATCH] separate build.h and config.h

2010-02-10 Thread Stefan Reinauer
On 2/10/10 4:29 PM, Stefan Reinauer wrote: See patch Some part was missing. New version. -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht

Re: [coreboot] [PATCH]Remove race condition opportunity in cbfstool build

2010-02-10 Thread Stefan Reinauer
, as the directory gets a new timestamp once a file in it is touched. We don't need to rebuild cbfstool all the time. Am 10.02.2010 13:25, schrieb Patrick Georgi: Still Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste...@coresystems.de

Re: [coreboot] [PATCH]Eliminate some shell invocations

2010-02-10 Thread Stefan Reinauer
On 2/10/10 7:45 PM, Patrick Georgi wrote: Hi, Remove uses of the shell to remove double quotes, or to figure out the current directory (stored in $(PWD) as well) Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste...@coresystems.de

Re: [coreboot] [PATCH]Test for, and use --build-id=none

2010-02-10 Thread Stefan Reinauer
and time again. Also more portable xcompile, as dd(1) is dropped (mingw support) Again, Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Patrick Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel

Re: [coreboot] [PATCH] separate build.h and config.h

2010-02-10 Thread Stefan Reinauer
://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

[coreboot] [PATCH] drop DISTRO_CFLAGS

2010-02-10 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866

Re: [coreboot] build.h dependency

2010-02-09 Thread Stefan Reinauer
On 2/9/10 9:06 AM, Peter Stuge wrote: What happens in the build: kconfig generates config.h, which carries all the CONFIG_* definitions. The build.h file is created by make rules and contains a couple more definitions, mostly those with COREBOOT_*, and an include of config.h. Aha. Could

[coreboot] [PATCH] Option List Generator

2010-02-09 Thread Stefan Reinauer
-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer

Re: [coreboot] [PATCH]Clean up ACPI

2010-02-08 Thread Stefan Reinauer
to a framework. Acked-by: Stefan Reinauer ste...@coresystems.de For the future it would be nice if files like usb.asl/sata.asl/ide.asl/globutil.asl of the AMD RS690/SB600 based boards could live in southbridge/amd/sb600/acpi Maybe someone can step up and fix this? -- coresystems GmbH • Brahmsstr

Re: [coreboot] It's not just v2 anymore

2010-02-08 Thread Stefan Reinauer
On 2/1/10 6:58 PM, Uwe Hermann wrote: On Sun, Jan 31, 2010 at 06:05:38PM +0100, Patrick Georgi wrote: Am 30.01.2010 15:38, schrieb Stefan Reinauer: See patch :-) Acked-by: Patrick Georgi patrick.geo...@coresystems.de r5096 Maybe not call it 4.0alpha1 but only 4.0

Re: [coreboot] [PATCH] Math support for libpayload

2010-02-07 Thread Stefan Reinauer
On 2/7/10 5:29 PM, Patrick Georgi wrote: Then, there are design questions: this libm is made for userland, with a kernel expected to provide support if anything goes wrong. How does the math library cope with FPU exceptions? Does it at all? I have to second that There are also concerns of

Re: [coreboot] newconfig to Kconfig for Dummies

2010-02-05 Thread Stefan Reinauer
On 2/5/10 5:28 AM, Myles Watson wrote: -CONFIG_LOGICAL_CPUS = 0x0 - Why would newconfig specify 0 cpus??? LOGICAL_CPUS is code for multiple cores. In this case I'm assuming that your CPU is single-core. Also, despite what the name implies, this is a boolean type of value, 0 meaning no

Re: [coreboot] newconfig to Kconfig for Dummies

2010-02-05 Thread Stefan Reinauer
On 2/5/10 5:17 PM, ron minnich wrote: On Fri, Feb 5, 2010 at 1:29 AM, Stefan Reinauer ste...@coresystems.de wrote: On 2/5/10 5:28 AM, Myles Watson wrote: -CONFIG_LOGICAL_CPUS = 0x0 - Why would newconfig specify 0 cpus??? LOGICAL_CPUS is code for multiple cores

Re: [coreboot] libpayload TSC dependency

2010-02-05 Thread Stefan Reinauer
to do what FILO does, FILO should be fixed -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer

Re: [coreboot] newconfig to Kconfig for Dummies

2010-02-05 Thread Stefan Reinauer
://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [commit] r5086 - trunk/src/mainboard/gigabyte/m57sli

2010-02-04 Thread Stefan Reinauer
not. What was the problem without the patch? -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust

Re: [coreboot] M57SLI is not booting successful...

2010-02-04 Thread Stefan Reinauer
7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] Safe check method

2010-02-04 Thread Stefan Reinauer
On 2/4/10 4:44 PM, Krzysztof Walkiewicz wrote: Hello everybody, I have a question: is there any safe method to check if coreboot will work with my old Toshiba A60-302 laptop? Yes, there is a very safe method: Check the list of supported systems on our web page:

[coreboot] [PATCH] (resend to mailing list) COM2 on Geode

2010-02-03 Thread Stefan Reinauer
See patch. fixup patch from ticket #152 for coreboot trunk (http://tracker.coreboot.org/trac/coreboot/ticket/152) Signed-off-by: Stefan Reinauer ste...@coresystems.de Index: src/southbridge/amd/cs5536/cs5536_early_setup.c

Re: [coreboot] [PATCH] fix Tyan s2881 boot (Kconfig)

2010-02-03 Thread Stefan Reinauer
On 2/3/10 6:50 PM, Ward Vandewege wrote: This fixes breakage introduced in r5051. Thanks, Ward. Sorry for the inconvenience. Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613

Re: [coreboot] [PATCH]: Disable ExtINT in ioapic.c

2010-02-02 Thread Stefan Reinauer
On 2/2/10 4:25 AM, Bao, Zheng wrote: Index: src/arch/i386/smp/ioapic.c === --- src/arch/i386/smp/ioapic.c(revision 5073) +++ src/arch/i386/smp/ioapic.c(working copy) @@ -110,7 +110,7 @@ #endif /*

Re: [coreboot] dell server BIOS setting insanity

2010-02-01 Thread Stefan Reinauer
Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http

Re: [coreboot] [PATCH] Intel 82830 overhaul

2010-02-01 Thread Stefan Reinauer
(shows 512MB double sided SO-DIMM in socket 1 and 64MB single sided onboard memory) and attached patch. Signed-off-by: Joseph Smith j...@settoplinux.org Nice! Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825

Re: [coreboot] Tinyscheme ported to coreboot/libpayload

2010-01-31 Thread Stefan Reinauer
Dear Silvain, On 1/31/10 1:34 PM, Sylvain Ageneau wrote: Hello, I'd like to announce that tinyscheme http://tinyscheme.sourceforge.net/home.html can now run as a coreboot payload. TinyScheme is a lightweight Scheme interpreter that implements as large a subset of R5RS as was possible

[coreboot] It's not just v2 anymore

2010-01-30 Thread Stefan Reinauer
See patch :-) -- coresystems GmbH . Brahmsstr. 16 . D-79104 Freiburg i. Br. Tel.: +49 761 7668825 . Fax: +49 761 7664613 Email: i...@coresystems.de . http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866

Re: [coreboot] [PATCHes] mostly Kbuild fixes for out of tree build, Kconfig support in abuild

2010-01-29 Thread Stefan Reinauer
On 1/29/10 9:16 PM, Myles Watson wrote: * don't turn on WARNINGS_AS_ERRORS for Qemu per default I disagree with this change. I think it should be noticed when changes add warnings to a target that is free of them. I think the goal should be to be able to turn this on for all targets.

Re: [coreboot] LinuxBIOS V1 ?!

2010-01-29 Thread Stefan Reinauer
761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [PATCH] Update LinuxBIOS/coreboot support in memtest86+ 4.0

2010-01-28 Thread Stefan Reinauer
Vendor BIOS, too? Stefan with vendor BIOS. Now with the patched version it halts with coreboot without error messages (the output you see below is what I see until I press reset button) and with vendor BIOS its reboots at the same point (after 2 sec). bye and thx, Knut Kujat. Stefan Reinauer

Re: [coreboot] MSC board CXB-A945M

2010-01-28 Thread Stefan Reinauer
Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http

Re: [coreboot] [PATCH] Update LinuxBIOS/coreboot support in memtest86+ 4.0

2010-01-26 Thread Stefan Reinauer
-- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot

Re: [coreboot] [PATCH]kconfig

2010-01-25 Thread Stefan Reinauer
MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID + hex + default 0x1511 + depends on BOARD_SUPERMICRO_H8DMR_FAM10 I think we should stay consistent here. Otherwise: Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761

Re: [coreboot] [PATCH]even more kconfig

2010-01-25 Thread Stefan Reinauer
difference in UDELAY configuration to newconfig is via/epia (TSC instead of IO), but given that C3 is shown to support TSC on other boards, I preferred more regular configurations. Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste...@coresystems.de

Re: [coreboot] Hint for boot from a PCI device.

2010-01-24 Thread Stefan Reinauer
On 1/24/10 10:27 AM, v...@ru.ru wrote: How about debuging/loading/using coreboot from a PCI device? Do you have a pointer to appropriate PCI cards? I guess Robson/TurboMemory cards won't work, will they? Stefan -- coreboot mailing list: coreboot@coreboot.org

Re: [coreboot] [PATCH] Update LinuxBIOS/coreboot support in memtest86+ 4.0

2010-01-24 Thread Stefan Reinauer
Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [PATCH]some more kconfig

2010-01-24 Thread Stefan Reinauer
Signed-off-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste...@coresystems.de -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de

[coreboot] [PATCH] Update LinuxBIOS/coreboot support in memtest86+ 4.0

2010-01-23 Thread Stefan Reinauer
://www.coresystems.de/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 diff -urN memtest86+-4.00.orig/Makefile memtest86+-4.00/Makefile --- memtest86+-4.00.orig/Makefile 2009-09-22 02:35:46.0 +0200 +++ memtest86+-4.00/Makefile

Re: [coreboot] [PATCH] Update LinuxBIOS/coreboot support in memtest86+ 4.0

2010-01-23 Thread Stefan Reinauer
On 1/23/10 4:17 PM, Peter Stuge wrote: Stefan Reinauer wrote: +++ memtest86+-4.00/linuxbios.c 2010-01-23 12:45:06.0 +0100 .. @@ -54,16 +54,16 @@ } #define for_each_lbrec(head, rec) \ -for(rec = (struct lb_record *)(((char *)head) + sizeof(*head

[coreboot] [PATCH] Update LinuxBIOS/coreboot support in memtest86 3.5

2010-01-23 Thread Stefan Reinauer
: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 diff -ur memtest86-3.5.orig/Makefile memtest86-3.5/Makefile --- memtest86-3.5.orig/Makefile 2009-01-06 07:03:23.0 +0100 +++ memtest86-3.5/Makefile 2010-01-23 16:13:09.0 +0100 @@ -8,13 +8,15

Re: [coreboot] [PATCH] Superiotool: Add VT82C686

2010-01-23 Thread Stefan Reinauer
. This adds an additional requirement to superiotool: libpci. I have made the PCI code conditional on PCI_SUPPORT for now. Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2...@gmx.net Ping? I guess nobody has that hardware anymore, but anyways Acked-by: Stefan Reinauer ste

Re: [coreboot] Memtest86+ failing on coreboot system.

2010-01-22 Thread Stefan Reinauer
. Stefan -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866

Re: [coreboot] Porting to Intel Atom

2010-01-19 Thread Stefan Reinauer
-- coresystems GmbH . Brahmsstr. 16 . D-79104 Freiburg i. Br. Tel.: +49 761 7668825 . Fax: +49 761 7664613 Email: i...@coresystems.de . http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 -- coreboot mailing list

[coreboot] [PATCH] libpayload timer function overflow

2010-01-18 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866

[coreboot] [PATCH] yabel fix after rom_address breakage

2010-01-18 Thread Stefan Reinauer
See patch -- coresystems GmbH . Brahmsstr. 16 . D-79104 Freiburg i. Br. Tel.: +49 761 7668825 . Fax: +49 761 7664613 Email: i...@coresystems.de . http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 dev

[coreboot] [PATCH] Kontron 986LCD-M MP table fixes

2010-01-18 Thread Stefan Reinauer
See patch -- coresystems GmbH . Brahmsstr. 16 . D-79104 Freiburg i. Br. Tel.: +49 761 7668825 . Fax: +49 761 7664613 Email: i...@coresystems.de . http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 Kontron

[coreboot] [PATCH] drop CONFIG_COREBOOT_V2 hack

2010-01-18 Thread Stefan Reinauer
/ Registergericht: Amtsgericht Freiburg . HRB 7656 Geschäftsführer: Stefan Reinauer . Ust-IdNr.: DE245674866 drop COREBOOT_V2 and COREBOOT_V4 define. We're not sharing code with v3 anymore so this ugly hack is no longer needed. Signed-off-by: Stefan Reinauer ste...@coresystems.de Index: src/Kconfig

Re: [coreboot] [PATCH] [1/7] Roda RK886EX support: i945 updates

2010-01-17 Thread Stefan Reinauer
On 1/16/10 8:23 PM, ron minnich wrote: I'm good with acking the entire series Acked-by: Ronald G. Minnich rminn...@gmail.com Thank you! Committed as revisions r5025-5031. Stefan -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [ANNOUNCE] Roda RK886EX (Rocky III+) notebook support

2010-01-17 Thread Stefan Reinauer
On 1/17/10 1:40 AM, Carl-Daniel Hailfinger wrote: Hi Stefan, Absolutely awesome! Congratulations! This is really great news. On 16.01.2010 20:09, Stefan Reinauer wrote: I am especially glad to announce that coresystems GmbH is releasing coreboot® for the Roda RK886EX a.k.a Rocky III

Re: [coreboot] [PATCH] [7/7] Roda RK886EX support: mainboard and build target

2010-01-17 Thread Stefan Reinauer
On 1/16/10 9:12 PM, Peter Stuge wrote: Stefan Reinauer wrote: +++ src/mainboard/roda/rk886ex/Kconfig (revision 0) @@ -0,0 +1,62 @@ +config BOARD_RODA_RK886EX +bool RK886EX +select ARCH_X86 +select CPU_INTEL_CORE +select CPU_INTEL_SOCKET_MFCPGA478 +select

Re: [coreboot] msrtool: Read both values in diff mode from file [was: coreboot and MSM800BEV]

2010-01-17 Thread Stefan Reinauer
value. Any other character can still be used as separator however, so the following syntax still works as expected: msrtool -i 4c0f=f2f100ff:56960004 Signed-off-by: Peter Stuge pe...@stuge.se Acked-by: Stefan Reinauer ste...@coresystems.de Previously, msrtool would assume that MSR

Re: [coreboot] [commit] r5025 - trunk/src/northbridge/intel/i945

2010-01-17 Thread Stefan Reinauer
On 1/17/10 4:45 PM, Joseph Smith wrote: On 01/17/2010 08:47 AM, s...@coreboot.org wrote: Author: stepan Date: 2010-01-17 14:47:35 +0100 (Sun, 17 Jan 2010) New Revision: 5025 Modified: trunk/src/northbridge/intel/i945/early_init.c trunk/src/northbridge/intel/i945/raminit.c Log:

Re: [coreboot] [PATCH] [3/7] Roda RK886EX support: SMSC LPC47N227

2010-01-17 Thread Stefan Reinauer
Dear Cristi, Is this SuperIO chip very different from the generic SMSC ones whose support code can be found in src/superio/smscsuperio? For avoiding code duplication it would be nice to move it there if it's not too hard. Unfortunately, the generic SMSC driver is not suitable, as it assumes

Re: [coreboot] [PATCH] [4/7] Roda RK886EX support: EC Renesas M3885X

2010-01-17 Thread Stefan Reinauer
Did they use the Flash or Mask ROM version of the M3885X in the laptop? M38857M8-XXXHP 32K 1K Mask ROM 8MHz/3.0 to 3.6V M38858MC-XXXHP 48K 1.5K Mask ROM 8MHz/3.0 to 3.6V M38859FFHP 60K 2K Flash memory 8MHz/3.0 to 3.6V

Re: [coreboot] [PATCH] [3/7] Roda RK886EX support: SMSC LPC47N227

2010-01-17 Thread Stefan Reinauer
in the eye if we call that a hardware design issue Stefan -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan

[coreboot] [PATCH] ectool - add support for dumping EC index ram

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 ectool

[coreboot] [PATCH] buildgcc - reference toolchain update

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 Update

Re: [coreboot] [PATCH] ectool - add support for dumping EC index ram

2010-01-16 Thread Stefan Reinauer
: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] [1/2] coreboot cleanup: readl - read32, writel - write32

2010-01-16 Thread Stefan Reinauer
-- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 -- coreboot

[coreboot] [ANNOUNCE] Roda RK886EX (Rocky III+) notebook support

2010-01-16 Thread Stefan Reinauer
Sicherheit in der Informationstechnologie (Federal Office for Information Security, BSI) A big thank you also goes to everyone who worked with coresystems on this project. Best regards, Stefan Reinauer -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax

[coreboot] [PATCH] [1/7] Roda RK886EX support: i945 updates

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 Support

[coreboot] [PATCH] [2/7] Roda RK886EX support: ICH7 updates

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 ICH7

[coreboot] [PATCH] [3/7] Roda RK886EX support: SMSC LPC47N227

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 Add

[coreboot] [PATCH] [4/7] Roda RK886EX support: EC Renesas M3885X

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 Add

[coreboot] [PATCH] [5/7] Roda RK886EX support: Texas Instruments PCI7420

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 Add

[coreboot] [PATCH] [6/7] Roda RK886EX support: PCIe tuning

2010-01-16 Thread Stefan Reinauer
See patch -- coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br. Tel.: +49 761 7668825 • Fax: +49 761 7664613 Email: i...@coresystems.de • http://www.coresystems.de/ Registergericht: Amtsgericht Freiburg • HRB 7656 Geschäftsführer: Stefan Reinauer • Ust-IdNr.: DE245674866 Initial

Re: [coreboot] coreboot and MSM800BEV

2010-01-15 Thread Stefan Reinauer
On 1/15/10 12:57 AM, Peter Stuge wrote: Unfortunately, msrtool is not currently available as payload, but perhaps coreinfo can be used to display MSRs? (It would be nice to have msrtool diff mode available in coreinfo, using a file stored in cbfs for comparison!) I think a diff mode

Re: [coreboot] [commit] r5008 - trunk/util/msrtool

2010-01-15 Thread Stefan Reinauer
On 1/15/10 8:20 PM, Peter Stuge wrote: s...@coreboot.org wrote: Support for the AMD Geode GX2 Processors to Msrtool. It seems to work as it was tested Please do not accept it seems to work for new register descriptions, always review them against the available documentation.

Re: [coreboot] [PATCH-v2] Repair vsmsetup on GX2

2010-01-14 Thread Stefan Reinauer
On 1/14/10 8:08 PM, ron minnich wrote: Acked-by: Ronald G. Minnich rminn...@gmail.com I'd like to suggest solving this in a different way if possible. Roughly two objections: Moving coreboot down to 0x4000 is not safe, and we should attempt to fix it living above 1MB. There are two

Re: [coreboot] coreboot and MSM800BEV

2010-01-14 Thread Stefan Reinauer
On 1/14/10 8:45 PM, Piotr Piwko wrote: There is a similar function ram_check() in lib/ramtest.c. Yes, but I don't know how I can force a compilation of /lib/ramtest.c file during building process. It already is included in cache_as_ram_auto.c Just add a line ram_check(0x,

Re: [coreboot] [PATCH-v2] Repair vsmsetup on GX2

2010-01-14 Thread Stefan Reinauer
On 1/14/10 11:33 PM, ron minnich wrote: On Thu, Jan 14, 2010 at 11:44 AM, Stefan Reinauer ste...@coresystems.de wrote: On 1/14/10 8:08 PM, ron minnich wrote: Acked-by: Ronald G. Minnich rminn...@gmail.com I'd like to suggest solving this in a different way if possible. Roughly two

Re: [coreboot] [PATCH]make emulation/qemu-x86 slightly more standard

2010-01-11 Thread Stefan Reinauer
-by: Patrick Georgi patrick.geo...@coresystems.de Acked-by: Stefan Reinauer ste...@coresystems.de Stefan -- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot

<    7   8   9   10   11   12   13   14   15   16   >