Changeset 3593

Show
Ignore:
Timestamp:
09/23/08 23:57:33 (4 months ago)
Author:
ruik
Message:

Attached patch removes HPET info from ACPI tables. HPET does not work fine on
VT8237R (random keyboard/mouse lockups).

Signed-off-by: Rudolf Marek <r.marek@…>
Acked-by: Jordan Crouse <jordan.crouse@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/coreboot-v2/src/mainboard/asus/a8v-e_se/acpi_tables.c

    r3128 r3593  
    134134        acpi_add_table(rsdt, fadt); 
    135135 
    136         printk_debug("ACPI:    * HPET\n"); 
    137         hpet = (acpi_hpet_t *) current; 
    138         current += sizeof(acpi_hpet_t); 
    139         acpi_create_hpet(hpet); 
    140         acpi_add_table(rsdt, hpet); 
    141  
    142         /* If we want to use HPET timers Linux wants an MADT. */ 
     136        /* If we want to use HPET timers Linux wants it in MADT. */ 
    143137        printk_debug("ACPI:    * MADT\n"); 
    144138        madt = (acpi_madt_t *) current; 
     
    146140        current += madt->header.length; 
    147141        acpi_add_table(rsdt, madt); 
    148  
    149142        printk_debug("ACPI:    * MCFG\n"); 
    150143        mcfg = (acpi_mcfg_t *) current;