Lines Matching defs:atmel_private
442 struct atmel_private { struct
443 void *card; /* Bus dependent structure varies for PCcard */
444 int (*present_callback)(void *); /* And callback which uses it */
445 char firmware_id[32];
446 AtmelFWType firmware_type;
447 u8 *firmware;
448 int firmware_length;
449 struct timer_list management_timer;
450 struct net_device *dev;
451 struct device *sys_dev;
452 struct iw_statistics wstats;
453 spinlock_t irqlock, timerlock; /* spinlocks */
454 enum { BUS_TYPE_PCCARD, BUS_TYPE_PCI } bus_type;
455 enum {
459 } card_type;
460 int do_rx_crc; /* If we need to CRC incoming packets */
461 int probe_crc; /* set if we don't yet know */
462 int crc_ok_cnt, crc_ko_cnt; /* counters for probing */
463 u16 rx_desc_head;
464 u16 tx_desc_free, tx_desc_head, tx_desc_tail, tx_desc_previous;
465 u16 tx_free_mem, tx_buff_head, tx_buff_tail;
467 u16 frag_seq, frag_len, frag_no;
468 u8 frag_source[6];
470 u8 wep_is_on, default_key, exclude_unencrypted, encryption_level;
471 u8 group_cipher_suite, pairwise_cipher_suite;
472 u8 wep_keys[MAX_ENCRYPTION_KEYS][MAX_ENCRYPTION_KEY_SIZE];
473 int wep_key_len[MAX_ENCRYPTION_KEYS];
474 int use_wpa, radio_on_broken; /* firmware dependent stuff. */
476 u16 host_info_base;
477 struct host_info_struct {
504 } host_info;
506 enum {
515 } station_state;
517 int operating_mode, power_mode;
518 time_t last_qual;
519 int beacons_this_sec;
520 int channel;
521 int reg_domain, config_reg_domain;
522 int tx_rate;
523 int auto_tx_rate;
524 int rts_threshold;
525 int frag_threshold;
526 int long_retry, short_retry;
527 int preamble;
528 int default_beacon_period, beacon_period, listen_interval;
529 int CurrentAuthentTransactionSeqNum, ExpectedAuthentTransactionSeqNum;
530 int AuthenticationRequestRetryCnt, AssociationRequestRetryCnt, ReAssociationRequestRetryCnt;
531 enum {
535 } site_survey_state;
536 unsigned long last_survey;
538 int station_was_associated, station_is_associated;
539 int fast_scan;
541 struct bss_info {
551 } BSSinfo[MAX_BSS_ENTRIES];
552 int BSS_list_entries, current_BSS;
576 static void build_wpa_mib(struct atmel_private *priv); argument