mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 23:03:06 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
25 lines
666 B
C
25 lines
666 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_TRAPS_H
|
|
#define __ASM_TRAPS_H
|
|
|
|
#define PARISC_ITLB_TRAP 6 /* defined by architecture. Do not change. */
|
|
|
|
#if !defined(__ASSEMBLY__)
|
|
struct pt_regs;
|
|
|
|
/* traps.c */
|
|
void parisc_terminate(char *msg, struct pt_regs *regs,
|
|
int code, unsigned long offset) __noreturn __cold;
|
|
|
|
void die_if_kernel(char *str, struct pt_regs *regs, long err);
|
|
|
|
/* mm/fault.c */
|
|
unsigned long parisc_acctyp(unsigned long code, unsigned int inst);
|
|
const char *trap_name(unsigned long code);
|
|
void do_page_fault(struct pt_regs *regs, unsigned long code,
|
|
unsigned long address);
|
|
int handle_nadtlb_fault(struct pt_regs *regs);
|
|
#endif
|
|
|
|
#endif
|