1 /* 2 * Copyright (c) 2019 - 2021, Broadcom 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef PLATFORM_USB_H 8 #define PLATFORM_USB_H 9 10 #include <platform_def.h> 11 12 #define USB3_DRD BIT(0U) 13 #define USB3H_USB2DRD BIT(1U) 14 15 extern const unsigned int xhc_portsc_reg_offset[MAX_USB_PORTS]; 16 17 void xhci_phy_init(void); 18 19 #endif /* PLATFORM_USB_H */ 20