Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 47e14d66 authored by John Crispin's avatar John Crispin Committed by Ralf Baechle
Browse files

MIPS: ralink: add rt_sysc_m32 helper



We already have a read and write wrapper. This adds the missing mask wrapper.

Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/8001/


Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 2920b83d
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -26,6 +26,13 @@ static inline u32 rt_sysc_r32(unsigned reg)
	return __raw_readl(rt_sysc_membase + reg);
}

static inline void rt_sysc_m32(u32 clr, u32 set, unsigned reg)
{
	u32 val = rt_sysc_r32(reg) & ~clr;

	__raw_writel(val | set, rt_sysc_membase + reg);
}

static inline void rt_memc_w32(u32 val, unsigned reg)
{
	__raw_writel(val, rt_memc_membase + reg);