roda/rk886ex: Move device changes to mainboard code from acpi tables code

Change-Id: I3d694e5b3092d78bce89f6baa7b2dedffddf3012
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/6807
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
Vladimir Serbinenko 2014-08-31 00:30:26 +02:00
parent 02d674ac2f
commit 5dfd681978
2 changed files with 3 additions and 4 deletions

View File

@ -263,9 +263,5 @@ unsigned long write_acpi_tables(unsigned long start)
printk(BIOS_DEBUG, "current = %lx\n", current); printk(BIOS_DEBUG, "current = %lx\n", current);
printk(BIOS_INFO, "ACPI: done.\n"); printk(BIOS_INFO, "ACPI: done.\n");
/* Enable Dummy DCC ON# for DVI */
printk(BIOS_DEBUG, "Laptop handling...\n");
outb(inb(0x60f) & ~(1 << 5), 0x60f);
return current; return current;
} }

View File

@ -131,6 +131,9 @@ static void mainboard_enable(device_t dev)
#if DUMP_RUNTIME_REGISTERS #if DUMP_RUNTIME_REGISTERS
dump_runtime_registers(); dump_runtime_registers();
#endif #endif
/* Enable Dummy DCC ON# for DVI */
printk(BIOS_DEBUG, "Laptop handling...\n");
outb(inb(0x60f) & ~(1 << 5), 0x60f);
} }
struct chip_operations mainboard_ops = { struct chip_operations mainboard_ops = {