• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/net/wireless/

Lines Matching defs:ipw

274 static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
305 #define _ipw_write8(ipw, ofs, val) writeb((val), (ipw)->hw_base + (ofs))
308 #define ipw_write8(ipw, ofs, val) \
310 _ipw_write8(ipw, ofs, val)
313 #define _ipw_write16(ipw, ofs, val) writew((val), (ipw)->hw_base + (ofs))
316 #define ipw_write16(ipw, ofs, val) \
318 _ipw_write16(ipw, ofs, val)
321 #define _ipw_write32(ipw, ofs, val) writel((val), (ipw)->hw_base + (ofs))
324 #define ipw_write32(ipw, ofs, val) \
326 _ipw_write32(ipw, ofs, val)
329 #define _ipw_read8(ipw, ofs) readb((ipw)->hw_base + (ofs))
332 static inline u8 __ipw_read8(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
335 return _ipw_read8(ipw, ofs);
339 #define ipw_read8(ipw, ofs) __ipw_read8(__FILE__, __LINE__, ipw, ofs)
342 #define _ipw_read16(ipw, ofs) readw((ipw)->hw_base + (ofs))
345 static inline u16 __ipw_read16(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
348 return _ipw_read16(ipw, ofs);
352 #define ipw_read16(ipw, ofs) __ipw_read16(__FILE__, __LINE__, ipw, ofs)
355 #define _ipw_read32(ipw, ofs) readl((ipw)->hw_base + (ofs))
358 static inline u32 __ipw_read32(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
361 return _ipw_read32(ipw, ofs);
365 #define ipw_read32(ipw, ofs) __ipw_read32(__FILE__, __LINE__, ipw, ofs)
1137 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1140 * See the level definitions in ipw for details.
2981 * the ipw hardware. It assumes the buffer has all the bits for the
3072 /* load new ipw uCode */
4984 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
4985 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
4986 * to replensish the ipw->rxq->rx_free.
4988 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4991 * detached from the ipw->rxq. The driver 'processed' index is updated.
4992 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
4993 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4994 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
8156 * ipw header and 802.11 frame */
8160 /* Advance past the ipw packet header to the 802.11 frame */