Home | History | Annotate | Download | only in pwm

Lines Matching defs:tcon

26 	u32 tcnt, tcmp, tcon;
50 tcon = readl(&regs->tcon);
51 tcon |= TCON_UPDATE(channel);
53 tcon |= TCON_AUTO_RELOAD(channel);
55 tcon |= TCON4_AUTO_RELOAD;
56 writel(tcon, &regs->tcon);
58 tcon &= ~TCON_UPDATE(channel);
59 writel(tcon, &regs->tcon);
75 clrsetbits_le32(&regs->tcon, mask, enable ? mask : 0);