summaryrefslogtreecommitdiff
path: root/drivers/usb/host/ehci.h
diff options
context:
space:
mode:
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>2016-03-31 23:12:17 +0200
committerTom Rini <trini@konsulko.com>2016-04-01 17:18:08 -0400
commit3f9f8a5b83f8aec40c9f4ee496046a695e333c45 (patch)
tree0cb60651d428e13fa26167915c4cd0df3744aeba /drivers/usb/host/ehci.h
parent9d11d12a16d12caae7f9418322485392a5583423 (diff)
downloadu-boot-imx-3f9f8a5b83f8aec40c9f4ee496046a695e333c45.zip
u-boot-imx-3f9f8a5b83f8aec40c9f4ee496046a695e333c45.tar.gz
u-boot-imx-3f9f8a5b83f8aec40c9f4ee496046a695e333c45.tar.bz2
ehci-hcd: Add init_after_reset
Some host controllers need addidional initialization after ehci_reset() In non-dm implementation it is possible to use CONFIG_EHCI_HCD_INIT_AFTER_RESET. This patch adds similar option to ehci drivers using dm. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Acked-by: Marek Vasut <marex@denx.de> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb/host/ehci.h')
-rw-r--r--drivers/usb/host/ehci.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h
index 826b3fe..734d7f0 100644
--- a/drivers/usb/host/ehci.h
+++ b/drivers/usb/host/ehci.h
@@ -240,6 +240,7 @@ struct ehci_ops {
void (*powerup_fixup)(struct ehci_ctrl *ctrl, uint32_t *status_reg,
uint32_t *reg);
uint32_t *(*get_portsc_register)(struct ehci_ctrl *ctrl, int port);
+ int (*init_after_reset)(struct ehci_ctrl *ctrl);
};
struct ehci_ctrl {