small agami aruma configuration updates (trivial)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2724 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2007-06-14 21:45:21 +00:00 committed by Stefan Reinauer
parent fc53b3c1ca
commit 440113f00b
3 changed files with 21 additions and 6 deletions

View File

@ -73,6 +73,10 @@ uses ENABLE_APIC_EXT_ID
uses APIC_ID_OFFSET
uses LIFT_BSP_APIC_ID
uses HW_MEM_HOLE_SIZEK
uses CONFIG_PCI_64BIT_PREF_MEM
###
### Build options
###
@ -99,6 +103,12 @@ default HAVE_FALLBACK_BOOT=1
##
default HAVE_HARD_RESET=1
##
## set memory hole size
##
default HW_MEM_HOLE_SIZEK=0x300000
#default HW_MEM_HOLE_SIZEK=0x200000
##
## Build code to export a programmable irq routing table
##
@ -129,7 +139,6 @@ default LB_CKS_LOC=123
##
## Build code for SMP support
## Only worry about 2 micro processors
##
default CONFIG_SMP=1
default CONFIG_MAX_CPUS=8
@ -139,7 +148,7 @@ default CONFIG_LOGICAL_CPUS=1
default ENABLE_APIC_EXT_ID=1
default APIC_ID_OFFSET=0x10
default LIFT_BSP_APIC_ID=0
default LIFT_BSP_APIC_ID=1 # SDE was 0
#HT Unit ID offset
#default HT_CHAIN_UNITID_BASE=0xa

View File

@ -21,11 +21,17 @@ unsigned long acpi_fill_madt(unsigned long current)
unsigned int gsi_base=0x18, ioapic_nr=2, i;
device_t dev=0;
/* create all subtables for 4p */
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 0, 0); //SDE BSP APIC ID=0
/* creare all subtables for 4p */
#ifdef PRE_REVE
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 0, 0);
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 1, 17);
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 2, 18);
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 3, 19);
#endif
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 0, 16);
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 1, 18);
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 2, 20);
current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current, 3, 22);
/* Write 8111 IOAPIC */
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current, 1,

View File

@ -12,7 +12,7 @@ option MAXIMUM_CONSOLE_LOGLEVEL=8
romimage "normal"
option ROM_SIZE = 512*1024-36*1024
option USE_FALLBACK_IMAGE=0
option ROM_IMAGE_SIZE=0x16000
option ROM_IMAGE_SIZE=0x17000
option XIP_ROM_SIZE=0x20000
option LINUXBIOS_EXTRA_VERSION=".0-normal"
payload ../../../../../../filo.elf
@ -20,7 +20,7 @@ end
romimage "fallback"
option USE_FALLBACK_IMAGE=1
option ROM_IMAGE_SIZE=0x16000
option ROM_IMAGE_SIZE=0x17000
option XIP_ROM_SIZE=0x20000
option LINUXBIOS_EXTRA_VERSION=".0-fallback"
payload ../../../../../../filo.elf