2 * This file contains low level CPU setup functions.
3 * Copyright (C) 2003 Benjamin Herrenschmidt (benh@kernel.crashing.org)
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
12 #include <asm/processor.h>
14 #include <asm/cputable.h>
15 #include <asm/ppc_asm.h>
16 #include <asm/asm-offsets.h>
17 #include <asm/cache.h>
19 /* Entry: r3 = crap, r4 = ptr to cputable entry
21 * Note that we can be called twice for pseudo-PVRs
23 _GLOBAL(__setup_cpu_power7)
36 _GLOBAL(__restore_cpu_power7)
49 _GLOBAL(__setup_cpu_power8)
59 ori r3, r3, LPCR_PECEDH
67 _GLOBAL(__restore_cpu_power8)
78 ori r3, r3, LPCR_PECEDH
87 /* Disable CPU_FTR_HVMODE and exit if MSR:HV is not set */
91 ld r5,CPU_SPEC_FEATURES(r4)
92 LOAD_REG_IMMEDIATE(r6,CPU_FTR_HVMODE)
94 std r5,CPU_SPEC_FEATURES(r4)
99 * Called with initial LPCR in R3
101 * LPES = 0b01 (HSRR0/1 used for 0x500)
105 * VC = 0b100 (VPM0=1, VPM1=0, ISL=0)
106 * VRMASD = 0b10000 (L=1, LP=00)
108 * Other bits untouched for now
111 rldimi r3,r5, LPCR_LPES_SH, 64-LPCR_LPES_SH-2
112 ori r3,r3,(LPCR_PECE0|LPCR_PECE1|LPCR_PECE2)
114 rldimi r3,r5, LPCR_DPFD_SH, 64-LPCR_DPFD_SH-3
115 clrrdi r3,r3,1 /* clear HDICE */
117 rldimi r3,r5, LPCR_VC_SH, 0
119 rldimi r3,r5, LPCR_VRMASD_SH, 64-LPCR_VRMASD_SH-5
126 ori r3,r3,FSCR_TAR|FSCR_DSCR|FSCR_EBB
132 ori r3,r3,HFSCR_TAR|HFSCR_TM|HFSCR_BHRB|HFSCR_PM|\
133 HFSCR_DSCR|HFSCR_VECVSX|HFSCR_FP|HFSCR_EBB
138 * Clear the TLB using the specified IS form of tlbiel instruction
139 * (invalidate by congruence class). P7 has 128 CCs., P8 has 512.
144 li r7,0xc00 /* IS field = 0b11 */
155 li r7,0xc00 /* IS field = 0b11 */