mirror of
https://xff.cz/git/u-boot/
synced 2026-01-05 02:56:33 +01:00
Merge tag 'u-boot-rockchip-20191124' of https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip
- Clean vid/pid in Kconfig and add fastboot for rk3399 - add 'u-boot, spl-fifo-mode' for mmc - Use FIT generator for rk3229 optee and rk3368 ATF - fan53555: add support for Silergy SYR82X and SYR83X
This commit is contained in:
@@ -10,10 +10,12 @@
|
||||
#define __DWC3_UBOOT_H_
|
||||
|
||||
#include <linux/usb/otg.h>
|
||||
#include <linux/usb/phy.h>
|
||||
|
||||
struct dwc3_device {
|
||||
unsigned long base;
|
||||
enum usb_dr_mode dr_mode;
|
||||
enum usb_phy_interface hsphy_mode;
|
||||
u32 maximum_speed;
|
||||
unsigned tx_fifo_resize:1;
|
||||
unsigned has_lpm_erratum;
|
||||
|
||||
19
include/linux/usb/phy.h
Normal file
19
include/linux/usb/phy.h
Normal file
@@ -0,0 +1,19 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* USB PHY defines
|
||||
*
|
||||
* These APIs may be used between USB controllers. USB device drivers
|
||||
* (for either host or peripheral roles) don't use these calls; they
|
||||
* continue to use just usb_device and usb_gadget.
|
||||
*/
|
||||
|
||||
#ifndef __LINUX_USB_PHY_H
|
||||
#define __LINUX_USB_PHY_H
|
||||
|
||||
enum usb_phy_interface {
|
||||
USBPHY_INTERFACE_MODE_UNKNOWN,
|
||||
USBPHY_INTERFACE_MODE_UTMI,
|
||||
USBPHY_INTERFACE_MODE_UTMIW,
|
||||
};
|
||||
|
||||
#endif /* __LINUX_USB_PHY_H */
|
||||
14
include/power/fan53555.h
Normal file
14
include/power/fan53555.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
* Copyright (C) 2019 Vasily Khoruzhick <anarsoul@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef _FAN53555_H_
|
||||
#define _FAN53555_H_
|
||||
|
||||
enum fan53555_vendor {
|
||||
FAN53555_VENDOR_FAIRCHILD,
|
||||
FAN53555_VENDOR_SILERGY,
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user