Holger Schurig | 5e8e8b5 | 2009-11-25 13:09:32 +0100 | [diff] [blame] | 1 | /** |
| 2 | * Contains all definitions needed for the Libertas' MESH implementation. |
| 3 | */ |
| 4 | #ifndef _LBS_MESH_H_ |
| 5 | #define _LBS_MESH_H_ |
| 6 | |
| 7 | |
| 8 | #include <net/iw_handler.h> |
Holger Schurig | ece1e3c | 2009-11-25 13:11:16 +0100 | [diff] [blame] | 9 | #include <net/lib80211.h> |
Holger Schurig | 5e8e8b5 | 2009-11-25 13:09:32 +0100 | [diff] [blame] | 10 | |
| 11 | |
| 12 | /* Mesh statistics */ |
| 13 | struct lbs_mesh_stats { |
| 14 | u32 fwd_bcast_cnt; /* Fwd: Broadcast counter */ |
| 15 | u32 fwd_unicast_cnt; /* Fwd: Unicast counter */ |
| 16 | u32 fwd_drop_ttl; /* Fwd: TTL zero */ |
| 17 | u32 fwd_drop_rbt; /* Fwd: Recently Broadcasted */ |
| 18 | u32 fwd_drop_noroute; /* Fwd: No route to Destination */ |
| 19 | u32 fwd_drop_nobuf; /* Fwd: Run out of internal buffers */ |
| 20 | u32 drop_blind; /* Rx: Dropped by blinding table */ |
| 21 | u32 tx_failed_cnt; /* Tx: Failed transmissions */ |
| 22 | }; |
| 23 | |
| 24 | |
| 25 | struct net_device; |
Holger Schurig | e0e42da | 2009-11-25 13:10:15 +0100 | [diff] [blame] | 26 | struct lbs_private; |
| 27 | |
| 28 | int lbs_init_mesh(struct lbs_private *priv); |
| 29 | int lbs_deinit_mesh(struct lbs_private *priv); |
| 30 | |
| 31 | int lbs_add_mesh(struct lbs_private *priv); |
| 32 | void lbs_remove_mesh(struct lbs_private *priv); |
| 33 | |
| 34 | |
| 35 | /* Sending / Receiving */ |
| 36 | |
| 37 | struct rxpd; |
| 38 | struct txpd; |
| 39 | |
| 40 | struct net_device *lbs_mesh_set_dev(struct lbs_private *priv, |
| 41 | struct net_device *dev, struct rxpd *rxpd); |
| 42 | void lbs_mesh_set_txpd(struct lbs_private *priv, |
| 43 | struct net_device *dev, struct txpd *txpd); |
| 44 | |
| 45 | |
Holger Schurig | ece1e3c | 2009-11-25 13:11:16 +0100 | [diff] [blame] | 46 | /* Command handling */ |
| 47 | |
| 48 | struct cmd_ds_command; |
Holger Schurig | 55e1ff9 | 2009-12-02 15:25:58 +0100 | [diff] [blame] | 49 | struct cmd_ds_mesh_access; |
| 50 | struct cmd_ds_mesh_config; |
Holger Schurig | ece1e3c | 2009-11-25 13:11:16 +0100 | [diff] [blame] | 51 | |
| 52 | int lbs_cmd_bt_access(struct cmd_ds_command *cmd, |
| 53 | u16 cmd_action, void *pdata_buf); |
| 54 | int lbs_cmd_fwt_access(struct cmd_ds_command *cmd, |
| 55 | u16 cmd_action, void *pdata_buf); |
Holger Schurig | 55e1ff9 | 2009-12-02 15:25:58 +0100 | [diff] [blame] | 56 | int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action, |
| 57 | struct cmd_ds_mesh_access *cmd); |
| 58 | int lbs_mesh_config_send(struct lbs_private *priv, |
| 59 | struct cmd_ds_mesh_config *cmd, |
| 60 | uint16_t action, uint16_t type); |
| 61 | int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan); |
| 62 | |
Holger Schurig | ece1e3c | 2009-11-25 13:11:16 +0100 | [diff] [blame] | 63 | |
| 64 | |
Holger Schurig | e0e42da | 2009-11-25 13:10:15 +0100 | [diff] [blame] | 65 | /* Persistent configuration */ |
Holger Schurig | 5e8e8b5 | 2009-11-25 13:09:32 +0100 | [diff] [blame] | 66 | |
| 67 | void lbs_persist_config_init(struct net_device *net); |
| 68 | void lbs_persist_config_remove(struct net_device *net); |
| 69 | |
Holger Schurig | e0e42da | 2009-11-25 13:10:15 +0100 | [diff] [blame] | 70 | |
| 71 | /* WEXT handler */ |
| 72 | |
Holger Schurig | 5e8e8b5 | 2009-11-25 13:09:32 +0100 | [diff] [blame] | 73 | extern struct iw_handler_def mesh_handler_def; |
| 74 | |
| 75 | |
Holger Schurig | c7fe64c | 2009-11-25 13:10:49 +0100 | [diff] [blame] | 76 | /* Ethtool statistics */ |
| 77 | |
| 78 | struct ethtool_stats; |
| 79 | |
| 80 | void lbs_mesh_ethtool_get_stats(struct net_device *dev, |
| 81 | struct ethtool_stats *stats, uint64_t *data); |
| 82 | int lbs_mesh_ethtool_get_sset_count(struct net_device *dev, int sset); |
| 83 | void lbs_mesh_ethtool_get_strings(struct net_device *dev, |
| 84 | uint32_t stringset, uint8_t *s); |
| 85 | |
| 86 | |
Holger Schurig | 5e8e8b5 | 2009-11-25 13:09:32 +0100 | [diff] [blame] | 87 | #endif |