source: mainline/boot/arch/arm32/src/asm.S@ 75701004

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 75701004 was a35b458, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 8 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

  • Property mode set to 100644
File size: 2.8 KB
RevLine 
[d630139]1#
[6b781c0]2# Copyright (c) 2007 Michal Kebrt
[d630139]3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
[73b3ecd]29#include <abi/asmtool.h>
[4872160]30#include <arch/arch.h>
[6b781c0]31
32.section BOOTSTRAP
33
[73b3ecd]34SYMBOL(start)
[6ac14a70]35 ldr sp, =boot_stack
[6b781c0]36 b bootstrap
37
[4872160]38.section BOOTPT
[73b3ecd]39SYMBOL(boot_pt)
[4872160]40 .space PTL0_ENTRIES * PTL0_ENTRY_SIZE
41
42.section BOOTSTACK
43 .space 4096
[73b3ecd]44SYMBOL(boot_stack)
[4872160]45
46.text
47
[73b3ecd]48FUNCTION_BEGIN(halt)
[4872160]49 b halt
[73b3ecd]50FUNCTION_END(halt)
[4872160]51
[73b3ecd]52FUNCTION_BEGIN(jump_to_kernel)
[3527a93]53 #
54 # Make sure that the I-cache, D-cache and memory are mutually coherent
55 # before passing control to the copied code.
56 #
[b5a3b50]57
[83742a4]58 #
59 # r0 is kernel entry point
60 # r1 is pointer to the bootinfo structure
61
[b80d132]62#define CP15_C1_IC 12
63#define CP15_C1_BP 11
64#define CP15_C1_DC 2
[296a80e]65
66
67#ifndef PROCESSOR_ARCH_armv7_a
[b80d132]68 mrc p15, 0, r4, c1, c0, 0
[a35b458]69
[9658879]70 # Disable D-cache before the kernel is started.
[b80d132]71 bic r4, r4, #(1 << CP15_C1_DC)
[296a80e]72
[803f581]73 # Disable I-cache and Branch predictors.
[b80d132]74 bic r4, r4, #(1 << CP15_C1_IC)
[803f581]75#ifdef PROCESSOR_ARCH_armv6
[b80d132]76 bic r4, r4, #(1 << CP15_C1_BP)
[803f581]77#endif
[a35b458]78
[b80d132]79 mcr p15, 0, r4, c1, c0, 0
[296a80e]80#endif
[a35b458]81
[803f581]82 # Wait for the operations to complete
[83742a4]83#ifdef PROCESSOR_ARCH_armv7_a
84 dsb
85#else
[803f581]86 # cp15 dsb, r4 is ignored (should be zero)
[e93bb24]87 mov r4, #0
[83742a4]88 mcr p15, 0, r4, c7, c10, 4
89#endif
[a35b458]90
[83742a4]91 # Clean ICache and BPredictors, r4 ignored (SBZ)
[e93bb24]92 mov r4, #0
[83742a4]93 mcr p15, 0, r4, c7, c5, 0
[bfb6576]94 nop
[83742a4]95
[803f581]96 # Wait for the operations to complete
[83742a4]97#ifdef PROCESSOR_ARCH_armv7_a
98 isb
[bfb6576]99 nop
[1a2a6e7]100#elif defined(PROCESSOR_ARCH_armv6)
[83742a4]101 # cp15 isb
102 mcr p15, 0, r4, c7, c5, 4
[bfb6576]103 nop
[83742a4]104#endif
[ab63b04e]105 mov pc, r0
[73b3ecd]106FUNCTION_END(jump_to_kernel)
107
Note: See TracBrowser for help on using the repository browser.