1 /* 2 * Copyright (c) 2022, MediaTek Inc. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef VENDOR_PUBSUB_EVENTS_H 8 #define VENDOR_PUBSUB_EVENTS_H 9 10 #include <lib/el3_runtime/pubsub.h> 11 12 REGISTER_PUBSUB_EVENT(lpm_publish_event); 13 REGISTER_PUBSUB_EVENT(suspend_publish_event); 14 REGISTER_PUBSUB_EVENT(mt_cpupm_publish_pwr_on); 15 REGISTER_PUBSUB_EVENT(mt_cpupm_publish_pwr_off); 16 REGISTER_PUBSUB_EVENT(mt_cpupm_publish_afflv_pwr_on); 17 REGISTER_PUBSUB_EVENT(mt_cpupm_publish_afflv_pwr_off); 18 REGISTER_PUBSUB_EVENT(publish_check_wakeup_irq); 19 REGISTER_PUBSUB_EVENT(watchdog_timeout); 20 21 #endif /* VENDOR_PUBSUB_EVENTS_H */ 22