/* * SPDX-License-Identifier: GPL-2.0+ * * (C) Copyright 2022 Rockchip Electronics Co., Ltd */ #include #include #include #include DECLARE_GLOBAL_DATA_PTR; #define CRU_BASE 0xFF3B2000 #define CRU_SOFTRST_CON04 0x0A10 #ifdef CONFIG_USB_DWC3 static struct dwc3_device dwc3_device_data = { .maximum_speed = USB_SPEED_HIGH, .base = 0xffb00000, .dr_mode = USB_DR_MODE_PERIPHERAL, .index = 0, .dis_u2_susphy_quirk = 1, .usb2_phyif_utmi_width = 16, }; int usb_gadget_handle_interrupts(void) { dwc3_uboot_handle_interrupt(0); return 0; } #ifdef CONFIG_SUPPORT_USBPLUG static void usb_reset_otg_controller(void) { writel(0x1 << 7 | 0x1 << 23, CRU_BASE + CRU_SOFTRST_CON04); mdelay(1); writel(0x0 << 7 | 0x1 << 23, CRU_BASE + CRU_SOFTRST_CON04); mdelay(1); } #endif int board_usb_init(int index, enum usb_init_type init) { #ifdef CONFIG_SUPPORT_USBPLUG usb_reset_otg_controller(); #endif writel(0x01ff0000, 0xff000050); /* Resume usb2 phy to normal mode */ return dwc3_uboot_init(&dwc3_device_data); } #endif