| 
									
										
										
										
											2006-06-13 09:54:40 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * RNDIS	Definitions for Remote NDIS | 
					
						
							| 
									
										
										
										
											2006-06-13 09:54:40 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Authors:	Benedikt Spranger, Pengutronix | 
					
						
							| 
									
										
										
										
											2006-06-13 09:54:40 -07:00
										 |  |  |  *		Robert Schwebel, Pengutronix | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *		This program is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  *		modify it under the terms of the GNU General Public License | 
					
						
							| 
									
										
										
										
											2006-06-13 09:54:40 -07:00
										 |  |  |  *		version 2, as published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  *		This software was originally developed in conformance with | 
					
						
							|  |  |  |  *		Microsoft's Remote NDIS Specification License Agreement. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _LINUX_RNDIS_H
 | 
					
						
							|  |  |  | #define _LINUX_RNDIS_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-11 22:15:50 +00:00
										 |  |  | #include <linux/rndis.h>
 | 
					
						
							| 
									
										
										
										
											2013-05-24 10:23:02 +02:00
										 |  |  | #include "u_ether.h"
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include "ndis.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RNDIS_MAXIMUM_FRAME_SIZE	1518
 | 
					
						
							|  |  |  | #define RNDIS_MAX_TOTAL_SIZE		1558
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-13 09:54:40 -07:00
										 |  |  | typedef struct rndis_init_msg_type | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | 	__le32	MajorVersion; | 
					
						
							|  |  |  | 	__le32	MinorVersion; | 
					
						
							|  |  |  | 	__le32	MaxTransferSize; | 
					
						
							|  |  |  | } rndis_init_msg_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_init_cmplt_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | 	__le32	Status; | 
					
						
							|  |  |  | 	__le32	MajorVersion; | 
					
						
							|  |  |  | 	__le32	MinorVersion; | 
					
						
							|  |  |  | 	__le32	DeviceFlags; | 
					
						
							|  |  |  | 	__le32	Medium; | 
					
						
							|  |  |  | 	__le32	MaxPacketsPerTransfer; | 
					
						
							|  |  |  | 	__le32	MaxTransferSize; | 
					
						
							|  |  |  | 	__le32	PacketAlignmentFactor; | 
					
						
							|  |  |  | 	__le32	AFListOffset; | 
					
						
							|  |  |  | 	__le32	AFListSize; | 
					
						
							|  |  |  | } rndis_init_cmplt_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_halt_msg_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | } rndis_halt_msg_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_query_msg_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | 	__le32	OID; | 
					
						
							|  |  |  | 	__le32	InformationBufferLength; | 
					
						
							|  |  |  | 	__le32	InformationBufferOffset; | 
					
						
							|  |  |  | 	__le32	DeviceVcHandle; | 
					
						
							|  |  |  | } rndis_query_msg_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_query_cmplt_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | 	__le32	Status; | 
					
						
							|  |  |  | 	__le32	InformationBufferLength; | 
					
						
							|  |  |  | 	__le32	InformationBufferOffset; | 
					
						
							|  |  |  | } rndis_query_cmplt_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_set_msg_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | 	__le32	OID; | 
					
						
							|  |  |  | 	__le32	InformationBufferLength; | 
					
						
							|  |  |  | 	__le32	InformationBufferOffset; | 
					
						
							|  |  |  | 	__le32	DeviceVcHandle; | 
					
						
							|  |  |  | } rndis_set_msg_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_set_cmplt_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | 	__le32	Status; | 
					
						
							|  |  |  | } rndis_set_cmplt_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_reset_msg_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	Reserved; | 
					
						
							|  |  |  | } rndis_reset_msg_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_reset_cmplt_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	Status; | 
					
						
							|  |  |  | 	__le32	AddressingReset; | 
					
						
							|  |  |  | } rndis_reset_cmplt_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_indicate_status_msg_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	Status; | 
					
						
							|  |  |  | 	__le32	StatusBufferLength; | 
					
						
							|  |  |  | 	__le32	StatusBufferOffset; | 
					
						
							|  |  |  | } rndis_indicate_status_msg_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_keepalive_msg_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | } rndis_keepalive_msg_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_keepalive_cmplt_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	RequestID; | 
					
						
							|  |  |  | 	__le32	Status; | 
					
						
							|  |  |  | } rndis_keepalive_cmplt_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct rndis_packet_msg_type | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	MessageType; | 
					
						
							|  |  |  | 	__le32	MessageLength; | 
					
						
							|  |  |  | 	__le32	DataOffset; | 
					
						
							|  |  |  | 	__le32	DataLength; | 
					
						
							|  |  |  | 	__le32	OOBDataOffset; | 
					
						
							|  |  |  | 	__le32	OOBDataLength; | 
					
						
							|  |  |  | 	__le32	NumOOBDataElements; | 
					
						
							|  |  |  | 	__le32	PerPacketInfoOffset; | 
					
						
							|  |  |  | 	__le32	PerPacketInfoLength; | 
					
						
							|  |  |  | 	__le32	VcHandle; | 
					
						
							|  |  |  | 	__le32	Reserved; | 
					
						
							| 
									
										
										
										
											2007-04-26 00:38:01 -07:00
										 |  |  | } __attribute__ ((packed)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct rndis_config_parameter | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__le32	ParameterNameOffset; | 
					
						
							|  |  |  | 	__le32	ParameterNameLength; | 
					
						
							|  |  |  | 	__le32	ParameterType; | 
					
						
							|  |  |  | 	__le32	ParameterValueOffset; | 
					
						
							|  |  |  | 	__le32	ParameterValueLength; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* implementation specific */ | 
					
						
							|  |  |  | enum rndis_state | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	RNDIS_UNINITIALIZED, | 
					
						
							|  |  |  | 	RNDIS_INITIALIZED, | 
					
						
							|  |  |  | 	RNDIS_DATA_INITIALIZED, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_resp_t | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct list_head	list; | 
					
						
							|  |  |  | 	u8			*buf; | 
					
						
							|  |  |  | 	u32			length; | 
					
						
							|  |  |  | 	int			send; | 
					
						
							|  |  |  | } rndis_resp_t; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct rndis_params | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8			confignr; | 
					
						
							| 
									
										
										
										
											2005-04-28 13:45:25 -07:00
										 |  |  | 	u8			used; | 
					
						
							|  |  |  | 	u16			saved_filter; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	enum rndis_state	state; | 
					
						
							|  |  |  | 	u32			medium; | 
					
						
							|  |  |  | 	u32			speed; | 
					
						
							|  |  |  | 	u32			media_state; | 
					
						
							| 
									
										
										
										
											2005-04-28 13:45:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	const u8		*host_mac; | 
					
						
							| 
									
										
										
										
											2005-04-28 13:45:25 -07:00
										 |  |  | 	u16			*filter; | 
					
						
							| 
									
										
										
										
											2006-06-13 09:54:40 -07:00
										 |  |  | 	struct net_device	*dev; | 
					
						
							| 
									
										
										
										
											2005-04-28 13:45:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32			vendorID; | 
					
						
							|  |  |  | 	const char		*vendorDescr; | 
					
						
							| 
									
										
											  
											
												usb gadget: RNDIS cleanups
Some cleanup to the RNDIS code:
 - Minor bugfix:  rndis_unit() is supposed to put the link into the
   RNDIS_UNINITIALIZED state, which does not mean "unused".  There's
   a separate method to stop using the link.  (Bug doesn't affect
   anything right now because of how the code is used.)
 - Reduce coupling between RNDIS code and its user(s), in preparation
   for updates in that code:
    * Decouple RNDIS_RESPONSE_AVAILABLE notifications from net_device
      by passing just a void* handle.  (Also, remove the unused return
      value of the notification callback.)
    * When it needs a copy of net_device stats, just ask for it
 - Remove unused/untested code backing various never-used OIDs:
    * RNDIS_PM, RNDIS_WAKEUP ... "should" get implemented, but the
      relevant docs were unclear, ambguous, and incomplete.  Someone
      with access to the Hidden Gospels (maybe in the EU?) might be
      able to figure out what this should do.
    * RNDIS_OPTIONAL_STATS ... as the name suggests, optional.  Never
      implemented in part because not all the semantics were clear.
    * OID_GEN_RNDIS_CONFIG_PARAMETER, which has been #if 0 forever.
 - A few small whitespace fixes
Plus switch the VERBOSE symbol over to the newer VERBOSE_DEBUG style.
There should be no functional changes because of this patch; it's a
net source code shrink (because of the dead/unused code removal) and
a small object code shrink (a couple hundred bytes on ARMv5).
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
											
										 
											2008-06-19 18:19:16 -07:00
										 |  |  | 	void			(*resp_avail)(void *v); | 
					
						
							|  |  |  | 	void			*v; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct list_head	resp_queue; | 
					
						
							|  |  |  | } rndis_params; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* RNDIS Message parser and other useless functions */ | 
					
						
							|  |  |  | int  rndis_msg_parser (u8 configNr, u8 *buf); | 
					
						
							| 
									
										
											  
											
												usb gadget: RNDIS cleanups
Some cleanup to the RNDIS code:
 - Minor bugfix:  rndis_unit() is supposed to put the link into the
   RNDIS_UNINITIALIZED state, which does not mean "unused".  There's
   a separate method to stop using the link.  (Bug doesn't affect
   anything right now because of how the code is used.)
 - Reduce coupling between RNDIS code and its user(s), in preparation
   for updates in that code:
    * Decouple RNDIS_RESPONSE_AVAILABLE notifications from net_device
      by passing just a void* handle.  (Also, remove the unused return
      value of the notification callback.)
    * When it needs a copy of net_device stats, just ask for it
 - Remove unused/untested code backing various never-used OIDs:
    * RNDIS_PM, RNDIS_WAKEUP ... "should" get implemented, but the
      relevant docs were unclear, ambguous, and incomplete.  Someone
      with access to the Hidden Gospels (maybe in the EU?) might be
      able to figure out what this should do.
    * RNDIS_OPTIONAL_STATS ... as the name suggests, optional.  Never
      implemented in part because not all the semantics were clear.
    * OID_GEN_RNDIS_CONFIG_PARAMETER, which has been #if 0 forever.
 - A few small whitespace fixes
Plus switch the VERBOSE symbol over to the newer VERBOSE_DEBUG style.
There should be no functional changes because of this patch; it's a
net source code shrink (because of the dead/unused code removal) and
a small object code shrink (a couple hundred bytes on ARMv5).
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
											
										 
											2008-06-19 18:19:16 -07:00
										 |  |  | int  rndis_register(void (*resp_avail)(void *v), void *v); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | void rndis_deregister (int configNr); | 
					
						
							|  |  |  | int  rndis_set_param_dev (u8 configNr, struct net_device *dev, | 
					
						
							| 
									
										
										
										
											2005-04-28 13:45:25 -07:00
										 |  |  | 			 u16 *cdc_filter); | 
					
						
							| 
									
										
										
										
											2006-06-13 09:54:40 -07:00
										 |  |  | int  rndis_set_param_vendor (u8 configNr, u32 vendorID, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			    const char *vendorDescr); | 
					
						
							|  |  |  | int  rndis_set_param_medium (u8 configNr, u32 medium, u32 speed); | 
					
						
							|  |  |  | void rndis_add_hdr (struct sk_buff *skb); | 
					
						
							| 
									
										
										
										
											2009-08-14 10:04:22 -05:00
										 |  |  | int rndis_rm_hdr(struct gether *port, struct sk_buff *skb, | 
					
						
							|  |  |  | 			struct sk_buff_head *list); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | u8   *rndis_get_next_response (int configNr, u32 *length); | 
					
						
							|  |  |  | void rndis_free_response (int configNr, u8 *buf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-28 13:45:25 -07:00
										 |  |  | void rndis_uninit (int configNr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | int  rndis_signal_connect (int configNr); | 
					
						
							|  |  |  | int  rndis_signal_disconnect (int configNr); | 
					
						
							|  |  |  | int  rndis_state (int configNr); | 
					
						
							|  |  |  | extern void rndis_set_host_mac (int configNr, const u8 *addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  /* _LINUX_RNDIS_H */
 |