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

Commit 503e1639 authored by Richard Zhao's avatar Richard Zhao Committed by Sascha Hauer
Browse files

ARM: imx53: correct Silicon Revision definition following fuse map

parent 646e610d
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -78,11 +78,16 @@ static int get_mx53_srev(void)
	void __iomem *iim_base = MX51_IO_ADDRESS(MX53_IIM_BASE_ADDR);
	u32 rev = readl(iim_base + IIM_SREV) & 0xff;

	if (rev == 0x0)
	switch (rev) {
	case 0x0:
		return IMX_CHIP_REVISION_1_0;
	else if (rev == 0x10)
	case 0x2:
		return IMX_CHIP_REVISION_2_0;
	return 0;
	case 0x3:
		return IMX_CHIP_REVISION_2_1;
	default:
		return IMX_CHIP_REVISION_UNKNOWN;
	}
}

/*