Searched refs:dsisr (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/sys/powerpc/include/
H A Dtrap.h125 #define EXC_ALI_OPCODE_INDICATOR(dsisr) ((dsisr >> 10) & 0x7f)
130 #define EXC_ALI_RST(dsisr) ((dsisr >> 5) & 0x1f) /* source or target */
131 #define EXC_ALI_RA(dsisr) (dsisr & 0x1f)
H A Dframe.h64 /* dsisr only filled on a DSI trap */
65 register_t dsisr; member in struct:trapframe::__anon15647::__anon15648
/freebsd-13-stable/sys/powerpc/powerpc/
H A Ddb_trace.c103 { "dsisr", DB_OFFSET(cpu.aim.dsisr), db_frame },
223 (tf->cpu.aim.dsisr & DSISR_STORE) ? "write"
229 tf->dar, (uint32_t)tf->cpu.aim.dsisr);
278 (uint32_t)tf->cpu.aim.dsisr);
H A Dtrap.c554 printf(" dsisr = 0x%lx\n",
555 (u_long)frame->cpu.aim.dsisr);
787 if (frame->cpu.aim.dsisr & DSISR_STORE)
903 indicator = EXC_ALI_OPCODE_INDICATOR(frame->cpu.aim.dsisr);
914 reg = EXC_ALI_RST(frame->cpu.aim.dsisr);
H A Dgenassym.c188 ASSYM(FRAME_AIM_DSISR, offsetof(struct trapframe, cpu.aim.dsisr));
H A Dmachdep.c824 reg = tf->cpu.aim.dsisr;
825 db_printf(" dsisr:\t%#lx\n", reg);
/freebsd-13-stable/sys/powerpc/aim/
H A Daim_machdep.c562 printf("Machine check, DSISR: %016lx\n", frame->cpu.aim.dsisr);
564 if ((frame->cpu.aim.dsisr & DSISR_MC_SLB_MULTIHIT) != 0)
566 if ((frame->cpu.aim.dsisr &

Completed in 182 milliseconds