include/linux/firmware/xlnx-event-manager.h
Source file repositories/reference/linux-study-clean/include/linux/firmware/xlnx-event-manager.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/firmware/xlnx-event-manager.h- Extension
.h- Size
- 1353 bytes
- Lines
- 47
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
Dependency Surface
linux/firmware/xlnx-zynqmp.h
Detected Declarations
function xlnx_register_eventfunction xlnx_unregister_event
Annotated Snippet
#ifndef _FIRMWARE_XLNX_EVENT_MANAGER_H_
#define _FIRMWARE_XLNX_EVENT_MANAGER_H_
#include <linux/firmware/xlnx-zynqmp.h>
#define CB_MAX_PAYLOAD_SIZE (4U) /*In payload maximum 32bytes */
#define EVENT_SUBSYSTEM_RESTART (4U)
#define PM_DEV_ACPU_0_0 (0x1810c0afU)
#define PM_DEV_ACPU_0 (0x1810c003U)
/************************** Exported Function *****************************/
typedef void (*event_cb_func_t)(const u32 *payload, void *data);
#if IS_REACHABLE(CONFIG_XLNX_EVENT_MANAGER)
int xlnx_register_event(const enum pm_api_cb_id cb_type, const u32 node_id,
const u32 event, const bool wake,
event_cb_func_t cb_fun, void *data);
int xlnx_unregister_event(const enum pm_api_cb_id cb_type, const u32 node_id,
const u32 event, event_cb_func_t cb_fun, void *data);
#else
static inline int xlnx_register_event(const enum pm_api_cb_id cb_type, const u32 node_id,
const u32 event, const bool wake,
event_cb_func_t cb_fun, void *data)
{
return -ENODEV;
}
static inline int xlnx_unregister_event(const enum pm_api_cb_id cb_type, const u32 node_id,
const u32 event, event_cb_func_t cb_fun, void *data)
{
return -ENODEV;
}
#endif
#endif /* _FIRMWARE_XLNX_EVENT_MANAGER_H_ */
Annotation
- Immediate include surface: `linux/firmware/xlnx-zynqmp.h`.
- Detected declarations: `function xlnx_register_event`, `function xlnx_unregister_event`.
- Atlas domain: Core OS / Core Kernel Interface.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.