upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
377 B
21 lines
377 B
10 years ago
|
/* include/linux/usb/otg.h
|
||
|
*
|
||
|
* Copyright (c) 2015 Texas Instruments Incorporated - http://www.ti.com
|
||
|
*
|
||
|
* USB OTG (On The Go) defines
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef __LINUX_USB_OTG_H
|
||
|
#define __LINUX_USB_OTG_H
|
||
|
|
||
|
enum usb_dr_mode {
|
||
|
USB_DR_MODE_UNKNOWN,
|
||
|
USB_DR_MODE_HOST,
|
||
|
USB_DR_MODE_PERIPHERAL,
|
||
|
USB_DR_MODE_OTG,
|
||
|
};
|
||
|
|
||
|
#endif /* __LINUX_USB_OTG_H */
|