- Apply 11_24_a_s1_core.diff from

https://openbios.org/roundup/linuxbios/issue24
- fix up for via epia-m



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2110 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2005-11-26 16:56:05 +00:00
parent b7627bca65
commit f622d598db
14 changed files with 1073 additions and 15 deletions

View File

@@ -66,6 +66,10 @@ static int lsmbus_write_byte(device_t dev, uint8_t address, uint8_t val)
return do_smbus_write_byte(res->base, device, address, val);
}
#if HAVE_ACPI_TABLES == 1
unsigned pm_base;
#endif
static void acpi_init(struct device *dev)
{
uint8_t byte;
@@ -129,6 +133,12 @@ static void acpi_init(struct device *dev)
printk_debug("Throttling CPU %2d.%1.1d percent.\n",
(on*12)+(on>>1),(on&1)*5);
}
#if HAVE_ACPI_TABLES == 1
pm_base = pci_read_config16(dev, 0x58) & 0xff00;
printk_debug("pm_base: 0x%04x\n",pm_base);
#endif
}
static void acpi_read_resources(device_t dev)