2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
#ifndef RAS_H
|
|
|
|
|
#define RAS_H
|
|
|
|
|
|
2026-01-29 22:25:33 +08:00
|
|
|
#include <asm/interrupt.h>
|
|
|
|
|
|
|
|
|
|
DECLARE_INTERRUPT_HANDLER(cbe_system_error_exception);
|
|
|
|
|
DECLARE_INTERRUPT_HANDLER(cbe_maintenance_exception);
|
|
|
|
|
DECLARE_INTERRUPT_HANDLER(cbe_thermal_exception);
|
|
|
|
|
|
2026-01-21 18:59:54 +08:00
|
|
|
extern void cbe_ras_init(void);
|
|
|
|
|
|
|
|
|
|
#endif /* RAS_H */
|