blob: 0b0e5003cc3c390e9cb86fe13d8426e5840ae731 [file] [log] [blame]
Dirk Behme0b02b182008-12-14 09:47:13 +01001/*
2 * (C) Copyright 2008 Texas Insturments
3 *
4 * (C) Copyright 2002
5 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Marius Groeger <mgroeger@sysgo.de>
7 *
8 * (C) Copyright 2002
Detlev Zundel792a09e2009-05-13 10:54:10 +02009 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Dirk Behme0b02b182008-12-14 09:47:13 +010010 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020011 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme0b02b182008-12-14 09:47:13 +010012 */
13
14/*
15 * CPU specific code
16 */
17
18#include <common.h>
19#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +020020#include <asm/system.h>
Kim, Heung Jun06e758e2009-06-20 11:02:17 +020021#include <asm/cache.h>
Aneesh Vc2dd0d42011-06-16 23:30:49 +000022#include <asm/armv7.h>
Mathieu J. Poirier53e6f6a2012-07-31 08:59:32 +000023#include <linux/compiler.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010024
Mathieu J. Poirier53e6f6a2012-07-31 08:59:32 +000025void __weak cpu_cache_initialization(void){}
26
Simon Glass4d24a112015-05-13 07:02:25 -060027int cleanup_before_linux_select(int flags)
Dirk Behme0b02b182008-12-14 09:47:13 +010028{
Dirk Behme0b02b182008-12-14 09:47:13 +010029 /*
30 * this function is called just before we call linux
31 * it prepares the processor for linux
32 *
33 * we turn off caches etc ...
34 */
Stefano Babicd4605872012-03-15 04:01:41 +000035#ifndef CONFIG_SPL_BUILD
Dirk Behme0b02b182008-12-14 09:47:13 +010036 disable_interrupts();
Stefano Babicd4605872012-03-15 04:01:41 +000037#endif
Dirk Behme0b02b182008-12-14 09:47:13 +010038
Aneesh Vc2dd0d42011-06-16 23:30:49 +000039 /*
40 * Turn off I-cache and invalidate it
41 */
Dirk Behme0b02b182008-12-14 09:47:13 +010042 icache_disable();
Aneesh Vc2dd0d42011-06-16 23:30:49 +000043 invalidate_icache_all();
44
Simon Glass4d24a112015-05-13 07:02:25 -060045 if (flags & CBL_DISABLE_CACHES) {
46 /*
47 * turn off D-cache
48 * dcache_disable() in turn flushes the d-cache and disables MMU
49 */
50 dcache_disable();
51 v7_outer_cache_disable();
Dirk Behme0b02b182008-12-14 09:47:13 +010052
Simon Glass4d24a112015-05-13 07:02:25 -060053 /*
54 * After D-cache is flushed and before it is disabled there may
55 * be some new valid entries brought into the cache. We are
56 * sure that these lines are not dirty and will not affect our
57 * execution. (because unwinding the call-stack and setting a
58 * bit in CP15 SCTRL is all we did during this. We have not
59 * pushed anything on to the stack. Neither have we affected
60 * any static data) So just invalidate the entire d-cache again
61 * to avoid coherency problems for kernel
62 */
63 invalidate_dcache_all();
64 } else {
65 flush_dcache_all();
66 invalidate_icache_all();
67 icache_enable();
68 }
Dirk Behme0b02b182008-12-14 09:47:13 +010069
Mathieu J. Poirier53e6f6a2012-07-31 08:59:32 +000070 /*
71 * Some CPU need more cache attention before starting the kernel.
72 */
73 cpu_cache_initialization();
74
Dirk Behme0b02b182008-12-14 09:47:13 +010075 return 0;
76}
Simon Glass4d24a112015-05-13 07:02:25 -060077
78int cleanup_before_linux(void)
79{
80 return cleanup_before_linux_select(CBL_ALL);
81}