Lines Matching refs:st
93 struct sa1100irq_state *st = &sa1100irq_state; in sa1100irq_suspend() local
95 st->saved = 1; in sa1100irq_suspend()
96 st->icmr = readl_relaxed(iobase + ICMR); in sa1100irq_suspend()
97 st->iclr = readl_relaxed(iobase + ICLR); in sa1100irq_suspend()
98 st->iccr = readl_relaxed(iobase + ICCR); in sa1100irq_suspend()
103 writel_relaxed(st->icmr & 0xfffff000, iobase + ICMR); in sa1100irq_suspend()
110 struct sa1100irq_state *st = &sa1100irq_state; in sa1100irq_resume() local
112 if (st->saved) { in sa1100irq_resume()
113 writel_relaxed(st->iccr, iobase + ICCR); in sa1100irq_resume()
114 writel_relaxed(st->iclr, iobase + ICLR); in sa1100irq_resume()
116 writel_relaxed(st->icmr, iobase + ICMR); in sa1100irq_resume()