[SerialICE] New patch to review for serialice: 32ae29f Fix some Intel ICH7 filters

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Fri Feb 22 19:27:17 CET 2013


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2486

-gerrit

commit 32ae29f147629b3457c1270f63c72548b82cc6e1
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Fri Feb 22 20:10:08 2013 +0200

    Fix some Intel ICH7 filters
    
    The enable bits to route serial COM port ranges to LPC are
    a byte register 0x82.
    
    Remove incorrect AC'97 device mappings.
    
    Change-Id: If7b89838d94d953ac19d97d5573bc866bb71d2ba
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 SerialICE/simba/i82801.lua | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/SerialICE/simba/i82801.lua b/SerialICE/simba/i82801.lua
index ddc9a6e..f276c51 100644
--- a/SerialICE/simba/i82801.lua
+++ b/SerialICE/simba/i82801.lua
@@ -162,7 +162,7 @@ end
 
 function enable_gx_lpc_bars()
 	pci_cfg8_hook(dev_power, 0x80, "LPC", lpc_protect_serial_port)
-	pci_cfg16_hook(dev_power, 0x82, "LPC", lpc_protect_serial_port)
+	pci_cfg8_hook(dev_power, 0x82, "LPC", lpc_protect_serial_port)
 
 	pci_cfg32_hook(dev_power, 0x84, "LPC", lpc_io_bar)
 	pci_cfg32_hook(dev_power, 0x88, "LPC", lpc_io_bar)
@@ -176,8 +176,6 @@ function enable_hook_i82801gx()
 	enable_smbus_host_bar()
 	enable_gx_power_bars()
 	enable_gx_lpc_bars()
-	enable_audio_bars()
-	enable_modem_bars()
 end
 
 



More information about the SerialICE mailing list