Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2014 |
| 3 | * NVIDIA Corporation <www.nvidia.com> |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0 |
| 6 | */ |
| 7 | |
| 8 | #ifndef _TEGRA_COMMON_USB_GADGET_H_ |
| 9 | #define _TEGRA_COMMON_USB_GADGET_H_ |
| 10 | |
| 11 | #ifndef CONFIG_SPL_BUILD |
| 12 | /* USB gadget mode support*/ |
| 13 | #define CONFIG_USB_GADGET |
| 14 | #define CONFIG_USB_GADGET_VBUS_DRAW 2 |
| 15 | #define CONFIG_CI_UDC |
| 16 | #define CONFIG_CI_UDC_HAS_HOSTPC |
| 17 | #define CONFIG_USB_GADGET_DUALSPEED |
Marcel Ziswiler | 98b6d26 | 2015-08-06 00:46:58 +0200 | [diff] [blame] | 18 | #ifndef CONFIG_G_DNL_VENDOR_NUM |
Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 19 | #define CONFIG_G_DNL_VENDOR_NUM 0x0955 |
Marcel Ziswiler | 98b6d26 | 2015-08-06 00:46:58 +0200 | [diff] [blame] | 20 | #endif |
| 21 | #ifndef CONFIG_G_DNL_PRODUCT_NUM |
Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 22 | #define CONFIG_G_DNL_PRODUCT_NUM 0x701A |
Marcel Ziswiler | 98b6d26 | 2015-08-06 00:46:58 +0200 | [diff] [blame] | 23 | #endif |
| 24 | #ifndef CONFIG_G_DNL_MANUFACTURER |
Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 25 | #define CONFIG_G_DNL_MANUFACTURER "NVIDIA" |
Marcel Ziswiler | 98b6d26 | 2015-08-06 00:46:58 +0200 | [diff] [blame] | 26 | #endif |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 27 | #define CONFIG_USB_GADGET_DOWNLOAD |
Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 28 | /* USB mass storage protocol */ |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 29 | #define CONFIG_USB_FUNCTION_MASS_STORAGE |
Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 30 | #define CONFIG_CMD_USB_MASS_STORAGE |
| 31 | /* DFU protocol */ |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 32 | #define CONFIG_USB_FUNCTION_DFU |
Stephen Warren | f69d72e | 2015-09-04 22:03:49 -0600 | [diff] [blame] | 33 | #define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_1M |
| 34 | #define CONFIG_SYS_DFU_MAX_FILE_SIZE SZ_32M |
Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 35 | #define CONFIG_CMD_DFU |
| 36 | #ifdef CONFIG_MMC |
| 37 | #define CONFIG_DFU_MMC |
| 38 | #endif |
| 39 | #ifdef CONFIG_SPI_FLASH |
| 40 | #define CONFIG_DFU_SF |
| 41 | #endif |
Stephen Warren | aa46b40 | 2015-09-04 22:03:51 -0600 | [diff] [blame] | 42 | #define CONFIG_DFU_RAM |
Stephen Warren | 39446bc | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 43 | #endif |
| 44 | |
| 45 | #endif /* _TEGRA_COMMON_USB_GADGET_H_ */ |