blob: 03557e8a2ae10a2d356830e7d3c145e22eccdb79 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dirk Behme7d75a102008-12-14 09:47:13 +01002/*
3 * (C) Copyright 2008 Texas Insturments
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +020010 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Dirk Behme7d75a102008-12-14 09:47:13 +010011 */
12
13/*
14 * CPU specific code
15 */
16
17#include <common.h>
18#include <command.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070019#include <cpu_func.h>
Jean-Christophe PLAGNIOL-VILLARD9053b5a2009-04-05 13:02:43 +020020#include <asm/system.h>
Kim, Heung Jun3b5ac952009-06-20 11:02:17 +020021#include <asm/cache.h>
Aneesh V3e3bc1e2011-06-16 23:30:49 +000022#include <asm/armv7.h>
Mathieu J. Poirier4d81b2de2012-07-31 08:59:32 +000023#include <linux/compiler.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010024
Mathieu J. Poirier4d81b2de2012-07-31 08:59:32 +000025void __weak cpu_cache_initialization(void){}
26
Simon Glass442e5d72015-05-13 07:02:25 -060027int cleanup_before_linux_select(int flags)
Dirk Behme7d75a102008-12-14 09:47:13 +010028{
Dirk Behme7d75a102008-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 Babic84fb0dd2012-03-15 04:01:41 +000035#ifndef CONFIG_SPL_BUILD
Dirk Behme7d75a102008-12-14 09:47:13 +010036 disable_interrupts();
Stefano Babic84fb0dd2012-03-15 04:01:41 +000037#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010038
Simon Glass442e5d72015-05-13 07:02:25 -060039 if (flags & CBL_DISABLE_CACHES) {
40 /*
41 * turn off D-cache
42 * dcache_disable() in turn flushes the d-cache and disables MMU
43 */
44 dcache_disable();
45 v7_outer_cache_disable();
Dirk Behme7d75a102008-12-14 09:47:13 +010046
Simon Glass442e5d72015-05-13 07:02:25 -060047 /*
48 * After D-cache is flushed and before it is disabled there may
49 * be some new valid entries brought into the cache. We are
50 * sure that these lines are not dirty and will not affect our
51 * execution. (because unwinding the call-stack and setting a
52 * bit in CP15 SCTRL is all we did during this. We have not
53 * pushed anything on to the stack. Neither have we affected
54 * any static data) So just invalidate the entire d-cache again
55 * to avoid coherency problems for kernel
56 */
57 invalidate_dcache_all();
Sjoerd Simons01947b82015-08-30 16:55:49 -060058
59 icache_disable();
60 invalidate_icache_all();
Simon Glass442e5d72015-05-13 07:02:25 -060061 } else {
Sjoerd Simons01947b82015-08-30 16:55:49 -060062 /*
63 * Turn off I-cache and invalidate it
64 */
65 icache_disable();
66 invalidate_icache_all();
67
Simon Glass442e5d72015-05-13 07:02:25 -060068 flush_dcache_all();
69 invalidate_icache_all();
70 icache_enable();
71 }
Dirk Behme7d75a102008-12-14 09:47:13 +010072
Mathieu J. Poirier4d81b2de2012-07-31 08:59:32 +000073 /*
74 * Some CPU need more cache attention before starting the kernel.
75 */
76 cpu_cache_initialization();
77
Dirk Behme7d75a102008-12-14 09:47:13 +010078 return 0;
79}
Simon Glass442e5d72015-05-13 07:02:25 -060080
81int cleanup_before_linux(void)
82{
83 return cleanup_before_linux_select(CBL_ALL);
84}