mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
ARM: imx: Add revision support for i.MX7ULP revision 2.2
On i.MX7ULP revision 2.2, the value is 3, so add support for this revision, otherwise, it will use default revision of 1.0 which is incorrect. Signed-off-by: Anson Huang <Anson.Huang@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
parent
3650b228f8
commit
2f4ac2d79e
1 changed files with 3 additions and 0 deletions
|
@ -45,6 +45,9 @@ static void __init imx7ulp_set_revision(void)
|
||||||
case 2:
|
case 2:
|
||||||
imx_set_soc_revision(IMX_CHIP_REVISION_2_1);
|
imx_set_soc_revision(IMX_CHIP_REVISION_2_1);
|
||||||
break;
|
break;
|
||||||
|
case 3:
|
||||||
|
imx_set_soc_revision(IMX_CHIP_REVISION_2_2);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
imx_set_soc_revision(IMX_CHIP_REVISION_1_0);
|
imx_set_soc_revision(IMX_CHIP_REVISION_1_0);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue