Michał Żygowski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/62107 )
Change subject: sb/amd/sb700/bootblock.c: Remove redundant LPC port 80 code ......................................................................
sb/amd/sb700/bootblock.c: Remove redundant LPC port 80 code
Signed-off-by: Michał Żygowski michal.zygowski@3mdeb.com Change-Id: I6e8ffe88ca1ceb647be5a773f2092194c5a03033 --- M src/southbridge/amd/sb700/bootblock.c 1 file changed, 0 insertions(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/62107/1
diff --git a/src/southbridge/amd/sb700/bootblock.c b/src/southbridge/amd/sb700/bootblock.c index dbd25f5..a7a466a 100644 --- a/src/southbridge/amd/sb700/bootblock.c +++ b/src/southbridge/amd/sb700/bootblock.c @@ -119,13 +119,6 @@ reg8 = pci_read_config8(dev, IO_MEM_PORT_DECODE_ENABLE_5); reg8 |= (1 << 0) | (1 << 1) | (1 << 6); pci_write_config8(dev, IO_MEM_PORT_DECODE_ENABLE_5, reg8); - - /* SB700 LPC Bridge 0x4a. - * BIT5: Port Enable for Port 0x80 - */ - reg8 = pci_read_config8(dev, IO_MEM_PORT_DECODE_ENABLE_6); - reg8 |= (1 << 5); - pci_write_config8(dev, IO_MEM_PORT_DECODE_ENABLE_6, reg8); }
static void sb7xx_51xx_pci_port80(void)