mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

Add a device driver for Synopsis DWC2 USB IP of STM32MP15x, this USB OTG device is only supported in device mode. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Change-Id: I90b21f094f6637b85f3ace23a3a3a2f6fd4e0951
16 lines
362 B
C
16 lines
362 B
C
/*
|
|
* Copyright (c) 2021, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef STM32MP1_USB_H
|
|
#define STM32MP1_USB_H
|
|
|
|
#include <drivers/usb_device.h>
|
|
|
|
void stm32mp1_usb_init_driver(struct usb_handle *usb_core_handle,
|
|
struct pcd_handle *pcd_handle,
|
|
void *base_register);
|
|
|
|
#endif /* STM32MP1_USB_H */
|