barebox/include/usb/ehci.h
Sascha Hauer 80a4c202dd USB ehci: Add platform specific init calls
Some USB cores need a platform specific init hook, add it to
the ehci driver.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2013-02-14 09:56:35 +01:00

31 lines
562 B
C

#ifndef __USB_EHCI_H
#define __USB_EHCI_H
#define EHCI_HAS_TT (1 << 0)
struct ehci_platform_data {
unsigned long flags;
};
struct ehci_data {
void __iomem *hccr;
void __iomem *hcor;
unsigned long flags;
/* platform specific init functions */
int (*init)(void *drvdata);
int (*post_init)(void *drvdata);
void *drvdata;
};
#ifdef CONFIG_USB_EHCI
int ehci_register(struct device_d *dev, struct ehci_data *data);
#else
static inline int ehci_register(struct device_d *dev, struct ehci_data *data)
{
return -ENOSYS;
}
#endif
#endif /* __USB_EHCI_H */