1) wraps the s3 parts of chipset code/memory init code with if CONFIG_HAVE_ACPI_RESUM...
authorRudolf Marek <r.marek@assembler.cz>
Mon, 22 Nov 2010 22:00:52 +0000 (22:00 +0000)
committerRudolf Marek <r.marek@assembler.cz>
Mon, 22 Nov 2010 22:00:52 +0000 (22:00 +0000)
commitbcaea142f344389ed0c1857f53b7c8556a804c8d
treefc693f89ea3e374f7d62dfdaabd46f946350af63
parent9b5295f522fa08b84d222ba08f5801d8e812dbc6
1) wraps the s3 parts of chipset code/memory init code with if CONFIG_HAVE_ACPI_RESUME == 1 getting rid of ugly define in romstage.c

2) the patch implements get_cbmem_toc in chipset specific way if defined.
On Intel targets it should be unchanged. On K8T890 the the cbmem_toc is read from NVRAM. Why you ask? Because we cannot do it as on intel, because the framebuffer might be there making it hard to look for it in memory (and remember we need it so early that everying is uncached)

3) The patch removes hardcoded limits for suspend/resume save area (it was 1MB) on intel. Now it computes right numbers itself.

4) it impelements saving the memory during CAR to reserved range in sane way. First the sysinfo area (CAR data) is copied, then the rest after car is disabled (cached copy is used). I changed bit also the the copy of CAR area is now done uncached for target which I feel is more right.

I think I did not change the Intel suspend/resume behaviour but best would be if someone can test it. Please note this patch was unfinished on my drive since ages and it would be very nice to get it in to prevent bit rotten it again.
Now I feel it is done good way and should not break anything. I did a test with abuild and it seems fine.

Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Tobias Diedrich <ranma+coreboot@tdiedrich.de>
Acked-by: Stefan Reinauer <stepan@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6117 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
18 files changed:
src/arch/i386/boot/acpi.c
src/arch/i386/boot/tables.c
src/cpu/amd/car/post_cache_as_ram.c
src/include/cbmem.h
src/lib/cbmem.c
src/mainboard/asus/a8v-e_deluxe/romstage.c
src/mainboard/asus/a8v-e_se/romstage.c
src/mainboard/asus/m2v-mx_se/Kconfig
src/mainboard/asus/m2v-mx_se/mainboard.c
src/mainboard/asus/m2v-mx_se/romstage.c
src/mainboard/asus/m2v/romstage.c
src/northbridge/amd/amdk8/northbridge.c
src/northbridge/amd/amdk8/raminit_f.c
src/northbridge/amd/amdk8/raminit_f_dqs.c
src/southbridge/via/k8t890/k8t890.h
src/southbridge/via/k8t890/k8t890_early_car.c
src/southbridge/via/k8t890/k8t890_host_ctrl.c
src/southbridge/via/vt8237r/vt8237r_early_smbus.c