2019-05-27 14:55:05 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-11-04 08:50:04 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005 Linas Vepstas <linas@linas.org>
|
|
|
|
*/
|
|
|
|
|
2006-04-19 12:05:21 +08:00
|
|
|
#ifndef ASM_POWERPC_EEH_EVENT_H
|
|
|
|
#define ASM_POWERPC_EEH_EVENT_H
|
2005-12-17 05:43:46 +08:00
|
|
|
#ifdef __KERNEL__
|
2005-11-04 08:50:04 +08:00
|
|
|
|
2012-02-28 04:04:02 +08:00
|
|
|
/*
|
|
|
|
* structure holding pci controller data that describes a
|
|
|
|
* change in the isolation status of a PCI slot. A pointer
|
|
|
|
* to this struct is passed as the data pointer in a notify
|
|
|
|
* callback.
|
2005-11-04 08:50:04 +08:00
|
|
|
*/
|
|
|
|
struct eeh_event {
|
2012-02-28 04:04:02 +08:00
|
|
|
struct list_head list; /* to form event queue */
|
2012-09-08 06:44:11 +08:00
|
|
|
struct eeh_pe *pe; /* EEH PE */
|
2005-11-04 08:50:04 +08:00
|
|
|
};
|
|
|
|
|
2013-06-20 13:21:00 +08:00
|
|
|
int eeh_event_init(void);
|
2012-09-08 06:44:11 +08:00
|
|
|
int eeh_send_failure_event(struct eeh_pe *pe);
|
2019-02-15 08:48:17 +08:00
|
|
|
int __eeh_send_failure_event(struct eeh_pe *pe);
|
2014-06-04 15:31:52 +08:00
|
|
|
void eeh_remove_event(struct eeh_pe *pe, bool force);
|
2018-03-19 10:46:30 +08:00
|
|
|
void eeh_handle_normal_event(struct eeh_pe *pe);
|
2018-03-19 10:46:20 +08:00
|
|
|
void eeh_handle_special_event(void);
|
2005-11-04 08:52:49 +08:00
|
|
|
|
2005-12-17 05:43:46 +08:00
|
|
|
#endif /* __KERNEL__ */
|
2006-04-19 12:05:21 +08:00
|
|
|
#endif /* ASM_POWERPC_EEH_EVENT_H */
|