Lines Matching refs:readb
67 if (readb(pl061->base + GPIODIR) & BIT(offset)) in pl061_get_direction()
80 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_input()
97 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_output()
115 return !!readb(pl061->base + (BIT(offset + 2))); in pl061_get_value()
150 gpioiev = readb(pl061->base + GPIOIEV); in pl061_irq_type()
151 gpiois = readb(pl061->base + GPIOIS); in pl061_irq_type()
152 gpioibe = readb(pl061->base + GPIOIBE); in pl061_irq_type()
223 pending = readb(pl061->base + GPIOMIS); in pl061_irq_handler()
241 gpioie = readb(pl061->base + GPIOIE) & ~mask; in pl061_irq_mask()
254 gpioie = readb(pl061->base + GPIOIE) | mask; in pl061_irq_unmask()
360 pl061->csave_regs.gpio_dir = readb(pl061->base + GPIODIR); in pl061_suspend()
361 pl061->csave_regs.gpio_is = readb(pl061->base + GPIOIS); in pl061_suspend()
362 pl061->csave_regs.gpio_ibe = readb(pl061->base + GPIOIBE); in pl061_suspend()
363 pl061->csave_regs.gpio_iev = readb(pl061->base + GPIOIEV); in pl061_suspend()
364 pl061->csave_regs.gpio_ie = readb(pl061->base + GPIOIE); in pl061_suspend()