/* * Copyright 2018 - 2022 NXP * * SPDX-License-Identifier: Apache-2.0 */ #ifndef __USB_DEVICE_CONFIG_H__ #define __USB_DEVICE_CONFIG_H__ #include #include "usb.h" /****************************************************************************** * Definitions *****************************************************************************/ /* EHCI instance count */ #ifdef CONFIG_USB_DC_NXP_EHCI #define USB_DEVICE_CONFIG_EHCI (1U) /* How many the DTD are supported. */ #define USB_DEVICE_CONFIG_EHCI_MAX_DTD (16U) #endif /* CONFIG_USB_DC_NXP_EHCI */ #ifdef CONFIG_USB_DC_NXP_LPCIP3511 #ifdef USBHSD_BASE_ADDRS #define USB_DEVICE_CONFIG_LPCIP3511HS (1U) #else #define USB_DEVICE_CONFIG_LPCIP3511HS (0U) #endif #ifdef USB_BASE_ADDRS #define USB_DEVICE_CONFIG_LPCIP3511FS (1U) #else #define USB_DEVICE_CONFIG_LPCIP3511FS (0U) #endif #endif /* CONFIG_USB_DC_NXP_LPCIP3511 */ /* Whether device is self power. 1U supported, 0U not supported */ #define USB_DEVICE_CONFIG_SELF_POWER (1U) #define DT_DRV_COMPAT nxp_mcux_usbd /* Number of endpoints supported */ #define USB_DEVICE_CONFIG_ENDPOINTS (DT_INST_PROP(0, num_bidir_endpoints)) #endif /* __USB_DEVICE_CONFIG_H__ */