HomeSort by relevance Sort by last modified time
    Searched refs:ah (Results 1 - 25 of 425) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/drivers/net/ath5k/
ath5k_attach.c 38 * @ah: The &struct ath5k_hw
40 static int ath5k_hw_post(struct ath5k_hw *ah)
59 init_val = ath5k_hw_reg_read(ah, cur_reg);
63 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
64 cur_val = ath5k_hw_reg_read(ah, cur_reg);
73 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
78 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
79 cur_val = ath5k_hw_reg_read(ah, cur_reg);
88 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
92 ath5k_hw_reg_write(ah, init_val, cur_reg)
115 struct ath5k_hw *ah; local
    [all...]
ath5k_qcu.c 34 int ath5k_hw_set_tx_queueprops(struct ath5k_hw *ah,
37 if (ah->ah_txq.tqi_type == AR5K_TX_QUEUE_INACTIVE)
40 memcpy(&ah->ah_txq, queue_info, sizeof(struct ath5k_txq_info));
47 ah->ah_txq.tqi_flags |= AR5K_TXQ_FLAG_POST_FR_BKOFF_DIS;
55 int ath5k_hw_setup_tx_queue(struct ath5k_hw *ah, enum ath5k_tx_queue queue_type,
67 memset(&ah->ah_txq, 0, sizeof(struct ath5k_txq_info));
68 ah->ah_txq.tqi_type = queue_type;
72 ret = ath5k_hw_set_tx_queueprops(ah, queue_info);
82 AR5K_Q_ENABLE_BITS(ah->ah_txq_status, 0);
90 void ath5k_hw_release_tx_queue(struct ath5k_hw *ah)
    [all...]
ath5k_caps.c 36 int ath5k_hw_set_capabilities(struct ath5k_hw *ah)
41 ee_header = ah->ah_capabilities.cap_eeprom.ee_header;
43 if (ah->ah_version == AR5K_AR5210) {
48 ah->ah_capabilities.cap_range.range_5ghz_min = 5120;
49 ah->ah_capabilities.cap_range.range_5ghz_max = 5430;
50 ah->ah_capabilities.cap_range.range_2ghz_min = 0;
51 ah->ah_capabilities.cap_range.range_2ghz_max = 0;
54 ah->ah_capabilities.cap_mode |= AR5K_MODE_BIT_11A;
55 ah->ah_capabilities.cap_mode |= AR5K_MODE_BIT_11A_TURBO;
74 ah->ah_capabilities.cap_range.range_5ghz_min = 5005
    [all...]
ath5k_reset.c 73 * @ah: the &struct ath5k_hw
85 static int ath5k_hw_write_ofdm_timings(struct ath5k_hw *ah,
92 if (!(ah->ah_version == AR5K_AR5212) ||
129 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_3,
131 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_3,
148 * @ah: the &struct ath5k_hw
164 static inline void ath5k_hw_write_rate_duration(struct ath5k_hw *ah,
167 struct ath5k_softc *sc = ah->ah_sc;
188 ath5k_hw_reg_write(ah, tx_time, reg);
198 ath5k_hw_reg_write(ah, tx_time
    [all...]
ath5k_pcu.c 42 * @ah: The &struct ath5k_hw
48 int ath5k_hw_set_opmode(struct ath5k_hw *ah)
54 pcu_reg = ath5k_hw_reg_read(ah, AR5K_STA_ID1) & 0xffff0000;
57 | (ah->ah_version == AR5K_AR5210 ?
63 | (ah->ah_version == AR5K_AR5210 ?
69 low_id = AR5K_LOW_ID(ah->ah_sta_id);
70 high_id = AR5K_HIGH_ID(ah->ah_sta_id);
71 ath5k_hw_reg_write(ah, low_id, AR5K_STA_ID0);
72 ath5k_hw_reg_write(ah, pcu_reg | high_id, AR5K_STA_ID1);
77 if (ah->ah_version == AR5K_AR5210
    [all...]
ath5k_dma.c 52 * @ah: The &struct ath5k_hw
54 void ath5k_hw_start_rx_dma(struct ath5k_hw *ah)
56 ath5k_hw_reg_write(ah, AR5K_CR_RXE, AR5K_CR);
57 ath5k_hw_reg_read(ah, AR5K_CR);
63 * @ah: The &struct ath5k_hw
65 int ath5k_hw_stop_rx_dma(struct ath5k_hw *ah)
69 ath5k_hw_reg_write(ah, AR5K_CR_RXD, AR5K_CR);
75 (ath5k_hw_reg_read(ah, AR5K_CR) & AR5K_CR_RXE) != 0;
85 * @ah: The &struct ath5k_hw
89 u32 ath5k_hw_get_rxdp(struct ath5k_hw *ah)
    [all...]
ath5k_gpio.c 34 int ath5k_hw_set_gpio_input(struct ath5k_hw *ah, u32 gpio)
39 ath5k_hw_reg_write(ah,
40 (ath5k_hw_reg_read(ah, AR5K_GPIOCR) & ~AR5K_GPIOCR_OUT(gpio))
49 int ath5k_hw_set_gpio_output(struct ath5k_hw *ah, u32 gpio)
54 ath5k_hw_reg_write(ah,
55 (ath5k_hw_reg_read(ah, AR5K_GPIOCR) & ~AR5K_GPIOCR_OUT(gpio))
64 u32 ath5k_hw_get_gpio(struct ath5k_hw *ah, u32 gpio)
70 return ((ath5k_hw_reg_read(ah, AR5K_GPIODI) & AR5K_GPIODI_M) >> gpio) &
77 int ath5k_hw_set_gpio(struct ath5k_hw *ah, u32 gpio, u32 val)
85 data = ath5k_hw_reg_read(ah, AR5K_GPIODO)
    [all...]
ath5k_rfkill.c 46 ath5k_hw_set_gpio_output(sc->ah, sc->rf_kill.gpio);
47 ath5k_hw_set_gpio(sc->ah, sc->rf_kill.gpio, !sc->rf_kill.polarity);
55 ath5k_hw_set_gpio_output(sc->ah, sc->rf_kill.gpio);
56 ath5k_hw_set_gpio(sc->ah, sc->rf_kill.gpio, sc->rf_kill.polarity);
61 struct ath5k_hw *ah = sc->ah; local
64 ath5k_hw_set_gpio_input(ah, sc->rf_kill.gpio);
65 curval = ath5k_hw_get_gpio(ah, sc->rf_kill.gpio);
66 ath5k_hw_set_gpio_intr(ah, sc->rf_kill.gpio, enable ?
74 /*ath5k_hw_set_gpio_input(sc->ah, sc->rf_kill.gpio);*
    [all...]
ath5k_phy.c 51 static unsigned int ath5k_hw_rfb_op(struct ath5k_hw *ah,
64 rfb = ah->ah_rf_banks;
66 for (i = 0; i < ah->ah_rf_regs_count; i++) {
88 offset = ah->ah_offset[bank];
158 int ath5k_hw_rfgain_opt_init(struct ath5k_hw *ah)
161 switch (ah->ah_radio) {
163 ah->ah_gain.g_step_idx = rfgain_opt_5111.go_default;
164 ah->ah_gain.g_low = 20;
165 ah->ah_gain.g_high = 35;
166 ah->ah_gain.g_state = AR5K_RFGAIN_ACTIVE
    [all...]
  /external/tcpdump/
print-ah.c 1 /* $NetBSD: print-ah.c,v 1.4 1996/05/20 00:41:16 fvdl Exp $ */
32 #include "ah.h"
40 register const struct ah *ah; local
43 ah = (const struct ah *)bp;
45 ND_TCHECK(*ah);
47 sumlen = ah->ah_len << 2;
49 ND_PRINT((ndo, "AH(spi=0x%08x", EXTRACT_32BITS(&ah->ah_spi)))
    [all...]
  /external/syslinux/dos/
free.c 10 static struct free_arena_header *__free_block(struct free_arena_header *ah)
14 pah = ah->a.prev;
15 nah = ah->a.next;
17 (char *)pah + pah->a.size == (char *)ah) {
19 pah->a.size += ah->a.size;
24 ah->a.type = ARENA_TYPE_DEAD;
27 ah = pah;
28 pah = ah->a.prev;
31 ah->a.type = ARENA_TYPE_FREE;
33 ah->next_free = __malloc_head.next_free
62 struct free_arena_header *ah; local
    [all...]
  /external/syslinux/core/mem/
free.c 15 __free_block(struct free_arena_header *ah)
19 &__core_malloc_head[ARENA_HEAP_GET(ah->a.attrs)];
21 pah = ah->a.prev;
22 nah = ah->a.next;
24 (char *)pah+ARENA_SIZE_GET(pah->a.attrs) == (char *)ah ) {
27 ARENA_SIZE_GET(ah->a.attrs));
32 ARENA_TYPE_SET(ah->a.attrs, ARENA_TYPE_DEAD);
35 ah = pah;
36 pah = ah->a.prev;
39 ARENA_TYPE_SET(ah->a.attrs, ARENA_TYPE_FREE)
72 struct free_arena_header *ah; local
    [all...]
  /external/ltp/testcases/network/stress/icmp/multi-diffip/
icmp4-multi-diffip02 31 # - IPsec(AH), transport mode
61 IPSEC_PROTO=ah
icmp4-multi-diffip03 32 # - IPsec(AH), tunnel mode
62 IPSEC_PROTO=ah
icmp6-multi-diffip02 31 # - IPsec(AH), transport mode
61 IPSEC_PROTO=ah
icmp6-multi-diffip03 32 # - IPsec(AH), tunnel mode
62 IPSEC_PROTO=ah
  /external/ltp/testcases/network/stress/icmp/multi-diffnic/
icmp4-multi-diffnic02 31 # - IPsec(AH), transport mode
61 IPSEC_PROTO=ah
icmp4-multi-diffnic03 32 # - IPsec(AH), tunnel mode
62 IPSEC_PROTO=ah
icmp6-multi-diffnic02 31 # - IPsec(AH), transport mode
61 IPSEC_PROTO=ah
icmp6-multi-diffnic03 32 # - IPsec(AH), tunnel mode
62 IPSEC_PROTO=ah
  /external/ltp/testcases/network/stress/tcp/multi-diffip/
tcp4-multi-diffip02 32 # - IPsec(AH), transport mode
65 IPSEC_PROTO=ah
tcp4-multi-diffip03 32 # - IPsec(AH), tunnel mode
65 IPSEC_PROTO=ah
tcp4-multi-diffip09 32 # - IPsec(AH), transport mode
65 IPSEC_PROTO=ah
tcp4-multi-diffip10 32 # - IPsec(AH), tunnel mode
65 IPSEC_PROTO=ah
tcp6-multi-diffip02 32 # - IPsec(AH), transport mode
65 IPSEC_PROTO=ah

Completed in 166 milliseconds

1 2 3 4 5 6 7 8 91011>>