blob: c7af397c7f14e68b85deb49d294ce03aeb5aaf18 [file] [log] [blame]
Florian Fainellied5cd812014-08-14 19:37:45 -07001/*
2 * Copyright (C) 2015, Broadcom Corporation
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9#include <linux/linkage.h>
10#include <linux/init.h>
11#include <asm/assembler.h>
12
13ENTRY(bcm63138_secondary_startup)
14 ARM_BE8(setend be)
15 /*
16 * L1 cache does have unpredictable contents at power-up clean its
17 * contents without flushing
18 */
19 bl v7_invalidate_l1
20 nop
21
22 b secondary_startup
23ENDPROC(bcm63138_secondary_startup)