| 
									
										
										
										
											2006-11-29 12:09:52 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-08-02 10:55:55 +01:00
										 |  |  |  * arch/arm/include/asm/mach/udc_pxa2xx.h | 
					
						
							| 
									
										
										
										
											2006-11-29 12:09:52 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This supports machine-specific differences in how the PXA2xx | 
					
						
							|  |  |  |  * USB Device Controller (UDC) is wired. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * It is set in linux/arch/arm/mach-pxa/<machine>.c or in | 
					
						
							|  |  |  |  * linux/arch/mach-ixp4xx/<machine>.c and used in | 
					
						
							|  |  |  |  * the probe routine of linux/drivers/usb/gadget/pxa2xx_udc.c | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct pxa2xx_udc_mach_info { | 
					
						
							|  |  |  |         int  (*udc_is_connected)(void);		/* do we see host? */ | 
					
						
							|  |  |  |         void (*udc_command)(int cmd); | 
					
						
							|  |  |  | #define	PXA2XX_UDC_CMD_CONNECT		0	/* let host see us */
 | 
					
						
							|  |  |  | #define	PXA2XX_UDC_CMD_DISCONNECT	1	/* so host won't see us */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Boards following the design guidelines in the developer's manual,
 | 
					
						
							| 
									
										
										
										
											2008-02-03 16:50:59 +02:00
										 |  |  | 	 * with on-chip GPIOs not Lubbock's weird hardware, can have a sane | 
					
						
							| 
									
										
										
										
											2006-11-29 12:09:52 +01:00
										 |  |  | 	 * VBUS IRQ and omit the methods above.  Store the GPIO number | 
					
						
							| 
									
										
										
										
											2008-09-25 13:35:27 +01:00
										 |  |  | 	 * here.  Note that sometimes the signals go through inverters... | 
					
						
							| 
									
										
										
										
											2006-11-29 12:09:52 +01:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2007-12-06 18:18:03 -08:00
										 |  |  | 	bool	gpio_vbus_inverted; | 
					
						
							| 
									
										
										
										
											2010-04-21 16:30:33 +10:00
										 |  |  | 	int	gpio_vbus;			/* high == vbus present */ | 
					
						
							| 
									
										
										
										
											2008-06-25 22:34:51 +01:00
										 |  |  | 	bool	gpio_pullup_inverted; | 
					
						
							| 
									
										
										
										
											2010-04-21 16:30:33 +10:00
										 |  |  | 	int	gpio_pullup;			/* high == pullup activated */ | 
					
						
							| 
									
										
										
										
											2006-11-29 12:09:52 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 |