Lines Matching refs:l
50 u32 l; in mxc_iomux_mode() local
60 l = __raw_readl(reg); in mxc_iomux_mode()
61 l &= ~(0xff << (field * 8)); in mxc_iomux_mode()
62 l |= mode << (field * 8); in mxc_iomux_mode()
63 __raw_writel(l, reg); in mxc_iomux_mode()
73 u32 field, l; in mxc_iomux_set_pad() local
85 l = __raw_readl(reg); in mxc_iomux_set_pad()
86 l &= ~(0x1ff << (field * 10)); in mxc_iomux_set_pad()
87 l |= config << (field * 10); in mxc_iomux_set_pad()
88 __raw_writel(l, reg); in mxc_iomux_set_pad()
163 u32 l; in mxc_iomux_set_gpr() local
166 l = __raw_readl(IOMUXGPR); in mxc_iomux_set_gpr()
168 l |= gp; in mxc_iomux_set_gpr()
170 l &= ~gp; in mxc_iomux_set_gpr()
172 __raw_writel(l, IOMUXGPR); in mxc_iomux_set_gpr()