blob: 694c1d92e7969b4fc67df0a28623a75381ca2b2b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines providing a simple monitor for use on the PowerMac.
3 *
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11004 * Copyright (C) 1996-2005 Paul Mackerras.
Michael Ellerman476792832006-10-03 14:12:08 +10005 * Copyright (C) 2001 PPC64 Team, IBM Corp
6 * Copyrignt (C) 2006 Michael Ellerman, IBM Corp
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
Michael Ellerman56144ec2015-11-06 13:21:17 +110013
14#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010016#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/smp.h>
18#include <linux/mm.h>
19#include <linux/reboot.h>
20#include <linux/delay.h>
21#include <linux/kallsyms.h>
Michael Ellermanca5dd392012-08-23 22:09:12 +000022#include <linux/kmsg_dump.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/cpumask.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040024#include <linux/export.h>
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +110025#include <linux/sysrq.h>
Andrew Morton4694ca02005-11-13 16:06:50 -080026#include <linux/interrupt.h>
David Howells7d12e782006-10-05 14:55:46 +010027#include <linux/irq.h>
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -080028#include <linux/bug.h>
Anton Blancharda71d64b2014-08-05 14:55:00 +100029#include <linux/nmi.h>
Vincent Bernat05b981f2014-07-15 13:43:47 +020030#include <linux/ctype.h>
Balbir Singh80eff6c2017-10-30 22:01:12 +110031#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Michael Ellerman7644d582017-02-10 12:04:56 +110033#include <asm/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/ptrace.h>
Benjamin Herrenschmidt243e2512017-04-05 17:54:50 +100035#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/string.h>
37#include <asm/prom.h>
38#include <asm/machdep.h>
Paul Mackerrasf78541dc2005-10-28 22:53:37 +100039#include <asm/xmon.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/processor.h>
41#include <asm/pgtable.h>
42#include <asm/mmu.h>
43#include <asm/mmu_context.h>
Michael Ellermanab83dc72018-03-08 13:54:42 +110044#include <asm/plpar_wrappers.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/cputable.h>
46#include <asm/rtas.h>
47#include <asm/sstep.h>
Paul Mackerrasf583ffc2006-10-10 11:47:07 +100048#include <asm/irq_regs.h>
Michael Ellermanff8a8f22006-10-24 18:31:27 +020049#include <asm/spu.h>
50#include <asm/spu_priv1.h>
Michael Neulingc3b75bd2008-01-18 15:50:30 +110051#include <asm/setjmp.h>
Anton Vorontsov322b4392008-12-17 10:08:55 +000052#include <asm/reg.h>
David Howellsae3a1972012-03-28 18:30:02 +010053#include <asm/debug.h>
Michael Neuling9422de32012-12-20 14:06:44 +000054#include <asm/hw_breakpoint.h>
Benjamin Herrenschmidt243e2512017-04-05 17:54:50 +100055#include <asm/xive.h>
Andrew Donnellanfde93a02016-02-09 18:17:49 +110056#include <asm/opal.h>
57#include <asm/firmware.h>
Balbir Singhefe4fbb2017-06-27 17:48:58 +100058#include <asm/code-patching.h>
Boqun Feng302c7b02016-11-22 17:20:09 +080059#include <asm/sections.h>
Andrew Donnellanfde93a02016-02-09 18:17:49 +110060
Paul Mackerrasf78541dc2005-10-28 22:53:37 +100061#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/hvcall.h>
Paul Mackerrasf78541dc2005-10-28 22:53:37 +100063#include <asm/paca.h>
64#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#include "nonstdio.h"
Michael Ellermane0426042006-11-23 00:46:45 +010067#include "dis-asm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#ifdef CONFIG_SMP
Michael Ellerman1c8950f2008-05-08 14:27:17 +100070static cpumask_t cpus_in_xmon = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static unsigned long xmon_taken = 1;
72static int xmon_owner;
73static int xmon_gate;
Michael Ellermanddadb6b2012-09-13 23:01:31 +000074#else
75#define xmon_owner 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#endif /* CONFIG_SMP */
77
Anton Blanchard5be34922010-01-12 00:50:14 +000078static unsigned long in_xmon __read_mostly = 0;
Pan Xinhui3b5bf422017-03-22 16:27:49 -030079static int xmon_on = IS_ENABLED(CONFIG_XMON_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static unsigned long adrs;
82static int size = 1;
83#define MAX_DUMP (128 * 1024)
84static unsigned long ndump = 64;
85static unsigned long nidump = 16;
86static unsigned long ncsum = 4096;
87static int termch;
88static char tmpstr[128];
Breno Leitaoed49f7f2017-08-02 17:14:06 -030089static int tracing_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static long bus_error_jmp[JMP_BUF_LEN];
92static int catch_memory_errors;
Paul Mackerras31cdd0c2016-04-13 21:31:24 +100093static int catch_spr_faults;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static long *xmon_fault_jmp[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* Breakpoint stuff */
97struct bpt {
98 unsigned long address;
99 unsigned int instr[2];
100 atomic_t ref_count;
101 int enabled;
102 unsigned long pad;
103};
104
105/* Bits in bpt.enabled */
Michael Ellermanabb90ee2014-12-01 16:54:13 +1100106#define BP_CIABR 1
107#define BP_TRAP 2
108#define BP_DABR 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#define NBPTS 256
111static struct bpt bpts[NBPTS];
112static struct bpt dabr;
113static struct bpt *iabr;
114static unsigned bpinstr = 0x7fe00008; /* trap */
115
116#define BP_NUM(bp) ((bp) - bpts + 1)
117
118/* Prototypes */
119static int cmds(struct pt_regs *);
120static int mread(unsigned long, void *, int);
121static int mwrite(unsigned long, void *, int);
122static int handle_fault(struct pt_regs *);
123static void byterev(unsigned char *, int);
124static void memex(void);
125static int bsesc(void);
126static void dump(void);
Balbir Singh80eff6c2017-10-30 22:01:12 +1100127static void show_pte(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static void prdump(unsigned long, long);
129static int ppc_inst_dump(unsigned long, long, int);
Vinay Sridharf312deb2009-05-14 23:13:07 +0000130static void dump_log_buf(void);
Andrew Donnellanfde93a02016-02-09 18:17:49 +1100131
132#ifdef CONFIG_PPC_POWERNV
133static void dump_opal_msglog(void);
134#else
135static inline void dump_opal_msglog(void)
136{
137 printf("Machine is not running OPAL firmware.\n");
138}
139#endif
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static void backtrace(struct pt_regs *);
142static void excprint(struct pt_regs *);
143static void prregs(struct pt_regs *);
144static void memops(int);
145static void memlocate(void);
146static void memzcan(void);
147static void memdiffs(unsigned char *, unsigned char *, unsigned, unsigned);
148int skipbl(void);
149int scanhex(unsigned long *valp);
150static void scannl(void);
151static int hexdigit(int);
152void getstring(char *, int);
153static void flush_input(void);
154static int inchar(void);
155static void take_input(char *);
Paul Mackerras31cdd0c2016-04-13 21:31:24 +1000156static int read_spr(int, unsigned long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static void write_spr(int, unsigned long);
158static void super_regs(void);
159static void remove_bpts(void);
160static void insert_bpts(void);
161static void remove_cpu_bpts(void);
162static void insert_cpu_bpts(void);
163static struct bpt *at_breakpoint(unsigned long pc);
164static struct bpt *in_breakpoint_table(unsigned long pc, unsigned long *offp);
165static int do_step(struct pt_regs *);
166static void bpt_cmds(void);
167static void cacheflush(void);
168static int cpu_cmd(void);
169static void csum(void);
170static void bootcmds(void);
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000171static void proccall(void);
Douglas Miller6dfb5402015-11-23 09:01:15 -0600172static void show_tasks(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173void dump_segments(void);
174static void symbol_lookup(void);
Olaf Hering26c8af52006-09-08 16:29:21 +0200175static void xmon_show_stack(unsigned long sp, unsigned long lr,
176 unsigned long pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static void xmon_print_symbol(unsigned long address, const char *mid,
178 const char *after);
179static const char *getvecname(unsigned long vec);
180
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200181static int do_spu_cmd(void);
182
Benjamin Herrenschmidt5a8a1a22007-11-16 18:23:33 +1100183#ifdef CONFIG_44x
184static void dump_tlb_44x(void);
185#endif
Benjamin Herrenschmidt03247152010-07-09 15:34:50 +1000186#ifdef CONFIG_PPC_BOOK3E
187static void dump_tlb_book3e(void);
188#endif
Benjamin Herrenschmidt5a8a1a22007-11-16 18:23:33 +1100189
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000190#ifdef CONFIG_PPC64
191#define REG "%.16lx"
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000192#else
193#define REG "%.8lx"
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Philippe Bergheaud72eceef2013-12-02 10:10:12 +0100196#ifdef __LITTLE_ENDIAN__
197#define GETWORD(v) (((v)[3] << 24) + ((v)[2] << 16) + ((v)[1] << 8) + (v)[0])
198#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define GETWORD(v) (((v)[0] << 24) + ((v)[1] << 16) + ((v)[2] << 8) + (v)[3])
Philippe Bergheaud72eceef2013-12-02 10:10:12 +0100200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static char *help_string = "\
203Commands:\n\
204 b show breakpoints\n\
205 bd set data breakpoint\n\
206 bi set instruction breakpoint\n\
207 bc clear breakpoint\n"
208#ifdef CONFIG_SMP
209 "\
210 c print cpus stopped in xmon\n\
211 c# try to switch to cpu number h (in hex)\n"
212#endif
213 "\
214 C checksum\n\
215 d dump bytes\n\
Douglas Miller5e48dc02017-02-07 07:40:44 -0600216 d1 dump 1 byte values\n\
217 d2 dump 2 byte values\n\
218 d4 dump 4 byte values\n\
219 d8 dump 8 byte values\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 di dump instructions\n\
221 df dump float values\n\
222 dd dump double values\n\
Michael Ellermanddadb6b2012-09-13 23:01:31 +0000223 dl dump the kernel log buffer\n"
Andrew Donnellanfde93a02016-02-09 18:17:49 +1100224#ifdef CONFIG_PPC_POWERNV
225 "\
226 do dump the OPAL message log\n"
227#endif
Michael Ellermanddadb6b2012-09-13 23:01:31 +0000228#ifdef CONFIG_PPC64
229 "\
230 dp[#] dump paca for current cpu, or cpu #\n\
231 dpa dump paca for all possible cpus\n"
232#endif
233 "\
Olaf Hering7e5b5932006-03-08 20:40:28 +0100234 dr dump stream of raw bytes\n\
Balbir Singh80eff6c2017-10-30 22:01:12 +1100235 dv dump virtual address translation \n\
Michael Ellerman56144ec2015-11-06 13:21:17 +1100236 dt dump the tracing buffers (uses printk)\n\
Breno Leitao4125d012017-08-02 17:14:05 -0300237 dtc dump the tracing buffers for current CPU (uses printk)\n\
Benjamin Herrenschmidt243e2512017-04-05 17:54:50 +1000238"
239#ifdef CONFIG_PPC_POWERNV
240" dx# dump xive on CPU #\n\
241 dxi# dump xive irq state #\n\
242 dxa dump xive on all CPUs\n"
243#endif
244" e print exception information\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 f flush cache\n\
246 la lookup symbol+offset of specified address\n\
247 ls lookup address of specified symbol\n\
Boqun Feng302c7b02016-11-22 17:20:09 +0800248 lp s [#] lookup address of percpu symbol s for current cpu, or cpu #\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 m examine/change memory\n\
250 mm move a block of memory\n\
251 ms set a block of memory\n\
252 md compare two blocks of memory\n\
253 ml locate a block of memory\n\
254 mz zero a block of memory\n\
255 mi show information about memory allocation\n\
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000256 p call a procedure\n\
Douglas Miller6dfb5402015-11-23 09:01:15 -0600257 P list processes/tasks\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 r print registers\n\
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200259 s single step\n"
Arnd Bergmanne0555952006-11-27 19:18:55 +0100260#ifdef CONFIG_SPU_BASE
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200261" ss stop execution on all spus\n\
Michael Ellermana8984972006-10-24 18:31:28 +0200262 sr restore execution on stopped spus\n\
Michael Ellerman24a24c82006-11-23 00:46:41 +0100263 sf # dump spu fields for spu # (in hex)\n\
Michael Ellermanc99176a2007-02-26 18:14:06 +0900264 sd # dump spu local store for spu # (in hex)\n\
Michael Ellermanaf89fb82006-11-23 00:46:44 +0100265 sdi # disassemble spu local store for spu # (in hex)\n"
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200266#endif
267" S print special registers\n\
Paul Mackerras31cdd0c2016-04-13 21:31:24 +1000268 Sa print all SPRs\n\
269 Sr # read SPR #\n\
270 Sw #v write v to SPR #\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 t print backtrace\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 x exit monitor and recover\n\
Andrew Donnellan2e340572016-01-27 11:29:44 +1100273 X exit monitor and don't recover\n"
Jimi Xenidis79873e82011-09-29 11:25:10 +0000274#if defined(CONFIG_PPC64) && !defined(CONFIG_PPC_BOOK3E)
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000275" u dump segment table or SLB\n"
Jimi Xenidis79873e82011-09-29 11:25:10 +0000276#elif defined(CONFIG_PPC_STD_MMU_32)
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000277" u dump segment registers\n"
Jimi Xenidis79873e82011-09-29 11:25:10 +0000278#elif defined(CONFIG_44x) || defined(CONFIG_PPC_BOOK3E)
Benjamin Herrenschmidt5a8a1a22007-11-16 18:23:33 +1100279" u dump TLB\n"
280#endif
Guilherme G. Piccoli59d33912017-09-18 11:16:58 -0300281" U show uptime information\n"
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000282" ? help\n"
Sam bobroff0c23a882015-10-08 11:50:24 +1100283" # n limit output to n lines per page (for dp, dpa, dl)\n"
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000284" zr reboot\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 zh halt\n"
286;
287
288static struct pt_regs *xmon_regs;
289
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000290static inline void sync(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 asm volatile("sync; isync");
293}
294
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000295static inline void store_inst(void *p)
296{
297 asm volatile ("dcbst 0,%0; sync; icbi 0,%0; isync" : : "r" (p));
298}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000300static inline void cflush(void *p)
301{
302 asm volatile ("dcbf 0,%0; icbi 0,%0" : : "r" (p));
303}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000305static inline void cinval(void *p)
306{
307 asm volatile ("dcbi 0,%0; icbi 0,%0" : : "r" (p));
308}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Anshuman Khandual1ad7d702014-11-28 10:06:42 +0530310/**
311 * write_ciabr() - write the CIABR SPR
312 * @ciabr: The value to write.
313 *
314 * This function writes a value to the CIARB register either directly
315 * through mtspr instruction if the kernel is in HV privilege mode or
316 * call a hypervisor function to achieve the same in case the kernel
317 * is in supervisor privilege mode.
318 */
319static void write_ciabr(unsigned long ciabr)
320{
321 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
322 return;
323
324 if (cpu_has_feature(CPU_FTR_HVMODE)) {
325 mtspr(SPRN_CIABR, ciabr);
326 return;
327 }
Michael Ellerman7c09c182018-03-08 13:54:41 +1100328 plpar_set_ciabr(ciabr);
Anshuman Khandual1ad7d702014-11-28 10:06:42 +0530329}
330
331/**
332 * set_ciabr() - set the CIABR
333 * @addr: The value to set.
334 *
335 * This function sets the correct privilege value into the the HW
336 * breakpoint address before writing it up in the CIABR register.
337 */
338static void set_ciabr(unsigned long addr)
339{
340 addr &= ~CIABR_PRIV;
341
342 if (cpu_has_feature(CPU_FTR_HVMODE))
343 addr |= CIABR_PRIV_HYPER;
344 else
345 addr |= CIABR_PRIV_SUPER;
346 write_ciabr(addr);
347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349/*
350 * Disable surveillance (the service processor watchdog function)
351 * while we are in xmon.
352 * XXX we should re-enable it when we leave. :)
353 */
354#define SURVEILLANCE_TOKEN 9000
355
356static inline void disable_surveillance(void)
357{
358#ifdef CONFIG_PPC_PSERIES
359 /* Since this can't be a module, args should end up below 4GB. */
360 static struct rtas_args args;
Michael Ellerman08eb1052015-11-24 22:26:09 +1100361 int token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 /*
364 * At this point we have got all the cpus we can into
365 * xmon, so there is hopefully no other cpu calling RTAS
366 * at the moment, even though we don't take rtas.lock.
367 * If we did try to take rtas.lock there would be a
368 * real possibility of deadlock.
369 */
Michael Ellerman08eb1052015-11-24 22:26:09 +1100370 token = rtas_token("set-indicator");
371 if (token == RTAS_UNKNOWN_SERVICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return;
Michael Ellerman08eb1052015-11-24 22:26:09 +1100373
374 rtas_call_unlocked(&args, token, 3, 1, NULL, SURVEILLANCE_TOKEN, 0, 0);
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#endif /* CONFIG_PPC_PSERIES */
377}
378
379#ifdef CONFIG_SMP
380static int xmon_speaker;
381
382static void get_output_lock(void)
383{
384 int me = smp_processor_id() + 0x100;
385 int last_speaker = 0, prev;
386 long timeout;
387
388 if (xmon_speaker == me)
389 return;
Michael Ellerman730efb62013-12-23 23:46:04 +1100390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 for (;;) {
Michael Ellerman730efb62013-12-23 23:46:04 +1100392 last_speaker = cmpxchg(&xmon_speaker, 0, me);
393 if (last_speaker == 0)
394 return;
395
Michael Ellerman15075892013-12-23 23:46:05 +1100396 /*
397 * Wait a full second for the lock, we might be on a slow
398 * console, but check every 100us.
399 */
400 timeout = 10000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 while (xmon_speaker == last_speaker) {
Michael Ellerman15075892013-12-23 23:46:05 +1100402 if (--timeout > 0) {
403 udelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 continue;
Michael Ellerman15075892013-12-23 23:46:05 +1100405 }
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* hostile takeover */
408 prev = cmpxchg(&xmon_speaker, last_speaker, me);
409 if (prev == last_speaker)
410 return;
411 break;
412 }
413 }
414}
415
416static void release_output_lock(void)
417{
418 xmon_speaker = 0;
419}
Michael Ellerman1c8950f2008-05-08 14:27:17 +1000420
421int cpus_are_in_xmon(void)
422{
KOSAKI Motohiro104699c2011-04-28 05:07:23 +0000423 return !cpumask_empty(&cpus_in_xmon);
Michael Ellerman1c8950f2008-05-08 14:27:17 +1000424}
Nicholas Piggin1cd6ed72016-12-20 04:30:11 +1000425
426static bool wait_for_other_cpus(int ncpus)
427{
428 unsigned long timeout;
429
430 /* We wait for 2s, which is a metric "little while" */
431 for (timeout = 20000; timeout != 0; --timeout) {
432 if (cpumask_weight(&cpus_in_xmon) >= ncpus)
433 return true;
434 udelay(100);
435 barrier();
436 }
437
438 return false;
439}
440#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Josh Boyerdaf8f402009-09-23 03:51:04 +0000442static inline int unrecoverable_excp(struct pt_regs *regs)
443{
Jimi Xenidis08f6d6a2011-09-29 12:05:28 +0000444#if defined(CONFIG_4xx) || defined(CONFIG_PPC_BOOK3E)
Jimi Xenidis66857b32011-09-23 05:40:46 +0000445 /* We have no MSR_RI bit on 4xx or Book3e, so we simply return false */
Josh Boyerdaf8f402009-09-23 03:51:04 +0000446 return 0;
447#else
448 return ((regs->msr & MSR_RI) == 0);
449#endif
450}
451
Arnd Bergmannb0da9852006-01-11 00:00:05 +0000452static int xmon_core(struct pt_regs *regs, int fromipi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 int cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 struct bpt *bp;
456 long recurse_jmp[JMP_BUF_LEN];
457 unsigned long offset;
Anton Blanchardf13659e2007-03-21 01:48:34 +1100458 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#ifdef CONFIG_SMP
460 int cpu;
461 int secondary;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif
463
Anton Blanchardf13659e2007-03-21 01:48:34 +1100464 local_irq_save(flags);
Anton Blancharda71d64b2014-08-05 14:55:00 +1000465 hard_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Breno Leitaoed49f7f2017-08-02 17:14:06 -0300467 tracing_enabled = tracing_is_on();
468 tracing_off();
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 bp = in_breakpoint_table(regs->nip, &offset);
471 if (bp != NULL) {
472 regs->nip = bp->address + offset;
473 atomic_dec(&bp->ref_count);
474 }
475
476 remove_cpu_bpts();
477
478#ifdef CONFIG_SMP
479 cpu = smp_processor_id();
KOSAKI Motohiro104699c2011-04-28 05:07:23 +0000480 if (cpumask_test_cpu(cpu, &cpus_in_xmon)) {
Paul Mackerras31cdd0c2016-04-13 21:31:24 +1000481 /*
482 * We catch SPR read/write faults here because the 0x700, 0xf60
483 * etc. handlers don't call debugger_fault_handler().
484 */
485 if (catch_spr_faults)
486 longjmp(bus_error_jmp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 get_output_lock();
488 excprint(regs);
489 printf("cpu 0x%x: Exception %lx %s in xmon, "
490 "returning to main loop\n",
491 cpu, regs->trap, getvecname(TRAP(regs)));
Haren Myneni5cb4cc02005-08-03 15:08:18 +1000492 release_output_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 longjmp(xmon_fault_jmp[cpu], 1);
494 }
495
496 if (setjmp(recurse_jmp) != 0) {
497 if (!in_xmon || !xmon_gate) {
Haren Myneni5cb4cc02005-08-03 15:08:18 +1000498 get_output_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 printf("xmon: WARNING: bad recursive fault "
500 "on cpu 0x%x\n", cpu);
Haren Myneni5cb4cc02005-08-03 15:08:18 +1000501 release_output_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 goto waiting;
503 }
504 secondary = !(xmon_taken && cpu == xmon_owner);
505 goto cmdloop;
506 }
507
508 xmon_fault_jmp[cpu] = recurse_jmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 bp = NULL;
Michael Ellerman9f0b0792011-04-07 21:56:03 +0000511 if ((regs->msr & (MSR_IR|MSR_PR|MSR_64BIT)) == (MSR_IR|MSR_64BIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 bp = at_breakpoint(regs->nip);
Josh Boyerdaf8f402009-09-23 03:51:04 +0000513 if (bp || unrecoverable_excp(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 fromipi = 0;
515
516 if (!fromipi) {
517 get_output_lock();
518 excprint(regs);
519 if (bp) {
Mathieu Malaterree70d8f52018-03-25 11:06:47 +0200520 printf("cpu 0x%x stopped at breakpoint 0x%tx (",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 cpu, BP_NUM(bp));
522 xmon_print_symbol(regs->nip, " ", ")\n");
523 }
Josh Boyerdaf8f402009-09-23 03:51:04 +0000524 if (unrecoverable_excp(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 printf("WARNING: exception is not recoverable, "
526 "can't continue\n");
527 release_output_lock();
528 }
529
Michael Ellermand2b496e2013-12-23 23:46:06 +1100530 cpumask_set_cpu(cpu, &cpus_in_xmon);
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 waiting:
533 secondary = 1;
Nicholas Piggin064996d2017-09-29 13:29:40 +1000534 spin_begin();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 while (secondary && !xmon_gate) {
536 if (in_xmon == 0) {
Nicholas Piggin064996d2017-09-29 13:29:40 +1000537 if (fromipi) {
538 spin_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 goto leave;
Nicholas Piggin064996d2017-09-29 13:29:40 +1000540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 secondary = test_and_set_bit(0, &in_xmon);
542 }
Nicholas Piggin064996d2017-09-29 13:29:40 +1000543 spin_cpu_relax();
544 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
Nicholas Piggin064996d2017-09-29 13:29:40 +1000546 spin_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 if (!secondary && !xmon_gate) {
549 /* we are the first cpu to come in */
550 /* interrupt other cpu(s) */
551 int ncpus = num_online_cpus();
552
553 xmon_owner = cpu;
554 mb();
555 if (ncpus > 1) {
Nicholas Piggin1cd6ed72016-12-20 04:30:11 +1000556 /*
557 * A system reset (trap == 0x100) can be triggered on
558 * all CPUs, so when we come in via 0x100 try waiting
559 * for the other CPUs to come in before we send the
560 * debugger break (IPI). This is similar to
561 * crash_kexec_secondary().
562 */
563 if (TRAP(regs) != 0x100 || !wait_for_other_cpus(ncpus))
564 smp_send_debugger_break();
565
566 wait_for_other_cpus(ncpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568 remove_bpts();
569 disable_surveillance();
570 /* for breakpoint or single step, print the current instr. */
571 if (bp || TRAP(regs) == 0xd00)
572 ppc_inst_dump(regs->nip, 1, 0);
573 printf("enter ? for help\n");
574 mb();
575 xmon_gate = 1;
576 barrier();
Nicholas Piggin064996d2017-09-29 13:29:40 +1000577 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580 cmdloop:
581 while (in_xmon) {
582 if (secondary) {
Nicholas Piggin064996d2017-09-29 13:29:40 +1000583 spin_begin();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (cpu == xmon_owner) {
585 if (!test_and_set_bit(0, &xmon_taken)) {
586 secondary = 0;
Nicholas Piggin064996d2017-09-29 13:29:40 +1000587 spin_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 continue;
589 }
590 /* missed it */
591 while (cpu == xmon_owner)
Nicholas Piggin064996d2017-09-29 13:29:40 +1000592 spin_cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Nicholas Piggin064996d2017-09-29 13:29:40 +1000594 spin_cpu_relax();
595 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 } else {
597 cmd = cmds(regs);
598 if (cmd != 0) {
599 /* exiting xmon */
600 insert_bpts();
601 xmon_gate = 0;
602 wmb();
603 in_xmon = 0;
604 break;
605 }
606 /* have switched to some other cpu */
607 secondary = 1;
608 }
609 }
610 leave:
KOSAKI Motohiro104699c2011-04-28 05:07:23 +0000611 cpumask_clear_cpu(cpu, &cpus_in_xmon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 xmon_fault_jmp[cpu] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#else
614 /* UP is simple... */
615 if (in_xmon) {
616 printf("Exception %lx %s in xmon, returning to main loop\n",
617 regs->trap, getvecname(TRAP(regs)));
618 longjmp(xmon_fault_jmp[0], 1);
619 }
620 if (setjmp(recurse_jmp) == 0) {
621 xmon_fault_jmp[0] = recurse_jmp;
622 in_xmon = 1;
623
624 excprint(regs);
625 bp = at_breakpoint(regs->nip);
626 if (bp) {
Mathieu Malaterree70d8f52018-03-25 11:06:47 +0200627 printf("Stopped at breakpoint %tx (", BP_NUM(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 xmon_print_symbol(regs->nip, " ", ")\n");
629 }
Josh Boyerdaf8f402009-09-23 03:51:04 +0000630 if (unrecoverable_excp(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 printf("WARNING: exception is not recoverable, "
632 "can't continue\n");
633 remove_bpts();
634 disable_surveillance();
635 /* for breakpoint or single step, print the current instr. */
636 if (bp || TRAP(regs) == 0xd00)
637 ppc_inst_dump(regs->nip, 1, 0);
638 printf("enter ? for help\n");
639 }
640
641 cmd = cmds(regs);
642
643 insert_bpts();
644 in_xmon = 0;
645#endif
646
Josh Boyercdd39042009-10-05 04:46:05 +0000647#ifdef CONFIG_BOOKE
648 if (regs->msr & MSR_DE) {
649 bp = at_breakpoint(regs->nip);
650 if (bp != NULL) {
651 regs->nip = (unsigned long) &bp->instr[0];
652 atomic_inc(&bp->ref_count);
653 }
654 }
655#else
Michael Ellerman9f0b0792011-04-07 21:56:03 +0000656 if ((regs->msr & (MSR_IR|MSR_PR|MSR_64BIT)) == (MSR_IR|MSR_64BIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 bp = at_breakpoint(regs->nip);
658 if (bp != NULL) {
659 int stepped = emulate_step(regs, bp->instr[0]);
660 if (stepped == 0) {
661 regs->nip = (unsigned long) &bp->instr[0];
662 atomic_inc(&bp->ref_count);
663 } else if (stepped < 0) {
664 printf("Couldn't single-step %s instruction\n",
665 (IS_RFID(bp->instr[0])? "rfid": "mtmsrd"));
666 }
667 }
668 }
Josh Boyercdd39042009-10-05 04:46:05 +0000669#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 insert_cpu_bpts();
671
Anton Blancharda71d64b2014-08-05 14:55:00 +1000672 touch_nmi_watchdog();
Anton Blanchardf13659e2007-03-21 01:48:34 +1100673 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Paul Mackerras0a730ae2006-10-03 21:32:49 +1000675 return cmd != 'X' && cmd != EOF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678int xmon(struct pt_regs *excp)
679{
680 struct pt_regs regs;
681
682 if (excp == NULL) {
Anton Vorontsov322b4392008-12-17 10:08:55 +0000683 ppc_save_regs(&regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 excp = &regs;
685 }
Michael Ellermanff8a8f22006-10-24 18:31:27 +0200686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return xmon_core(excp, 0);
688}
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000689EXPORT_SYMBOL(xmon);
690
Paul Mackerrasf583ffc2006-10-10 11:47:07 +1000691irqreturn_t xmon_irq(int irq, void *d)
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000692{
693 unsigned long flags;
694 local_irq_save(flags);
695 printf("Keyboard interrupt\n");
Paul Mackerrasf583ffc2006-10-10 11:47:07 +1000696 xmon(get_irq_regs());
Paul Mackerrasf78541dc2005-10-28 22:53:37 +1000697 local_irq_restore(flags);
698 return IRQ_HANDLED;
699}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Arnd Bergmannb0da9852006-01-11 00:00:05 +0000701static int xmon_bpt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 struct bpt *bp;
704 unsigned long offset;
705
Michael Ellerman9f0b0792011-04-07 21:56:03 +0000706 if ((regs->msr & (MSR_IR|MSR_PR|MSR_64BIT)) != (MSR_IR|MSR_64BIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708
709 /* Are we at the trap at bp->instr[1] for some bp? */
710 bp = in_breakpoint_table(regs->nip, &offset);
711 if (bp != NULL && offset == 4) {
712 regs->nip = bp->address + 4;
713 atomic_dec(&bp->ref_count);
714 return 1;
715 }
716
717 /* Are we at a breakpoint? */
718 bp = at_breakpoint(regs->nip);
719 if (!bp)
720 return 0;
721
722 xmon_core(regs, 0);
723
724 return 1;
725}
726
Arnd Bergmannb0da9852006-01-11 00:00:05 +0000727static int xmon_sstep(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 if (user_mode(regs))
730 return 0;
731 xmon_core(regs, 0);
732 return 1;
733}
734
Michael Neuling9422de32012-12-20 14:06:44 +0000735static int xmon_break_match(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Michael Ellerman9f0b0792011-04-07 21:56:03 +0000737 if ((regs->msr & (MSR_IR|MSR_PR|MSR_64BIT)) != (MSR_IR|MSR_64BIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return 0;
Anton Blanchardfd9648d2005-09-10 16:01:11 +1000739 if (dabr.enabled == 0)
740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 xmon_core(regs, 0);
742 return 1;
743}
744
Arnd Bergmannb0da9852006-01-11 00:00:05 +0000745static int xmon_iabr_match(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Michael Ellerman9f0b0792011-04-07 21:56:03 +0000747 if ((regs->msr & (MSR_IR|MSR_PR|MSR_64BIT)) != (MSR_IR|MSR_64BIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return 0;
Michael Ellerman9f1067c22008-05-08 14:27:16 +1000749 if (iabr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
751 xmon_core(regs, 0);
752 return 1;
753}
754
Arnd Bergmannb0da9852006-01-11 00:00:05 +0000755static int xmon_ipi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757#ifdef CONFIG_SMP
KOSAKI Motohiro104699c2011-04-28 05:07:23 +0000758 if (in_xmon && !cpumask_test_cpu(smp_processor_id(), &cpus_in_xmon))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 xmon_core(regs, 1);
760#endif
761 return 0;
762}
763
Arnd Bergmannb0da9852006-01-11 00:00:05 +0000764static int xmon_fault_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 struct bpt *bp;
767 unsigned long offset;
768
769 if (in_xmon && catch_memory_errors)
770 handle_fault(regs); /* doesn't return */
771
Michael Ellerman9f0b0792011-04-07 21:56:03 +0000772 if ((regs->msr & (MSR_IR|MSR_PR|MSR_64BIT)) == (MSR_IR|MSR_64BIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 bp = in_breakpoint_table(regs->nip, &offset);
774 if (bp != NULL) {
775 regs->nip = bp->address + offset;
776 atomic_dec(&bp->ref_count);
777 }
778 }
779
780 return 0;
781}
782
Michal Suchanek7daf5932018-05-23 20:00:54 +0200783/* Force enable xmon if not already enabled */
784static inline void force_enable_xmon(void)
785{
786 /* Enable xmon hooks if needed */
787 if (!xmon_on) {
788 printf("xmon: Enabling debugger hooks\n");
789 xmon_on = 1;
790 }
791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793static struct bpt *at_breakpoint(unsigned long pc)
794{
795 int i;
796 struct bpt *bp;
797
798 bp = bpts;
799 for (i = 0; i < NBPTS; ++i, ++bp)
800 if (bp->enabled && pc == bp->address)
801 return bp;
802 return NULL;
803}
804
805static struct bpt *in_breakpoint_table(unsigned long nip, unsigned long *offp)
806{
807 unsigned long off;
808
809 off = nip - (unsigned long) bpts;
810 if (off >= sizeof(bpts))
811 return NULL;
812 off %= sizeof(struct bpt);
813 if (off != offsetof(struct bpt, instr[0])
814 && off != offsetof(struct bpt, instr[1]))
815 return NULL;
816 *offp = off - offsetof(struct bpt, instr[0]);
817 return (struct bpt *) (nip - off);
818}
819
820static struct bpt *new_breakpoint(unsigned long a)
821{
822 struct bpt *bp;
823
824 a &= ~3UL;
825 bp = at_breakpoint(a);
826 if (bp)
827 return bp;
828
829 for (bp = bpts; bp < &bpts[NBPTS]; ++bp) {
830 if (!bp->enabled && atomic_read(&bp->ref_count) == 0) {
831 bp->address = a;
832 bp->instr[1] = bpinstr;
833 store_inst(&bp->instr[1]);
834 return bp;
835 }
836 }
837
838 printf("Sorry, no free breakpoints. Please clear one first.\n");
839 return NULL;
840}
841
842static void insert_bpts(void)
843{
844 int i;
845 struct bpt *bp;
846
847 bp = bpts;
848 for (i = 0; i < NBPTS; ++i, ++bp) {
Michael Ellermanabb90ee2014-12-01 16:54:13 +1100849 if ((bp->enabled & (BP_TRAP|BP_CIABR)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 continue;
851 if (mread(bp->address, &bp->instr[0], 4) != 4) {
852 printf("Couldn't read instruction at %lx, "
853 "disabling breakpoint there\n", bp->address);
854 bp->enabled = 0;
855 continue;
856 }
857 if (IS_MTMSRD(bp->instr[0]) || IS_RFID(bp->instr[0])) {
858 printf("Breakpoint at %lx is on an mtmsrd or rfid "
859 "instruction, disabling it\n", bp->address);
860 bp->enabled = 0;
861 continue;
862 }
863 store_inst(&bp->instr[0]);
Michael Ellermanabb90ee2014-12-01 16:54:13 +1100864 if (bp->enabled & BP_CIABR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 continue;
Balbir Singhefe4fbb2017-06-27 17:48:58 +1000866 if (patch_instruction((unsigned int *)bp->address,
867 bpinstr) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 printf("Couldn't write instruction at %lx, "
869 "disabling breakpoint there\n", bp->address);
870 bp->enabled &= ~BP_TRAP;
871 continue;
872 }
873 store_inst((void *)bp->address);
874 }
875}
876
877static void insert_cpu_bpts(void)
878{
Michael Neuling9422de32012-12-20 14:06:44 +0000879 struct arch_hw_breakpoint brk;
880
881 if (dabr.enabled) {
882 brk.address = dabr.address;
883 brk.type = (dabr.enabled & HW_BRK_TYPE_DABR) | HW_BRK_TYPE_PRIV_ALL;
884 brk.len = 8;
Paul Gortmaker21f58502014-04-29 15:25:17 -0400885 __set_breakpoint(&brk);
Michael Neuling9422de32012-12-20 14:06:44 +0000886 }
Anshuman Khandual1ad7d702014-11-28 10:06:42 +0530887
888 if (iabr)
889 set_ciabr(iabr->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
892static void remove_bpts(void)
893{
894 int i;
895 struct bpt *bp;
896 unsigned instr;
897
898 bp = bpts;
899 for (i = 0; i < NBPTS; ++i, ++bp) {
Michael Ellermanabb90ee2014-12-01 16:54:13 +1100900 if ((bp->enabled & (BP_TRAP|BP_CIABR)) != BP_TRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 continue;
902 if (mread(bp->address, &instr, 4) == 4
903 && instr == bpinstr
Balbir Singhefe4fbb2017-06-27 17:48:58 +1000904 && patch_instruction(
905 (unsigned int *)bp->address, bp->instr[0]) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 printf("Couldn't remove breakpoint at %lx\n",
907 bp->address);
908 else
909 store_inst((void *)bp->address);
910 }
911}
912
913static void remove_cpu_bpts(void)
914{
Michael Neuling9422de32012-12-20 14:06:44 +0000915 hw_breakpoint_disable();
Anshuman Khandual1ad7d702014-11-28 10:06:42 +0530916 write_ciabr(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Guilherme G. Piccoli59d33912017-09-18 11:16:58 -0300919/* Based on uptime_proc_show(). */
920static void
921show_uptime(void)
922{
Arnd Bergmannf6bd74f2018-06-18 11:56:24 +0200923 struct timespec64 uptime;
Guilherme G. Piccoli59d33912017-09-18 11:16:58 -0300924
925 if (setjmp(bus_error_jmp) == 0) {
926 catch_memory_errors = 1;
927 sync();
928
Arnd Bergmannf6bd74f2018-06-18 11:56:24 +0200929 ktime_get_coarse_boottime_ts64(&uptime);
Guilherme G. Piccoli59d33912017-09-18 11:16:58 -0300930 printf("Uptime: %lu.%.2lu seconds\n", (unsigned long)uptime.tv_sec,
931 ((unsigned long)uptime.tv_nsec / (NSEC_PER_SEC/100)));
932
933 sync();
934 __delay(200); \
935 }
936 catch_memory_errors = 0;
937}
938
Sam bobroff958b7c82015-10-08 11:50:23 +1100939static void set_lpp_cmd(void)
940{
941 unsigned long lpp;
942
943 if (!scanhex(&lpp)) {
944 printf("Invalid number.\n");
945 lpp = 0;
946 }
947 xmon_set_pagination_lpp(lpp);
948}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/* Command interpreting routine */
950static char *last_cmd;
951
952static int
953cmds(struct pt_regs *excp)
954{
955 int cmd = 0;
956
957 last_cmd = NULL;
958 xmon_regs = excp;
Olaf Hering26c8af52006-09-08 16:29:21 +0200959
Guilherme G. Piccolib5617832017-03-22 16:27:50 -0300960 xmon_show_stack(excp->gpr[1], excp->link, excp->nip);
Olaf Hering26c8af52006-09-08 16:29:21 +0200961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 for(;;) {
963#ifdef CONFIG_SMP
964 printf("%x:", smp_processor_id());
965#endif /* CONFIG_SMP */
966 printf("mon> ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 flush_input();
968 termch = 0;
969 cmd = skipbl();
970 if( cmd == '\n' ) {
971 if (last_cmd == NULL)
972 continue;
973 take_input(last_cmd);
974 last_cmd = NULL;
975 cmd = inchar();
976 }
977 switch (cmd) {
978 case 'm':
979 cmd = inchar();
980 switch (cmd) {
981 case 'm':
982 case 's':
983 case 'd':
984 memops(cmd);
985 break;
986 case 'l':
987 memlocate();
988 break;
989 case 'z':
990 memzcan();
991 break;
992 case 'i':
Michal Hocko9af744d2017-02-22 15:46:16 -0800993 show_mem(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 break;
995 default:
996 termch = cmd;
997 memex();
998 }
999 break;
1000 case 'd':
1001 dump();
1002 break;
1003 case 'l':
1004 symbol_lookup();
1005 break;
1006 case 'r':
1007 prregs(excp); /* print regs */
1008 break;
1009 case 'e':
1010 excprint(excp);
1011 break;
1012 case 'S':
1013 super_regs();
1014 break;
1015 case 't':
1016 backtrace(excp);
1017 break;
1018 case 'f':
1019 cacheflush();
1020 break;
1021 case 's':
Michael Ellermanff8a8f22006-10-24 18:31:27 +02001022 if (do_spu_cmd() == 0)
1023 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (do_step(excp))
1025 return cmd;
1026 break;
1027 case 'x':
1028 case 'X':
Breno Leitaoed49f7f2017-08-02 17:14:06 -03001029 if (tracing_enabled)
1030 tracing_on();
Benjamin Herrenschmidtbb6b9b22005-11-30 16:54:12 +11001031 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 case EOF:
Benjamin Herrenschmidtbb6b9b22005-11-30 16:54:12 +11001033 printf(" <no input ...>\n");
1034 mdelay(2000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return cmd;
1036 case '?':
Ishizaki Kou4d404ed2007-07-18 19:26:40 +10001037 xmon_puts(help_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
Sam bobroff958b7c82015-10-08 11:50:23 +11001039 case '#':
1040 set_lpp_cmd();
1041 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 case 'b':
1043 bpt_cmds();
1044 break;
1045 case 'C':
1046 csum();
1047 break;
1048 case 'c':
1049 if (cpu_cmd())
1050 return 0;
1051 break;
1052 case 'z':
1053 bootcmds();
1054 break;
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001055 case 'p':
1056 proccall();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
Douglas Miller6dfb5402015-11-23 09:01:15 -06001058 case 'P':
1059 show_tasks();
1060 break;
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001061#ifdef CONFIG_PPC_STD_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 case 'u':
1063 dump_segments();
1064 break;
Michael Ellermand8ee6f32014-11-12 16:54:54 +11001065#elif defined(CONFIG_44x)
Benjamin Herrenschmidt5a8a1a22007-11-16 18:23:33 +11001066 case 'u':
1067 dump_tlb_44x();
1068 break;
Jimi Xenidis79873e82011-09-29 11:25:10 +00001069#elif defined(CONFIG_PPC_BOOK3E)
Benjamin Herrenschmidt03247152010-07-09 15:34:50 +10001070 case 'u':
1071 dump_tlb_book3e();
1072 break;
1073#endif
Guilherme G. Piccoli59d33912017-09-18 11:16:58 -03001074 case 'U':
1075 show_uptime();
1076 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 default:
1078 printf("Unrecognized command: ");
Michael Ellermane3bc8042012-08-23 22:09:13 +00001079 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (' ' < cmd && cmd <= '~')
1081 putchar(cmd);
1082 else
1083 printf("\\x%x", cmd);
1084 cmd = inchar();
Michael Ellermane3bc8042012-08-23 22:09:13 +00001085 } while (cmd != '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 printf(" (type ? for help)\n");
1087 break;
1088 }
1089 }
1090}
1091
Josh Boyercdd39042009-10-05 04:46:05 +00001092#ifdef CONFIG_BOOKE
1093static int do_step(struct pt_regs *regs)
1094{
1095 regs->msr |= MSR_DE;
1096 mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) | DBCR0_IC | DBCR0_IDM);
1097 return 1;
1098}
1099#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100/*
1101 * Step a single instruction.
1102 * Some instructions we emulate, others we execute with MSR_SE set.
1103 */
1104static int do_step(struct pt_regs *regs)
1105{
1106 unsigned int instr;
1107 int stepped;
1108
Michal Suchanek7daf5932018-05-23 20:00:54 +02001109 force_enable_xmon();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* check we are in 64-bit kernel mode, translation enabled */
Michael Ellerman9f0b0792011-04-07 21:56:03 +00001111 if ((regs->msr & (MSR_64BIT|MSR_PR|MSR_IR)) == (MSR_64BIT|MSR_IR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (mread(regs->nip, &instr, 4) == 4) {
1113 stepped = emulate_step(regs, instr);
1114 if (stepped < 0) {
1115 printf("Couldn't single-step %s instruction\n",
1116 (IS_RFID(instr)? "rfid": "mtmsrd"));
1117 return 0;
1118 }
1119 if (stepped > 0) {
1120 regs->trap = 0xd00 | (regs->trap & 1);
1121 printf("stepped to ");
1122 xmon_print_symbol(regs->nip, " ", "\n");
1123 ppc_inst_dump(regs->nip, 1, 0);
1124 return 0;
1125 }
1126 }
1127 }
1128 regs->msr |= MSR_SE;
1129 return 1;
1130}
Josh Boyercdd39042009-10-05 04:46:05 +00001131#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133static void bootcmds(void)
1134{
1135 int cmd;
1136
1137 cmd = inchar();
1138 if (cmd == 'r')
1139 ppc_md.restart(NULL);
1140 else if (cmd == 'h')
1141 ppc_md.halt();
1142 else if (cmd == 'p')
Alexander Graf9178ba22014-10-13 16:01:09 +02001143 if (pm_power_off)
1144 pm_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
1147static int cpu_cmd(void)
1148{
1149#ifdef CONFIG_SMP
Paul Mackerrasfd3bb912013-09-03 20:16:23 +10001150 unsigned long cpu, first_cpu, last_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 if (!scanhex(&cpu)) {
1154 /* print cpus waiting or in xmon */
1155 printf("cpus stopped:");
Paul Mackerrasfd3bb912013-09-03 20:16:23 +10001156 last_cpu = first_cpu = NR_CPUS;
Anton Blanchardbc1d7702012-06-28 19:28:57 +00001157 for_each_possible_cpu(cpu) {
KOSAKI Motohiro104699c2011-04-28 05:07:23 +00001158 if (cpumask_test_cpu(cpu, &cpus_in_xmon)) {
Paul Mackerrasfd3bb912013-09-03 20:16:23 +10001159 if (cpu == last_cpu + 1) {
1160 last_cpu = cpu;
1161 } else {
1162 if (last_cpu != first_cpu)
Michael Ellerman736256e2014-05-26 21:02:14 +10001163 printf("-0x%lx", last_cpu);
Paul Mackerrasfd3bb912013-09-03 20:16:23 +10001164 last_cpu = first_cpu = cpu;
Michael Ellerman736256e2014-05-26 21:02:14 +10001165 printf(" 0x%lx", cpu);
Paul Mackerrasfd3bb912013-09-03 20:16:23 +10001166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168 }
Paul Mackerrasfd3bb912013-09-03 20:16:23 +10001169 if (last_cpu != first_cpu)
Michael Ellerman736256e2014-05-26 21:02:14 +10001170 printf("-0x%lx", last_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 printf("\n");
1172 return 0;
1173 }
1174 /* try to switch to cpu specified */
KOSAKI Motohiro104699c2011-04-28 05:07:23 +00001175 if (!cpumask_test_cpu(cpu, &cpus_in_xmon)) {
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001176 printf("cpu 0x%lx isn't in xmon\n", cpu);
Michael Ellerman7b087292018-05-02 23:07:26 +10001177#ifdef CONFIG_PPC64
1178 printf("backtrace of paca[0x%lx].saved_r1 (possibly stale):\n", cpu);
1179 xmon_show_stack(paca_ptrs[cpu]->saved_r1, 0, 0);
1180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return 0;
1182 }
1183 xmon_taken = 0;
1184 mb();
1185 xmon_owner = cpu;
1186 timeout = 10000000;
1187 while (!xmon_taken) {
1188 if (--timeout == 0) {
1189 if (test_and_set_bit(0, &xmon_taken))
1190 break;
1191 /* take control back */
1192 mb();
1193 xmon_owner = smp_processor_id();
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001194 printf("cpu 0x%lx didn't take control\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return 0;
1196 }
1197 barrier();
1198 }
1199 return 1;
1200#else
1201 return 0;
1202#endif /* CONFIG_SMP */
1203}
1204
1205static unsigned short fcstab[256] = {
1206 0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf,
1207 0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7,
1208 0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e,
1209 0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876,
1210 0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd,
1211 0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5,
1212 0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c,
1213 0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974,
1214 0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb,
1215 0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3,
1216 0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a,
1217 0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72,
1218 0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9,
1219 0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1,
1220 0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738,
1221 0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70,
1222 0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7,
1223 0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff,
1224 0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036,
1225 0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e,
1226 0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5,
1227 0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd,
1228 0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134,
1229 0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c,
1230 0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3,
1231 0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb,
1232 0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232,
1233 0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a,
1234 0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1,
1235 0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9,
1236 0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330,
1237 0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78
1238};
1239
1240#define FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff])
1241
1242static void
1243csum(void)
1244{
1245 unsigned int i;
1246 unsigned short fcs;
1247 unsigned char v;
1248
1249 if (!scanhex(&adrs))
1250 return;
1251 if (!scanhex(&ncsum))
1252 return;
1253 fcs = 0xffff;
1254 for (i = 0; i < ncsum; ++i) {
1255 if (mread(adrs+i, &v, 1) == 0) {
Michael Ellerman736256e2014-05-26 21:02:14 +10001256 printf("csum stopped at "REG"\n", adrs+i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 break;
1258 }
1259 fcs = FCS(fcs, v);
1260 }
1261 printf("%x\n", fcs);
1262}
1263
1264/*
1265 * Check if this is a suitable place to put a breakpoint.
1266 */
1267static long check_bp_loc(unsigned long addr)
1268{
1269 unsigned int instr;
1270
1271 addr &= ~3;
Michael Ellerman51fae6de2005-12-04 18:39:15 +11001272 if (!is_kernel_addr(addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 printf("Breakpoints may only be placed at kernel addresses\n");
1274 return 0;
1275 }
1276 if (!mread(addr, &instr, sizeof(instr))) {
1277 printf("Can't read instruction at address %lx\n", addr);
1278 return 0;
1279 }
1280 if (IS_MTMSRD(instr) || IS_RFID(instr)) {
1281 printf("Breakpoints may not be placed on mtmsrd or rfid "
1282 "instructions\n");
1283 return 0;
1284 }
1285 return 1;
1286}
1287
Michael Ellermane3bc8042012-08-23 22:09:13 +00001288static char *breakpoint_help_string =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 "Breakpoint command usage:\n"
1290 "b show breakpoints\n"
1291 "b <addr> [cnt] set breakpoint at given instr addr\n"
1292 "bc clear all breakpoints\n"
1293 "bc <n/addr> clear breakpoint number n or at addr\n"
Anshuman Khandual1ad7d702014-11-28 10:06:42 +05301294 "bi <addr> [cnt] set hardware instr breakpoint (POWER8 only)\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 "bd <addr> [cnt] set hardware data breakpoint\n"
1296 "";
1297
1298static void
1299bpt_cmds(void)
1300{
1301 int cmd;
1302 unsigned long a;
Nicholas Piggin09b6c112017-05-12 10:47:07 +10001303 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 struct bpt *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 cmd = inchar();
1307 switch (cmd) {
Nicholas Piggin09b6c112017-05-12 10:47:07 +10001308#ifndef CONFIG_PPC_8xx
1309 static const char badaddr[] = "Only kernel addresses are permitted for breakpoints\n";
1310 int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 case 'd': /* bd - hardware data breakpoint */
Michael Neuling9bc2bd52018-03-27 15:37:19 +11001312 if (!ppc_breakpoint_available()) {
1313 printf("Hardware data breakpoint not supported on this cpu\n");
1314 break;
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 mode = 7;
1317 cmd = inchar();
1318 if (cmd == 'r')
1319 mode = 5;
1320 else if (cmd == 'w')
1321 mode = 6;
1322 else
1323 termch = cmd;
1324 dabr.address = 0;
1325 dabr.enabled = 0;
1326 if (scanhex(&dabr.address)) {
Michael Ellerman51fae6de2005-12-04 18:39:15 +11001327 if (!is_kernel_addr(dabr.address)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 printf(badaddr);
1329 break;
1330 }
Michael Neuling9422de32012-12-20 14:06:44 +00001331 dabr.address &= ~HW_BRK_TYPE_DABR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 dabr.enabled = mode | BP_DABR;
1333 }
Vaibhav Jaine1368d02018-03-04 23:00:25 +05301334
1335 force_enable_xmon();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 break;
1337
1338 case 'i': /* bi - hardware instr breakpoint */
Anshuman Khandual1ad7d702014-11-28 10:06:42 +05301339 if (!cpu_has_feature(CPU_FTR_ARCH_207S)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 printf("Hardware instruction breakpoint "
1341 "not supported on this cpu\n");
1342 break;
1343 }
1344 if (iabr) {
Michael Ellermanabb90ee2014-12-01 16:54:13 +11001345 iabr->enabled &= ~BP_CIABR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 iabr = NULL;
1347 }
1348 if (!scanhex(&a))
1349 break;
1350 if (!check_bp_loc(a))
1351 break;
1352 bp = new_breakpoint(a);
1353 if (bp != NULL) {
Michael Ellermanabb90ee2014-12-01 16:54:13 +11001354 bp->enabled |= BP_CIABR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 iabr = bp;
Vaibhav Jaine1368d02018-03-04 23:00:25 +05301356 force_enable_xmon();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358 break;
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 case 'c':
1362 if (!scanhex(&a)) {
1363 /* clear all breakpoints */
1364 for (i = 0; i < NBPTS; ++i)
1365 bpts[i].enabled = 0;
1366 iabr = NULL;
1367 dabr.enabled = 0;
1368 printf("All breakpoints cleared\n");
1369 break;
1370 }
1371
1372 if (a <= NBPTS && a >= 1) {
1373 /* assume a breakpoint number */
1374 bp = &bpts[a-1]; /* bp nums are 1 based */
1375 } else {
1376 /* assume a breakpoint address */
1377 bp = at_breakpoint(a);
Michael Ellerman9f1067c22008-05-08 14:27:16 +10001378 if (bp == NULL) {
Michael Ellerman736256e2014-05-26 21:02:14 +10001379 printf("No breakpoint at %lx\n", a);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 break;
1381 }
1382 }
1383
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001384 printf("Cleared breakpoint %tx (", BP_NUM(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 xmon_print_symbol(bp->address, " ", ")\n");
1386 bp->enabled = 0;
1387 break;
1388
1389 default:
1390 termch = cmd;
Michael Ellermane3bc8042012-08-23 22:09:13 +00001391 cmd = skipbl();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (cmd == '?') {
1393 printf(breakpoint_help_string);
1394 break;
1395 }
1396 termch = cmd;
1397 if (!scanhex(&a)) {
1398 /* print all breakpoints */
1399 printf(" type address\n");
1400 if (dabr.enabled) {
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001401 printf(" data "REG" [", dabr.address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (dabr.enabled & 1)
1403 printf("r");
1404 if (dabr.enabled & 2)
1405 printf("w");
1406 printf("]\n");
1407 }
1408 for (bp = bpts; bp < &bpts[NBPTS]; ++bp) {
1409 if (!bp->enabled)
1410 continue;
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001411 printf("%tx %s ", BP_NUM(bp),
Michael Ellermanabb90ee2014-12-01 16:54:13 +11001412 (bp->enabled & BP_CIABR) ? "inst": "trap");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 xmon_print_symbol(bp->address, " ", "\n");
1414 }
1415 break;
1416 }
1417
1418 if (!check_bp_loc(a))
1419 break;
1420 bp = new_breakpoint(a);
Vaibhav Jaine1368d02018-03-04 23:00:25 +05301421 if (bp != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 bp->enabled |= BP_TRAP;
Vaibhav Jaine1368d02018-03-04 23:00:25 +05301423 force_enable_xmon();
1424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 break;
1426 }
1427}
1428
1429/* Very cheap human name for vector lookup. */
1430static
1431const char *getvecname(unsigned long vec)
1432{
1433 char *ret;
1434
1435 switch (vec) {
1436 case 0x100: ret = "(System Reset)"; break;
1437 case 0x200: ret = "(Machine Check)"; break;
1438 case 0x300: ret = "(Data Access)"; break;
Michael Neuling8915bcd2017-03-16 14:04:40 +11001439 case 0x380:
1440 if (radix_enabled())
1441 ret = "(Data Access Out of Range)";
1442 else
1443 ret = "(Data SLB Access)";
1444 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 case 0x400: ret = "(Instruction Access)"; break;
Michael Neuling8915bcd2017-03-16 14:04:40 +11001446 case 0x480:
1447 if (radix_enabled())
1448 ret = "(Instruction Access Out of Range)";
1449 else
1450 ret = "(Instruction SLB Access)";
1451 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 case 0x500: ret = "(Hardware Interrupt)"; break;
1453 case 0x600: ret = "(Alignment)"; break;
1454 case 0x700: ret = "(Program Check)"; break;
1455 case 0x800: ret = "(FPU Unavailable)"; break;
1456 case 0x900: ret = "(Decrementer)"; break;
Michael Ellerman660e0342013-08-15 15:22:16 +10001457 case 0x980: ret = "(Hypervisor Decrementer)"; break;
1458 case 0xa00: ret = "(Doorbell)"; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 case 0xc00: ret = "(System Call)"; break;
1460 case 0xd00: ret = "(Single Step)"; break;
Michael Ellerman660e0342013-08-15 15:22:16 +10001461 case 0xe40: ret = "(Emulation Assist)"; break;
1462 case 0xe60: ret = "(HMI)"; break;
1463 case 0xe80: ret = "(Hypervisor Doorbell)"; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 case 0xf00: ret = "(Performance Monitor)"; break;
1465 case 0xf20: ret = "(Altivec Unavailable)"; break;
1466 case 0x1300: ret = "(Instruction Breakpoint)"; break;
Michael Ellerman660e0342013-08-15 15:22:16 +10001467 case 0x1500: ret = "(Denormalisation)"; break;
1468 case 0x1700: ret = "(Altivec Assist)"; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 default: ret = "";
1470 }
1471 return ret;
1472}
1473
1474static void get_function_bounds(unsigned long pc, unsigned long *startp,
1475 unsigned long *endp)
1476{
1477 unsigned long size, offset;
1478 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 *startp = *endp = 0;
1481 if (pc == 0)
1482 return;
1483 if (setjmp(bus_error_jmp) == 0) {
1484 catch_memory_errors = 1;
1485 sync();
Alexey Dobriyanffb45122007-05-08 00:28:41 -07001486 name = kallsyms_lookup(pc, &size, &offset, NULL, tmpstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (name != NULL) {
1488 *startp = pc - offset;
1489 *endp = pc - offset + size;
1490 }
1491 sync();
1492 }
1493 catch_memory_errors = 0;
1494}
1495
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001496#define LRSAVE_OFFSET (STACK_FRAME_LR_SAVE * sizeof(unsigned long))
1497#define MARKER_OFFSET (STACK_FRAME_MARKER * sizeof(unsigned long))
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499static void xmon_show_stack(unsigned long sp, unsigned long lr,
1500 unsigned long pc)
1501{
Michael Ellerman0104cd62012-10-09 04:20:36 +00001502 int max_to_print = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 unsigned long ip;
1504 unsigned long newsp;
1505 unsigned long marker;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct pt_regs regs;
1507
Michael Ellerman0104cd62012-10-09 04:20:36 +00001508 while (max_to_print--) {
Madhavan Srinivasane71ff892017-01-05 16:38:15 +05301509 if (!is_kernel_addr(sp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (sp != 0)
1511 printf("SP (%lx) is in userspace\n", sp);
1512 break;
1513 }
1514
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001515 if (!mread(sp + LRSAVE_OFFSET, &ip, sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 || !mread(sp, &newsp, sizeof(unsigned long))) {
1517 printf("Couldn't read stack frame at %lx\n", sp);
1518 break;
1519 }
1520
1521 /*
1522 * For the first stack frame, try to work out if
1523 * LR and/or the saved LR value in the bottommost
1524 * stack frame are valid.
1525 */
1526 if ((pc | lr) != 0) {
1527 unsigned long fnstart, fnend;
1528 unsigned long nextip;
1529 int printip = 1;
1530
1531 get_function_bounds(pc, &fnstart, &fnend);
1532 nextip = 0;
1533 if (newsp > sp)
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001534 mread(newsp + LRSAVE_OFFSET, &nextip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 sizeof(unsigned long));
1536 if (lr == ip) {
Madhavan Srinivasane71ff892017-01-05 16:38:15 +05301537 if (!is_kernel_addr(lr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 || (fnstart <= lr && lr < fnend))
1539 printip = 0;
1540 } else if (lr == nextip) {
1541 printip = 0;
Madhavan Srinivasane71ff892017-01-05 16:38:15 +05301542 } else if (is_kernel_addr(lr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 && !(fnstart <= lr && lr < fnend)) {
1544 printf("[link register ] ");
1545 xmon_print_symbol(lr, " ", "\n");
1546 }
1547 if (printip) {
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001548 printf("["REG"] ", sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 xmon_print_symbol(ip, " ", " (unreliable)\n");
1550 }
1551 pc = lr = 0;
1552
1553 } else {
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001554 printf("["REG"] ", sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 xmon_print_symbol(ip, " ", "\n");
1556 }
1557
1558 /* Look for "regshere" marker to see if this is
1559 an exception frame. */
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001560 if (mread(sp + MARKER_OFFSET, &marker, sizeof(unsigned long))
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001561 && marker == STACK_FRAME_REGS_MARKER) {
Michael Ellermanc4de3802012-10-09 04:20:35 +00001562 if (mread(sp + STACK_FRAME_OVERHEAD, &regs, sizeof(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 != sizeof(regs)) {
1564 printf("Couldn't read registers at %lx\n",
Michael Ellermanc4de3802012-10-09 04:20:35 +00001565 sp + STACK_FRAME_OVERHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 break;
1567 }
Michael Ellermane3bc8042012-08-23 22:09:13 +00001568 printf("--- Exception: %lx %s at ", regs.trap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 getvecname(TRAP(&regs)));
1570 pc = regs.nip;
1571 lr = regs.link;
1572 xmon_print_symbol(pc, " ", "\n");
1573 }
1574
1575 if (newsp == 0)
1576 break;
1577
1578 sp = newsp;
Michael Ellerman0104cd62012-10-09 04:20:36 +00001579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
1582static void backtrace(struct pt_regs *excp)
1583{
1584 unsigned long sp;
1585
1586 if (scanhex(&sp))
1587 xmon_show_stack(sp, 0, 0);
1588 else
1589 xmon_show_stack(excp->gpr[1], excp->link, excp->nip);
1590 scannl();
1591}
1592
1593static void print_bug_trap(struct pt_regs *regs)
1594{
Paul Mackerrasebdba9a2008-10-31 21:34:09 +11001595#ifdef CONFIG_BUG
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -08001596 const struct bug_entry *bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 unsigned long addr;
1598
1599 if (regs->msr & MSR_PR)
1600 return; /* not in kernel */
1601 addr = regs->nip; /* address of trap instruction */
Madhavan Srinivasane71ff892017-01-05 16:38:15 +05301602 if (!is_kernel_addr(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return;
1604 bug = find_bug(regs->nip);
1605 if (bug == NULL)
1606 return;
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -08001607 if (is_warning_bug(bug))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return;
1609
Stephen Rothwell0a7c7ef2007-03-04 17:05:34 +11001610#ifdef CONFIG_DEBUG_BUGVERBOSE
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -08001611 printf("kernel BUG at %s:%u!\n",
1612 bug->file, bug->line);
Stephen Rothwell0a7c7ef2007-03-04 17:05:34 +11001613#else
Michael Ellermand8104182017-12-06 23:23:28 +11001614 printf("kernel BUG at %px!\n", (void *)bug->bug_addr);
Stephen Rothwell0a7c7ef2007-03-04 17:05:34 +11001615#endif
Paul Mackerrasebdba9a2008-10-31 21:34:09 +11001616#endif /* CONFIG_BUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Michael Ellerman9f1067c22008-05-08 14:27:16 +10001619static void excprint(struct pt_regs *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
1621 unsigned long trap;
1622
1623#ifdef CONFIG_SMP
1624 printf("cpu 0x%x: ", smp_processor_id());
1625#endif /* CONFIG_SMP */
1626
1627 trap = TRAP(fp);
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001628 printf("Vector: %lx %s at [%px]\n", fp->trap, getvecname(trap), fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 printf(" pc: ");
1630 xmon_print_symbol(fp->nip, ": ", "\n");
1631
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001632 printf(" lr: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 xmon_print_symbol(fp->link, ": ", "\n");
1634
1635 printf(" sp: %lx\n", fp->gpr[1]);
1636 printf(" msr: %lx\n", fp->msr);
1637
Aneesh Kumar K.Vce541522013-04-28 09:37:26 +00001638 if (trap == 0x300 || trap == 0x380 || trap == 0x600 || trap == 0x200) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 printf(" dar: %lx\n", fp->dar);
1640 if (trap != 0x380)
1641 printf(" dsisr: %lx\n", fp->dsisr);
1642 }
1643
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001644 printf(" current = 0x%px\n", current);
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001645#ifdef CONFIG_PPC64
Nicholas Piggin3130a7b2018-05-10 11:04:24 +10001646 printf(" paca = 0x%px\t irqmask: 0x%02x\t irq_happened: 0x%02x\n",
Madhavan Srinivasan4e26bc42017-12-20 09:25:50 +05301647 local_paca, local_paca->irq_soft_mask, local_paca->irq_happened);
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001648#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (current) {
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001650 printf(" pid = %d, comm = %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 current->pid, current->comm);
1652 }
1653
1654 if (trap == 0x700)
1655 print_bug_trap(fp);
Rashmica Guptaeb925d62015-11-25 13:46:25 +11001656
1657 printf(linux_banner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
Michael Ellerman9f1067c22008-05-08 14:27:16 +10001660static void prregs(struct pt_regs *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001662 int n, trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 unsigned long base;
1664 struct pt_regs regs;
1665
1666 if (scanhex(&base)) {
1667 if (setjmp(bus_error_jmp) == 0) {
1668 catch_memory_errors = 1;
1669 sync();
1670 regs = *(struct pt_regs *)base;
1671 sync();
1672 __delay(200);
1673 } else {
1674 catch_memory_errors = 0;
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001675 printf("*** Error reading registers from "REG"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 base);
1677 return;
1678 }
1679 catch_memory_errors = 0;
1680 fp = &regs;
1681 }
1682
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001683#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (FULL_REGS(fp)) {
1685 for (n = 0; n < 16; ++n)
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001686 printf("R%.2d = "REG" R%.2d = "REG"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 n, fp->gpr[n], n+16, fp->gpr[n+16]);
1688 } else {
1689 for (n = 0; n < 7; ++n)
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001690 printf("R%.2d = "REG" R%.2d = "REG"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 n, fp->gpr[n], n+7, fp->gpr[n+7]);
1692 }
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001693#else
1694 for (n = 0; n < 32; ++n) {
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001695 printf("R%.2d = %.8lx%s", n, fp->gpr[n],
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001696 (n & 3) == 3? "\n": " ");
1697 if (n == 12 && !FULL_REGS(fp)) {
1698 printf("\n");
1699 break;
1700 }
1701 }
1702#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 printf("pc = ");
1704 xmon_print_symbol(fp->nip, " ", "\n");
Paul Mackerras48404f22011-05-01 19:48:20 +00001705 if (TRAP(fp) != 0xc00 && cpu_has_feature(CPU_FTR_CFAR)) {
1706 printf("cfar= ");
1707 xmon_print_symbol(fp->orig_gpr3, " ", "\n");
1708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 printf("lr = ");
1710 xmon_print_symbol(fp->link, " ", "\n");
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001711 printf("msr = "REG" cr = %.8lx\n", fp->msr, fp->ccr);
1712 printf("ctr = "REG" xer = "REG" trap = %4lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 fp->ctr, fp->xer, fp->trap);
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001714 trap = TRAP(fp);
1715 if (trap == 0x300 || trap == 0x380 || trap == 0x600)
1716 printf("dar = "REG" dsisr = %.8lx\n", fp->dar, fp->dsisr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Michael Ellerman9f1067c22008-05-08 14:27:16 +10001719static void cacheflush(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
1721 int cmd;
1722 unsigned long nflush;
1723
1724 cmd = inchar();
1725 if (cmd != 'i')
1726 termch = cmd;
1727 scanhex((void *)&adrs);
1728 if (termch != '\n')
1729 termch = 0;
1730 nflush = 1;
1731 scanhex(&nflush);
1732 nflush = (nflush + L1_CACHE_BYTES - 1) / L1_CACHE_BYTES;
1733 if (setjmp(bus_error_jmp) == 0) {
1734 catch_memory_errors = 1;
1735 sync();
1736
1737 if (cmd != 'i') {
1738 for (; nflush > 0; --nflush, adrs += L1_CACHE_BYTES)
1739 cflush((void *) adrs);
1740 } else {
1741 for (; nflush > 0; --nflush, adrs += L1_CACHE_BYTES)
1742 cinval((void *) adrs);
1743 }
1744 sync();
1745 /* wait a little while to see if we get a machine check */
1746 __delay(200);
1747 }
1748 catch_memory_errors = 0;
1749}
1750
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001751extern unsigned long xmon_mfspr(int spr, unsigned long default_value);
1752extern void xmon_mtspr(int spr, unsigned long value);
1753
1754static int
1755read_spr(int n, unsigned long *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 unsigned long ret = -1UL;
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001758 int ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 if (setjmp(bus_error_jmp) == 0) {
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001761 catch_spr_faults = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 sync();
1763
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001764 ret = xmon_mfspr(n, *vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 sync();
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001767 *vp = ret;
1768 ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001770 catch_spr_faults = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001772 return ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773}
1774
Michael Ellerman9f1067c22008-05-08 14:27:16 +10001775static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776write_spr(int n, unsigned long val)
1777{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (setjmp(bus_error_jmp) == 0) {
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001779 catch_spr_faults = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 sync();
1781
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001782 xmon_mtspr(n, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 sync();
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001785 } else {
1786 printf("SPR 0x%03x (%4d) Faulted during write\n", n, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001788 catch_spr_faults = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
1790
Michael Ellerman18461932016-07-07 22:54:29 +10001791static void dump_206_sprs(void)
1792{
1793#ifdef CONFIG_PPC64
1794 if (!cpu_has_feature(CPU_FTR_ARCH_206))
1795 return;
1796
1797 /* Actually some of these pre-date 2.06, but whatevs */
1798
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001799 printf("srr0 = %.16lx srr1 = %.16lx dsisr = %.8lx\n",
Michael Ellerman18461932016-07-07 22:54:29 +10001800 mfspr(SPRN_SRR0), mfspr(SPRN_SRR1), mfspr(SPRN_DSISR));
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001801 printf("dscr = %.16lx ppr = %.16lx pir = %.8lx\n",
Michael Ellerman18461932016-07-07 22:54:29 +10001802 mfspr(SPRN_DSCR), mfspr(SPRN_PPR), mfspr(SPRN_PIR));
Balbir Singh64d66aa2017-08-30 21:43:34 +10001803 printf("amr = %.16lx uamor = %.16lx\n",
1804 mfspr(SPRN_AMR), mfspr(SPRN_UAMOR));
Michael Ellerman18461932016-07-07 22:54:29 +10001805
1806 if (!(mfmsr() & MSR_HV))
1807 return;
1808
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001809 printf("sdr1 = %.16lx hdar = %.16lx hdsisr = %.8lx\n",
Michael Ellerman18461932016-07-07 22:54:29 +10001810 mfspr(SPRN_SDR1), mfspr(SPRN_HDAR), mfspr(SPRN_HDSISR));
Balbir Singh64d66aa2017-08-30 21:43:34 +10001811 printf("hsrr0 = %.16lx hsrr1 = %.16lx hdec = %.16lx\n",
Michael Ellerman18461932016-07-07 22:54:29 +10001812 mfspr(SPRN_HSRR0), mfspr(SPRN_HSRR1), mfspr(SPRN_HDEC));
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001813 printf("lpcr = %.16lx pcr = %.16lx lpidr = %.8lx\n",
Michael Ellerman18461932016-07-07 22:54:29 +10001814 mfspr(SPRN_LPCR), mfspr(SPRN_PCR), mfspr(SPRN_LPID));
Balbir Singh64d66aa2017-08-30 21:43:34 +10001815 printf("hsprg0 = %.16lx hsprg1 = %.16lx amor = %.16lx\n",
1816 mfspr(SPRN_HSPRG0), mfspr(SPRN_HSPRG1), mfspr(SPRN_AMOR));
Balbir Singhc47a9402017-08-29 17:22:36 +10001817 printf("dabr = %.16lx dabrx = %.16lx\n",
Michael Ellerman18461932016-07-07 22:54:29 +10001818 mfspr(SPRN_DABR), mfspr(SPRN_DABRX));
1819#endif
1820}
1821
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001822static void dump_207_sprs(void)
1823{
1824#ifdef CONFIG_PPC64
1825 unsigned long msr;
1826
1827 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
1828 return;
1829
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001830 printf("dpdes = %.16lx tir = %.16lx cir = %.8lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001831 mfspr(SPRN_DPDES), mfspr(SPRN_TIR), mfspr(SPRN_CIR));
1832
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001833 printf("fscr = %.16lx tar = %.16lx pspb = %.8lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001834 mfspr(SPRN_FSCR), mfspr(SPRN_TAR), mfspr(SPRN_PSPB));
1835
1836 msr = mfmsr();
1837 if (msr & MSR_TM) {
1838 /* Only if TM has been enabled in the kernel */
Balbir Singhc47a9402017-08-29 17:22:36 +10001839 printf("tfhar = %.16lx tfiar = %.16lx texasr = %.16lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001840 mfspr(SPRN_TFHAR), mfspr(SPRN_TFIAR),
1841 mfspr(SPRN_TEXASR));
1842 }
1843
Balbir Singhc47a9402017-08-29 17:22:36 +10001844 printf("mmcr0 = %.16lx mmcr1 = %.16lx mmcr2 = %.16lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001845 mfspr(SPRN_MMCR0), mfspr(SPRN_MMCR1), mfspr(SPRN_MMCR2));
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001846 printf("pmc1 = %.8lx pmc2 = %.8lx pmc3 = %.8lx pmc4 = %.8lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001847 mfspr(SPRN_PMC1), mfspr(SPRN_PMC2),
1848 mfspr(SPRN_PMC3), mfspr(SPRN_PMC4));
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001849 printf("mmcra = %.16lx siar = %.16lx pmc5 = %.8lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001850 mfspr(SPRN_MMCRA), mfspr(SPRN_SIAR), mfspr(SPRN_PMC5));
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02001851 printf("sdar = %.16lx sier = %.16lx pmc6 = %.8lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001852 mfspr(SPRN_SDAR), mfspr(SPRN_SIER), mfspr(SPRN_PMC6));
Balbir Singhc47a9402017-08-29 17:22:36 +10001853 printf("ebbhr = %.16lx ebbrr = %.16lx bescr = %.16lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001854 mfspr(SPRN_EBBHR), mfspr(SPRN_EBBRR), mfspr(SPRN_BESCR));
Balbir Singh64d66aa2017-08-30 21:43:34 +10001855 printf("iamr = %.16lx\n", mfspr(SPRN_IAMR));
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001856
1857 if (!(msr & MSR_HV))
1858 return;
1859
Balbir Singhc47a9402017-08-29 17:22:36 +10001860 printf("hfscr = %.16lx dhdes = %.16lx rpr = %.16lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001861 mfspr(SPRN_HFSCR), mfspr(SPRN_DHDES), mfspr(SPRN_RPR));
Balbir Singhc47a9402017-08-29 17:22:36 +10001862 printf("dawr = %.16lx dawrx = %.16lx ciabr = %.16lx\n",
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001863 mfspr(SPRN_DAWR), mfspr(SPRN_DAWRX), mfspr(SPRN_CIABR));
1864#endif
1865}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Balbir Singhd1e1b352017-08-30 21:45:09 +10001867static void dump_300_sprs(void)
1868{
1869#ifdef CONFIG_PPC64
1870 bool hv = mfmsr() & MSR_HV;
1871
1872 if (!cpu_has_feature(CPU_FTR_ARCH_300))
1873 return;
1874
1875 printf("pidr = %.16lx tidr = %.16lx\n",
1876 mfspr(SPRN_PID), mfspr(SPRN_TIDR));
1877 printf("asdr = %.16lx psscr = %.16lx\n",
1878 mfspr(SPRN_ASDR), hv ? mfspr(SPRN_PSSCR)
1879 : mfspr(SPRN_PSSCR_PR));
1880
1881 if (!hv)
1882 return;
1883
1884 printf("ptcr = %.16lx\n",
1885 mfspr(SPRN_PTCR));
1886#endif
1887}
1888
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001889static void dump_one_spr(int spr, bool show_unimplemented)
1890{
1891 unsigned long val;
1892
1893 val = 0xdeadbeef;
1894 if (!read_spr(spr, &val)) {
1895 printf("SPR 0x%03x (%4d) Faulted during read\n", spr, spr);
1896 return;
1897 }
1898
1899 if (val == 0xdeadbeef) {
1900 /* Looks like read was a nop, confirm */
1901 val = 0x0badcafe;
1902 if (!read_spr(spr, &val)) {
1903 printf("SPR 0x%03x (%4d) Faulted during read\n", spr, spr);
1904 return;
1905 }
1906
1907 if (val == 0x0badcafe) {
1908 if (show_unimplemented)
1909 printf("SPR 0x%03x (%4d) Unimplemented\n", spr, spr);
1910 return;
1911 }
1912 }
1913
1914 printf("SPR 0x%03x (%4d) = 0x%lx\n", spr, spr, val);
1915}
1916
Michael Ellerman9f1067c22008-05-08 14:27:16 +10001917static void super_regs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
Michael Ellerman13629da2016-07-07 22:54:27 +10001919 static unsigned long regno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 int cmd;
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001921 int spr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 cmd = skipbl();
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001924
1925 switch (cmd) {
1926 case '\n': {
Michael Ellermane3bc8042012-08-23 22:09:13 +00001927 unsigned long sp, toc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 asm("mr %0,1" : "=r" (sp) :);
1929 asm("mr %0,2" : "=r" (toc) :);
1930
Michael Ellerman56346ad2016-07-07 22:54:28 +10001931 printf("msr = "REG" sprg0 = "REG"\n",
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001932 mfmsr(), mfspr(SPRN_SPRG0));
Michael Ellerman56346ad2016-07-07 22:54:28 +10001933 printf("pvr = "REG" sprg1 = "REG"\n",
Michael Ellermane3bc8042012-08-23 22:09:13 +00001934 mfspr(SPRN_PVR), mfspr(SPRN_SPRG1));
Michael Ellerman56346ad2016-07-07 22:54:28 +10001935 printf("dec = "REG" sprg2 = "REG"\n",
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001936 mfspr(SPRN_DEC), mfspr(SPRN_SPRG2));
Michael Ellerman56346ad2016-07-07 22:54:28 +10001937 printf("sp = "REG" sprg3 = "REG"\n", sp, mfspr(SPRN_SPRG3));
1938 printf("toc = "REG" dar = "REG"\n", toc, mfspr(SPRN_DAR));
1939
Michael Ellerman18461932016-07-07 22:54:29 +10001940 dump_206_sprs();
Michael Ellermane0ddf7a2016-07-07 22:54:30 +10001941 dump_207_sprs();
Balbir Singhd1e1b352017-08-30 21:45:09 +10001942 dump_300_sprs();
Michael Ellerman18461932016-07-07 22:54:29 +10001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 return;
1945 }
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001946 case 'w': {
1947 unsigned long val;
1948 scanhex(&regno);
1949 val = 0;
1950 read_spr(regno, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 scanhex(&val);
1952 write_spr(regno, val);
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001953 dump_one_spr(regno, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
Paul Mackerras31cdd0c2016-04-13 21:31:24 +10001956 case 'r':
1957 scanhex(&regno);
1958 dump_one_spr(regno, true);
1959 break;
1960 case 'a':
1961 /* dump ALL SPRs */
1962 for (spr = 1; spr < 1024; ++spr)
1963 dump_one_spr(spr, false);
1964 break;
1965 }
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 scannl();
1968}
1969
1970/*
1971 * Stuff for reading and writing memory safely
1972 */
Michael Ellerman9f1067c22008-05-08 14:27:16 +10001973static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974mread(unsigned long adrs, void *buf, int size)
1975{
1976 volatile int n;
1977 char *p, *q;
1978
1979 n = 0;
1980 if (setjmp(bus_error_jmp) == 0) {
1981 catch_memory_errors = 1;
1982 sync();
1983 p = (char *)adrs;
1984 q = (char *)buf;
1985 switch (size) {
1986 case 2:
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001987 *(u16 *)q = *(u16 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 break;
1989 case 4:
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001990 *(u32 *)q = *(u32 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 break;
1992 case 8:
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10001993 *(u64 *)q = *(u64 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 break;
1995 default:
1996 for( ; n < size; ++n) {
1997 *q++ = *p++;
1998 sync();
1999 }
2000 }
2001 sync();
2002 /* wait a little while to see if we get a machine check */
2003 __delay(200);
2004 n = size;
2005 }
2006 catch_memory_errors = 0;
2007 return n;
2008}
2009
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002010static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011mwrite(unsigned long adrs, void *buf, int size)
2012{
2013 volatile int n;
2014 char *p, *q;
2015
2016 n = 0;
2017 if (setjmp(bus_error_jmp) == 0) {
2018 catch_memory_errors = 1;
2019 sync();
2020 p = (char *) adrs;
2021 q = (char *) buf;
2022 switch (size) {
2023 case 2:
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002024 *(u16 *)p = *(u16 *)q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 break;
2026 case 4:
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002027 *(u32 *)p = *(u32 *)q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 break;
2029 case 8:
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002030 *(u64 *)p = *(u64 *)q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 break;
2032 default:
2033 for ( ; n < size; ++n) {
2034 *p++ = *q++;
2035 sync();
2036 }
2037 }
2038 sync();
2039 /* wait a little while to see if we get a machine check */
2040 __delay(200);
2041 n = size;
2042 } else {
Michael Ellerman736256e2014-05-26 21:02:14 +10002043 printf("*** Error writing address "REG"\n", adrs + n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
2045 catch_memory_errors = 0;
2046 return n;
2047}
2048
2049static int fault_type;
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002050static int fault_except;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051static char *fault_chars[] = { "--", "**", "##" };
2052
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002053static int handle_fault(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002055 fault_except = TRAP(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 switch (TRAP(regs)) {
2057 case 0x200:
2058 fault_type = 0;
2059 break;
2060 case 0x300:
2061 case 0x380:
2062 fault_type = 1;
2063 break;
2064 default:
2065 fault_type = 2;
2066 }
2067
2068 longjmp(bus_error_jmp, 1);
2069
2070 return 0;
2071}
2072
2073#define SWAP(a, b, t) ((t) = (a), (a) = (b), (b) = (t))
2074
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002075static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076byterev(unsigned char *val, int size)
2077{
2078 int t;
2079
2080 switch (size) {
2081 case 2:
2082 SWAP(val[0], val[1], t);
2083 break;
2084 case 4:
2085 SWAP(val[0], val[3], t);
2086 SWAP(val[1], val[2], t);
2087 break;
2088 case 8: /* is there really any use for this? */
2089 SWAP(val[0], val[7], t);
2090 SWAP(val[1], val[6], t);
2091 SWAP(val[2], val[5], t);
2092 SWAP(val[3], val[4], t);
2093 break;
2094 }
2095}
2096
2097static int brev;
2098static int mnoread;
2099
Michael Ellermane3bc8042012-08-23 22:09:13 +00002100static char *memex_help_string =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 "Memory examine command usage:\n"
2102 "m [addr] [flags] examine/change memory\n"
2103 " addr is optional. will start where left off.\n"
2104 " flags may include chars from this set:\n"
2105 " b modify by bytes (default)\n"
2106 " w modify by words (2 byte)\n"
2107 " l modify by longs (4 byte)\n"
2108 " d modify by doubleword (8 byte)\n"
2109 " r toggle reverse byte order mode\n"
2110 " n do not read memory (for i/o spaces)\n"
2111 " . ok to read (default)\n"
2112 "NOTE: flags are saved as defaults\n"
2113 "";
2114
Michael Ellermane3bc8042012-08-23 22:09:13 +00002115static char *memex_subcmd_help_string =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 "Memory examine subcommands:\n"
2117 " hexval write this val to current location\n"
2118 " 'string' write chars from string to this location\n"
2119 " ' increment address\n"
2120 " ^ decrement address\n"
2121 " / increment addr by 0x10. //=0x100, ///=0x1000, etc\n"
2122 " \\ decrement addr by 0x10. \\\\=0x100, \\\\\\=0x1000, etc\n"
2123 " ` clear no-read flag\n"
2124 " ; stay at this addr\n"
2125 " v change to byte mode\n"
2126 " w change to word (2 byte) mode\n"
2127 " l change to long (4 byte) mode\n"
2128 " u change to doubleword (8 byte) mode\n"
2129 " m addr change current addr\n"
2130 " n toggle no-read flag\n"
2131 " r toggle byte reverse flag\n"
2132 " < count back up count bytes\n"
2133 " > count skip forward count bytes\n"
2134 " x exit this mode\n"
2135 "";
2136
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002137static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138memex(void)
2139{
2140 int cmd, inc, i, nslash;
2141 unsigned long n;
2142 unsigned char val[16];
2143
2144 scanhex((void *)&adrs);
2145 cmd = skipbl();
2146 if (cmd == '?') {
2147 printf(memex_help_string);
2148 return;
2149 } else {
2150 termch = cmd;
2151 }
2152 last_cmd = "m\n";
2153 while ((cmd = skipbl()) != '\n') {
2154 switch( cmd ){
2155 case 'b': size = 1; break;
2156 case 'w': size = 2; break;
2157 case 'l': size = 4; break;
2158 case 'd': size = 8; break;
2159 case 'r': brev = !brev; break;
2160 case 'n': mnoread = 1; break;
2161 case '.': mnoread = 0; break;
2162 }
2163 }
2164 if( size <= 0 )
2165 size = 1;
2166 else if( size > 8 )
2167 size = 8;
2168 for(;;){
2169 if (!mnoread)
2170 n = mread(adrs, val, size);
Paul Mackerrase1449ed2005-11-10 14:30:20 +11002171 printf(REG"%c", adrs, brev? 'r': ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (!mnoread) {
2173 if (brev)
2174 byterev(val, size);
2175 putchar(' ');
2176 for (i = 0; i < n; ++i)
2177 printf("%.2x", val[i]);
2178 for (; i < size; ++i)
2179 printf("%s", fault_chars[fault_type]);
2180 }
2181 putchar(' ');
2182 inc = size;
2183 nslash = 0;
2184 for(;;){
2185 if( scanhex(&n) ){
2186 for (i = 0; i < size; ++i)
2187 val[i] = n >> (i * 8);
2188 if (!brev)
2189 byterev(val, size);
2190 mwrite(adrs, val, size);
2191 inc = size;
2192 }
2193 cmd = skipbl();
2194 if (cmd == '\n')
2195 break;
2196 inc = 0;
2197 switch (cmd) {
2198 case '\'':
2199 for(;;){
2200 n = inchar();
2201 if( n == '\\' )
2202 n = bsesc();
2203 else if( n == '\'' )
2204 break;
2205 for (i = 0; i < size; ++i)
2206 val[i] = n >> (i * 8);
2207 if (!brev)
2208 byterev(val, size);
2209 mwrite(adrs, val, size);
2210 adrs += size;
2211 }
2212 adrs -= size;
2213 inc = size;
2214 break;
2215 case ',':
2216 adrs += size;
2217 break;
2218 case '.':
2219 mnoread = 0;
2220 break;
2221 case ';':
2222 break;
2223 case 'x':
2224 case EOF:
2225 scannl();
2226 return;
2227 case 'b':
2228 case 'v':
2229 size = 1;
2230 break;
2231 case 'w':
2232 size = 2;
2233 break;
2234 case 'l':
2235 size = 4;
2236 break;
2237 case 'u':
2238 size = 8;
2239 break;
2240 case '^':
2241 adrs -= size;
2242 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 case '/':
2244 if (nslash > 0)
2245 adrs -= 1 << nslash;
2246 else
2247 nslash = 0;
2248 nslash += 4;
2249 adrs += 1 << nslash;
2250 break;
2251 case '\\':
2252 if (nslash < 0)
2253 adrs += 1 << -nslash;
2254 else
2255 nslash = 0;
2256 nslash -= 4;
2257 adrs -= 1 << -nslash;
2258 break;
2259 case 'm':
2260 scanhex((void *)&adrs);
2261 break;
2262 case 'n':
2263 mnoread = 1;
2264 break;
2265 case 'r':
2266 brev = !brev;
2267 break;
2268 case '<':
2269 n = size;
2270 scanhex(&n);
2271 adrs -= n;
2272 break;
2273 case '>':
2274 n = size;
2275 scanhex(&n);
2276 adrs += n;
2277 break;
2278 case '?':
2279 printf(memex_subcmd_help_string);
2280 break;
2281 }
2282 }
2283 adrs += inc;
2284 }
2285}
2286
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002287static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288bsesc(void)
2289{
2290 int c;
2291
2292 c = inchar();
2293 switch( c ){
2294 case 'n': c = '\n'; break;
2295 case 'r': c = '\r'; break;
2296 case 'b': c = '\b'; break;
2297 case 't': c = '\t'; break;
2298 }
2299 return c;
2300}
2301
Olaf Hering7e5b5932006-03-08 20:40:28 +01002302static void xmon_rawdump (unsigned long adrs, long ndump)
2303{
2304 long n, m, r, nr;
2305 unsigned char temp[16];
2306
2307 for (n = ndump; n > 0;) {
2308 r = n < 16? n: 16;
2309 nr = mread(adrs, temp, r);
2310 adrs += nr;
2311 for (m = 0; m < r; ++m) {
2312 if (m < nr)
2313 printf("%.2x", temp[m]);
2314 else
2315 printf("%s", fault_chars[fault_type]);
2316 }
2317 n -= r;
2318 if (nr < r)
2319 break;
2320 }
2321 printf("\n");
2322}
2323
Breno Leitao4125d012017-08-02 17:14:05 -03002324static void dump_tracing(void)
2325{
2326 int c;
2327
2328 c = inchar();
2329 if (c == 'c')
2330 ftrace_dump(DUMP_ORIG);
2331 else
2332 ftrace_dump(DUMP_ALL);
Breno Leitao4125d012017-08-02 17:14:05 -03002333}
2334
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002335#ifdef CONFIG_PPC64
2336static void dump_one_paca(int cpu)
2337{
2338 struct paca_struct *p;
Michael Ellerman4e003742017-10-19 15:08:43 +11002339#ifdef CONFIG_PPC_BOOK3S_64
Michael Ellermanad987fc2015-10-14 16:58:36 +11002340 int i = 0;
2341#endif
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002342
2343 if (setjmp(bus_error_jmp) != 0) {
2344 printf("*** Error dumping paca for cpu 0x%x!\n", cpu);
2345 return;
2346 }
2347
2348 catch_memory_errors = 1;
2349 sync();
2350
Nicholas Piggind2e60072018-02-14 01:08:12 +10002351 p = paca_ptrs[cpu];
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002352
Michael Ellermand8104182017-12-06 23:23:28 +11002353 printf("paca for cpu 0x%x @ %px:\n", cpu, p);
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002354
Michael Ellerman9ce53e22018-05-21 21:28:34 +10002355 printf(" %-*s = %s\n", 25, "possible", cpu_possible(cpu) ? "yes" : "no");
2356 printf(" %-*s = %s\n", 25, "present", cpu_present(cpu) ? "yes" : "no");
2357 printf(" %-*s = %s\n", 25, "online", cpu_online(cpu) ? "yes" : "no");
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002358
Michael Ellerman66716832018-05-21 21:06:19 +10002359#define DUMP(paca, name, format) \
Michael Ellerman9ce53e22018-05-21 21:28:34 +10002360 printf(" %-*s = "format"\t(0x%lx)\n", 25, #name, 18, paca->name, \
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002361 offsetof(struct paca_struct, name));
2362
Michael Ellerman66716832018-05-21 21:06:19 +10002363 DUMP(p, lock_token, "%#-*x");
2364 DUMP(p, paca_index, "%#-*x");
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002365 DUMP(p, kernel_toc, "%#-*llx");
2366 DUMP(p, kernelbase, "%#-*llx");
2367 DUMP(p, kernel_msr, "%#-*llx");
Michael Ellerman66716832018-05-21 21:06:19 +10002368 DUMP(p, emergency_sp, "%-*px");
Mahesh Salgaonkar729b0f72013-10-30 20:04:00 +05302369#ifdef CONFIG_PPC_BOOK3S_64
Michael Ellerman66716832018-05-21 21:06:19 +10002370 DUMP(p, nmi_emergency_sp, "%-*px");
2371 DUMP(p, mc_emergency_sp, "%-*px");
2372 DUMP(p, in_nmi, "%#-*x");
2373 DUMP(p, in_mce, "%#-*x");
2374 DUMP(p, hmi_event_available, "%#-*x");
Mahesh Salgaonkar729b0f72013-10-30 20:04:00 +05302375#endif
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002376 DUMP(p, data_offset, "%#-*llx");
Michael Ellerman66716832018-05-21 21:06:19 +10002377 DUMP(p, hw_cpu_id, "%#-*x");
2378 DUMP(p, cpu_start, "%#-*x");
2379 DUMP(p, kexec_state, "%#-*x");
Michael Ellerman4e003742017-10-19 15:08:43 +11002380#ifdef CONFIG_PPC_BOOK3S_64
Nicholas Piggine83cbf72018-09-15 01:30:54 +10002381 if (!early_radix_enabled()) {
2382 for (i = 0; i < SLB_NUM_BOLTED; i++) {
2383 u64 esid, vsid;
Michael Ellermanad987fc2015-10-14 16:58:36 +11002384
Nicholas Piggine83cbf72018-09-15 01:30:54 +10002385 if (!p->slb_shadow_ptr)
2386 continue;
Michael Ellermanad987fc2015-10-14 16:58:36 +11002387
Nicholas Piggine83cbf72018-09-15 01:30:54 +10002388 esid = be64_to_cpu(p->slb_shadow_ptr->save_area[i].esid);
2389 vsid = be64_to_cpu(p->slb_shadow_ptr->save_area[i].vsid);
Michael Ellermanad987fc2015-10-14 16:58:36 +11002390
Nicholas Piggine83cbf72018-09-15 01:30:54 +10002391 if (esid || vsid) {
2392 printf(" %-*s[%d] = 0x%016llx 0x%016llx\n",
2393 22, "slb_shadow", i, esid, vsid);
2394 }
Michael Ellermanad987fc2015-10-14 16:58:36 +11002395 }
Nicholas Piggine83cbf72018-09-15 01:30:54 +10002396 DUMP(p, vmalloc_sllp, "%#-*x");
2397 DUMP(p, stab_rr, "%#-*x");
2398 DUMP(p, slb_used_bitmap, "%#-*x");
2399 DUMP(p, slb_kern_bitmap, "%#-*x");
Nicholas Piggin82d8f4c2018-09-15 01:30:50 +10002400
Nicholas Piggine83cbf72018-09-15 01:30:54 +10002401 if (!early_cpu_has_feature(CPU_FTR_ARCH_300)) {
2402 DUMP(p, slb_cache_ptr, "%#-*x");
2403 for (i = 0; i < SLB_CACHE_ENTRIES; i++)
2404 printf(" %-*s[%d] = 0x%016x\n",
2405 22, "slb_cache", i, p->slb_cache[i]);
2406 }
Nicholas Piggin82d8f4c2018-09-15 01:30:50 +10002407 }
Michael Ellerman274920a2018-01-10 23:49:12 +11002408
Michael Ellerman66716832018-05-21 21:06:19 +10002409 DUMP(p, rfi_flush_fallback_area, "%-*px");
Michael Ellermanad987fc2015-10-14 16:58:36 +11002410#endif
Michael Ellerman66716832018-05-21 21:06:19 +10002411 DUMP(p, dscr_default, "%#-*llx");
Michael Ellermanad987fc2015-10-14 16:58:36 +11002412#ifdef CONFIG_PPC_BOOK3E
Michael Ellerman66716832018-05-21 21:06:19 +10002413 DUMP(p, pgd, "%-*px");
2414 DUMP(p, kernel_pgd, "%-*px");
2415 DUMP(p, tcd_ptr, "%-*px");
2416 DUMP(p, mc_kstack, "%-*px");
2417 DUMP(p, crit_kstack, "%-*px");
2418 DUMP(p, dbg_kstack, "%-*px");
Michael Ellermanad987fc2015-10-14 16:58:36 +11002419#endif
Michael Ellerman66716832018-05-21 21:06:19 +10002420 DUMP(p, __current, "%-*px");
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002421 DUMP(p, kstack, "%#-*llx");
Michael Ellerman9ce53e22018-05-21 21:28:34 +10002422 printf(" %-*s = 0x%016llx\n", 25, "kstack_base", p->kstack & ~(THREAD_SIZE - 1));
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002423 DUMP(p, saved_r1, "%#-*llx");
Michael Ellerman66716832018-05-21 21:06:19 +10002424 DUMP(p, trap_save, "%#-*x");
2425 DUMP(p, irq_soft_mask, "%#-*x");
2426 DUMP(p, irq_happened, "%#-*x");
2427 DUMP(p, io_sync, "%#-*x");
2428 DUMP(p, irq_work_pending, "%#-*x");
2429 DUMP(p, nap_state_lost, "%#-*x");
2430 DUMP(p, sprg_vdso, "%#-*llx");
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002431
Michael Ellermanad987fc2015-10-14 16:58:36 +11002432#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Michael Ellerman66716832018-05-21 21:06:19 +10002433 DUMP(p, tm_scratch, "%#-*llx");
Michael Ellermanad987fc2015-10-14 16:58:36 +11002434#endif
2435
2436#ifdef CONFIG_PPC_POWERNV
Michael Ellerman66716832018-05-21 21:06:19 +10002437 DUMP(p, core_idle_state_ptr, "%-*px");
2438 DUMP(p, thread_idle_state, "%#-*x");
2439 DUMP(p, thread_mask, "%#-*x");
2440 DUMP(p, subcore_sibling_mask, "%#-*x");
Michael Ellerman2e0986d2018-05-21 19:47:20 +10002441 DUMP(p, requested_psscr, "%#-*llx");
2442 DUMP(p, stop_sprs.pid, "%#-*llx");
2443 DUMP(p, stop_sprs.ldbar, "%#-*llx");
2444 DUMP(p, stop_sprs.fscr, "%#-*llx");
2445 DUMP(p, stop_sprs.hfscr, "%#-*llx");
2446 DUMP(p, stop_sprs.mmcr1, "%#-*llx");
2447 DUMP(p, stop_sprs.mmcr2, "%#-*llx");
2448 DUMP(p, stop_sprs.mmcra, "%#-*llx");
2449 DUMP(p, dont_stop.counter, "%#-*x");
Michael Ellermanad987fc2015-10-14 16:58:36 +11002450#endif
2451
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002452 DUMP(p, accounting.utime, "%#-*lx");
2453 DUMP(p, accounting.stime, "%#-*lx");
2454 DUMP(p, accounting.utime_scaled, "%#-*lx");
2455 DUMP(p, accounting.starttime, "%#-*lx");
2456 DUMP(p, accounting.starttime_user, "%#-*lx");
2457 DUMP(p, accounting.startspurr, "%#-*lx");
2458 DUMP(p, accounting.utime_sspurr, "%#-*lx");
2459 DUMP(p, accounting.steal_time, "%#-*lx");
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002460#undef DUMP
2461
2462 catch_memory_errors = 0;
2463 sync();
2464}
2465
2466static void dump_all_pacas(void)
2467{
2468 int cpu;
2469
2470 if (num_possible_cpus() == 0) {
2471 printf("No possible cpus, use 'dp #' to dump individual cpus\n");
2472 return;
2473 }
2474
2475 for_each_possible_cpu(cpu)
2476 dump_one_paca(cpu);
2477}
2478
2479static void dump_pacas(void)
2480{
2481 unsigned long num;
2482 int c;
2483
2484 c = inchar();
2485 if (c == 'a') {
2486 dump_all_pacas();
2487 return;
2488 }
2489
2490 termch = c; /* Put c back, it wasn't 'a' */
2491
2492 if (scanhex(&num))
2493 dump_one_paca(num);
2494 else
2495 dump_one_paca(xmon_owner);
2496}
2497#endif
2498
Benjamin Herrenschmidt243e2512017-04-05 17:54:50 +10002499#ifdef CONFIG_PPC_POWERNV
2500static void dump_one_xive(int cpu)
2501{
2502 unsigned int hwid = get_hard_smp_processor_id(cpu);
2503
2504 opal_xive_dump(XIVE_DUMP_TM_HYP, hwid);
2505 opal_xive_dump(XIVE_DUMP_TM_POOL, hwid);
2506 opal_xive_dump(XIVE_DUMP_TM_OS, hwid);
2507 opal_xive_dump(XIVE_DUMP_TM_USER, hwid);
2508 opal_xive_dump(XIVE_DUMP_VP, hwid);
2509 opal_xive_dump(XIVE_DUMP_EMU_STATE, hwid);
2510
2511 if (setjmp(bus_error_jmp) != 0) {
2512 catch_memory_errors = 0;
2513 printf("*** Error dumping xive on cpu %d\n", cpu);
2514 return;
2515 }
2516
2517 catch_memory_errors = 1;
2518 sync();
2519 xmon_xive_do_dump(cpu);
2520 sync();
2521 __delay(200);
2522 catch_memory_errors = 0;
2523}
2524
2525static void dump_all_xives(void)
2526{
2527 int cpu;
2528
2529 if (num_possible_cpus() == 0) {
2530 printf("No possible cpus, use 'dx #' to dump individual cpus\n");
2531 return;
2532 }
2533
2534 for_each_possible_cpu(cpu)
2535 dump_one_xive(cpu);
2536}
2537
2538static void dump_one_xive_irq(u32 num)
2539{
2540 s64 rc;
2541 __be64 vp;
2542 u8 prio;
2543 __be32 lirq;
2544
2545 rc = opal_xive_get_irq_config(num, &vp, &prio, &lirq);
2546 xmon_printf("IRQ 0x%x config: vp=0x%llx prio=%d lirq=0x%x (rc=%lld)\n",
2547 num, be64_to_cpu(vp), prio, be32_to_cpu(lirq), rc);
2548}
2549
2550static void dump_xives(void)
2551{
2552 unsigned long num;
2553 int c;
2554
Breno Leitao402e1722017-10-17 16:20:18 -02002555 if (!xive_enabled()) {
2556 printf("Xive disabled on this system\n");
2557 return;
2558 }
2559
Benjamin Herrenschmidt243e2512017-04-05 17:54:50 +10002560 c = inchar();
2561 if (c == 'a') {
2562 dump_all_xives();
2563 return;
2564 } else if (c == 'i') {
2565 if (scanhex(&num))
2566 dump_one_xive_irq(num);
2567 return;
2568 }
2569
2570 termch = c; /* Put c back, it wasn't 'a' */
2571
2572 if (scanhex(&num))
2573 dump_one_xive(num);
2574 else
2575 dump_one_xive(xmon_owner);
2576}
2577#endif /* CONFIG_PPC_POWERNV */
2578
Douglas Miller5e48dc02017-02-07 07:40:44 -06002579static void dump_by_size(unsigned long addr, long count, int size)
2580{
2581 unsigned char temp[16];
2582 int i, j;
2583 u64 val;
2584
2585 count = ALIGN(count, 16);
2586
2587 for (i = 0; i < count; i += 16, addr += 16) {
2588 printf(REG, addr);
2589
2590 if (mread(addr, temp, 16) != 16) {
2591 printf("\nFaulted reading %d bytes from 0x"REG"\n", 16, addr);
2592 return;
2593 }
2594
2595 for (j = 0; j < 16; j += size) {
2596 putchar(' ');
2597 switch (size) {
2598 case 1: val = temp[j]; break;
2599 case 2: val = *(u16 *)&temp[j]; break;
2600 case 4: val = *(u32 *)&temp[j]; break;
2601 case 8: val = *(u64 *)&temp[j]; break;
2602 default: val = 0;
2603 }
2604
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002605 printf("%0*llx", size * 2, val);
Douglas Miller5e48dc02017-02-07 07:40:44 -06002606 }
2607 printf("\n");
2608 }
2609}
2610
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002611static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612dump(void)
2613{
Douglas Miller5e48dc02017-02-07 07:40:44 -06002614 static char last[] = { "d?\n" };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 int c;
2616
2617 c = inchar();
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002618
2619#ifdef CONFIG_PPC64
2620 if (c == 'p') {
Sam bobroff958b7c82015-10-08 11:50:23 +11002621 xmon_start_pagination();
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002622 dump_pacas();
Sam bobroff958b7c82015-10-08 11:50:23 +11002623 xmon_end_pagination();
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002624 return;
2625 }
2626#endif
Benjamin Herrenschmidt243e2512017-04-05 17:54:50 +10002627#ifdef CONFIG_PPC_POWERNV
2628 if (c == 'x') {
2629 xmon_start_pagination();
2630 dump_xives();
2631 xmon_end_pagination();
2632 return;
2633 }
2634#endif
Michael Ellermanddadb6b2012-09-13 23:01:31 +00002635
Breno Leitao4125d012017-08-02 17:14:05 -03002636 if (c == 't') {
2637 dump_tracing();
2638 return;
2639 }
2640
Douglas Miller5e48dc02017-02-07 07:40:44 -06002641 if (c == '\n')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 termch = c;
Douglas Miller5e48dc02017-02-07 07:40:44 -06002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 scanhex((void *)&adrs);
2645 if (termch != '\n')
2646 termch = 0;
2647 if (c == 'i') {
2648 scanhex(&nidump);
2649 if (nidump == 0)
2650 nidump = 16;
2651 else if (nidump > MAX_DUMP)
2652 nidump = MAX_DUMP;
2653 adrs += ppc_inst_dump(adrs, nidump, 1);
2654 last_cmd = "di\n";
Vinay Sridharf312deb2009-05-14 23:13:07 +00002655 } else if (c == 'l') {
2656 dump_log_buf();
Andrew Donnellanfde93a02016-02-09 18:17:49 +11002657 } else if (c == 'o') {
2658 dump_opal_msglog();
Balbir Singh80eff6c2017-10-30 22:01:12 +11002659 } else if (c == 'v') {
2660 /* dump virtual to physical translation */
2661 show_pte(adrs);
Olaf Hering7e5b5932006-03-08 20:40:28 +01002662 } else if (c == 'r') {
2663 scanhex(&ndump);
2664 if (ndump == 0)
2665 ndump = 64;
2666 xmon_rawdump(adrs, ndump);
2667 adrs += ndump;
2668 last_cmd = "dr\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 } else {
2670 scanhex(&ndump);
2671 if (ndump == 0)
2672 ndump = 64;
2673 else if (ndump > MAX_DUMP)
2674 ndump = MAX_DUMP;
Douglas Miller5e48dc02017-02-07 07:40:44 -06002675
2676 switch (c) {
2677 case '8':
2678 case '4':
2679 case '2':
2680 case '1':
2681 ndump = ALIGN(ndump, 16);
2682 dump_by_size(adrs, ndump, c - '0');
2683 last[1] = c;
2684 last_cmd = last;
2685 break;
2686 default:
2687 prdump(adrs, ndump);
2688 last_cmd = "d\n";
2689 }
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 adrs += ndump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 }
2693}
2694
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002695static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696prdump(unsigned long adrs, long ndump)
2697{
2698 long n, m, c, r, nr;
2699 unsigned char temp[16];
2700
2701 for (n = ndump; n > 0;) {
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002702 printf(REG, adrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 putchar(' ');
2704 r = n < 16? n: 16;
2705 nr = mread(adrs, temp, r);
2706 adrs += nr;
2707 for (m = 0; m < r; ++m) {
Michael Ellermane3bc8042012-08-23 22:09:13 +00002708 if ((m & (sizeof(long) - 1)) == 0 && m > 0)
Paul Mackerrase1449ed2005-11-10 14:30:20 +11002709 putchar(' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 if (m < nr)
2711 printf("%.2x", temp[m]);
2712 else
2713 printf("%s", fault_chars[fault_type]);
2714 }
Paul Mackerrase1449ed2005-11-10 14:30:20 +11002715 for (; m < 16; ++m) {
Michael Ellermane3bc8042012-08-23 22:09:13 +00002716 if ((m & (sizeof(long) - 1)) == 0)
Paul Mackerrase1449ed2005-11-10 14:30:20 +11002717 putchar(' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 printf(" ");
Paul Mackerrase1449ed2005-11-10 14:30:20 +11002719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 printf(" |");
2721 for (m = 0; m < r; ++m) {
2722 if (m < nr) {
2723 c = temp[m];
2724 putchar(' ' <= c && c <= '~'? c: '.');
2725 } else
2726 putchar(' ');
2727 }
2728 n -= r;
2729 for (; m < 16; ++m)
2730 putchar(' ');
2731 printf("|\n");
2732 if (nr < r)
2733 break;
2734 }
2735}
2736
Michael Ellerman4c4c8722006-11-23 00:46:42 +01002737typedef int (*instruction_dump_func)(unsigned long inst, unsigned long addr);
2738
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002739static int
Michael Ellerman4c4c8722006-11-23 00:46:42 +01002740generic_inst_dump(unsigned long adr, long count, int praddr,
2741 instruction_dump_func dump_func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742{
2743 int nr, dotted;
2744 unsigned long first_adr;
Michael Ellerman941d8102018-07-16 23:52:14 +10002745 unsigned int inst, last_inst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 unsigned char val[4];
2747
2748 dotted = 0;
2749 for (first_adr = adr; count > 0; --count, adr += 4) {
2750 nr = mread(adr, val, 4);
2751 if (nr == 0) {
2752 if (praddr) {
2753 const char *x = fault_chars[fault_type];
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10002754 printf(REG" %s%s%s%s\n", adr, x, x, x, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
2756 break;
2757 }
2758 inst = GETWORD(val);
2759 if (adr > first_adr && inst == last_inst) {
2760 if (!dotted) {
2761 printf(" ...\n");
2762 dotted = 1;
2763 }
2764 continue;
2765 }
2766 dotted = 0;
2767 last_inst = inst;
2768 if (praddr)
Michael Ellerman941d8102018-07-16 23:52:14 +10002769 printf(REG" %.8x", adr, inst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 printf("\t");
Michael Ellerman4c4c8722006-11-23 00:46:42 +01002771 dump_func(inst, adr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 printf("\n");
2773 }
2774 return adr - first_adr;
2775}
2776
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002777static int
Michael Ellerman4c4c8722006-11-23 00:46:42 +01002778ppc_inst_dump(unsigned long adr, long count, int praddr)
2779{
2780 return generic_inst_dump(adr, count, praddr, print_insn_powerpc);
2781}
2782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783void
2784print_address(unsigned long addr)
2785{
2786 xmon_print_symbol(addr, "\t# ", "");
2787}
2788
Vinay Sridharf312deb2009-05-14 23:13:07 +00002789void
2790dump_log_buf(void)
2791{
Michael Ellermanca5dd392012-08-23 22:09:12 +00002792 struct kmsg_dumper dumper = { .active = 1 };
2793 unsigned char buf[128];
2794 size_t len;
Vinay Sridharf312deb2009-05-14 23:13:07 +00002795
Michael Ellermane3bc8042012-08-23 22:09:13 +00002796 if (setjmp(bus_error_jmp) != 0) {
Michael Ellermanca5dd392012-08-23 22:09:12 +00002797 printf("Error dumping printk buffer!\n");
Michael Ellermane3bc8042012-08-23 22:09:13 +00002798 return;
2799 }
Vinay Sridharf312deb2009-05-14 23:13:07 +00002800
Michael Ellermane3bc8042012-08-23 22:09:13 +00002801 catch_memory_errors = 1;
2802 sync();
Vinay Sridharf312deb2009-05-14 23:13:07 +00002803
Michael Ellermanca5dd392012-08-23 22:09:12 +00002804 kmsg_dump_rewind_nolock(&dumper);
Sam bobroff0c23a882015-10-08 11:50:24 +11002805 xmon_start_pagination();
Michael Ellermanca5dd392012-08-23 22:09:12 +00002806 while (kmsg_dump_get_line_nolock(&dumper, false, buf, sizeof(buf), &len)) {
2807 buf[len] = '\0';
2808 printf("%s", buf);
2809 }
Sam bobroff0c23a882015-10-08 11:50:24 +11002810 xmon_end_pagination();
Vinay Sridharf312deb2009-05-14 23:13:07 +00002811
Michael Ellermane3bc8042012-08-23 22:09:13 +00002812 sync();
2813 /* wait a little while to see if we get a machine check */
2814 __delay(200);
2815 catch_memory_errors = 0;
Vinay Sridharf312deb2009-05-14 23:13:07 +00002816}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
Andrew Donnellanfde93a02016-02-09 18:17:49 +11002818#ifdef CONFIG_PPC_POWERNV
2819static void dump_opal_msglog(void)
2820{
2821 unsigned char buf[128];
2822 ssize_t res;
2823 loff_t pos = 0;
2824
2825 if (!firmware_has_feature(FW_FEATURE_OPAL)) {
2826 printf("Machine is not running OPAL firmware.\n");
2827 return;
2828 }
2829
2830 if (setjmp(bus_error_jmp) != 0) {
2831 printf("Error dumping OPAL msglog!\n");
2832 return;
2833 }
2834
2835 catch_memory_errors = 1;
2836 sync();
2837
2838 xmon_start_pagination();
2839 while ((res = opal_msglog_copy(buf, pos, sizeof(buf) - 1))) {
2840 if (res < 0) {
2841 printf("Error dumping OPAL msglog! Error: %zd\n", res);
2842 break;
2843 }
2844 buf[res] = '\0';
2845 printf("%s", buf);
2846 pos += res;
2847 }
2848 xmon_end_pagination();
2849
2850 sync();
2851 /* wait a little while to see if we get a machine check */
2852 __delay(200);
2853 catch_memory_errors = 0;
2854}
2855#endif
2856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857/*
2858 * Memory operations - move, set, print differences
2859 */
2860static unsigned long mdest; /* destination address */
2861static unsigned long msrc; /* source address */
2862static unsigned long mval; /* byte value to set memory to */
2863static unsigned long mcount; /* # bytes to affect */
2864static unsigned long mdiffs; /* max # differences to print */
2865
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002866static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867memops(int cmd)
2868{
2869 scanhex((void *)&mdest);
2870 if( termch != '\n' )
2871 termch = 0;
2872 scanhex((void *)(cmd == 's'? &mval: &msrc));
2873 if( termch != '\n' )
2874 termch = 0;
2875 scanhex((void *)&mcount);
2876 switch( cmd ){
2877 case 'm':
2878 memmove((void *)mdest, (void *)msrc, mcount);
2879 break;
2880 case 's':
2881 memset((void *)mdest, mval, mcount);
2882 break;
2883 case 'd':
2884 if( termch != '\n' )
2885 termch = 0;
2886 scanhex((void *)&mdiffs);
2887 memdiffs((unsigned char *)mdest, (unsigned char *)msrc, mcount, mdiffs);
2888 break;
2889 }
2890}
2891
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002892static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893memdiffs(unsigned char *p1, unsigned char *p2, unsigned nb, unsigned maxpr)
2894{
2895 unsigned n, prt;
2896
2897 prt = 0;
2898 for( n = nb; n > 0; --n )
2899 if( *p1++ != *p2++ )
2900 if( ++prt <= maxpr )
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002901 printf("%px %.2x # %px %.2x\n", p1 - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 p1[-1], p2 - 1, p2[-1]);
2903 if( prt > maxpr )
2904 printf("Total of %d differences\n", prt);
2905}
2906
2907static unsigned mend;
2908static unsigned mask;
2909
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002910static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911memlocate(void)
2912{
2913 unsigned a, n;
2914 unsigned char val[4];
2915
2916 last_cmd = "ml";
2917 scanhex((void *)&mdest);
2918 if (termch != '\n') {
2919 termch = 0;
2920 scanhex((void *)&mend);
2921 if (termch != '\n') {
2922 termch = 0;
2923 scanhex((void *)&mval);
2924 mask = ~0;
2925 if (termch != '\n') termch = 0;
2926 scanhex((void *)&mask);
2927 }
2928 }
2929 n = 0;
2930 for (a = mdest; a < mend; a += 4) {
2931 if (mread(a, val, 4) == 4
2932 && ((GETWORD(val) ^ mval) & mask) == 0) {
2933 printf("%.16x: %.16x\n", a, GETWORD(val));
2934 if (++n >= 10)
2935 break;
2936 }
2937 }
2938}
2939
2940static unsigned long mskip = 0x1000;
2941static unsigned long mlim = 0xffffffff;
2942
Michael Ellerman9f1067c22008-05-08 14:27:16 +10002943static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944memzcan(void)
2945{
2946 unsigned char v;
2947 unsigned a;
2948 int ok, ook;
2949
2950 scanhex(&mdest);
2951 if (termch != '\n') termch = 0;
2952 scanhex(&mskip);
2953 if (termch != '\n') termch = 0;
2954 scanhex(&mlim);
2955 ook = 0;
2956 for (a = mdest; a < mlim; a += mskip) {
2957 ok = mread(a, &v, 1);
2958 if (ok && !ook) {
2959 printf("%.8x .. ", a);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 } else if (!ok && ook)
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002961 printf("%.8lx\n", a - mskip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 ook = ok;
2963 if (a + mskip < a)
2964 break;
2965 }
2966 if (ook)
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02002967 printf("%.8lx\n", a - mskip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968}
2969
Douglas Miller6dfb5402015-11-23 09:01:15 -06002970static void show_task(struct task_struct *tsk)
2971{
2972 char state;
2973
2974 /*
2975 * Cloned from kdb_task_state_char(), which is not entirely
2976 * appropriate for calling from xmon. This could be moved
2977 * to a common, generic, routine used by both.
2978 */
2979 state = (tsk->state == 0) ? 'R' :
2980 (tsk->state < 0) ? 'U' :
2981 (tsk->state & TASK_UNINTERRUPTIBLE) ? 'D' :
2982 (tsk->state & TASK_STOPPED) ? 'T' :
2983 (tsk->state & TASK_TRACED) ? 'C' :
2984 (tsk->exit_state & EXIT_ZOMBIE) ? 'Z' :
2985 (tsk->exit_state & EXIT_DEAD) ? 'E' :
2986 (tsk->state & TASK_INTERRUPTIBLE) ? 'S' : '?';
2987
Michael Ellermand8104182017-12-06 23:23:28 +11002988 printf("%px %016lx %6d %6d %c %2d %s\n", tsk,
Douglas Miller6dfb5402015-11-23 09:01:15 -06002989 tsk->thread.ksp,
2990 tsk->pid, tsk->parent->pid,
2991 state, task_thread_info(tsk)->cpu,
2992 tsk->comm);
2993}
2994
Balbir Singh80eff6c2017-10-30 22:01:12 +11002995#ifdef CONFIG_PPC_BOOK3S_64
2996void format_pte(void *ptep, unsigned long pte)
2997{
2998 printf("ptep @ 0x%016lx = 0x%016lx\n", (unsigned long)ptep, pte);
2999 printf("Maps physical address = 0x%016lx\n", pte & PTE_RPN_MASK);
3000
3001 printf("Flags = %s%s%s%s%s\n",
3002 (pte & _PAGE_ACCESSED) ? "Accessed " : "",
3003 (pte & _PAGE_DIRTY) ? "Dirty " : "",
3004 (pte & _PAGE_READ) ? "Read " : "",
3005 (pte & _PAGE_WRITE) ? "Write " : "",
3006 (pte & _PAGE_EXEC) ? "Exec " : "");
3007}
3008
3009static void show_pte(unsigned long addr)
3010{
3011 unsigned long tskv = 0;
3012 struct task_struct *tsk = NULL;
3013 struct mm_struct *mm;
3014 pgd_t *pgdp, *pgdir;
3015 pud_t *pudp;
3016 pmd_t *pmdp;
3017 pte_t *ptep;
3018
3019 if (!scanhex(&tskv))
3020 mm = &init_mm;
3021 else
3022 tsk = (struct task_struct *)tskv;
3023
3024 if (tsk == NULL)
3025 mm = &init_mm;
3026 else
3027 mm = tsk->active_mm;
3028
3029 if (setjmp(bus_error_jmp) != 0) {
3030 catch_memory_errors = 0;
Michael Ellermand8104182017-12-06 23:23:28 +11003031 printf("*** Error dumping pte for task %px\n", tsk);
Balbir Singh80eff6c2017-10-30 22:01:12 +11003032 return;
3033 }
3034
3035 catch_memory_errors = 1;
3036 sync();
3037
3038 if (mm == &init_mm) {
3039 pgdp = pgd_offset_k(addr);
3040 pgdir = pgd_offset_k(0);
3041 } else {
3042 pgdp = pgd_offset(mm, addr);
3043 pgdir = pgd_offset(mm, 0);
3044 }
3045
3046 if (pgd_none(*pgdp)) {
3047 printf("no linux page table for address\n");
3048 return;
3049 }
3050
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003051 printf("pgd @ 0x%px\n", pgdir);
Balbir Singh80eff6c2017-10-30 22:01:12 +11003052
3053 if (pgd_huge(*pgdp)) {
3054 format_pte(pgdp, pgd_val(*pgdp));
3055 return;
3056 }
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003057 printf("pgdp @ 0x%px = 0x%016lx\n", pgdp, pgd_val(*pgdp));
Balbir Singh80eff6c2017-10-30 22:01:12 +11003058
3059 pudp = pud_offset(pgdp, addr);
3060
3061 if (pud_none(*pudp)) {
3062 printf("No valid PUD\n");
3063 return;
3064 }
3065
3066 if (pud_huge(*pudp)) {
3067 format_pte(pudp, pud_val(*pudp));
3068 return;
3069 }
3070
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003071 printf("pudp @ 0x%px = 0x%016lx\n", pudp, pud_val(*pudp));
Balbir Singh80eff6c2017-10-30 22:01:12 +11003072
3073 pmdp = pmd_offset(pudp, addr);
3074
3075 if (pmd_none(*pmdp)) {
3076 printf("No valid PMD\n");
3077 return;
3078 }
3079
3080 if (pmd_huge(*pmdp)) {
3081 format_pte(pmdp, pmd_val(*pmdp));
3082 return;
3083 }
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003084 printf("pmdp @ 0x%px = 0x%016lx\n", pmdp, pmd_val(*pmdp));
Balbir Singh80eff6c2017-10-30 22:01:12 +11003085
3086 ptep = pte_offset_map(pmdp, addr);
3087 if (pte_none(*ptep)) {
3088 printf("no valid PTE\n");
3089 return;
3090 }
3091
3092 format_pte(ptep, pte_val(*ptep));
3093
3094 sync();
3095 __delay(200);
3096 catch_memory_errors = 0;
3097}
3098#else
3099static void show_pte(unsigned long addr)
3100{
3101 printf("show_pte not yet implemented\n");
3102}
3103#endif /* CONFIG_PPC_BOOK3S_64 */
3104
Douglas Miller6dfb5402015-11-23 09:01:15 -06003105static void show_tasks(void)
3106{
3107 unsigned long tskv;
3108 struct task_struct *tsk = NULL;
3109
3110 printf(" task_struct ->thread.ksp PID PPID S P CMD\n");
3111
3112 if (scanhex(&tskv))
3113 tsk = (struct task_struct *)tskv;
3114
3115 if (setjmp(bus_error_jmp) != 0) {
3116 catch_memory_errors = 0;
Michael Ellermand8104182017-12-06 23:23:28 +11003117 printf("*** Error dumping task %px\n", tsk);
Douglas Miller6dfb5402015-11-23 09:01:15 -06003118 return;
3119 }
3120
3121 catch_memory_errors = 1;
3122 sync();
3123
3124 if (tsk)
3125 show_task(tsk);
3126 else
3127 for_each_process(tsk)
3128 show_task(tsk);
3129
3130 sync();
3131 __delay(200);
3132 catch_memory_errors = 0;
3133}
3134
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003135static void proccall(void)
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10003136{
3137 unsigned long args[8];
3138 unsigned long ret;
3139 int i;
3140 typedef unsigned long (*callfunc_t)(unsigned long, unsigned long,
3141 unsigned long, unsigned long, unsigned long,
3142 unsigned long, unsigned long, unsigned long);
3143 callfunc_t func;
3144
3145 if (!scanhex(&adrs))
3146 return;
3147 if (termch != '\n')
3148 termch = 0;
3149 for (i = 0; i < 8; ++i)
3150 args[i] = 0;
3151 for (i = 0; i < 8; ++i) {
3152 if (!scanhex(&args[i]) || termch == '\n')
3153 break;
3154 termch = 0;
3155 }
3156 func = (callfunc_t) adrs;
3157 ret = 0;
3158 if (setjmp(bus_error_jmp) == 0) {
3159 catch_memory_errors = 1;
3160 sync();
3161 ret = func(args[0], args[1], args[2], args[3],
3162 args[4], args[5], args[6], args[7]);
3163 sync();
Michael Ellerman736256e2014-05-26 21:02:14 +10003164 printf("return value is 0x%lx\n", ret);
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10003165 } else {
3166 printf("*** %x exception occurred\n", fault_except);
3167 }
3168 catch_memory_errors = 0;
3169}
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171/* Input scanning routines */
3172int
3173skipbl(void)
3174{
3175 int c;
3176
3177 if( termch != 0 ){
3178 c = termch;
3179 termch = 0;
3180 } else
3181 c = inchar();
3182 while( c == ' ' || c == '\t' )
3183 c = inchar();
3184 return c;
3185}
3186
3187#define N_PTREGS 44
Yisheng Xie0abbf2b2018-05-31 19:11:25 +08003188static const char *regnames[N_PTREGS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
3190 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
3191 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
3192 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10003193 "pc", "msr", "or3", "ctr", "lr", "xer", "ccr",
3194#ifdef CONFIG_PPC64
3195 "softe",
3196#else
3197 "mq",
3198#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 "trap", "dar", "dsisr", "res"
3200};
3201
3202int
3203scanhex(unsigned long *vp)
3204{
3205 int c, d;
3206 unsigned long v;
3207
3208 c = skipbl();
3209 if (c == '%') {
3210 /* parse register name */
3211 char regname[8];
3212 int i;
3213
3214 for (i = 0; i < sizeof(regname) - 1; ++i) {
3215 c = inchar();
3216 if (!isalnum(c)) {
3217 termch = c;
3218 break;
3219 }
3220 regname[i] = c;
3221 }
3222 regname[i] = 0;
Yisheng Xie0abbf2b2018-05-31 19:11:25 +08003223 i = match_string(regnames, N_PTREGS, regname);
3224 if (i < 0) {
3225 printf("invalid register name '%%%s'\n", regname);
3226 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 }
Yisheng Xie0abbf2b2018-05-31 19:11:25 +08003228 if (xmon_regs == NULL) {
3229 printf("regs not available\n");
3230 return 0;
3231 }
3232 *vp = ((unsigned long *)xmon_regs)[i];
3233 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 }
3235
3236 /* skip leading "0x" if any */
3237
3238 if (c == '0') {
3239 c = inchar();
3240 if (c == 'x') {
3241 c = inchar();
3242 } else {
3243 d = hexdigit(c);
3244 if (d == EOF) {
3245 termch = c;
3246 *vp = 0;
3247 return 1;
3248 }
3249 }
3250 } else if (c == '$') {
3251 int i;
3252 for (i=0; i<63; i++) {
3253 c = inchar();
Vincent Bernat05b981f2014-07-15 13:43:47 +02003254 if (isspace(c) || c == '\0') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 termch = c;
3256 break;
3257 }
3258 tmpstr[i] = c;
3259 }
3260 tmpstr[i++] = 0;
Benjamin Herrenschmidt6879dc12005-06-21 17:15:30 -07003261 *vp = 0;
3262 if (setjmp(bus_error_jmp) == 0) {
3263 catch_memory_errors = 1;
3264 sync();
3265 *vp = kallsyms_lookup_name(tmpstr);
3266 sync();
3267 }
3268 catch_memory_errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 if (!(*vp)) {
3270 printf("unknown symbol '%s'\n", tmpstr);
3271 return 0;
3272 }
3273 return 1;
3274 }
3275
3276 d = hexdigit(c);
3277 if (d == EOF) {
3278 termch = c;
3279 return 0;
3280 }
3281 v = 0;
3282 do {
3283 v = (v << 4) + d;
3284 c = inchar();
3285 d = hexdigit(c);
3286 } while (d != EOF);
3287 termch = c;
3288 *vp = v;
3289 return 1;
3290}
3291
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003292static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293scannl(void)
3294{
3295 int c;
3296
3297 c = termch;
3298 termch = 0;
3299 while( c != '\n' )
3300 c = inchar();
3301}
3302
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003303static int hexdigit(int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304{
3305 if( '0' <= c && c <= '9' )
3306 return c - '0';
3307 if( 'A' <= c && c <= 'F' )
3308 return c - ('A' - 10);
3309 if( 'a' <= c && c <= 'f' )
3310 return c - ('a' - 10);
3311 return EOF;
3312}
3313
3314void
3315getstring(char *s, int size)
3316{
3317 int c;
3318
3319 c = skipbl();
3320 do {
3321 if( size > 1 ){
3322 *s++ = c;
3323 --size;
3324 }
3325 c = inchar();
3326 } while( c != ' ' && c != '\t' && c != '\n' );
3327 termch = c;
3328 *s = 0;
3329}
3330
3331static char line[256];
3332static char *lineptr;
3333
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003334static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335flush_input(void)
3336{
3337 lineptr = NULL;
3338}
3339
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003340static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341inchar(void)
3342{
3343 if (lineptr == NULL || *lineptr == 0) {
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11003344 if (xmon_gets(line, sizeof(line)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 lineptr = NULL;
3346 return EOF;
3347 }
3348 lineptr = line;
3349 }
3350 return *lineptr++;
3351}
3352
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003353static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354take_input(char *str)
3355{
3356 lineptr = str;
3357}
3358
3359
3360static void
3361symbol_lookup(void)
3362{
3363 int type = inchar();
Boqun Feng302c7b02016-11-22 17:20:09 +08003364 unsigned long addr, cpu;
3365 void __percpu *ptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 static char tmp[64];
3367
3368 switch (type) {
3369 case 'a':
3370 if (scanhex(&addr))
3371 xmon_print_symbol(addr, ": ", "\n");
3372 termch = 0;
3373 break;
3374 case 's':
3375 getstring(tmp, 64);
3376 if (setjmp(bus_error_jmp) == 0) {
3377 catch_memory_errors = 1;
3378 sync();
3379 addr = kallsyms_lookup_name(tmp);
3380 if (addr)
3381 printf("%s: %lx\n", tmp, addr);
3382 else
3383 printf("Symbol '%s' not found.\n", tmp);
3384 sync();
3385 }
3386 catch_memory_errors = 0;
3387 termch = 0;
3388 break;
Boqun Feng302c7b02016-11-22 17:20:09 +08003389 case 'p':
3390 getstring(tmp, 64);
3391 if (setjmp(bus_error_jmp) == 0) {
3392 catch_memory_errors = 1;
3393 sync();
3394 ptr = (void __percpu *)kallsyms_lookup_name(tmp);
3395 sync();
3396 }
3397
3398 if (ptr &&
3399 ptr >= (void __percpu *)__per_cpu_start &&
3400 ptr < (void __percpu *)__per_cpu_end)
3401 {
3402 if (scanhex(&cpu) && cpu < num_possible_cpus()) {
3403 addr = (unsigned long)per_cpu_ptr(ptr, cpu);
3404 } else {
3405 cpu = raw_smp_processor_id();
3406 addr = (unsigned long)this_cpu_ptr(ptr);
3407 }
3408
3409 printf("%s for cpu 0x%lx: %lx\n", tmp, cpu, addr);
3410 } else {
3411 printf("Percpu symbol '%s' not found.\n", tmp);
3412 }
3413
3414 catch_memory_errors = 0;
3415 termch = 0;
3416 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 }
3418}
3419
3420
3421/* Print an address in numeric and symbolic form (if possible) */
3422static void xmon_print_symbol(unsigned long address, const char *mid,
3423 const char *after)
3424{
3425 char *modname;
3426 const char *name = NULL;
3427 unsigned long offset, size;
3428
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10003429 printf(REG, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 if (setjmp(bus_error_jmp) == 0) {
3431 catch_memory_errors = 1;
3432 sync();
3433 name = kallsyms_lookup(address, &size, &offset, &modname,
3434 tmpstr);
3435 sync();
3436 /* wait a little while to see if we get a machine check */
3437 __delay(200);
3438 }
3439
3440 catch_memory_errors = 0;
3441
3442 if (name) {
3443 printf("%s%s+%#lx/%#lx", mid, name, offset, size);
3444 if (modname)
3445 printf(" [%s]", modname);
3446 }
3447 printf("%s", after);
3448}
3449
Michael Ellerman4e003742017-10-19 15:08:43 +11003450#ifdef CONFIG_PPC_BOOK3S_64
Michael Ellerman13b3d132014-07-10 12:29:20 +10003451void dump_segments(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452{
3453 int i;
Anshuman Khandual8218a302015-07-29 12:40:04 +05303454 unsigned long esid,vsid;
will schmidtb3b95952007-12-07 08:22:23 +11003455 unsigned long llp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Michael Ellerman736256e2014-05-26 21:02:14 +10003457 printf("SLB contents of cpu 0x%x\n", smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Michael Neuling584f8b72007-12-06 17:24:48 +11003459 for (i = 0; i < mmu_slb_size; i++) {
will schmidtb3b95952007-12-07 08:22:23 +11003460 asm volatile("slbmfee %0,%1" : "=r" (esid) : "r" (i));
3461 asm volatile("slbmfev %0,%1" : "=r" (vsid) : "r" (i));
Michael Ellerman85673642017-04-24 10:35:14 +10003462
3463 if (!esid && !vsid)
3464 continue;
3465
3466 printf("%02d %016lx %016lx", i, esid, vsid);
3467
3468 if (!(esid & SLB_ESID_V)) {
3469 printf("\n");
3470 continue;
3471 }
3472
3473 llp = vsid & SLB_VSID_LLP;
3474 if (vsid & SLB_VSID_B_1T) {
3475 printf(" 1T ESID=%9lx VSID=%13lx LLP:%3lx \n",
3476 GET_ESID_1T(esid),
3477 (vsid & ~SLB_VSID_B) >> SLB_VSID_SHIFT_1T,
3478 llp);
3479 } else {
3480 printf(" 256M ESID=%9lx VSID=%13lx LLP:%3lx \n",
3481 GET_ESID(esid),
3482 (vsid & ~SLB_VSID_B) >> SLB_VSID_SHIFT,
3483 llp);
will schmidtb3b95952007-12-07 08:22:23 +11003484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 }
3486}
Paul Mackerrasf78541dc2005-10-28 22:53:37 +10003487#endif
3488
3489#ifdef CONFIG_PPC_STD_MMU_32
3490void dump_segments(void)
3491{
3492 int i;
3493
3494 printf("sr0-15 =");
3495 for (i = 0; i < 16; ++i)
3496 printf(" %x", mfsrin(i));
3497 printf("\n");
3498}
3499#endif
3500
Benjamin Herrenschmidt5a8a1a22007-11-16 18:23:33 +11003501#ifdef CONFIG_44x
3502static void dump_tlb_44x(void)
3503{
3504 int i;
3505
3506 for (i = 0; i < PPC44x_TLB_SIZE; i++) {
3507 unsigned long w0,w1,w2;
3508 asm volatile("tlbre %0,%1,0" : "=r" (w0) : "r" (i));
3509 asm volatile("tlbre %0,%1,1" : "=r" (w1) : "r" (i));
3510 asm volatile("tlbre %0,%1,2" : "=r" (w2) : "r" (i));
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003511 printf("[%02x] %08lx %08lx %08lx ", i, w0, w1, w2);
Benjamin Herrenschmidt5a8a1a22007-11-16 18:23:33 +11003512 if (w0 & PPC44x_TLB_VALID) {
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003513 printf("V %08lx -> %01lx%08lx %c%c%c%c%c",
Benjamin Herrenschmidt5a8a1a22007-11-16 18:23:33 +11003514 w0 & PPC44x_TLB_EPN_MASK,
3515 w1 & PPC44x_TLB_ERPN_MASK,
3516 w1 & PPC44x_TLB_RPN_MASK,
3517 (w2 & PPC44x_TLB_W) ? 'W' : 'w',
3518 (w2 & PPC44x_TLB_I) ? 'I' : 'i',
3519 (w2 & PPC44x_TLB_M) ? 'M' : 'm',
3520 (w2 & PPC44x_TLB_G) ? 'G' : 'g',
3521 (w2 & PPC44x_TLB_E) ? 'E' : 'e');
3522 }
3523 printf("\n");
3524 }
3525}
3526#endif /* CONFIG_44x */
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003527
Benjamin Herrenschmidt03247152010-07-09 15:34:50 +10003528#ifdef CONFIG_PPC_BOOK3E
3529static void dump_tlb_book3e(void)
3530{
3531 u32 mmucfg, pidmask, lpidmask;
3532 u64 ramask;
3533 int i, tlb, ntlbs, pidsz, lpidsz, rasz, lrat = 0;
3534 int mmu_version;
3535 static const char *pgsz_names[] = {
3536 " 1K",
3537 " 2K",
3538 " 4K",
3539 " 8K",
3540 " 16K",
3541 " 32K",
3542 " 64K",
3543 "128K",
3544 "256K",
3545 "512K",
3546 " 1M",
3547 " 2M",
3548 " 4M",
3549 " 8M",
3550 " 16M",
3551 " 32M",
3552 " 64M",
3553 "128M",
3554 "256M",
3555 "512M",
3556 " 1G",
3557 " 2G",
3558 " 4G",
3559 " 8G",
3560 " 16G",
3561 " 32G",
3562 " 64G",
3563 "128G",
3564 "256G",
3565 "512G",
3566 " 1T",
3567 " 2T",
3568 };
3569
3570 /* Gather some infos about the MMU */
3571 mmucfg = mfspr(SPRN_MMUCFG);
3572 mmu_version = (mmucfg & 3) + 1;
3573 ntlbs = ((mmucfg >> 2) & 3) + 1;
3574 pidsz = ((mmucfg >> 6) & 0x1f) + 1;
3575 lpidsz = (mmucfg >> 24) & 0xf;
3576 rasz = (mmucfg >> 16) & 0x7f;
3577 if ((mmu_version > 1) && (mmucfg & 0x10000))
3578 lrat = 1;
3579 printf("Book3E MMU MAV=%d.0,%d TLBs,%d-bit PID,%d-bit LPID,%d-bit RA\n",
3580 mmu_version, ntlbs, pidsz, lpidsz, rasz);
3581 pidmask = (1ul << pidsz) - 1;
3582 lpidmask = (1ul << lpidsz) - 1;
3583 ramask = (1ull << rasz) - 1;
3584
3585 for (tlb = 0; tlb < ntlbs; tlb++) {
3586 u32 tlbcfg;
3587 int nent, assoc, new_cc = 1;
3588 printf("TLB %d:\n------\n", tlb);
3589 switch(tlb) {
3590 case 0:
3591 tlbcfg = mfspr(SPRN_TLB0CFG);
3592 break;
3593 case 1:
3594 tlbcfg = mfspr(SPRN_TLB1CFG);
3595 break;
3596 case 2:
3597 tlbcfg = mfspr(SPRN_TLB2CFG);
3598 break;
3599 case 3:
3600 tlbcfg = mfspr(SPRN_TLB3CFG);
3601 break;
3602 default:
3603 printf("Unsupported TLB number !\n");
3604 continue;
3605 }
3606 nent = tlbcfg & 0xfff;
3607 assoc = (tlbcfg >> 24) & 0xff;
3608 for (i = 0; i < nent; i++) {
3609 u32 mas0 = MAS0_TLBSEL(tlb);
3610 u32 mas1 = MAS1_TSIZE(BOOK3E_PAGESZ_4K);
3611 u64 mas2 = 0;
3612 u64 mas7_mas3;
3613 int esel = i, cc = i;
3614
3615 if (assoc != 0) {
3616 cc = i / assoc;
3617 esel = i % assoc;
3618 mas2 = cc * 0x1000;
3619 }
3620
3621 mas0 |= MAS0_ESEL(esel);
3622 mtspr(SPRN_MAS0, mas0);
3623 mtspr(SPRN_MAS1, mas1);
3624 mtspr(SPRN_MAS2, mas2);
3625 asm volatile("tlbre 0,0,0" : : : "memory");
3626 mas1 = mfspr(SPRN_MAS1);
3627 mas2 = mfspr(SPRN_MAS2);
3628 mas7_mas3 = mfspr(SPRN_MAS7_MAS3);
3629 if (assoc && (i % assoc) == 0)
3630 new_cc = 1;
3631 if (!(mas1 & MAS1_VALID))
3632 continue;
3633 if (assoc == 0)
3634 printf("%04x- ", i);
3635 else if (new_cc)
3636 printf("%04x-%c", cc, 'A' + esel);
3637 else
3638 printf(" |%c", 'A' + esel);
3639 new_cc = 0;
3640 printf(" %016llx %04x %s %c%c AS%c",
3641 mas2 & ~0x3ffull,
3642 (mas1 >> 16) & 0x3fff,
3643 pgsz_names[(mas1 >> 7) & 0x1f],
3644 mas1 & MAS1_IND ? 'I' : ' ',
3645 mas1 & MAS1_IPROT ? 'P' : ' ',
3646 mas1 & MAS1_TS ? '1' : '0');
3647 printf(" %c%c%c%c%c%c%c",
3648 mas2 & MAS2_X0 ? 'a' : ' ',
3649 mas2 & MAS2_X1 ? 'v' : ' ',
3650 mas2 & MAS2_W ? 'w' : ' ',
3651 mas2 & MAS2_I ? 'i' : ' ',
3652 mas2 & MAS2_M ? 'm' : ' ',
3653 mas2 & MAS2_G ? 'g' : ' ',
3654 mas2 & MAS2_E ? 'e' : ' ');
3655 printf(" %016llx", mas7_mas3 & ramask & ~0x7ffull);
3656 if (mas1 & MAS1_IND)
3657 printf(" %s\n",
3658 pgsz_names[(mas7_mas3 >> 1) & 0x1f]);
3659 else
3660 printf(" U%c%c%c S%c%c%c\n",
3661 mas7_mas3 & MAS3_UX ? 'x' : ' ',
3662 mas7_mas3 & MAS3_UW ? 'w' : ' ',
3663 mas7_mas3 & MAS3_UR ? 'r' : ' ',
3664 mas7_mas3 & MAS3_SX ? 'x' : ' ',
3665 mas7_mas3 & MAS3_SW ? 'w' : ' ',
3666 mas7_mas3 & MAS3_SR ? 'r' : ' ');
3667 }
3668 }
3669}
3670#endif /* CONFIG_PPC_BOOK3E */
3671
Michael Ellerman9f1067c22008-05-08 14:27:16 +10003672static void xmon_init(int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673{
Olaf Heringb13cfd172005-08-04 19:26:42 +02003674 if (enable) {
3675 __debugger = xmon;
3676 __debugger_ipi = xmon_ipi;
3677 __debugger_bpt = xmon_bpt;
3678 __debugger_sstep = xmon_sstep;
3679 __debugger_iabr_match = xmon_iabr_match;
Michael Neuling9422de32012-12-20 14:06:44 +00003680 __debugger_break_match = xmon_break_match;
Olaf Heringb13cfd172005-08-04 19:26:42 +02003681 __debugger_fault_handler = xmon_fault_handler;
3682 } else {
3683 __debugger = NULL;
3684 __debugger_ipi = NULL;
3685 __debugger_bpt = NULL;
3686 __debugger_sstep = NULL;
3687 __debugger_iabr_match = NULL;
Michael Neuling9422de32012-12-20 14:06:44 +00003688 __debugger_break_match = NULL;
Olaf Heringb13cfd172005-08-04 19:26:42 +02003689 __debugger_fault_handler = NULL;
3690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691}
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11003692
3693#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov1495cc92010-08-17 21:15:46 -07003694static void sysrq_handle_xmon(int key)
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11003695{
3696 /* ensure xmon is enabled */
3697 xmon_init(1);
David Howells7d12e782006-10-05 14:55:46 +01003698 debugger(get_irq_regs());
Pan Xinhui3b5bf422017-03-22 16:27:49 -03003699 if (!xmon_on)
3700 xmon_init(0);
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11003701}
3702
Dmitry Torokhov1495cc92010-08-17 21:15:46 -07003703static struct sysrq_key_op sysrq_xmon_op = {
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11003704 .handler = sysrq_handle_xmon,
zhangwei(Jovi)90a102e2013-04-30 15:28:54 -07003705 .help_msg = "xmon(x)",
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11003706 .action_msg = "Entering xmon",
3707};
3708
3709static int __init setup_xmon_sysrq(void)
3710{
3711 register_sysrq_key('x', &sysrq_xmon_op);
3712 return 0;
3713}
Guilherme G. Piccolib5617832017-03-22 16:27:50 -03003714device_initcall(setup_xmon_sysrq);
Paul Mackerrasfca5dcd2005-11-08 22:55:08 +11003715#endif /* CONFIG_MAGIC_SYSRQ */
Michael Ellerman476792832006-10-03 14:12:08 +10003716
Guilherme G. Piccolide78ae62017-03-22 16:27:51 -03003717#ifdef CONFIG_DEBUG_FS
Vaibhav Jain1ff3b402018-03-04 23:01:32 +05303718static void clear_all_bpt(void)
3719{
3720 int i;
3721
3722 /* clear/unpatch all breakpoints */
3723 remove_bpts();
3724 remove_cpu_bpts();
3725
3726 /* Disable all breakpoints */
3727 for (i = 0; i < NBPTS; ++i)
3728 bpts[i].enabled = 0;
3729
3730 /* Clear any data or iabr breakpoints */
3731 if (iabr || dabr.enabled) {
3732 iabr = NULL;
3733 dabr.enabled = 0;
3734 }
3735
3736 printf("xmon: All breakpoints cleared\n");
3737}
3738
Guilherme G. Piccolide78ae62017-03-22 16:27:51 -03003739static int xmon_dbgfs_set(void *data, u64 val)
3740{
3741 xmon_on = !!val;
3742 xmon_init(xmon_on);
3743
Vaibhav Jain1ff3b402018-03-04 23:01:32 +05303744 /* make sure all breakpoints removed when disabling */
3745 if (!xmon_on)
3746 clear_all_bpt();
Guilherme G. Piccolide78ae62017-03-22 16:27:51 -03003747 return 0;
3748}
3749
3750static int xmon_dbgfs_get(void *data, u64 *val)
3751{
3752 *val = xmon_on;
3753 return 0;
3754}
3755
3756DEFINE_SIMPLE_ATTRIBUTE(xmon_dbgfs_ops, xmon_dbgfs_get,
3757 xmon_dbgfs_set, "%llu\n");
3758
3759static int __init setup_xmon_dbgfs(void)
3760{
3761 debugfs_create_file("xmon", 0600, powerpc_debugfs_root, NULL,
3762 &xmon_dbgfs_ops);
3763 return 0;
3764}
3765device_initcall(setup_xmon_dbgfs);
3766#endif /* CONFIG_DEBUG_FS */
3767
Guilherme G. Piccolib5617832017-03-22 16:27:50 -03003768static int xmon_early __initdata;
Michael Ellerman476792832006-10-03 14:12:08 +10003769
3770static int __init early_parse_xmon(char *p)
3771{
3772 if (!p || strncmp(p, "early", 5) == 0) {
3773 /* just "xmon" is equivalent to "xmon=early" */
3774 xmon_init(1);
3775 xmon_early = 1;
Pan Xinhui3b5bf422017-03-22 16:27:49 -03003776 xmon_on = 1;
3777 } else if (strncmp(p, "on", 2) == 0) {
Michael Ellerman476792832006-10-03 14:12:08 +10003778 xmon_init(1);
Pan Xinhui3b5bf422017-03-22 16:27:49 -03003779 xmon_on = 1;
3780 } else if (strncmp(p, "off", 3) == 0)
3781 xmon_on = 0;
Michael Ellerman476792832006-10-03 14:12:08 +10003782 else
3783 return 1;
3784
3785 return 0;
3786}
3787early_param("xmon", early_parse_xmon);
3788
3789void __init xmon_setup(void)
3790{
Pan Xinhui3b5bf422017-03-22 16:27:49 -03003791 if (xmon_on)
Michael Ellerman476792832006-10-03 14:12:08 +10003792 xmon_init(1);
Michael Ellerman476792832006-10-03 14:12:08 +10003793 if (xmon_early)
3794 debugger(NULL);
3795}
Michael Ellermanff8a8f22006-10-24 18:31:27 +02003796
Arnd Bergmanne0555952006-11-27 19:18:55 +01003797#ifdef CONFIG_SPU_BASE
Michael Ellermanff8a8f22006-10-24 18:31:27 +02003798
3799struct spu_info {
3800 struct spu *spu;
3801 u64 saved_mfc_sr1_RW;
3802 u32 saved_spu_runcntl_RW;
Michael Ellerman24a24c82006-11-23 00:46:41 +01003803 unsigned long dump_addr;
Michael Ellermanff8a8f22006-10-24 18:31:27 +02003804 u8 stopped_ok;
3805};
3806
3807#define XMON_NUM_SPUS 16 /* Enough for current hardware */
3808
3809static struct spu_info spu_info[XMON_NUM_SPUS];
3810
3811void xmon_register_spus(struct list_head *list)
3812{
3813 struct spu *spu;
3814
3815 list_for_each_entry(spu, list, full_list) {
3816 if (spu->number >= XMON_NUM_SPUS) {
3817 WARN_ON(1);
3818 continue;
3819 }
3820
3821 spu_info[spu->number].spu = spu;
3822 spu_info[spu->number].stopped_ok = 0;
Michael Ellerman24a24c82006-11-23 00:46:41 +01003823 spu_info[spu->number].dump_addr = (unsigned long)
3824 spu_info[spu->number].spu->local_store;
Michael Ellermanff8a8f22006-10-24 18:31:27 +02003825 }
3826}
3827
3828static void stop_spus(void)
3829{
3830 struct spu *spu;
3831 int i;
3832 u64 tmp;
3833
3834 for (i = 0; i < XMON_NUM_SPUS; i++) {
3835 if (!spu_info[i].spu)
3836 continue;
3837
3838 if (setjmp(bus_error_jmp) == 0) {
3839 catch_memory_errors = 1;
3840 sync();
3841
3842 spu = spu_info[i].spu;
3843
3844 spu_info[i].saved_spu_runcntl_RW =
3845 in_be32(&spu->problem->spu_runcntl_RW);
3846
3847 tmp = spu_mfc_sr1_get(spu);
3848 spu_info[i].saved_mfc_sr1_RW = tmp;
3849
3850 tmp &= ~MFC_STATE1_MASTER_RUN_CONTROL_MASK;
3851 spu_mfc_sr1_set(spu, tmp);
3852
3853 sync();
3854 __delay(200);
3855
3856 spu_info[i].stopped_ok = 1;
Michael Ellerman2a144422006-11-23 00:46:40 +01003857
3858 printf("Stopped spu %.2d (was %s)\n", i,
3859 spu_info[i].saved_spu_runcntl_RW ?
3860 "running" : "stopped");
Michael Ellermanff8a8f22006-10-24 18:31:27 +02003861 } else {
3862 catch_memory_errors = 0;
3863 printf("*** Error stopping spu %.2d\n", i);
3864 }
3865 catch_memory_errors = 0;
3866 }
3867}
3868
3869static void restart_spus(void)
3870{
3871 struct spu *spu;
3872 int i;
3873
3874 for (i = 0; i < XMON_NUM_SPUS; i++) {
3875 if (!spu_info[i].spu)
3876 continue;
3877
3878 if (!spu_info[i].stopped_ok) {
3879 printf("*** Error, spu %d was not successfully stopped"
3880 ", not restarting\n", i);
3881 continue;
3882 }
3883
3884 if (setjmp(bus_error_jmp) == 0) {
3885 catch_memory_errors = 1;
3886 sync();
3887
3888 spu = spu_info[i].spu;
3889 spu_mfc_sr1_set(spu, spu_info[i].saved_mfc_sr1_RW);
3890 out_be32(&spu->problem->spu_runcntl_RW,
3891 spu_info[i].saved_spu_runcntl_RW);
3892
3893 sync();
3894 __delay(200);
3895
3896 printf("Restarted spu %.2d\n", i);
3897 } else {
3898 catch_memory_errors = 0;
3899 printf("*** Error restarting spu %.2d\n", i);
3900 }
3901 catch_memory_errors = 0;
3902 }
3903}
3904
Michael Ellermana8984972006-10-24 18:31:28 +02003905#define DUMP_WIDTH 23
Michael Ellerman437a0702006-11-23 00:46:39 +01003906#define DUMP_VALUE(format, field, value) \
Michael Ellermana8984972006-10-24 18:31:28 +02003907do { \
3908 if (setjmp(bus_error_jmp) == 0) { \
3909 catch_memory_errors = 1; \
3910 sync(); \
3911 printf(" %-*s = "format"\n", DUMP_WIDTH, \
Michael Ellerman437a0702006-11-23 00:46:39 +01003912 #field, value); \
Michael Ellermana8984972006-10-24 18:31:28 +02003913 sync(); \
3914 __delay(200); \
3915 } else { \
3916 catch_memory_errors = 0; \
3917 printf(" %-*s = *** Error reading field.\n", \
3918 DUMP_WIDTH, #field); \
3919 } \
3920 catch_memory_errors = 0; \
3921} while (0)
3922
Michael Ellerman437a0702006-11-23 00:46:39 +01003923#define DUMP_FIELD(obj, format, field) \
3924 DUMP_VALUE(format, field, obj->field)
3925
Michael Ellermana8984972006-10-24 18:31:28 +02003926static void dump_spu_fields(struct spu *spu)
3927{
3928 printf("Dumping spu fields at address %p:\n", spu);
3929
3930 DUMP_FIELD(spu, "0x%x", number);
3931 DUMP_FIELD(spu, "%s", name);
Michael Ellermana8984972006-10-24 18:31:28 +02003932 DUMP_FIELD(spu, "0x%lx", local_store_phys);
3933 DUMP_FIELD(spu, "0x%p", local_store);
3934 DUMP_FIELD(spu, "0x%lx", ls_size);
3935 DUMP_FIELD(spu, "0x%x", node);
3936 DUMP_FIELD(spu, "0x%lx", flags);
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003937 DUMP_FIELD(spu, "%llu", class_0_pending);
3938 DUMP_FIELD(spu, "0x%llx", class_0_dar);
3939 DUMP_FIELD(spu, "0x%llx", class_1_dar);
3940 DUMP_FIELD(spu, "0x%llx", class_1_dsisr);
3941 DUMP_FIELD(spu, "0x%x", irqs[0]);
3942 DUMP_FIELD(spu, "0x%x", irqs[1]);
3943 DUMP_FIELD(spu, "0x%x", irqs[2]);
Michael Ellermana8984972006-10-24 18:31:28 +02003944 DUMP_FIELD(spu, "0x%x", slb_replace);
3945 DUMP_FIELD(spu, "%d", pid);
Michael Ellermana8984972006-10-24 18:31:28 +02003946 DUMP_FIELD(spu, "0x%p", mm);
3947 DUMP_FIELD(spu, "0x%p", ctx);
3948 DUMP_FIELD(spu, "0x%p", rq);
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003949 DUMP_FIELD(spu, "0x%llx", timestamp);
Michael Ellermana8984972006-10-24 18:31:28 +02003950 DUMP_FIELD(spu, "0x%lx", problem_phys);
3951 DUMP_FIELD(spu, "0x%p", problem);
Michael Ellerman437a0702006-11-23 00:46:39 +01003952 DUMP_VALUE("0x%x", problem->spu_runcntl_RW,
3953 in_be32(&spu->problem->spu_runcntl_RW));
3954 DUMP_VALUE("0x%x", problem->spu_status_R,
3955 in_be32(&spu->problem->spu_status_R));
3956 DUMP_VALUE("0x%x", problem->spu_npc_RW,
3957 in_be32(&spu->problem->spu_npc_RW));
Michael Ellermana8984972006-10-24 18:31:28 +02003958 DUMP_FIELD(spu, "0x%p", priv2);
Michael Ellermana9852392006-11-23 00:46:50 +01003959 DUMP_FIELD(spu, "0x%p", pdata);
Michael Ellermana8984972006-10-24 18:31:28 +02003960}
3961
Michael Ellermanaf89fb82006-11-23 00:46:44 +01003962int
3963spu_inst_dump(unsigned long adr, long count, int praddr)
3964{
3965 return generic_inst_dump(adr, count, praddr, print_insn_spu);
3966}
3967
3968static void dump_spu_ls(unsigned long num, int subcmd)
Michael Ellerman24a24c82006-11-23 00:46:41 +01003969{
3970 unsigned long offset, addr, ls_addr;
3971
3972 if (setjmp(bus_error_jmp) == 0) {
3973 catch_memory_errors = 1;
3974 sync();
3975 ls_addr = (unsigned long)spu_info[num].spu->local_store;
3976 sync();
3977 __delay(200);
3978 } else {
3979 catch_memory_errors = 0;
Mathieu Malaterree70d8f52018-03-25 11:06:47 +02003980 printf("*** Error: accessing spu info for spu %ld\n", num);
Michael Ellerman24a24c82006-11-23 00:46:41 +01003981 return;
3982 }
3983 catch_memory_errors = 0;
3984
3985 if (scanhex(&offset))
3986 addr = ls_addr + offset;
3987 else
3988 addr = spu_info[num].dump_addr;
3989
3990 if (addr >= ls_addr + LS_SIZE) {
3991 printf("*** Error: address outside of local store\n");
3992 return;
3993 }
3994
Michael Ellermanaf89fb82006-11-23 00:46:44 +01003995 switch (subcmd) {
3996 case 'i':
3997 addr += spu_inst_dump(addr, 16, 1);
3998 last_cmd = "sdi\n";
3999 break;
4000 default:
4001 prdump(addr, 64);
4002 addr += 64;
4003 last_cmd = "sd\n";
4004 break;
4005 }
Michael Ellerman24a24c82006-11-23 00:46:41 +01004006
4007 spu_info[num].dump_addr = addr;
4008}
4009
Michael Ellermanff8a8f22006-10-24 18:31:27 +02004010static int do_spu_cmd(void)
4011{
Michael Ellerman24a24c82006-11-23 00:46:41 +01004012 static unsigned long num = 0;
Michael Ellermanaf89fb82006-11-23 00:46:44 +01004013 int cmd, subcmd = 0;
Michael Ellermanff8a8f22006-10-24 18:31:27 +02004014
4015 cmd = inchar();
4016 switch (cmd) {
4017 case 's':
4018 stop_spus();
4019 break;
4020 case 'r':
4021 restart_spus();
4022 break;
Michael Ellerman24a24c82006-11-23 00:46:41 +01004023 case 'd':
Michael Ellermanaf89fb82006-11-23 00:46:44 +01004024 subcmd = inchar();
4025 if (isxdigit(subcmd) || subcmd == '\n')
4026 termch = subcmd;
4027 case 'f':
Michael Ellerman24a24c82006-11-23 00:46:41 +01004028 scanhex(&num);
4029 if (num >= XMON_NUM_SPUS || !spu_info[num].spu) {
Michael Ellermana8984972006-10-24 18:31:28 +02004030 printf("*** Error: invalid spu number\n");
Michael Ellerman24a24c82006-11-23 00:46:41 +01004031 return 0;
4032 }
4033
4034 switch (cmd) {
4035 case 'f':
4036 dump_spu_fields(spu_info[num].spu);
4037 break;
4038 default:
Michael Ellermanaf89fb82006-11-23 00:46:44 +01004039 dump_spu_ls(num, subcmd);
Michael Ellerman24a24c82006-11-23 00:46:41 +01004040 break;
4041 }
4042
Michael Ellermana8984972006-10-24 18:31:28 +02004043 break;
Michael Ellermanff8a8f22006-10-24 18:31:27 +02004044 default:
4045 return -1;
4046 }
4047
4048 return 0;
4049}
Arnd Bergmanne0555952006-11-27 19:18:55 +01004050#else /* ! CONFIG_SPU_BASE */
Michael Ellermanff8a8f22006-10-24 18:31:27 +02004051static int do_spu_cmd(void)
4052{
4053 return -1;
4054}
4055#endif