cbfs: Don't require the CBFS size with cbfs_init_mem()
[oweals/u-boot.git] / include / dwc3-uboot.h
index 3c9e204cf0705bfdd6aed4e8e2fbf765ce9e82e1..ecae34bf0697732caa40b83d5602d9844853ae6a 100644 (file)
@@ -9,6 +9,7 @@
 #ifndef __DWC3_UBOOT_H_
 #define __DWC3_UBOOT_H_
 
+#include <generic-phy.h>
 #include <linux/usb/otg.h>
 #include <linux/usb/phy.h>
 
@@ -32,6 +33,7 @@ struct dwc3_device {
        unsigned rx_detect_poll_quirk;
        unsigned dis_u3_susphy_quirk;
        unsigned dis_u2_susphy_quirk;
+       unsigned dis_del_phy_power_chg_quirk;
        unsigned tx_de_emphasis_quirk;
        unsigned tx_de_emphasis;
        int index;
@@ -43,17 +45,15 @@ void dwc3_uboot_handle_interrupt(int index);
 
 struct phy;
 #if CONFIG_IS_ENABLED(PHY) && CONFIG_IS_ENABLED(DM_USB)
-int dwc3_setup_phy(struct udevice *dev, struct phy **array, int *num_phys);
-int dwc3_shutdown_phy(struct udevice *dev, struct phy *usb_phys, int num_phys);
+int dwc3_setup_phy(struct udevice *dev, struct phy_bulk *phys);
+int dwc3_shutdown_phy(struct udevice *dev, struct phy_bulk *phys);
 #else
-static inline int dwc3_setup_phy(struct udevice *dev, struct phy **array,
-                                int *num_phys)
+static inline int dwc3_setup_phy(struct udevice *dev, struct phy_bulk *phys)
 {
        return -ENOTSUPP;
 }
 
-static inline int dwc3_shutdown_phy(struct udevice *dev, struct phy *usb_phys,
-                                   int num_phys)
+static inline int dwc3_shutdown_phy(struct udevice *dev, struct phy_bulk *phys)
 {
        return -ENOTSUPP;
 }