Lines Matching refs:readb
66 return !(readb(pl061->base + GPIODIR) & BIT(offset)); in pl061_get_direction()
76 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_input()
93 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_output()
111 return !!readb(pl061->base + (BIT(offset + 2))); in pl061_get_value()
146 gpioiev = readb(pl061->base + GPIOIEV); in pl061_irq_type()
147 gpiois = readb(pl061->base + GPIOIS); in pl061_irq_type()
148 gpioibe = readb(pl061->base + GPIOIBE); in pl061_irq_type()
219 pending = readb(pl061->base + GPIOMIS); in pl061_irq_handler()
237 gpioie = readb(pl061->base + GPIOIE) & ~mask; in pl061_irq_mask()
250 gpioie = readb(pl061->base + GPIOIE) | mask; in pl061_irq_unmask()
361 pl061->csave_regs.gpio_dir = readb(pl061->base + GPIODIR); in pl061_suspend()
362 pl061->csave_regs.gpio_is = readb(pl061->base + GPIOIS); in pl061_suspend()
363 pl061->csave_regs.gpio_ibe = readb(pl061->base + GPIOIBE); in pl061_suspend()
364 pl061->csave_regs.gpio_iev = readb(pl061->base + GPIOIEV); in pl061_suspend()
365 pl061->csave_regs.gpio_ie = readb(pl061->base + GPIOIE); in pl061_suspend()