Symbol: bcma_cc_read32
drivers/bcma/driver_chipcommon.c
179
cc->status = bcma_cc_read32(cc, BCMA_CC_CHIPSTAT);
drivers/bcma/driver_chipcommon.c
180
cc->capabilities = bcma_cc_read32(cc, BCMA_CC_CAP);
drivers/bcma/driver_chipcommon.c
182
cc->capabilities_ext = bcma_cc_read32(cc, BCMA_CC_CAP_EXT);
drivers/bcma/driver_chipcommon.c
22
value |= bcma_cc_read32(cc, offset) & ~mask;
drivers/bcma/driver_chipcommon.c
271
return bcma_cc_read32(cc, BCMA_CC_IRQSTAT) & mask;
drivers/bcma/driver_chipcommon.c
276
return bcma_cc_read32(cc, BCMA_CC_GPIOIN) & mask;
drivers/bcma/driver_chipcommon.c
390
bcma_cc_read32(cc, BCMA_CC_CORECTL)
drivers/bcma/driver_chipcommon.c
395
bcma_cc_read32(cc, BCMA_CC_CORECTL)
drivers/bcma/driver_chipcommon.c
400
bcma_cc_read32(cc, BCMA_CC_CORECTL)
drivers/bcma/driver_chipcommon_nflash.c
49
reg = bcma_cc_read32(cc, BCMA_CC_NAND_CS_NAND_SELECT) & 0xff;
drivers/bcma/driver_chipcommon_pmu.c
215
val = bcma_cc_read32(cc, BCMA_CC_CHIPCTL);
drivers/bcma/driver_chipcommon_pmu.c
365
tmp = bcma_cc_read32(cc, BCMA_CC_CHIPSTAT);
drivers/bcma/driver_chipcommon_pmu.c
405
tmp = bcma_cc_read32(cc, BCMA_CC_CHIPSTAT);
drivers/bcma/driver_chipcommon_sflash.c
102
id = bcma_cc_read32(cc, BCMA_CC_FLASHDATA);
drivers/bcma/driver_chipcommon_sflash.c
106
id2 = bcma_cc_read32(cc, BCMA_CC_FLASHDATA);
drivers/bcma/driver_chipcommon_sflash.c
132
id = bcma_cc_read32(cc, BCMA_CC_FLASHDATA) & 0x3c;
drivers/bcma/driver_chipcommon_sflash.c
80
if (!(bcma_cc_read32(cc, BCMA_CC_FLASHCTL) &
drivers/bcma/driver_gpio.c
114
u32 val = bcma_cc_read32(cc, BCMA_CC_GPIOIN);
drivers/bcma/driver_gpio.c
115
u32 mask = bcma_cc_read32(cc, BCMA_CC_GPIOIRQ);
drivers/bcma/driver_gpio.c
116
u32 pol = bcma_cc_read32(cc, BCMA_CC_GPIOPOL);
drivers/mtd/devices/bcm47xxsflash.c
276
return bcma_cc_read32(b47s->bcma_cc, offset);
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c
127
*dest = bcma_cc_read32(b47n->cc, BCMA_CC_NFLASH_DATA);
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c
202
return !!(bcma_cc_read32(b47n->cc, BCMA_CC_NFLASH_CTL) & NCTL_READY);
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c
257
bcma_cc_read32(b47n->cc, BCMA_CC_NFLASH_DATA)
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c
328
return bcma_cc_read32(cc, BCMA_CC_NFLASH_DATA) & 0xff;
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c
49
if (!(bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & NCTL_START)) {
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c
66
if (bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) & NCTL_READY) {
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c
67
if (bcma_cc_read32(cc, BCMA_CC_NFLASH_CTL) &
drivers/mtd/nand/raw/brcmnand/bcma_nand.c
57
val = bcma_cc_read32(sc->cc, offset);
include/linux/bcma/bcma_driver_chipcommon.h
670
bcma_cc_write32(cc, offset, bcma_cc_read32(cc, offset) & (mask))
include/linux/bcma/bcma_driver_chipcommon.h
672
bcma_cc_write32(cc, offset, bcma_cc_read32(cc, offset) | (set))
include/linux/bcma/bcma_driver_chipcommon.h
674
bcma_cc_write32(cc, offset, (bcma_cc_read32(cc, offset) & (mask)) | (set))