Helmut Raiger | 4d86dd0 | 2011-10-27 01:31:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 Magnus Lilja <lilja.magnus@gmail.com> |
| 3 | * (C) Copyright 2011 Helmut Raiger <helmut.raiger@hale.at> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Helmut Raiger | 4d86dd0 | 2011-10-27 01:31:15 +0000 | [diff] [blame] | 6 | */ |
| 7 | #include <config.h> |
| 8 | #include <asm/arch/imx-regs.h> |
| 9 | #include <asm/macro.h> |
| 10 | |
| 11 | .globl lowlevel_init |
| 12 | lowlevel_init: |
| 13 | /* Also setup the Peripheral Port Remap register inside the core */ |
| 14 | ldr r0, =ARM_PPMRR /* start from AIPS 2GB region */ |
| 15 | mcr p15, 0, r0, c15, c2, 4 |
| 16 | mov pc, lr |