Searched refs:pda (Results 1 - 25 of 34) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/sn/kernel/sn2/
H A Dtimer_interrupt.c31 #include <asm/sn/pda.h>
42 if (!pda->hb_count--) {
43 pda->hb_count = HZ / 2;
44 set_led_bits(pda->hb_state ^=
51 if (pda->pio_shub_war_cam_addr)
52 *pda->pio_shub_war_cam_addr = 0x8000000000000010UL;
54 if (pda->sn_lb_int_war_ticks == 0)
56 pda->sn_lb_int_war_ticks++;
57 if (pda->sn_lb_int_war_ticks >= SN_LB_INT_WAR_INTERVAL)
58 pda
[all...]
H A Dsn2_smp.c94 piows = pda->pio_write_status_addr;
95 zeroval = pda->pio_write_status_val;
340 piows = (unsigned long *) pda->pio_write_status_addr;
341 zeroval = pda->pio_write_status_val;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/sn/kernel/
H A Didle.c14 if (pda->idle_flag == 0) {
21 pda->idle_flag = 1;
28 pda->idle_flag = 0;
H A Diomv.c16 #include <asm/sn/pda.h>
75 volatile unsigned long *adr = pda->pio_write_status_addr;
76 unsigned long val = pda->pio_write_status_val;
H A Dsetup.c41 #include <asm/sn/pda.h>
564 memset(pda, 0, sizeof(pda));
616 pda->led_address =
617 (typeof(pda->led_address)) (LED0 + (slice << LED_CPU_SHIFT));
618 pda->led_state = LED_ALWAYS_SET;
619 pda->hb_count = HZ / 2;
620 pda->hb_state = 0;
621 pda->idle_flag = 0;
653 pda
[all...]
H A Dirq.c112 __set_bit(irq, (volatile void *)pda->sn_in_service_ivecs);
134 __clear_bit(ivec, (volatile void *)pda->sn_in_service_ivecs);
494 if (!test_bit(irq, pda->sn_in_service_ivecs)) {
511 if (!sn_ioif_inited || pda->sn_first_irq == 0)
515 for (i = pda->sn_first_irq; i <= pda->sn_last_irq; i++) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/sn/
H A Dleds.h11 #include <asm/sn/pda.h>
28 pda->led_state = (pda->led_state & ~mask) | (value & mask);
29 *pda->led_address = (short) pda->led_state;
H A Dpda.h59 * Seems like we should should cache-line align the pda so that any changes in the
65 #define pda (&__ia64_per_cpu_var(pda_percpu)) macro
H A Dsn_cpuid.h16 #include <asm/sn/pda.h>
H A Daddrs.h15 #include <asm/sn/pda.h>
H A Dbte.h16 #include <asm/sn/pda.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/orinoco/
H A Dhermes_dld.h35 __le16 *pda,
42 const __le16 *pda,
47 const __le16 *pda,
H A Dfw.c101 __le16 *pda; local
113 pda = kzalloc(fw->pda_size, GFP_KERNEL);
114 if (!pda)
125 err = hw->ops->read_pda(hw, pda, fw->pda_addr, fw->pda_size);
173 err = hermes_apply_pda_with_defaults(hw, first_block, end, pda,
174 &pda[fw->pda_size / sizeof(*pda)]);
194 kfree(pda);
214 __le16 *pda = NULL; local
223 pda
[all...]
H A Dhermes_dld.c220 * Attempt to write every records that is in the specified pda
226 const __le16 *pda,
237 pdi = (const struct pdi *) (pda + 2);
386 * the pda, and use that.
388 * For certain records, use defaults if they are not found in pda.
393 const __le16 *pda,
397 const struct pdi *first_pdi = (const struct pdi *) &pda[2];
223 hermes_apply_pda(hermes_t *hw, const char *first_pdr, const void *pdr_end, const __le16 *pda, const void *pda_end) argument
390 hermes_apply_pda_with_defaults(hermes_t *hw, const char *first_pdr, const void *pdr_end, const __le16 *pda, const void *pda_end) argument
H A Dhermes.c687 static int hermes_read_pda(hermes_t *hw, __le16 *pda, u32 pda_addr, u16 pda_len) argument
692 __le16 *data = pda;
703 * We will pad the information into pda, so other routines
705 pda[0] = cpu_to_le16(pda_len - 2);
707 pda[1] = cpu_to_le16(0x0800); /* CFG_PROD_DATA */
709 data = pda + 2;
727 pda_size = le16_to_cpu(pda[0]);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/wlan-ng/
H A Dprism2fw.c106 struct pda { struct
154 struct pda pda; variable in typeref:struct:pda
170 static int read_cardpda(struct pda *pda, wlandevice_t *wlandev);
172 static int mkpdrlist(struct pda *pda);
175 struct s3plugrec *s3plug, unsigned int ns3plug, struct pda * pda);
264 /* clear the pda an
585 mkpdrlist(struct pda *pda) argument
658 plugimage(struct imgchunk *fchunk, unsigned int nfchunks, struct s3plugrec *s3plug, unsigned int ns3plug, struct pda * pda) argument
755 read_cardpda(struct pda *pda, wlandevice_t *wlandev) argument
[all...]
H A Dp80211metastruct.h230 p80211item_unk1024_t pda; member in struct:p80211msg_p2req_readpda
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/i4l/
H A Disdn_x25iface.c74 static int pdata_is_bad( ix25_pdata_t * pda ){
76 if( pda && pda -> magic == ISDN_X25IFACE_MAGIC ) return 0;
166 ix25_pdata_t * pda = cprot -> proto_data ; local
171 if ( pdata_is_bad( pda ) ) return -1;
184 pda -> state = WAN_DISCONNECTED;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Davpair.c113 DICT_ATTR *pda; local
115 if ((pda = rc_dict_getattr (attrid, vendorcode)) == (DICT_ATTR *) NULL)
124 strncpy (vp->name, pda->name, sizeof (vp->name));
128 vp->type = pda->type;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/include/asm/
H A Dirqflags.h12 # include <asm/pda.h>
H A Dsystem.h15 #include <asm/pda.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/kernel/
H A Dirqchip.c15 #include <asm/pda.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/mm/
H A Dinit.c12 #include <asm/pda.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/p54/
H A Deeprom.c645 struct pda_custom_wrapper *pda = (void *) entry->data; local
646 if (priv->output_limit || data_len < sizeof(*pda))
648 priv->output_limit = p54_convert_db(pda, data_len);
652 struct pda_custom_wrapper *pda = (void *) entry->data; local
653 if (priv->curve_data || data_len < sizeof(*pda))
655 priv->curve_data = p54_convert_db(pda, data_len);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/hostap/
H A Dhostap_download.c150 __le16 *pda = (__le16 *) buf; local
160 len = le16_to_cpu(pda[pos]);
161 pdr = le16_to_cpu(pda[pos + 1]);

Completed in 210 milliseconds

12