usbdebug: Refactor early enable
Always sanity check for EHCI class device and move PCI function power enablement up. Change-Id: I1eebe813fbb420738af2d572178213fc660f392a Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/20826 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
d1a0c57708
commit
6683e409d3
|
@ -33,13 +33,17 @@ static struct device_operations ehci_dbg_ops;
|
||||||
int ehci_debug_hw_enable(unsigned int *base, unsigned int *dbg_offset)
|
int ehci_debug_hw_enable(unsigned int *base, unsigned int *dbg_offset)
|
||||||
{
|
{
|
||||||
pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
|
pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
|
||||||
pci_ehci_dbg_enable(dbg_dev, CONFIG_EHCI_BAR);
|
|
||||||
#ifdef __SIMPLE_DEVICE__
|
#ifdef __SIMPLE_DEVICE__
|
||||||
pci_devfn_t dev = dbg_dev;
|
pci_devfn_t dev = dbg_dev;
|
||||||
#else
|
#else
|
||||||
device_t dev = dev_find_slot(PCI_DEV2SEGBUS(dbg_dev), PCI_DEV2DEVFN(dbg_dev));
|
device_t dev = dev_find_slot(PCI_DEV2SEGBUS(dbg_dev), PCI_DEV2DEVFN(dbg_dev));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
u32 class = pci_read_config32(dev, PCI_CLASS_REVISION) >> 8;
|
||||||
|
if (class != PCI_EHCI_CLASSCODE)
|
||||||
|
return -1;
|
||||||
|
|
||||||
u8 pos = pci_find_capability(dev, PCI_CAP_ID_EHCI_DEBUG);
|
u8 pos = pci_find_capability(dev, PCI_CAP_ID_EHCI_DEBUG);
|
||||||
if (!pos)
|
if (!pos)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
@ -23,10 +23,13 @@
|
||||||
#define EHCI_BAR_INDEX 0x10
|
#define EHCI_BAR_INDEX 0x10
|
||||||
#define PCI_EHCI_CLASSCODE 0x0c0320 /* USB2.0 with EHCI controller */
|
#define PCI_EHCI_CLASSCODE 0x0c0320 /* USB2.0 with EHCI controller */
|
||||||
|
|
||||||
|
/* Return PCI BDF for an EHCI controller by a given index. PCI function
|
||||||
|
* must already be powered to respond to configuration requests.
|
||||||
|
*/
|
||||||
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx);
|
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx);
|
||||||
|
|
||||||
u8 *pci_ehci_base_regs(pci_devfn_t dev);
|
u8 *pci_ehci_base_regs(pci_devfn_t dev);
|
||||||
void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port);
|
void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port);
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base);
|
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
#ifndef __PRE_RAM__
|
||||||
#if !IS_ENABLED(CONFIG_USBDEBUG)
|
#if !IS_ENABLED(CONFIG_USBDEBUG)
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
|
|
||||||
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
||||||
{
|
{
|
||||||
|
/* Enable all of the USB controllers */
|
||||||
|
outb(0xEF, PM_INDEX);
|
||||||
|
outb(0x7F, PM_DATA);
|
||||||
|
|
||||||
if (hcd_idx == 3)
|
if (hcd_idx == 3)
|
||||||
return PCI_DEV(0, 0x16, 0);
|
return PCI_DEV(0, 0x16, 0);
|
||||||
else if (hcd_idx == 2)
|
else if (hcd_idx == 2)
|
||||||
|
@ -46,11 +50,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
||||||
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
/* Enable all of the USB controllers */
|
|
||||||
outb(0xEF, PM_INDEX);
|
|
||||||
outb(0x7F, PM_DATA);
|
|
||||||
}
|
|
||||||
|
|
|
@ -24,21 +24,10 @@
|
||||||
|
|
||||||
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
||||||
{
|
{
|
||||||
u32 class;
|
return PCI_DEV(0, 0x1d, 0);
|
||||||
pci_devfn_t dev = PCI_DEV(0, 0x1d, 0);
|
|
||||||
|
|
||||||
class = pci_read_config32(dev, PCI_CLASS_REVISION) >> 8;
|
|
||||||
if (class != PCI_EHCI_CLASSCODE)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
return dev;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
{
|
{
|
||||||
/* Hardcoded to physical port 1 */
|
/* Hardcoded to physical port 1 */
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
|
|
||||||
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
||||||
{
|
{
|
||||||
|
/* Enable all of the USB controllers */
|
||||||
|
outb(0xEF, PM_INDEX);
|
||||||
|
outb(0x7F, PM_DATA);
|
||||||
|
|
||||||
if (hcd_idx == 3)
|
if (hcd_idx == 3)
|
||||||
return PCI_DEV(0, 0x16, 2);
|
return PCI_DEV(0, 0x16, 2);
|
||||||
else if (hcd_idx == 2)
|
else if (hcd_idx == 2)
|
||||||
|
@ -46,11 +50,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
||||||
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
/* Enable all of the USB controllers */
|
|
||||||
outb(0xEF, PM_INDEX);
|
|
||||||
outb(0x7F, PM_DATA);
|
|
||||||
}
|
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
|
|
||||||
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
||||||
{
|
{
|
||||||
|
/* Enable all of the USB controllers */
|
||||||
|
outb(0xEF, PM_INDEX);
|
||||||
|
outb(0x7F, PM_DATA);
|
||||||
|
|
||||||
if (hcd_idx == 3)
|
if (hcd_idx == 3)
|
||||||
return PCI_DEV(0, 0x16, 0);
|
return PCI_DEV(0, 0x16, 0);
|
||||||
else if (hcd_idx == 2)
|
else if (hcd_idx == 2)
|
||||||
|
@ -46,11 +50,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
||||||
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
/* Enable all of the USB controllers */
|
|
||||||
outb(0xEF, PM_INDEX);
|
|
||||||
outb(0x7F, PM_DATA);
|
|
||||||
}
|
|
||||||
|
|
|
@ -32,7 +32,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
{
|
{
|
||||||
/* TODO: Allow changing the physical USB port used as Debug Port. */
|
/* TODO: Allow changing the physical USB port used as Debug Port. */
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
|
@ -45,7 +45,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
||||||
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
|
|
||||||
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
||||||
{
|
{
|
||||||
|
/* Enable all of the USB controllers */
|
||||||
|
outb(0xEF, PM_INDEX);
|
||||||
|
outb(0x7F, PM_DATA);
|
||||||
|
|
||||||
if (hcd_idx == 3)
|
if (hcd_idx == 3)
|
||||||
return PCI_DEV(0, 0x16, 2);
|
return PCI_DEV(0, 0x16, 2);
|
||||||
else if (hcd_idx == 2)
|
else if (hcd_idx == 2)
|
||||||
|
@ -46,11 +50,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
reg32 |= (1 << 27); /* Enable Debug Port port number remapping. */
|
||||||
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
write32(base_regs + DEBUGPORT_MISC_CONTROL, reg32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
/* Enable all of the USB controllers */
|
|
||||||
outb(0xEF, PM_INDEX);
|
|
||||||
outb(0x7F, PM_DATA);
|
|
||||||
}
|
|
||||||
|
|
|
@ -27,27 +27,20 @@ pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
||||||
u32 class;
|
u32 class;
|
||||||
pci_devfn_t dev;
|
pci_devfn_t dev;
|
||||||
|
|
||||||
#if IS_ENABLED(CONFIG_HAVE_USBDEBUG_OPTIONS)
|
if (!IS_ENABLED(CONFIG_HAVE_USBDEBUG_OPTIONS))
|
||||||
|
return PCI_DEV(0, 0x1d, 7);
|
||||||
|
|
||||||
if (hcd_idx==2)
|
if (hcd_idx==2)
|
||||||
dev = PCI_DEV(0, 0x1a, 0);
|
dev = PCI_DEV(0, 0x1a, 0);
|
||||||
else
|
else
|
||||||
dev = PCI_DEV(0, 0x1d, 0);
|
dev = PCI_DEV(0, 0x1d, 0);
|
||||||
#else
|
|
||||||
dev = PCI_DEV(0, 0x1d, 7);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class = pci_read_config32(dev, PCI_CLASS_REVISION) >> 8;
|
|
||||||
#if IS_ENABLED(CONFIG_HAVE_USBDEBUG_OPTIONS)
|
|
||||||
if (class != PCI_EHCI_CLASSCODE) {
|
|
||||||
/* If we enter here before RCBA programming, EHCI function may
|
/* If we enter here before RCBA programming, EHCI function may
|
||||||
* appear with the highest function number instead.
|
* appear with the highest function number instead.
|
||||||
*/
|
*/
|
||||||
dev |= PCI_DEV(0, 0, 7);
|
|
||||||
class = pci_read_config32(dev, PCI_CLASS_REVISION) >> 8;
|
class = pci_read_config32(dev, PCI_CLASS_REVISION) >> 8;
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (class != PCI_EHCI_CLASSCODE)
|
if (class != PCI_EHCI_CLASSCODE)
|
||||||
return 0;
|
dev |= PCI_DEV(0, 0, 7);
|
||||||
|
|
||||||
return dev;
|
return dev;
|
||||||
}
|
}
|
||||||
|
@ -57,10 +50,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
{
|
{
|
||||||
/* Not needed, the ICH* southbridges hardcode physical USB port 1. */
|
/* Not needed, the ICH* southbridges hardcode physical USB port 1. */
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
/* Bail out. No console to complain in. */
|
|
||||||
if (!dev)
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
|
@ -41,7 +41,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
dword |= (port << 12);
|
dword |= (port << 12);
|
||||||
pci_write_config32(dev, 0x74, dword);
|
pci_write_config32(dev, 0x74, dword);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
|
@ -41,7 +41,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
dword |= (port << 12);
|
dword |= (port << 12);
|
||||||
pci_write_config32(dev, 0x74, dword);
|
pci_write_config32(dev, 0x74, dword);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
|
@ -43,7 +43,3 @@ void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)
|
||||||
dword |= (port << 12);
|
dword |= (port << 12);
|
||||||
pci_write_config32(dev, 0x74, dword);
|
pci_write_config32(dev, 0x74, dword);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pci_ehci_dbg_enable(pci_devfn_t dev, unsigned long base)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue