Home | History | Annotate | Download | only in configs
      1 /* SPDX-License-Identifier: GPL-2.0 */
      2 /*
      3  * (C) Copyright 2014
      4  * NVIDIA Corporation <www.nvidia.com>
      5  */
      6 
      7 #ifndef _TEGRA_COMMON_USB_GADGET_H_
      8 #define _TEGRA_COMMON_USB_GADGET_H_
      9 
     10 #ifndef CONFIG_SPL_BUILD
     11 /* USB gadget mode support*/
     12 #ifndef CONFIG_TEGRA20
     13 #define CONFIG_CI_UDC_HAS_HOSTPC
     14 #endif
     15 /* DFU protocol */
     16 #define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_1M
     17 #define CONFIG_SYS_DFU_MAX_FILE_SIZE SZ_32M
     18 #endif
     19 
     20 #endif /* _TEGRA_COMMON_USB_GADGET_H_ */
     21