| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | /* Encapsulate basic setting changes on Hermes hardware
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * See copyright notice in main.c | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #ifndef _ORINOCO_HW_H_
 | 
					
						
							|  |  |  | #define _ORINOCO_HW_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/wireless.h>
 | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:33 +01:00
										 |  |  | #include <net/cfg80211.h>
 | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Hardware BAPs */ | 
					
						
							|  |  |  | #define USER_BAP 0
 | 
					
						
							|  |  |  | #define IRQ_BAP  1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* WEP key sizes */ | 
					
						
							|  |  |  | #define SMALL_KEY_SIZE 5
 | 
					
						
							|  |  |  | #define LARGE_KEY_SIZE 13
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Number of supported channels */ | 
					
						
							|  |  |  | #define NUM_CHANNELS 14
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Forward declarations */ | 
					
						
							|  |  |  | struct orinoco_private; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-07 22:23:32 +01:00
										 |  |  | int determine_fw_capabilities(struct orinoco_private *priv, char *fw_name, | 
					
						
							|  |  |  | 			      size_t fw_name_len, u32 *hw_ver); | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:19 +01:00
										 |  |  | int orinoco_hw_read_card_settings(struct orinoco_private *priv, u8 *dev_addr); | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:20 +01:00
										 |  |  | int orinoco_hw_allocate_fid(struct orinoco_private *priv); | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | int orinoco_get_bitratemode(int bitrate, int automatic); | 
					
						
							|  |  |  | void orinoco_get_ratemode_cfg(int ratemode, int *bitrate, int *automatic); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:31 +01:00
										 |  |  | int orinoco_hw_program_rids(struct orinoco_private *priv); | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | int orinoco_hw_get_tkip_iv(struct orinoco_private *priv, int key, u8 *tsc); | 
					
						
							|  |  |  | int __orinoco_hw_set_bitrate(struct orinoco_private *priv); | 
					
						
							|  |  |  | int orinoco_hw_get_act_bitrate(struct orinoco_private *priv, int *bitrate); | 
					
						
							|  |  |  | int __orinoco_hw_set_wap(struct orinoco_private *priv); | 
					
						
							|  |  |  | int __orinoco_hw_setup_wepkeys(struct orinoco_private *priv); | 
					
						
							|  |  |  | int __orinoco_hw_setup_enc(struct orinoco_private *priv); | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:25 +01:00
										 |  |  | int __orinoco_hw_set_tkip_key(struct orinoco_private *priv, int key_idx, | 
					
						
							| 
									
										
										
										
											2009-08-05 21:23:29 +01:00
										 |  |  | 			      int set_tx, u8 *key, u8 *rsc, size_t rsc_len, | 
					
						
							|  |  |  | 			      u8 *tsc, size_t tsc_len); | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | int orinoco_clear_tkip_key(struct orinoco_private *priv, int key_idx); | 
					
						
							|  |  |  | int __orinoco_hw_set_multicast_list(struct orinoco_private *priv, | 
					
						
							| 
									
										
										
										
											2010-02-27 07:35:45 +00:00
										 |  |  | 				    struct net_device *dev, | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | 				    int mc_count, int promisc); | 
					
						
							|  |  |  | int orinoco_hw_get_essid(struct orinoco_private *priv, int *active, | 
					
						
							| 
									
										
										
										
											2011-07-13 11:19:57 -04:00
										 |  |  | 			 char buf[IW_ESSID_MAX_SIZE + 1]); | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | int orinoco_hw_get_freq(struct orinoco_private *priv); | 
					
						
							|  |  |  | int orinoco_hw_get_bitratelist(struct orinoco_private *priv, | 
					
						
							|  |  |  | 			       int *numrates, s32 *rates, int max); | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:33 +01:00
										 |  |  | int orinoco_hw_trigger_scan(struct orinoco_private *priv, | 
					
						
							|  |  |  | 			    const struct cfg80211_ssid *ssid); | 
					
						
							| 
									
										
										
										
											2009-08-05 21:23:30 +01:00
										 |  |  | int orinoco_hw_disassociate(struct orinoco_private *priv, | 
					
						
							|  |  |  | 			    u8 *addr, u16 reason_code); | 
					
						
							| 
									
										
										
										
											2009-08-05 21:23:31 +01:00
										 |  |  | int orinoco_hw_get_current_bssid(struct orinoco_private *priv, | 
					
						
							|  |  |  | 				 u8 *addr); | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* _ORINOCO_HW_H_ */
 |