Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * Backtrace support for Microblaze
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  * Copyright (C) 2010  Digital Design Corporation
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #ifndef __MICROBLAZE_UNWIND_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) #define __MICROBLAZE_UNWIND_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) struct stack_trace;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) struct trap_handler_info {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	unsigned long start_addr;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 	unsigned long end_addr;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 	const char    *trap_name;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) extern struct trap_handler_info microblaze_trap_handlers;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) extern const char _hw_exception_handler;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) extern const char ex_handler_unhandled;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) void microblaze_unwind(struct task_struct *task, struct stack_trace *trace,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 		       const char *loglvl);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) #endif	/* __MICROBLAZE_UNWIND_H */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27)