blob: 3b4f5de8f6cab6e841019c7368b240187fe0b851 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk74f43042005-09-25 01:48:28 +02002/*
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 Zundel792a09e2009-05-13 10:54:10 +02008 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Wolfgang Denk74f43042005-09-25 01:48:28 +02009 */
10
11/*
12 * CPU specific code
13 */
14
15#include <common.h>
16#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD677e62f2009-04-05 13:02:43 +020017#include <asm/system.h>
Albert ARIBAUDcd6cc342014-04-15 16:13:48 +020018#include <asm/io.h>
Wolfgang Denk74f43042005-09-25 01:48:28 +020019
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020020static void cache_flush(void);
Wolfgang Denk74f43042005-09-25 01:48:28 +020021
Wolfgang Denk74f43042005-09-25 01:48:28 +020022int 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
Wolfgang Denk74f43042005-09-25 01:48:28 +020031 disable_interrupts ();
32
Wolfgang Denkfe7eb5d2005-09-25 02:00:47 +020033 /* ARM926E-S needs the protection unit enabled for the icache to have
34 * been enabled - left for possible later use
Wolfgang Denk74f43042005-09-25 01:48:28 +020035 * should turn off the protection unit as well....
Wolfgang Denkfe7eb5d2005-09-25 02:00:47 +020036 */
Wolfgang Denk74f43042005-09-25 01:48:28 +020037 /* turn off I/D-cache */
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020038 icache_disable();
39 dcache_disable();
Wolfgang Denk74f43042005-09-25 01:48:28 +020040 /* flush I/D-cache */
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020041 cache_flush();
42
43 return 0;
Wolfgang Denk74f43042005-09-25 01:48:28 +020044}
45
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020046/* flush I/D-cache */
47static void cache_flush (void)
Wolfgang Denk74f43042005-09-25 01:48:28 +020048{
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020049 unsigned long i = 0;
Wolfgang Denk74f43042005-09-25 01:48:28 +020050
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020051 asm ("mcr p15, 0, %0, c7, c5, 0": :"r" (i));
52 asm ("mcr p15, 0, %0, c7, c6, 0": :"r" (i));
Wolfgang Denk74f43042005-09-25 01:48:28 +020053}
Albert ARIBAUDcd6cc342014-04-15 16:13:48 +020054
Masahiro Yamadae7021462015-04-21 21:59:38 +090055#ifndef CONFIG_ARCH_INTEGRATOR
Albert ARIBAUDcd6cc342014-04-15 16:13:48 +020056
57__attribute__((noreturn)) void reset_cpu(ulong addr __attribute__((unused)))
58{
59 writew(0x0, 0xfffece10);
60 writew(0x8, 0xfffece10);
61 for (;;)
62 ;
63}
64
Masahiro Yamadae7021462015-04-21 21:59:38 +090065#endif /* #ifdef CONFIG_ARCH_INTEGRATOR */