]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/armv7/cpu.c
ARM: BeagleBoard-x15: Enable i2c5 clocks
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / cpu.c
CommitLineData
0b02b184
DB
1/*
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
792a09eb 9 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
0b02b184 10 *
1a459660 11 * SPDX-License-Identifier: GPL-2.0+
0b02b184
DB
12 */
13
14/*
15 * CPU specific code
16 */
17
18#include <common.h>
19#include <command.h>
677e62f4 20#include <asm/system.h>
06e758e7 21#include <asm/cache.h>
c2dd0d45 22#include <asm/armv7.h>
53e6f6a6 23#include <linux/compiler.h>
0b02b184 24
53e6f6a6
MP
25void __weak cpu_cache_initialization(void){}
26
4d24a11e 27int cleanup_before_linux_select(int flags)
0b02b184 28{
0b02b184
DB
29 /*
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 */
d460587a 35#ifndef CONFIG_SPL_BUILD
0b02b184 36 disable_interrupts();
d460587a 37#endif
0b02b184 38
c2dd0d45
A
39 /*
40 * Turn off I-cache and invalidate it
41 */
0b02b184 42 icache_disable();
c2dd0d45 43 invalidate_icache_all();
0b02b184 44
4d24a11e
SG
45 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();
0b02b184 52
4d24a11e
SG
53 /*
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 }
0b02b184 69
53e6f6a6
MP
70 /*
71 * Some CPU need more cache attention before starting the kernel.
72 */
73 cpu_cache_initialization();
74
0b02b184
DB
75 return 0;
76}
4d24a11e
SG
77
78int cleanup_before_linux(void)
79{
80 return cleanup_before_linux_select(CBL_ALL);
81}