Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 2 | /* |
3 | * (C) Copyright 2002 | ||||
4 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> | ||||
5 | * Marius Groeger <mgroeger@sysgo.de> | ||||
6 | * | ||||
7 | * (C) Copyright 2002 | ||||
Detlev Zundel | f1b3f2b | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 8 | * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 9 | */ |
10 | |||||
11 | /* | ||||
12 | * CPU specific code | ||||
13 | */ | ||||
14 | |||||
15 | #include <common.h> | ||||
16 | #include <command.h> | ||||
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 17 | #include <cpu_func.h> |
Simon Glass | 8f3f761 | 2019-11-14 12:57:42 -0700 | [diff] [blame^] | 18 | #include <irq_func.h> |
Jean-Christophe PLAGNIOL-VILLARD | 9053b5a | 2009-04-05 13:02:43 +0200 | [diff] [blame] | 19 | #include <asm/system.h> |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 20 | |
Jean-Christophe PLAGNIOL-VILLARD | e6b5f1b | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 21 | static void cache_flush(void); |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 22 | |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 23 | int cleanup_before_linux (void) |
24 | { | ||||
25 | /* | ||||
26 | * this function is called just before we call linux | ||||
27 | * it prepares the processor for linux | ||||
28 | * | ||||
29 | * we turn off caches etc ... | ||||
30 | */ | ||||
31 | |||||
Simon Glass | f87959b | 2019-11-14 12:57:40 -0700 | [diff] [blame] | 32 | disable_interrupts(); |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 33 | |
34 | /* turn off I/D-cache */ | ||||
Jean-Christophe PLAGNIOL-VILLARD | e6b5f1b | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 35 | icache_disable(); |
36 | dcache_disable(); | ||||
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 37 | /* flush I/D-cache */ |
Jean-Christophe PLAGNIOL-VILLARD | e6b5f1b | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 38 | cache_flush(); |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 39 | |
Jean-Christophe PLAGNIOL-VILLARD | e6b5f1b | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 40 | return 0; |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 41 | } |
42 | |||||
Jean-Christophe PLAGNIOL-VILLARD | e6b5f1b | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 43 | /* flush I/D-cache */ |
44 | static void cache_flush (void) | ||||
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 45 | { |
Jean-Christophe PLAGNIOL-VILLARD | e6b5f1b | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 46 | unsigned long i = 0; |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 47 | |
Jean-Christophe PLAGNIOL-VILLARD | e6b5f1b | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 48 | asm ("mcr p15, 0, %0, c7, c7, 0": :"r" (i)); |
wdenk | 3d81826 | 2002-09-22 23:07:35 +0000 | [diff] [blame] | 49 | } |