-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
USB: MXC: Add i.MX21 specific USB host controller driver.
This driver is a Full / Low speed only USB host for the i.MX21. Signed-off-by: Martin Fuzzey <mfuzzey@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Martin Fuzzey
authored and
Greg Kroah-Hartman
committed
Mar 2, 2010
1 parent
13dda80
commit 23d3e7a
Showing
7 changed files
with
2,804 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (C) 2009 Martin Fuzzey <mfuzzey@gmail.com> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
*/ | ||
|
||
#ifndef __ASM_ARCH_MX21_USBH | ||
#define __ASM_ARCH_MX21_USBH | ||
|
||
enum mx21_usbh_xcvr { | ||
/* Values below as used by hardware (HWMODE register) */ | ||
MX21_USBXCVR_TXDIF_RXDIF = 0, | ||
MX21_USBXCVR_TXDIF_RXSE = 1, | ||
MX21_USBXCVR_TXSE_RXDIF = 2, | ||
MX21_USBXCVR_TXSE_RXSE = 3, | ||
}; | ||
|
||
struct mx21_usbh_platform_data { | ||
enum mx21_usbh_xcvr host_xcvr; /* tranceiver mode host 1,2 ports */ | ||
enum mx21_usbh_xcvr otg_xcvr; /* tranceiver mode otg (as host) port */ | ||
u16 enable_host1:1, | ||
enable_host2:1, | ||
enable_otg_host:1, /* enable "OTG" port (as host) */ | ||
host1_xcverless:1, /* traceiverless host1 port */ | ||
host1_txenoe:1, /* output enable host1 transmit enable */ | ||
otg_ext_xcvr:1, /* external tranceiver for OTG port */ | ||
unused:10; | ||
}; | ||
|
||
#endif /* __ASM_ARCH_MX21_USBH */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.