diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 12:25:47 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 12:25:47 -0500 |
| commit | 2bf2154c6bb5599e3ec3f73c34861a0b12aa839e (patch) | |
| tree | 62691bd915e2e3c2e6648306d3fb893f7a1dc57e /include/linux/fsl_devices.h | |
| parent | 08a4ecee986dd98e86090ff5faac4782b6765aed (diff) | |
| parent | 71a8924bee63d891f6256d560e32416a458440b3 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6: (81 commits)
[PATCH] USB: omninet: fix up debugging comments
[PATCH] USB serial: add navman driver
[PATCH] USB: Fix irda-usb use after use
[PATCH] USB: rtl8150 small fix
[PATCH] USB: ftdi_sio: add Icom ID1 USB product and vendor ids
[PATCH] USB: cp2101: add new device IDs
[PATCH] USB: fix check_ctrlrecip to allow control transfers in state ADDRESS
[PATCH] USB: vicam.c: fix a NULL pointer dereference
[PATCH] USB: ZC0301 driver bugfix
[PATCH] USB: add support for Creativelabs Silvercrest USB keyboard
[PATCH] USB: storage: new unusual_devs.h entry: Mitsumi 7in1 Card Reader
[PATCH] USB: storage: unusual_devs.h entry 0420:0001
[PATCH] USB: storage: another unusual_devs.h entry
[PATCH] USB: storage: sandisk unusual_devices entry
[PATCH] USB: fix initdata issue in isp116x-hcd
[PATCH] USB: usbcore: usb_set_configuration oops (NULL ptr dereference)
[PATCH] USB: usbcore: Don't assume a USB configuration includes any interfaces
[PATCH] USB: ub 03 drop stall clearing
[PATCH] USB: ub 02 remove diag
[PATCH] USB: ub 01 remove first_open
...
Diffstat (limited to 'include/linux/fsl_devices.h')
| -rw-r--r-- | include/linux/fsl_devices.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index a9f1cfd096ff..a3a0e078f79d 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h | |||
| @@ -83,5 +83,32 @@ struct fsl_i2c_platform_data { | |||
| 83 | #define FSL_I2C_DEV_SEPARATE_DFSRR 0x00000001 | 83 | #define FSL_I2C_DEV_SEPARATE_DFSRR 0x00000001 |
| 84 | #define FSL_I2C_DEV_CLOCK_5200 0x00000002 | 84 | #define FSL_I2C_DEV_CLOCK_5200 0x00000002 |
| 85 | 85 | ||
| 86 | |||
| 87 | enum fsl_usb2_operating_modes { | ||
| 88 | FSL_USB2_MPH_HOST, | ||
| 89 | FSL_USB2_DR_HOST, | ||
| 90 | FSL_USB2_DR_DEVICE, | ||
| 91 | FSL_USB2_DR_OTG, | ||
| 92 | }; | ||
| 93 | |||
| 94 | enum fsl_usb2_phy_modes { | ||
| 95 | FSL_USB2_PHY_NONE, | ||
| 96 | FSL_USB2_PHY_ULPI, | ||
| 97 | FSL_USB2_PHY_UTMI, | ||
| 98 | FSL_USB2_PHY_UTMI_WIDE, | ||
| 99 | FSL_USB2_PHY_SERIAL, | ||
| 100 | }; | ||
| 101 | |||
| 102 | struct fsl_usb2_platform_data { | ||
| 103 | /* board specific information */ | ||
| 104 | enum fsl_usb2_operating_modes operating_mode; | ||
| 105 | enum fsl_usb2_phy_modes phy_mode; | ||
| 106 | unsigned int port_enables; | ||
| 107 | }; | ||
| 108 | |||
| 109 | /* Flags in fsl_usb2_mph_platform_data */ | ||
| 110 | #define FSL_USB2_PORT0_ENABLED 0x00000001 | ||
| 111 | #define FSL_USB2_PORT1_ENABLED 0x00000002 | ||
| 112 | |||
| 86 | #endif /* _FSL_DEVICE_H_ */ | 113 | #endif /* _FSL_DEVICE_H_ */ |
| 87 | #endif /* __KERNEL__ */ | 114 | #endif /* __KERNEL__ */ |
