Home
last modified time | relevance | path

Searched refs:install_exception_handler (Results 1 – 15 of 15) sorted by relevance

/kvm-unit-tests/arm/
H A Dselftest.c154 install_exception_handler(EXCPTN_UND, und_handler); in check_und()
159 install_exception_handler(EXCPTN_UND, NULL); in check_und()
182 install_exception_handler(EXCPTN_SVC, svc_handler); in check_svc()
201 install_exception_handler(EXCPTN_SVC, NULL); in check_svc()
218 install_exception_handler(EXCPTN_PABT, pabt_handler); in check_pabt()
225 install_exception_handler(EXCPTN_PABT, NULL); in check_pabt()
318 install_exception_handler(v, ESR_EL1_EC_UNKNOWN, unknown_handler); in check_und()
323 install_exception_handler(v, ESR_EL1_EC_UNKNOWN, NULL); in check_und()
340 install_exception_handler(v, ESR_EL1_EC_SVC64, svc_handler); in check_svc()
344 install_exception_handler(v, ESR_EL1_EC_SVC64, NULL); in check_svc()
[all …]
H A Dmte.c195 install_exception_handler(EL1H_SYNC, ESR_EL1_EC_DABT_EL1, mte_fault_handler); in mte_sync_test()
221 install_exception_handler(EL1H_SYNC, ESR_EL1_EC_DABT_EL1, mte_fault_handler); in mte_asymm_test()
226 install_exception_handler(EL1H_SYNC, ESR_EL1_EC_DABT_EL1, NULL); in mte_asymm_test()
H A Dpsci.c37 install_exception_handler(EXCPTN_UND, handler); in install_invalid_function_handler()
39 install_exception_handler(EL1H_SYNC, ESR_EL1_EC_UNKNOWN, handler); in install_invalid_function_handler()
H A Ddebug.c270 install_exception_handler(EL1H_SYNC, ESR_EC_HW_BP_CURRENT, hw_bp_handler); in test_hw_bp()
317 install_exception_handler(EL1H_SYNC, ESR_EC_WP_CURRENT, wp_handler); in test_wp()
358 install_exception_handler(EL1H_SYNC, ESR_EC_SSTEP_CURRENT, ss_handler); in test_ss()
H A Dtimer.c353 install_exception_handler(EL1H_SYNC, ESR_EL1_EC_UNKNOWN, ptimer_unsupported_handler); in test_init()
355 install_exception_handler(EL1H_SYNC, ESR_EL1_EC_UNKNOWN, NULL); in test_init()
H A Dpl031.c167 install_exception_handler(EXCPTN_IRQ, irq_handler); in check_rtc_irq()
H A Dgic.c181 install_exception_handler(EXCPTN_IRQ, handler); in setup_irq()
/kvm-unit-tests/riscv/
H A Dselftest.c32 install_exception_handler(EXC_INST_ILLEGAL, handler); in check_exceptions()
34 install_exception_handler(EXC_INST_ILLEGAL, NULL); in check_exceptions()
H A Dsbi-fwft.c190 install_exception_handler(EXC_LOAD_MISALIGNED, misaligned_handler); in fwft_check_misaligned_exc_deleg()
214 install_exception_handler(EXC_LOAD_MISALIGNED, NULL); in fwft_check_misaligned_exc_deleg()
328 install_exception_handler(EXC_LOAD_PAGE_FAULT, adue_read_handler); in fwft_check_pte_ad_hw_updating()
329 install_exception_handler(EXC_STORE_PAGE_FAULT, adue_write_handler); in fwft_check_pte_ad_hw_updating()
367 install_exception_handler(EXC_LOAD_PAGE_FAULT, NULL); in fwft_check_pte_ad_hw_updating()
368 install_exception_handler(EXC_STORE_PAGE_FAULT, NULL); in fwft_check_pte_ad_hw_updating()
/kvm-unit-tests/lib/riscv/asm/
H A Dprocessor.h51 void install_exception_handler(unsigned long cause, void (*handler)(struct pt_regs *));
/kvm-unit-tests/lib/arm/asm/
H A Dprocessor.h27 extern void install_exception_handler(enum vector v, exception_fn fn);
/kvm-unit-tests/lib/arm64/asm/
H A Dprocessor.h42 extern void install_exception_handler(enum vector v, unsigned int ec,
/kvm-unit-tests/lib/arm/
H A Dprocessor.c68 void install_exception_handler(enum vector v, exception_fn fn) in install_exception_handler() function
/kvm-unit-tests/lib/riscv/
H A Dprocessor.c71 void install_exception_handler(unsigned long cause, void (*handler)(struct pt_regs *)) in install_exception_handler() function
/kvm-unit-tests/lib/arm64/
H A Dprocessor.c140 void install_exception_handler(enum vector v, unsigned int ec, exception_fn fn) in install_exception_handler() function