Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2010,2011 |
| 4 | * Vladimir Khusainov, Emcraft Systems, vlad@emcraft.com |
| 5 | * |
| 6 | * (C) Copyright 2015 |
Kamil Lulko | decd33b | 2015-11-29 11:50:53 +0100 | [diff] [blame] | 7 | * Kamil Lulko, <kamil.lulko@gmail.com> |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 11 | #include <cpu_func.h> |
Simon Glass | 8f3f761 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 12 | #include <irq_func.h> |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 13 | #include <asm/io.h> |
| 14 | #include <asm/armv7m.h> |
| 15 | |
| 16 | /* |
| 17 | * This is called right before passing control to |
| 18 | * the Linux kernel point. |
| 19 | */ |
| 20 | int cleanup_before_linux(void) |
| 21 | { |
Vikas Manocha | cd9b3bd | 2017-05-03 15:48:26 -0700 | [diff] [blame] | 22 | /* |
| 23 | * this function is called just before we call linux |
| 24 | * it prepares the processor for linux |
| 25 | * |
| 26 | * disable interrupt and turn off caches etc ... |
| 27 | */ |
| 28 | disable_interrupts(); |
| 29 | /* |
| 30 | * turn off D-cache |
| 31 | * dcache_disable() in turn flushes the d-cache |
| 32 | * MPU is still enabled & can't be disabled as the u-boot |
| 33 | * code might be running in sdram which by default is not |
| 34 | * executable area. |
| 35 | */ |
| 36 | dcache_disable(); |
| 37 | /* invalidate to make sure no cache line gets dirty between |
| 38 | * dcache flushing and disabling dcache */ |
| 39 | invalidate_dcache_all(); |
| 40 | |
Patrice Chotard | bedc158 | 2018-03-30 09:22:40 +0200 | [diff] [blame] | 41 | icache_disable(); |
| 42 | invalidate_icache_all(); |
| 43 | |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | /* |
| 48 | * Perform the low-level reset. |
| 49 | */ |
| 50 | void reset_cpu(ulong addr) |
| 51 | { |
| 52 | /* |
| 53 | * Perform reset but keep priority group unchanged. |
| 54 | */ |
| 55 | writel((V7M_AIRCR_VECTKEY << V7M_AIRCR_VECTKEY_SHIFT) |
| 56 | | (V7M_SCB->aircr & V7M_AIRCR_PRIGROUP_MSK) |
| 57 | | V7M_AIRCR_SYSRESET, &V7M_SCB->aircr); |
| 58 | } |