blob: d5f7362e8c24592c2bbf2504bf5b19927991f929 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Ralf Baechle41c594a2006-04-05 09:45:45 +01002/*
Ralf Baechleb6336482014-05-23 16:29:44 +02003 * General MIPS MT support routines, usable in AP/SP and SMVP.
Ralf Baechle41c594a2006-04-05 09:45:45 +01004 * Copyright (C) 2005 Mips Technologies, Inc
5 */
6
Ralf Baechle27a3bba2007-02-07 13:48:59 +00007#include <linux/device.h>
Ralf Baechle41c594a2006-04-05 09:45:45 +01008#include <linux/kernel.h>
9#include <linux/sched.h>
Paul Gortmaker73bc2562011-07-23 16:30:40 -040010#include <linux/export.h>
Ralf Baechle41c594a2006-04-05 09:45:45 +010011#include <linux/interrupt.h>
Yoichi Yuasaf72af3c2006-07-04 22:16:28 +090012#include <linux/security.h>
Ralf Baechle41c594a2006-04-05 09:45:45 +010013
14#include <asm/cpu.h>
15#include <asm/processor.h>
Arun Sharma600634972011-07-26 16:09:06 -070016#include <linux/atomic.h>
Ralf Baechle41c594a2006-04-05 09:45:45 +010017#include <asm/hardirq.h>
18#include <asm/mmu_context.h>
Ralf Baechle41c594a2006-04-05 09:45:45 +010019#include <asm/mipsmtregs.h>
20#include <asm/r4kcache.h>
21#include <asm/cacheflush.h>
22
Ralf Baechle07cc0c92007-07-27 19:31:10 +010023int vpelimit;
24
25static int __init maxvpes(char *str)
26{
27 get_option(&str, &vpelimit);
28
29 return 1;
30}
31
32__setup("maxvpes=", maxvpes);
33
34int tclimit;
35
36static int __init maxtcs(char *str)
37{
38 get_option(&str, &tclimit);
39
40 return 1;
41}
42
43__setup("maxtcs=", maxtcs);
44
Ralf Baechle41c594a2006-04-05 09:45:45 +010045/*
Ralf Baechle41c594a2006-04-05 09:45:45 +010046 * Dump new MIPS MT state for the core. Does not leave TCs halted.
47 * Takes an argument which taken to be a pre-call MVPControl value.
48 */
49
50void mips_mt_regdump(unsigned long mvpctl)
51{
52 unsigned long flags;
53 unsigned long vpflags;
54 unsigned long mvpconf0;
55 int nvpe;
56 int ntc;
57 int i;
58 int tc;
59 unsigned long haltval;
60 unsigned long tcstatval;
Ralf Baechle41c594a2006-04-05 09:45:45 +010061
62 local_irq_save(flags);
63 vpflags = dvpe();
64 printk("=== MIPS MT State Dump ===\n");
65 printk("-- Global State --\n");
66 printk(" MVPControl Passed: %08lx\n", mvpctl);
67 printk(" MVPControl Read: %08lx\n", vpflags);
68 printk(" MVPConf0 : %08lx\n", (mvpconf0 = read_c0_mvpconf0()));
69 nvpe = ((mvpconf0 & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT) + 1;
70 ntc = ((mvpconf0 & MVPCONF0_PTC) >> MVPCONF0_PTC_SHIFT) + 1;
71 printk("-- per-VPE State --\n");
Ralf Baechled223a862007-07-10 17:33:02 +010072 for (i = 0; i < nvpe; i++) {
73 for (tc = 0; tc < ntc; tc++) {
Ralf Baechle41c594a2006-04-05 09:45:45 +010074 settc(tc);
Ralf Baechled223a862007-07-10 17:33:02 +010075 if ((read_tc_c0_tcbind() & TCBIND_CURVPE) == i) {
76 printk(" VPE %d\n", i);
77 printk(" VPEControl : %08lx\n",
78 read_vpe_c0_vpecontrol());
79 printk(" VPEConf0 : %08lx\n",
80 read_vpe_c0_vpeconf0());
81 printk(" VPE%d.Status : %08lx\n",
82 i, read_vpe_c0_status());
Ralf Baechleb012cff2008-07-15 18:44:33 +010083 printk(" VPE%d.EPC : %08lx %pS\n",
84 i, read_vpe_c0_epc(),
85 (void *) read_vpe_c0_epc());
Ralf Baechled223a862007-07-10 17:33:02 +010086 printk(" VPE%d.Cause : %08lx\n",
87 i, read_vpe_c0_cause());
88 printk(" VPE%d.Config7 : %08lx\n",
89 i, read_vpe_c0_config7());
90 break; /* Next VPE */
91 }
Ralf Baechle41c594a2006-04-05 09:45:45 +010092 }
Ralf Baechle41c594a2006-04-05 09:45:45 +010093 }
94 printk("-- per-TC State --\n");
Ralf Baechled223a862007-07-10 17:33:02 +010095 for (tc = 0; tc < ntc; tc++) {
Ralf Baechle41c594a2006-04-05 09:45:45 +010096 settc(tc);
Ralf Baechled223a862007-07-10 17:33:02 +010097 if (read_tc_c0_tcbind() == read_c0_tcbind()) {
Ralf Baechle41c594a2006-04-05 09:45:45 +010098 /* Are we dumping ourself? */
99 haltval = 0; /* Then we're not halted, and mustn't be */
100 tcstatval = flags; /* And pre-dump TCStatus is flags */
101 printk(" TC %d (current TC with VPE EPC above)\n", tc);
102 } else {
103 haltval = read_tc_c0_tchalt();
104 write_tc_c0_tchalt(1);
105 tcstatval = read_tc_c0_tcstatus();
106 printk(" TC %d\n", tc);
107 }
108 printk(" TCStatus : %08lx\n", tcstatval);
109 printk(" TCBind : %08lx\n", read_tc_c0_tcbind());
Ralf Baechleb012cff2008-07-15 18:44:33 +0100110 printk(" TCRestart : %08lx %pS\n",
111 read_tc_c0_tcrestart(), (void *) read_tc_c0_tcrestart());
Ralf Baechle41c594a2006-04-05 09:45:45 +0100112 printk(" TCHalt : %08lx\n", haltval);
113 printk(" TCContext : %08lx\n", read_tc_c0_tccontext());
114 if (!haltval)
115 write_tc_c0_tchalt(0);
116 }
Ralf Baechle41c594a2006-04-05 09:45:45 +0100117 printk("===========================\n");
118 evpe(vpflags);
119 local_irq_restore(flags);
120}
121
Ralf Baechle41c594a2006-04-05 09:45:45 +0100122static int mt_opt_rpsctl = -1;
123static int mt_opt_nblsu = -1;
Ralf Baechle982f6ff2009-09-17 02:25:07 +0200124static int mt_opt_forceconfig7;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100125static int mt_opt_config7 = -1;
126
Ralf Baechle41c594a2006-04-05 09:45:45 +0100127static int __init rpsctl_set(char *str)
128{
129 get_option(&str, &mt_opt_rpsctl);
130 return 1;
131}
132__setup("rpsctl=", rpsctl_set);
133
134static int __init nblsu_set(char *str)
135{
136 get_option(&str, &mt_opt_nblsu);
137 return 1;
138}
139__setup("nblsu=", nblsu_set);
140
141static int __init config7_set(char *str)
142{
143 get_option(&str, &mt_opt_config7);
144 mt_opt_forceconfig7 = 1;
145 return 1;
146}
147__setup("config7=", config7_set);
148
Ralf Baechle982f6ff2009-09-17 02:25:07 +0200149static unsigned int itc_base;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100150
151static int __init set_itc_base(char *str)
152{
153 get_option(&str, &itc_base);
154 return 1;
155}
156
157__setup("itcbase=", set_itc_base);
158
159void mips_mt_set_cpuoptions(void)
160{
161 unsigned int oconfig7 = read_c0_config7();
162 unsigned int nconfig7 = oconfig7;
163
Ralf Baechle41c594a2006-04-05 09:45:45 +0100164 if (mt_opt_rpsctl >= 0) {
165 printk("34K return prediction stack override set to %d.\n",
166 mt_opt_rpsctl);
167 if (mt_opt_rpsctl)
168 nconfig7 |= (1 << 2);
169 else
170 nconfig7 &= ~(1 << 2);
171 }
172 if (mt_opt_nblsu >= 0) {
173 printk("34K ALU/LSU sync override set to %d.\n", mt_opt_nblsu);
174 if (mt_opt_nblsu)
175 nconfig7 |= (1 << 5);
176 else
177 nconfig7 &= ~(1 << 5);
178 }
179 if (mt_opt_forceconfig7) {
180 printk("CP0.Config7 forced to 0x%08x.\n", mt_opt_config7);
181 nconfig7 = mt_opt_config7;
182 }
183 if (oconfig7 != nconfig7) {
184 __asm__ __volatile("sync");
185 write_c0_config7(nconfig7);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100186 ehb();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100187 printk("Config7: 0x%08x\n", read_c0_config7());
188 }
189
Ralf Baechle41c594a2006-04-05 09:45:45 +0100190 if (itc_base != 0) {
191 /*
192 * Configure ITC mapping. This code is very
193 * specific to the 34K core family, which uses
194 * a special mode bit ("ITC") in the ErrCtl
195 * register to enable access to ITC control
196 * registers via cache "tag" operations.
197 */
198 unsigned long ectlval;
199 unsigned long itcblkgrn;
200
201 /* ErrCtl register is known as "ecc" to Linux */
202 ectlval = read_c0_ecc();
203 write_c0_ecc(ectlval | (0x1 << 26));
204 ehb();
205#define INDEX_0 (0x80000000)
206#define INDEX_8 (0x80000008)
207 /* Read "cache tag" for Dcache pseudo-index 8 */
208 cache_op(Index_Load_Tag_D, INDEX_8);
209 ehb();
210 itcblkgrn = read_c0_dtaglo();
211 itcblkgrn &= 0xfffe0000;
212 /* Set for 128 byte pitch of ITC cells */
213 itcblkgrn |= 0x00000c00;
214 /* Stage in Tag register */
215 write_c0_dtaglo(itcblkgrn);
216 ehb();
217 /* Write out to ITU with CACHE op */
218 cache_op(Index_Store_Tag_D, INDEX_8);
219 /* Now set base address, and turn ITC on with 0x1 bit */
220 write_c0_dtaglo((itc_base & 0xfffffc00) | 0x1 );
221 ehb();
222 /* Write out to ITU with CACHE op */
223 cache_op(Index_Store_Tag_D, INDEX_0);
224 write_c0_ecc(ectlval);
225 ehb();
226 printk("Mapped %ld ITC cells starting at 0x%08x\n",
227 ((itcblkgrn & 0x7fe00000) >> 20), itc_base);
228 }
229}
230
Ralf Baechle27a3bba2007-02-07 13:48:59 +0000231struct class *mt_class;
232
233static int __init mt_init(void)
234{
235 struct class *mtc;
236
237 mtc = class_create(THIS_MODULE, "mt");
238 if (IS_ERR(mtc))
239 return PTR_ERR(mtc);
240
241 mt_class = mtc;
242
243 return 0;
244}
245
246subsys_initcall(mt_init);