diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2011-11-24 04:22:17 +0100 |
---|---|---|
committer | Remy Bohmer <linux@bohmer.net> | 2011-12-11 14:49:37 +0100 |
commit | 0f8c86b5498d7e61760c7b85ddfeb068b48fc828 (patch) | |
tree | 80ba9d03f62bea95810141a11a7924fa010259d2 /include/usb | |
parent | 1ca56202532395f26fc59a87e62c9cab1541f9f3 (diff) | |
download | u-boot-imx-0f8c86b5498d7e61760c7b85ddfeb068b48fc828.zip u-boot-imx-0f8c86b5498d7e61760c7b85ddfeb068b48fc828.tar.gz u-boot-imx-0f8c86b5498d7e61760c7b85ddfeb068b48fc828.tar.bz2 |
USB: MX5: Abstract out mx51 USB pixmux configuration
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Remy Bohmer <linux@bohmer.net>
Cc: Wolfgang Grandegger <wg@denx.de>
Cc: Jason Liu <r64343@freescale.com>
Diffstat (limited to 'include/usb')
-rw-r--r-- | include/usb/ehci-fsl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/usb/ehci-fsl.h b/include/usb/ehci-fsl.h index 4ce0ab3..2869302 100644 --- a/include/usb/ehci-fsl.h +++ b/include/usb/ehci-fsl.h @@ -253,4 +253,10 @@ struct usb_ehci { /* Board-specific initialization */ int board_ehci_hcd_init(int port); +/* CPU-specific abstracted-out IOMUX init */ +#ifdef CONFIG_MX51 +void setup_iomux_usb_h1(void); +void setup_iomux_usb_h2(void); +#endif + #endif /* _EHCI_FSL_H */ |