Lines Matching refs:readb
68 return !(readb(pl061->base + GPIODIR) & BIT(offset)); in pl061_get_direction()
78 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_input()
95 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_output()
113 return !!readb(pl061->base + (BIT(offset + 2))); in pl061_get_value()
148 gpioiev = readb(pl061->base + GPIOIEV); in pl061_irq_type()
149 gpiois = readb(pl061->base + GPIOIS); in pl061_irq_type()
150 gpioibe = readb(pl061->base + GPIOIBE); in pl061_irq_type()
221 pending = readb(pl061->base + GPIOMIS); in pl061_irq_handler()
239 gpioie = readb(pl061->base + GPIOIE) & ~mask; in pl061_irq_mask()
252 gpioie = readb(pl061->base + GPIOIE) | mask; in pl061_irq_unmask()
363 pl061->csave_regs.gpio_dir = readb(pl061->base + GPIODIR); in pl061_suspend()
364 pl061->csave_regs.gpio_is = readb(pl061->base + GPIOIS); in pl061_suspend()
365 pl061->csave_regs.gpio_ibe = readb(pl061->base + GPIOIBE); in pl061_suspend()
366 pl061->csave_regs.gpio_iev = readb(pl061->base + GPIOIEV); in pl061_suspend()
367 pl061->csave_regs.gpio_ie = readb(pl061->base + GPIOIE); in pl061_suspend()