diff options
Diffstat (limited to 'src/southbridge/intel/i82801ex')
-rw-r--r-- | src/southbridge/intel/i82801ex/Kconfig | 12 | ||||
-rw-r--r-- | src/southbridge/intel/i82801ex/ehci.c | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801ex/Kconfig b/src/southbridge/intel/i82801ex/Kconfig index 23a68b8b97..b1d7dbb478 100644 --- a/src/southbridge/intel/i82801ex/Kconfig +++ b/src/southbridge/intel/i82801ex/Kconfig @@ -2,4 +2,16 @@ config SOUTHBRIDGE_INTEL_I82801EX bool select IOAPIC select HAVE_HARD_RESET + select HAVE_USBDEBUG +if SOUTHBRIDGE_INTEL_I82801EX + +config EHCI_BAR + hex + default 0xfef00000 + +config EHCI_DEBUG_OFFSET + hex + default 0xa0 + +endif diff --git a/src/southbridge/intel/i82801ex/ehci.c b/src/southbridge/intel/i82801ex/ehci.c index 8ae921d194..045840a82b 100644 --- a/src/southbridge/intel/i82801ex/ehci.c +++ b/src/southbridge/intel/i82801ex/ehci.c @@ -3,6 +3,7 @@ #include <device/pci.h> #include <device/pci_ids.h> #include <device/pci_ops.h> +#include <usbdebug.h> #include "i82801ex.h" static void ehci_init(struct device *dev) @@ -34,7 +35,7 @@ static struct pci_operations lops_pci = { .set_subsystem = &ehci_set_subsystem, }; static struct device_operations ehci_ops = { - .read_resources = pci_dev_read_resources, + .read_resources = pci_ehci_read_resources, .set_resources = pci_dev_set_resources, .enable_resources = pci_dev_enable_resources, .init = ehci_init, |