Lines Matching full:spr
284 Sr # read SPR #\n\
285 Sw #v write v to SPR #\n\
349 * write_ciabr() - write the CIABR SPR
525 * We catch SPR read/write faults here because the 0x700, 0xf60 in xmon_core()
1969 extern unsigned long xmon_mfspr(int spr, unsigned long default_value);
1970 extern void xmon_mtspr(int spr, unsigned long value);
2009 printf("SPR 0x%03x (%4d) Faulted during write\n", n, n); in write_spr()
2134 static void dump_one_spr(int spr, bool show_unimplemented) in dump_one_spr() argument
2139 if (!read_spr(spr, &val)) { in dump_one_spr()
2140 printf("SPR 0x%03x (%4d) Faulted during read\n", spr, spr); in dump_one_spr()
2147 if (!read_spr(spr, &val)) { in dump_one_spr()
2148 printf("SPR 0x%03x (%4d) Faulted during read\n", spr, spr); in dump_one_spr()
2154 printf("SPR 0x%03x (%4d) Unimplemented\n", spr, spr); in dump_one_spr()
2159 printf("SPR 0x%03x (%4d) = 0x%lx\n", spr, spr, val); in dump_one_spr()
2166 int spr; in super_regs() local
2208 for (spr = 1; spr < 1024; ++spr) in super_regs()
2209 dump_one_spr(spr, false); in super_regs()