mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	In order to add detach functions for fastboot, make the DFU detach related functions common so they can be shared. Signed-off-by: Rob Herring <robh@kernel.org> Tested-by: Lukasz Majewski <l.majewski@samsung.com> [TestHW: Exynos4412-Trats2]
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *  Copyright (C) 2012 Samsung Electronics
 | |
|  *  Lukasz Majewski <l.majewski@samsung.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifndef __G_DOWNLOAD_H_
 | |
| #define __G_DOWNLOAD_H_
 | |
| 
 | |
| #include <linux/usb/ch9.h>
 | |
| #include <linux/usb/gadget.h>
 | |
| #include <linux/usb/composite.h>
 | |
| #include <linker_lists.h>
 | |
| 
 | |
| /*
 | |
|  * @usb_fname: unescaped USB function name
 | |
|  * @callback_ptr: bind callback, one per function name
 | |
|  */
 | |
| #define DECLARE_GADGET_BIND_CALLBACK(usb_fname, callback_ptr) \
 | |
| 	ll_entry_declare(struct g_dnl_bind_callback, \
 | |
| 			__usb_function_name_##usb_fname, \
 | |
| 			g_dnl_bind_callbacks) = { \
 | |
| 				.usb_function_name = #usb_fname, \
 | |
| 				.fptr = callback_ptr \
 | |
| 			}
 | |
| 
 | |
| typedef int (*g_dnl_bind_callback_f)(struct usb_configuration *);
 | |
| 
 | |
| /* used in Gadget downloader callback linker list */
 | |
| struct g_dnl_bind_callback {
 | |
| 	const char *usb_function_name;
 | |
| 	g_dnl_bind_callback_f fptr;
 | |
| };
 | |
| 
 | |
| int g_dnl_bind_fixup(struct usb_device_descriptor *, const char *);
 | |
| int g_dnl_board_usb_cable_connected(void);
 | |
| int g_dnl_register(const char *s);
 | |
| void g_dnl_unregister(void);
 | |
| void g_dnl_set_serialnumber(char *);
 | |
| 
 | |
| bool g_dnl_detach(void);
 | |
| void g_dnl_trigger_detach(void);
 | |
| void g_dnl_clear_detach(void);
 | |
| 
 | |
| #endif /* __G_DOWNLOAD_H_ */
 |