Lines Matching refs:cc
402 static inline void bcma_mask32(struct bcma_device *cc, u16 offset, u32 mask) in bcma_mask32() argument
404 bcma_write32(cc, offset, bcma_read32(cc, offset) & mask); in bcma_mask32()
406 static inline void bcma_set32(struct bcma_device *cc, u16 offset, u32 set) in bcma_set32() argument
408 bcma_write32(cc, offset, bcma_read32(cc, offset) | set); in bcma_set32()
410 static inline void bcma_maskset32(struct bcma_device *cc, in bcma_maskset32() argument
413 bcma_write32(cc, offset, (bcma_read32(cc, offset) & mask) | set); in bcma_maskset32()
415 static inline void bcma_mask16(struct bcma_device *cc, u16 offset, u16 mask) in bcma_mask16() argument
417 bcma_write16(cc, offset, bcma_read16(cc, offset) & mask); in bcma_mask16()
419 static inline void bcma_set16(struct bcma_device *cc, u16 offset, u16 set) in bcma_set16() argument
421 bcma_write16(cc, offset, bcma_read16(cc, offset) | set); in bcma_set16()
423 static inline void bcma_maskset16(struct bcma_device *cc, in bcma_maskset16() argument
426 bcma_write16(cc, offset, (bcma_read16(cc, offset) & mask) | set); in bcma_maskset16()
465 extern u32 bcma_chipco_pll_read(struct bcma_drv_cc *cc, u32 offset);