Functions | |
| void | show_regs (struct pt_regs *regs) |
| void | do_undefined_instruction (struct pt_regs *pt_regs) |
| void | do_software_interrupt (struct pt_regs *pt_regs) |
| void | do_prefetch_abort (struct pt_regs *pt_regs) |
| void | do_data_abort (struct pt_regs *pt_regs) |
| void | do_not_used (struct pt_regs *pt_regs) |
| void | do_fiq (struct pt_regs *pt_regs) |
| void | do_irq (struct pt_regs *pt_regs) |
| void bad_mode | ( | void | ) |
FIXME.
Referenced by do_data_abort(), do_fiq(), do_irq(), do_not_used(), do_prefetch_abort(), do_software_interrupt(), and do_undefined_instruction().
| void do_data_abort | ( | struct pt_regs * | pt_regs | ) |
The CPU catches a data abort.
That really should not happen!
| [in] | pt_regs | Register set content when the accident happens |
| void do_fiq | ( | struct pt_regs * | pt_regs | ) |
The CPU catches a fast interrupt request.
| [in] | pt_regs | Register set content when the interrupt happens |
| void do_irq | ( | struct pt_regs * | pt_regs | ) |
The CPU catches a regular interrupt.
| [in] | pt_regs | Register set content when the interrupt happens |
| void do_not_used | ( | struct pt_regs * | pt_regs | ) |
The CPU catches a not-used(?) abort.
| [in] | pt_regs | Register set content when the accident happens |
| void do_prefetch_abort | ( | struct pt_regs * | pt_regs | ) |
The CPU catches a prefetch abort.
That really should not happen!
| [in] | pt_regs | Register set content when the accident happens |
| void do_software_interrupt | ( | struct pt_regs * | pt_regs | ) |
The CPU catches a software interrupt.
| [in] | pt_regs | Register set content when the interrupt happens |
| void do_undefined_instruction | ( | struct pt_regs * | pt_regs | ) |
The CPU runs into an undefined instruction.
That really should not happen!
| [in] | pt_regs | Register set content when the accident happens |
| void show_regs | ( | struct pt_regs * | regs | ) |
Display current register set content.
| [in] | regs | Guess what |
Referenced by do_data_abort(), do_fiq(), do_irq(), do_not_used(), do_prefetch_abort(), do_software_interrupt(), and do_undefined_instruction().
1.5.6