summaryrefslogtreecommitdiff
path: root/src/southbridge/amd/agesa/hudson/enable_usbdebug.c
diff options
context:
space:
mode:
authorZheng Bao <fishbaozi@gmail.com>2012-12-14 15:58:15 +0800
committerMarc Jones <marcj303@gmail.com>2012-12-28 21:16:42 +0100
commitb01097e0fe03b7dc81eadd898ff380b57f291852 (patch)
tree333c446ea37ebb98f73b01cd2bced56119530e46 /src/southbridge/amd/agesa/hudson/enable_usbdebug.c
parentceb82da99f9b9bc0629b6e3689dd19c988f4cd0b (diff)
downloadcoreboot-b01097e0fe03b7dc81eadd898ff380b57f291852.tar.xz
USBDEBUG: Enable the EHCI in AMD Southbridge
Since SB800, USB2.0 debug port is dev 0x12, func 2. Change-Id: Ie0e33cb2f0833b0baeef81323e1a0634242fbe55 Signed-off-by: Zheng Bao <zheng.bao@amd.com> Signed-off-by: zbao <fishbaozi@gmail.com> Reviewed-on: http://review.coreboot.org/1880 Tested-by: build bot (Jenkins) Reviewed-by: Dave Frodin <dave.frodin@se-eng.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com> Reviewed-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'src/southbridge/amd/agesa/hudson/enable_usbdebug.c')
-rw-r--r--src/southbridge/amd/agesa/hudson/enable_usbdebug.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/southbridge/amd/agesa/hudson/enable_usbdebug.c b/src/southbridge/amd/agesa/hudson/enable_usbdebug.c
index c558a2698a..85ac8d7ba1 100644
--- a/src/southbridge/amd/agesa/hudson/enable_usbdebug.c
+++ b/src/southbridge/amd/agesa/hudson/enable_usbdebug.c
@@ -45,8 +45,12 @@ void set_debug_port(unsigned int port)
void enable_usbdebug(unsigned int port)
{
- pci_write_config32(PCI_DEV(0, HUDSON_DEVN_BASE + 0x13, 5),
+ /* Enable all of the USB controllers */
+ outb(0xEF, PM_INDEX);
+ outb(0x7F, PM_DATA);
+
+ pci_write_config32(PCI_DEV(0, HUDSON_DEVN_BASE + 0x12, 2),
EHCI_BAR_INDEX, CONFIG_EHCI_BAR);
- pci_write_config8(PCI_DEV(0, HUDSON_DEVN_BASE + 0x13, 5), 0x04, 0x2); /* mem space enabe */
+ pci_write_config8(PCI_DEV(0, HUDSON_DEVN_BASE + 0x12, 2), 0x04, 0x6); /* mem space enabe */
set_debug_port(port);
}