Lines Matching refs:cc
417 static inline void bcma_mask32(struct bcma_device *cc, u16 offset, u32 mask) in bcma_mask32() argument
419 bcma_write32(cc, offset, bcma_read32(cc, offset) & mask); in bcma_mask32()
421 static inline void bcma_set32(struct bcma_device *cc, u16 offset, u32 set) in bcma_set32() argument
423 bcma_write32(cc, offset, bcma_read32(cc, offset) | set); in bcma_set32()
425 static inline void bcma_maskset32(struct bcma_device *cc, in bcma_maskset32() argument
428 bcma_write32(cc, offset, (bcma_read32(cc, offset) & mask) | set); in bcma_maskset32()
430 static inline void bcma_mask16(struct bcma_device *cc, u16 offset, u16 mask) in bcma_mask16() argument
432 bcma_write16(cc, offset, bcma_read16(cc, offset) & mask); in bcma_mask16()
434 static inline void bcma_set16(struct bcma_device *cc, u16 offset, u16 set) in bcma_set16() argument
436 bcma_write16(cc, offset, bcma_read16(cc, offset) | set); in bcma_set16()
438 static inline void bcma_maskset16(struct bcma_device *cc, in bcma_maskset16() argument
441 bcma_write16(cc, offset, (bcma_read16(cc, offset) & mask) | set); in bcma_maskset16()
480 extern u32 bcma_chipco_pll_read(struct bcma_drv_cc *cc, u32 offset);