island goes agami
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2103 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
7d5c7a7f17
commit
d5795f3d5c
|
@ -129,7 +129,7 @@ mainboardinit cpu/x86/mmx/disable_mmx.inc
|
||||||
dir /pc80
|
dir /pc80
|
||||||
config chip.h
|
config chip.h
|
||||||
|
|
||||||
# config for arima/hdama
|
# config for agami/aruma
|
||||||
chip northbridge/amd/amdk8/root_complex
|
chip northbridge/amd/amdk8/root_complex
|
||||||
device apic_cluster 0 on
|
device apic_cluster 0 on
|
||||||
chip cpu/amd/socket_940
|
chip cpu/amd/socket_940
|
||||||
|
|
|
@ -121,7 +121,7 @@ default CONFIG_IOAPIC=1
|
||||||
## Clean up the motherboard id strings
|
## Clean up the motherboard id strings
|
||||||
##
|
##
|
||||||
default MAINBOARD_PART_NUMBER="ARUMA"
|
default MAINBOARD_PART_NUMBER="ARUMA"
|
||||||
default MAINBOARD_VENDOR="ISLAND"
|
default MAINBOARD_VENDOR="AGAMI"
|
||||||
default MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID=0x1022
|
default MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID=0x1022
|
||||||
default MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID=0x36c0
|
default MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID=0x36c0
|
||||||
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
Patches for Island Aruma
|
|
||||||
------------------------
|
|
||||||
|
|
||||||
* hyperclocking.diff
|
|
||||||
this patch allows experimenting with hypertransport speeds
|
|
||||||
of the CPU<-->CPU and AMD8131 links. Do not overclock HT links
|
|
||||||
for production use!
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Island Aruma ACPI support
|
* Agami Aruma ACPI support
|
||||||
* written by Stefan Reinauer <stepan@openbios.org>
|
* written by Stefan Reinauer <stepan@openbios.org>
|
||||||
* (C) 2005 Stefan Reinauer
|
* (C) 2005 Stefan Reinauer
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
extern struct chip_operations mainboard_island_aruma_ops;
|
extern struct chip_operations mainboard_agami_aruma_ops;
|
||||||
|
|
||||||
struct mainboard_island_aruma_config {
|
struct mainboard_agami_aruma_config {
|
||||||
int nothing;
|
int nothing;
|
||||||
};
|
};
|
||||||
|
|
|
@ -333,7 +333,7 @@ static void enable_dev(struct device *dev)
|
||||||
{
|
{
|
||||||
dev->ops = &mainboard_operations;
|
dev->ops = &mainboard_operations;
|
||||||
}
|
}
|
||||||
struct chip_operations mainboard_island_aruma_ops = {
|
struct chip_operations mainboard_agami_aruma_ops = {
|
||||||
.enable_dev = enable_dev,
|
.enable_dev = enable_dev,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ unsigned get_apicid_base(unsigned ioapic_num)
|
||||||
void *smp_write_config_table(void *v)
|
void *smp_write_config_table(void *v)
|
||||||
{
|
{
|
||||||
static const char sig[4] = "PCMP";
|
static const char sig[4] = "PCMP";
|
||||||
static const char oem[8] = "ISLAND ";
|
static const char oem[8] = "AGAMI ";
|
||||||
static const char productid[12] = "ARUMA ";
|
static const char productid[12] = "ARUMA ";
|
||||||
struct mp_config_table *mc;
|
struct mp_config_table *mc;
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Island Aruma needs a different resource map
|
* Agami Aruma needs a different resource map
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue