Merge tag 'usb-5.11-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[linux/fpc-iii.git] / arch / arm / mach-vexpress / dcscb_setup.S
blob0614b2ebd354c0a5c73f2cc53adac29f78c6669f
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * arch/arm/include/asm/dcscb_setup.S
4  *
5  * Created by:  Dave Martin, 2012-06-22
6  * Copyright:   (C) 2012-2013  Linaro Limited
7  */
9 #include <linux/linkage.h>
12 ENTRY(dcscb_power_up_setup)
14         cmp     r0, #0                  @ check affinity level
15         beq     2f
18  * Enable cluster-level coherency, in preparation for turning on the MMU.
19  * The ACTLR SMP bit does not need to be set here, because cpu_resume()
20  * already restores that.
21  *
22  * A15/A7 may not require explicit L2 invalidation on reset, dependent
23  * on hardware integration decisions.
24  * For now, this code assumes that L2 is either already invalidated,
25  * or invalidation is not required.
26  */
28         b       cci_enable_port_for_self
30 2:      @ Implementation-specific local CPU setup operations should go here,
31         @ if any.  In this case, there is nothing to do.
33         bx      lr
35 ENDPROC(dcscb_power_up_setup)