Lines Matching refs:reg
61 unsigned int reg)
63 unsigned long addr = chip->base + 0x80 + reg;
74 if (reg != GPIO_POSITIVE_EDGE_STS && reg != GPIO_NEGATIVE_EDGE_STS) {
84 unsigned int reg)
88 outl(1 << offset, chip->base + reg);
91 errata_outl(chip, 1 << (offset - 16), reg);
94 void cs5535_gpio_set(unsigned offset, unsigned int reg)
100 __cs5535_gpio_set(chip, offset, reg);
106 unsigned int reg)
110 outl(1 << (offset + 16), chip->base + reg);
113 errata_outl(chip, 1 << offset, reg);
116 void cs5535_gpio_clear(unsigned offset, unsigned int reg)
122 __cs5535_gpio_clear(chip, offset, reg);
127 int cs5535_gpio_isset(unsigned offset, unsigned int reg)
136 val = inl(chip->base + reg);
139 val = inl(chip->base + 0x80 + reg);