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