rk3568_ubuntu_r60_v1.3.2/u-boot/include/linux/usb/phy-rockchip-usb2.h
2023-11-03 06:12:44 +00:00

25 lines
492 B
C

/*
* Copyright 2017 Rockchip Electronics Co., Ltd
*
* SPDX-License-Identifier: GPL-2.0+
*/
#ifndef _PHY_ROCKCHIP_USB2_H
#define _PHY_ROCKCHIP_USB2_H
extern int rockchip_chg_get_type(void);
#if defined(CONFIG_PHY_ROCKCHIP_INNO_USB2) ||\
defined(CONFIG_ROCKCHIP_USB2_PHY) ||\
defined(CONFIG_PHY_ROCKCHIP_NANENG_USB2)
int rockchip_u2phy_vbus_detect(void);
#else
static inline int rockchip_u2phy_vbus_detect(void)
{
return -ENOSYS;
}
#endif
#endif /* _PHY_ROCKCHIP_USB2_H */