coreboot.git
14 years agoGet rid of a few more warnings.
Myles Watson [Fri, 30 Apr 2010 17:11:03 +0000 (17:11 +0000)]
Get rid of a few more warnings.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5512 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoEnable the cache before initializing the processor name, like model_10 does.
Myles Watson [Tue, 27 Apr 2010 15:00:18 +0000 (15:00 +0000)]
Enable the cache before initializing the processor name, like model_10 does.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5511 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoMore "prepare"-dependencies we don't need anymore
Patrick Georgi [Tue, 27 Apr 2010 09:23:33 +0000 (09:23 +0000)]
More "prepare"-dependencies we don't need anymore

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5510 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoForce mkdir before resolving any make rules.
Patrick Georgi [Tue, 27 Apr 2010 09:19:47 +0000 (09:19 +0000)]
Force mkdir before resolving any make rules.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5509 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoEnable 440BX NB to use large memory modules
Anders Jenbo [Tue, 27 Apr 2010 08:45:30 +0000 (08:45 +0000)]
Enable 440BX NB to use large memory modules

Signed-off-by: Anders Jenbo <anders@jenbo.dk>
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5508 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoSince some people disapprove of white space cleanups mixed in regular commits
Stefan Reinauer [Tue, 27 Apr 2010 06:56:47 +0000 (06:56 +0000)]
Since some people disapprove of white space cleanups mixed in regular commits
while others dislike them being extra commits, let's clean them up once and
for all for the existing code. If it's ugly, let it only be ugly once :-)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5507 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoRemove some additional white space to make it look nicer in nano
Anders Jenbo [Tue, 27 Apr 2010 06:35:31 +0000 (06:35 +0000)]
Remove some additional white space to make it look nicer in nano
Signed-off-by: Anders Jenbo <anders@jenbo.dk>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5506 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoI meant SSE. Reported by Dustin Harrison.
Myles Watson [Mon, 26 Apr 2010 13:33:23 +0000 (13:33 +0000)]
I meant SSE.  Reported by Dustin Harrison.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5505 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoEnable SSE2 for ep80579. Reported by Dustin Harrison.
Myles Watson [Mon, 26 Apr 2010 13:27:35 +0000 (13:27 +0000)]
Enable SSE2 for ep80579.  Reported by Dustin Harrison.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5504 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoFor the mainboard with AMD Family 10, if we make clean and make again,
Zheng Bao [Mon, 26 Apr 2010 12:27:18 +0000 (12:27 +0000)]
For the mainboard with AMD Family 10, if we make clean and make again,
it will fail. why?

After make clean, .c files created by iasl are still left in the build
folder, it will match the rule of
$(obj)/%.o: $(obj)/%.c $(obj)/config.h
@printf "    CC         $(subst $(obj)/,,$(@))\n"
$(CC) -MMD $(CFLAGS) -c -o $@ $<
it will miss the rule which should be applied.
define objs_asl_template
       ....

So we move the .c file back to .hex (or other suffix? or delete?).
This patch will work after make distclean, otherwise nobody will rename
the .c.

Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5503 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix a bug in pcibios check.
Stefan Reinauer [Mon, 26 Apr 2010 12:08:51 +0000 (12:08 +0000)]
fix a bug in pcibios check.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5502 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoSet success flag in cx700 int15 handler
Patrick Georgi [Mon, 26 Apr 2010 06:59:07 +0000 (06:59 +0000)]
Set success flag in cx700 int15 handler

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5501 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agocx700 int15 handler rework. Int15 handler needs to provide the
Stefan Reinauer [Sun, 25 Apr 2010 21:44:33 +0000 (21:44 +0000)]
cx700 int15 handler rework. Int15 handler needs to provide the
correct ram clock to the vga bios or there be dragons.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5500 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoa single place for the romstage stack for copy_and_run.
Stefan Reinauer [Sun, 25 Apr 2010 21:43:29 +0000 (21:43 +0000)]
a single place for the romstage stack for copy_and_run.
geode lx and amd opteron don't use this yet.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5499 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agodrop "arch/asm.h" and "arch/intel.h" and create "cpu/x86/post_code.h"
Stefan Reinauer [Sun, 25 Apr 2010 20:42:02 +0000 (20:42 +0000)]
drop "arch/asm.h" and "arch/intel.h" and create "cpu/x86/post_code.h"
(which could at some time hold global post code definitions, too)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5498 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoFix the the build of r5494 on Asus A8V-E SE. The K8M890 and K8T890
Rudolf Marek [Sun, 25 Apr 2010 20:24:09 +0000 (20:24 +0000)]
Fix the the build of r5494 on Asus A8V-E SE. The K8M890 and K8T890
were not treated separately until now. Fix it. Hope self ack is OK,
compiled tested locally.

Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Rudolf Marek <r.marek@assembler.cz>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5497 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agotry to unify timing initialization across those boards that need it...
Stefan Reinauer [Sun, 25 Apr 2010 18:06:32 +0000 (18:06 +0000)]
try to unify timing initialization across those boards that need it...
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5496 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoOnly do complete VGA init if a VGABIOS was found and installed.
Patrick Georgi [Sun, 25 Apr 2010 18:05:42 +0000 (18:05 +0000)]
Only do complete VGA init if a VGABIOS was found and installed.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5495 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoFollowing patch changes the K8M890 VGA handling. It reverts the framebuffer size
Rudolf Marek [Sun, 25 Apr 2010 15:21:18 +0000 (15:21 +0000)]
Following patch changes the K8M890 VGA handling. It reverts the framebuffer size
to option based (similar what Uwe did) and also it uses GFXUMA to handle the
high_tables_start offset from memory top.

To satisfy the CMOS option users (Hi, libv!  ;)  I added also a possibility to do
that through CMOS.

Fixed printks to match the new style.

Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5494 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agono warnings days.
Stefan Reinauer [Sun, 25 Apr 2010 14:37:18 +0000 (14:37 +0000)]
no warnings days.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5493 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agozero warnings days
Stefan Reinauer [Sun, 25 Apr 2010 13:54:30 +0000 (13:54 +0000)]
zero warnings days

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5492 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoTrivial. The comment also need to modify.
Zheng Bao [Sun, 25 Apr 2010 11:57:21 +0000 (11:57 +0000)]
Trivial. The comment also need to modify.

Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Zheng Bao <zheng.bao@amd.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5491 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoThe device number of SATA SB700 is 0x11, while the one of SB600 is 0x12.
Zheng Bao [Sun, 25 Apr 2010 11:53:09 +0000 (11:53 +0000)]
The device number of SATA SB700 is 0x11, while the one of SB600 is 0x12.
We changed almost associated code when we ported but overlooked some.
Some legacy of SB600 are also fixed.

Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5490 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agothese cpus are explicitly supported by model_6bx
Stefan Reinauer [Sat, 24 Apr 2010 23:16:23 +0000 (23:16 +0000)]
these cpus are explicitly supported by model_6bx

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5489 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agodrop all duplicate copies of vgabios.c in favor
Stefan Reinauer [Sat, 24 Apr 2010 23:15:23 +0000 (23:15 +0000)]
drop all duplicate copies of vgabios.c in favor
of devices/oprom/x86.c.

We have some tests on hardware. Moving RAMBASE to
1MB needs to wait a bit until C7 cache_as_ram.inc
has been adapted to cache that area or things will
become incredibly slow (1.5s boot time instead of 0.5)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5488 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoprint the known cbfs types in cbfstool "usage"
Stefan Reinauer [Sat, 24 Apr 2010 21:24:06 +0000 (21:24 +0000)]
print the known cbfs types in cbfstool "usage"

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5487 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoTrivial. Fix a space to tab.
Zheng Bao [Sat, 24 Apr 2010 07:56:32 +0000 (07:56 +0000)]
Trivial. Fix a space to tab.

Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Zheng Bao <zheng.bao@amd.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5486 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAttached patch adds support for tinybootblock on VT8237* to decode whole flash
Rudolf Marek [Fri, 23 Apr 2010 20:58:13 +0000 (20:58 +0000)]
Attached patch adds support for tinybootblock on VT8237* to decode whole flash
independent of strapping, making larger flashes work. We cannot walk anything
else than PCI bus 0 because HT is not setup yet.

Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5485 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agozero warnings days...
Stefan Reinauer [Fri, 23 Apr 2010 19:16:30 +0000 (19:16 +0000)]
zero warnings days...

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5484 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAMD Tilapia board support as a demonstration of an AMD Fam10 DDR3 board.
Zheng Bao [Fri, 23 Apr 2010 17:37:41 +0000 (17:37 +0000)]
AMD Tilapia board support as a demonstration of an AMD Fam10 DDR3 board.

Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5483 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAMD Socket ASB2 and AM3 support.
Zheng Bao [Fri, 23 Apr 2010 17:35:37 +0000 (17:35 +0000)]
AMD Socket ASB2 and AM3 support.

Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5482 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoDDR3 support for AMD Fam10.
Zheng Bao [Fri, 23 Apr 2010 17:32:48 +0000 (17:32 +0000)]
DDR3 support for AMD Fam10.

Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5481 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoMake USE_OPTION_TABLE user visible, so it can be edited.
Patrick Georgi [Fri, 23 Apr 2010 08:03:14 +0000 (08:03 +0000)]
Make USE_OPTION_TABLE user visible, so it can be edited.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5480 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoFix AHCI mode on i82801gx. Fixes SATA hotplug on iBASE:MB899.
Bernhard M. Wiedermann [Thu, 22 Apr 2010 22:47:29 +0000 (22:47 +0000)]
Fix AHCI mode on i82801gx.  Fixes SATA hotplug on iBASE:MB899.

Signed-off-by: Bernhard M. Wiedermann <corebootbmw@lsmod.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5479 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agovia epia-m now works with default x86.c instead of its own copy of vgabios.c.
Stefan Reinauer [Thu, 22 Apr 2010 18:15:32 +0000 (18:15 +0000)]
via epia-m now works with default x86.c instead of its own copy of vgabios.c.
Allows to drop quite a bunch of nasty code

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5478 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agozero warnings days...
Stefan Reinauer [Thu, 22 Apr 2010 13:18:09 +0000 (13:18 +0000)]
zero warnings days...
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5477 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoNone of the cs5536 settings in devicetree.cb were ever used and nobody noticed.
Stefan Reinauer [Thu, 22 Apr 2010 10:44:08 +0000 (10:44 +0000)]
None of the cs5536 settings in devicetree.cb were ever used and nobody noticed.
Fix it!

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5476 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix compilation remaining geode boards
Stefan Reinauer [Thu, 22 Apr 2010 09:22:15 +0000 (09:22 +0000)]
fix compilation remaining geode boards

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5475 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix ARRAY_SIZE issue.
Stefan Reinauer [Thu, 22 Apr 2010 00:52:42 +0000 (00:52 +0000)]
fix ARRAY_SIZE issue.
the gx2+5536 issue is still open, and it reveils a serious problem with the
code that was hidden under a bunch of warnings until now.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5474 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agooops, sorry for the last commit. This commit changes the code to distinguish
Stefan Reinauer [Wed, 21 Apr 2010 20:55:38 +0000 (20:55 +0000)]
oops, sorry for the last commit. This commit changes the code to distinguish
between having VSA functionality in the code, and adding a VSA image to the
ROM.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5473 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoMove the prototype for run_vsa.
Myles Watson [Wed, 21 Apr 2010 20:36:09 +0000 (20:36 +0000)]
Move the prototype for run_vsa.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5472 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years ago* clean up all but two warnings on artecgroup dbe61
Stefan Reinauer [Wed, 21 Apr 2010 20:06:10 +0000 (20:06 +0000)]
* clean up all but two warnings on artecgroup dbe61
* integrate vsm init into normal x86.c code (so it can run above 1M)
* call void main(unsigned long bist) except void cache_as_ram_main(void)
  on Geode LX (as we do on almost all other platforms now)
* Unify Geode LX MSR setup (will bring most non-working LX targets back
  to life)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5471 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoOptimize distclean and configuration.
Patrick Georgi [Wed, 21 Apr 2010 06:36:20 +0000 (06:36 +0000)]
Optimize distclean and configuration.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5470 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoThis patch adds:
Pat Erley [Wed, 21 Apr 2010 06:23:19 +0000 (06:23 +0000)]
This patch adds:

 ICH6 Southbridge,
 82915 Series Northbridge,
 P4 6xx Series CPU

to inteltool

Tested on my Clevo D900T, based on ICH6 and i915P, with a p4 630
installed.

Signed-off-by: Pat Erley <pat-lkml@erley.org>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5469 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agobayou compile fixes
Stefan Reinauer [Tue, 20 Apr 2010 23:04:46 +0000 (23:04 +0000)]
bayou compile fixes

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5468 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoMake VSA code selectable in Kconfig
Stefan Reinauer [Tue, 20 Apr 2010 18:35:33 +0000 (18:35 +0000)]
Make VSA code selectable in Kconfig

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5467 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoinstall libpayload.ldscript on libpayload "make install"
Stefan Reinauer [Tue, 20 Apr 2010 18:22:20 +0000 (18:22 +0000)]
install libpayload.ldscript on libpayload "make install"
to make coreinfo happy.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5466 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAllow easy libpayload compilation using xcompile.
Stefan Reinauer [Tue, 20 Apr 2010 17:19:20 +0000 (17:19 +0000)]
Allow easy libpayload compilation using xcompile.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5465 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix artecgroup dbe61
Stefan Reinauer [Tue, 20 Apr 2010 16:20:48 +0000 (16:20 +0000)]
fix artecgroup dbe61

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5464 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoCopy mingw support for kconfig from coreboot to libpayload
Patrick Georgi [Tue, 20 Apr 2010 16:00:07 +0000 (16:00 +0000)]
Copy mingw support for kconfig from coreboot to libpayload

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5463 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoMake RAM init on i945GC work
Patrick Georgi [Tue, 20 Apr 2010 15:52:57 +0000 (15:52 +0000)]
Make RAM init on i945GC work

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5462 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agocosmetics.
Stefan Reinauer [Tue, 20 Apr 2010 15:49:59 +0000 (15:49 +0000)]
cosmetics.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5461 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years ago- move src/arch/i386/smp/ioapic.c to src/arch/i386/lib/ioapic.c (has
Stefan Reinauer [Tue, 20 Apr 2010 13:22:02 +0000 (13:22 +0000)]
- move src/arch/i386/smp/ioapic.c to src/arch/i386/lib/ioapic.c (has
  nothing to do with SMP)
- move src/arch/i386/smp/mpspec.c to src/arch/i386/boot/mpspec.c (where
  acpi, pirq and coreboot table generation lives)
- modify src/arch/i386/boot/Makefile.inc,
  src/arch/i386/lib/Makefile.inc
  and src/arch/i386/smp/Makefile.inc accordingly
- src/arch/i386/smp is now empty. drop it.
- drop src/arch/i386/init/car.S (unused)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5460 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAs Myles suggested a while back: Switch long time #warnings to be comments
Stefan Reinauer [Tue, 20 Apr 2010 11:03:41 +0000 (11:03 +0000)]
As Myles suggested a while back: Switch long time #warnings to be comments
only. Keeping them as #warnings will not likely that they're fixed.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5459 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAdd support for the Nokia IP530.
Marc Bertens [Mon, 19 Apr 2010 21:21:54 +0000 (21:21 +0000)]
Add support for the Nokia IP530.

It's currently its able to run coreboot + seabios + sgabios.

The following hardware works;
        P3
        i440BX  northbridge
        82371   southbridge
        IDE     normal disks + CF

The following hardware doesn't work:
        4x NIC          21143-PD
        2x PCMCIA       PCI1225PDV

Signed-off-by: Marc Bertens <mbertens@xs4all.nl>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5458 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years ago(trivial) utils are not depending on config.h. This slipped in by accident.
Stefan Reinauer [Mon, 19 Apr 2010 20:47:29 +0000 (20:47 +0000)]
(trivial)  utils are not depending on config.h. This slipped in by accident.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5457 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years ago- Make abuild -sb work again
Patrick Georgi [Mon, 19 Apr 2010 20:39:22 +0000 (20:39 +0000)]
- Make abuild -sb work again
- More explicit rules for obj/%.c->obj/%.o builds
- Hide printf even with verbose make

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5456 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoThis piece of code was somehow lost in the switch to Kconfig, and re-activates
Stefan Reinauer [Sat, 17 Apr 2010 17:59:40 +0000 (17:59 +0000)]
This piece of code was somehow lost in the switch to Kconfig, and re-activates
proper libgcc handling, which we introduced by revision r4679, which was

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5455 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoDon't use $(ROMCC) as dependency (due to ccache and scanbuild support
Patrick Georgi [Fri, 16 Apr 2010 23:01:34 +0000 (23:01 +0000)]
Don't use $(ROMCC) as dependency (due to ccache and scanbuild support
modifying the variable for their own purposes)

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5454 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoBuild utils into their source directory equivalent in
Patrick Georgi [Fri, 16 Apr 2010 22:48:57 +0000 (22:48 +0000)]
Build utils into their source directory equivalent in
the build tree.
Allow separate build tree for utils
Use separate build tree for utils in abuild

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5453 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoFix a typo to remove a few more warnings.
Myles Watson [Fri, 16 Apr 2010 13:43:49 +0000 (13:43 +0000)]
Fix a typo to remove a few more warnings.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5452 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoenable more warnings for vgabios utility, and enable some debugging
Stefan Reinauer [Fri, 16 Apr 2010 11:45:16 +0000 (11:45 +0000)]
enable more warnings for vgabios utility, and enable some debugging
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5451 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix romcc compiled i3100 boards.
Stefan Reinauer [Fri, 16 Apr 2010 01:45:44 +0000 (01:45 +0000)]
fix romcc compiled i3100 boards.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5450 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix up sb600 and it8712f tree.
Stefan Reinauer [Fri, 16 Apr 2010 01:14:50 +0000 (01:14 +0000)]
fix up sb600 and it8712f tree.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5449 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agozero warnings days: unify mp tables. fix warnings.
Stefan Reinauer [Fri, 16 Apr 2010 00:31:44 +0000 (00:31 +0000)]
zero warnings days: unify mp tables. fix warnings.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5448 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoremove more warnings. move ROOT_COMPLEX selection to fam10
Stefan Reinauer [Thu, 15 Apr 2010 23:01:59 +0000 (23:01 +0000)]
remove more warnings. move ROOT_COMPLEX selection to fam10

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5447 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAvoid strdup(0) in build_opt_tbl
Patrick Georgi [Thu, 15 Apr 2010 14:55:01 +0000 (14:55 +0000)]
Avoid strdup(0) in build_opt_tbl

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5446 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAvoid two conflicting invocations of build_opt_tbl
Patrick Georgi [Thu, 15 Apr 2010 14:32:17 +0000 (14:32 +0000)]
Avoid two conflicting invocations of build_opt_tbl

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5445 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoMyles suspected this hangs certain machines, so back it out.
Stefan Reinauer [Thu, 15 Apr 2010 12:43:07 +0000 (12:43 +0000)]
Myles suspected this hangs certain machines, so back it out.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5444 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agodon't leave VGA disabled by default on thomson ip1000
Stefan Reinauer [Thu, 15 Apr 2010 12:41:11 +0000 (12:41 +0000)]
don't leave VGA disabled by default on thomson ip1000
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5443 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agozero warnings days...
Stefan Reinauer [Thu, 15 Apr 2010 12:39:29 +0000 (12:39 +0000)]
zero warnings days...

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5442 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agothe dump function assumed that the mbi data comes right after the header.
Stefan Reinauer [Thu, 15 Apr 2010 08:26:30 +0000 (08:26 +0000)]
the dump function assumed that the mbi data comes right after the header.
Which is not (always) the case.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5441 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoRemove a few more warnings from fam10.
Myles Watson [Thu, 15 Apr 2010 05:19:29 +0000 (05:19 +0000)]
Remove a few more warnings from fam10.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5440 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoget rid of this nerving crt0.d stuff
Stefan Reinauer [Wed, 14 Apr 2010 23:58:07 +0000 (23:58 +0000)]
get rid of this nerving crt0.d stuff

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5439 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix COM2 resource bug in fintek f71805f driver.
Stefan Reinauer [Wed, 14 Apr 2010 21:47:24 +0000 (21:47 +0000)]
fix COM2 resource bug in fintek f71805f driver.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5438 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoQuote test -f argument, so it doesn't fail on spaces.
Patrick Georgi [Wed, 14 Apr 2010 20:47:45 +0000 (20:47 +0000)]
Quote test -f argument, so it doesn't fail on spaces.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5437 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoUpdate mingw source versions and allow parallel builds in buildgcc
Patrick Georgi [Wed, 14 Apr 2010 20:42:42 +0000 (20:42 +0000)]
Update mingw source versions and allow parallel builds in buildgcc

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5436 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agozero warning days. Move RAMTOP and RAMBASE together.
Stefan Reinauer [Wed, 14 Apr 2010 18:59:42 +0000 (18:59 +0000)]
zero warning days. Move RAMTOP and RAMBASE together.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5435 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix a case where the fam10 code would overwrite parts of a struct.
Stefan Reinauer [Wed, 14 Apr 2010 17:18:34 +0000 (17:18 +0000)]
fix a case where the fam10 code would overwrite parts of a struct.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5434 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agodrop setup_ics code that was blatantly copied from cx700 and
Stefan Reinauer [Wed, 14 Apr 2010 17:11:47 +0000 (17:11 +0000)]
drop setup_ics code that was blatantly copied from cx700 and
was mainboard specific and unused there already.

some more minor warning fixes.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5433 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoRemove few more warnings and some dead code.
Myles Watson [Wed, 14 Apr 2010 16:50:16 +0000 (16:50 +0000)]
Remove few more warnings and some dead code.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5432 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agogeeesh! And this really compiles and even runs?
Stefan Reinauer [Wed, 14 Apr 2010 16:39:30 +0000 (16:39 +0000)]
geeesh! And this really compiles and even runs?

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5431 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoHWHoleSz must be u32...
Stefan Reinauer [Wed, 14 Apr 2010 15:45:02 +0000 (15:45 +0000)]
HWHoleSz must be u32...

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5430 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoudelay_tsc does not exist in the whole tree.
Stefan Reinauer [Wed, 14 Apr 2010 15:44:21 +0000 (15:44 +0000)]
udelay_tsc does not exist in the whole tree.
Neither does quadcore.h (anymore)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5429 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agosconfig should return success when it's successful
Patrick Georgi [Wed, 14 Apr 2010 14:41:30 +0000 (14:41 +0000)]
sconfig should return success when it's successful

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5428 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoRename variable to not confuse gcc on mingw
Patrick Georgi [Wed, 14 Apr 2010 14:35:40 +0000 (14:35 +0000)]
Rename variable to not confuse gcc on mingw

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5427 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agodrop quite a lot of dead code that did nothing but produce warnings and make
Stefan Reinauer [Wed, 14 Apr 2010 11:40:34 +0000 (11:40 +0000)]
drop quite a lot of dead code that did nothing but produce warnings and make
the rest of the code unreadable.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5426 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agozero warnings days. Down to under 600 different warnings
Stefan Reinauer [Wed, 14 Apr 2010 10:12:23 +0000 (10:12 +0000)]
zero warnings days. Down to under 600 different warnings
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5425 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix digitallogic adl855pc compilation (and clean up the warnings while at it)
Stefan Reinauer [Wed, 14 Apr 2010 09:04:31 +0000 (09:04 +0000)]
fix digitallogic adl855pc compilation (and clean up the warnings while at it)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5424 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agomove cpu/x86/car to cpu/intel/car as previously discussed on the mailing list.
Stefan Reinauer [Wed, 14 Apr 2010 07:47:07 +0000 (07:47 +0000)]
move cpu/x86/car to cpu/intel/car as previously discussed on the mailing list.
this patch also slightly changes it so we have a single cache_as_ram.inc which
requires no "help" from cache_as_ram_post.c and cache_as_ram_disable.c (or
worse, a lot of cruft hacked right into romstage.c like on tyan s2735)

Now all CAR code except the AMD Opteron/Athlon64 CAR code follows the new
simpler scheme. I'll gladly leave src/cpu/amd/car to someone else ;-)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5423 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoip1000: fix seabios start, fix flash gpio detection
Stefan Reinauer [Tue, 13 Apr 2010 21:31:42 +0000 (21:31 +0000)]
ip1000: fix seabios start, fix flash gpio detection
simplify i82830 code.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5422 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix a trivial warning when yabel with direct hw access is enabled.
Stefan Reinauer [Tue, 13 Apr 2010 21:29:43 +0000 (21:29 +0000)]
fix a trivial warning when yabel with direct hw access is enabled.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5421 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agofix timer choice in Kconfig. HAVE_INIT_TIMER is selected correctly, no need to
Stefan Reinauer [Tue, 13 Apr 2010 13:48:20 +0000 (13:48 +0000)]
fix timer choice in Kconfig. HAVE_INIT_TIMER is selected correctly, no need to
mention it explicitly.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5420 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoclean up LD scripts and add some comments and proper license headers
Stefan Reinauer [Tue, 13 Apr 2010 13:43:35 +0000 (13:43 +0000)]
clean up LD scripts and add some comments and proper license headers
where applicable.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5419 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agouse the standard udelay on sc520.
Stefan Reinauer [Tue, 13 Apr 2010 10:04:35 +0000 (10:04 +0000)]
use the standard udelay on sc520.

Acked-by: Stefan Reinauer <stepan@coresystems.de>
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5418 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoSpeed up coreboot_ram loading by moving the decompression stack
Stefan Reinauer [Tue, 13 Apr 2010 10:01:14 +0000 (10:01 +0000)]
Speed up coreboot_ram loading by moving the decompression stack
into the cached area. Back to 469ms until coreboot_ram is actually
running on epia-cn

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5417 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoAdd support for the SMSC FDC37C932 Super I/O.
Marc Bertens [Tue, 13 Apr 2010 01:22:20 +0000 (01:22 +0000)]
Add support for the SMSC FDC37C932 Super I/O.

This chip is found e.g. in the Nokia IP330 (firewall hardware).

Signed-off-by: Marc Bertens <mbertens@xs4all.nl>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5416 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoupdate atom car code in the same way that 6ex/6fx was updated.
Stefan Reinauer [Tue, 13 Apr 2010 00:11:59 +0000 (00:11 +0000)]
update atom car code in the same way that 6ex/6fx was updated.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5415 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoFix eagleheights
Stefan Reinauer [Tue, 13 Apr 2010 00:02:20 +0000 (00:02 +0000)]
Fix eagleheights
not a 6ex board, but using the same CAR code.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5414 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

14 years agoport latest model 6ex car changes to 6fx car, which is almost identical and
Stefan Reinauer [Mon, 12 Apr 2010 23:12:15 +0000 (23:12 +0000)]
port latest model 6ex car changes to 6fx car, which is almost identical and
currently unused. Just keep it in sync, we might need it some day.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5413 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1