1d87f36a0SRajneesh Bhardwaj /* SPDX-License-Identifier: GPL-2.0 OR MIT */ 2f3a39818SAndrew Lewycky /* 3d87f36a0SRajneesh Bhardwaj * Copyright 2014-2022 Advanced Micro Devices, Inc. 4f3a39818SAndrew Lewycky * 5f3a39818SAndrew Lewycky * Permission is hereby granted, free of charge, to any person obtaining a 6f3a39818SAndrew Lewycky * copy of this software and associated documentation files (the "Software"), 7f3a39818SAndrew Lewycky * to deal in the Software without restriction, including without limitation 8f3a39818SAndrew Lewycky * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9f3a39818SAndrew Lewycky * and/or sell copies of the Software, and to permit persons to whom the 10f3a39818SAndrew Lewycky * Software is furnished to do so, subject to the following conditions: 11f3a39818SAndrew Lewycky * 12f3a39818SAndrew Lewycky * The above copyright notice and this permission notice shall be included in 13f3a39818SAndrew Lewycky * all copies or substantial portions of the Software. 14f3a39818SAndrew Lewycky * 15f3a39818SAndrew Lewycky * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16f3a39818SAndrew Lewycky * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17f3a39818SAndrew Lewycky * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18f3a39818SAndrew Lewycky * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 19f3a39818SAndrew Lewycky * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20f3a39818SAndrew Lewycky * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 21f3a39818SAndrew Lewycky * OTHER DEALINGS IN THE SOFTWARE. 22f3a39818SAndrew Lewycky */ 23f3a39818SAndrew Lewycky 24f3a39818SAndrew Lewycky #ifndef KFD_EVENTS_H_INCLUDED 25f3a39818SAndrew Lewycky #define KFD_EVENTS_H_INCLUDED 26f3a39818SAndrew Lewycky 27f3a39818SAndrew Lewycky #include <linux/kernel.h> 28f3a39818SAndrew Lewycky #include <linux/hashtable.h> 29f3a39818SAndrew Lewycky #include <linux/types.h> 30f3a39818SAndrew Lewycky #include <linux/list.h> 3174e40716SFelix Kuehling #include <linux/wait.h> 32f3a39818SAndrew Lewycky #include "kfd_priv.h" 3359d3e8beSAlexey Skidanov #include <uapi/linux/kfd_ioctl.h> 34f3a39818SAndrew Lewycky 35482f0777SFelix Kuehling /* 36482f0777SFelix Kuehling * IDR supports non-negative integer IDs. Small IDs are used for 37482f0777SFelix Kuehling * signal events to match their signal slot. Use the upper half of the 38482f0777SFelix Kuehling * ID space for non-signal events. 39482f0777SFelix Kuehling */ 40482f0777SFelix Kuehling #define KFD_FIRST_NONSIGNAL_EVENT_ID ((INT_MAX >> 1) + 1) 41482f0777SFelix Kuehling #define KFD_LAST_NONSIGNAL_EVENT_ID INT_MAX 42f3a39818SAndrew Lewycky 43f3a39818SAndrew Lewycky /* 44f3a39818SAndrew Lewycky * Written into kfd_signal_slot_t to indicate that the event is not signaled. 45f3a39818SAndrew Lewycky * Since the event protocol may need to write the event ID into memory, this 46f3a39818SAndrew Lewycky * must not be a valid event ID. 47f3a39818SAndrew Lewycky * For the sake of easy memset-ing, this must be a byte pattern. 48f3a39818SAndrew Lewycky */ 49f3a39818SAndrew Lewycky #define UNSIGNALED_EVENT_SLOT ((uint64_t)-1) 50f3a39818SAndrew Lewycky 51f3a39818SAndrew Lewycky struct kfd_event_waiter; 52f3a39818SAndrew Lewycky struct signal_page; 53f3a39818SAndrew Lewycky 54f3a39818SAndrew Lewycky struct kfd_event { 55f3a39818SAndrew Lewycky u32 event_id; 56*4057e6ceSJames Zhu u64 event_age; 57f3a39818SAndrew Lewycky 58f3a39818SAndrew Lewycky bool signaled; 59f3a39818SAndrew Lewycky bool auto_reset; 60f3a39818SAndrew Lewycky 61f3a39818SAndrew Lewycky int type; 62f3a39818SAndrew Lewycky 635273e82cSFelix Kuehling spinlock_t lock; 6474e40716SFelix Kuehling wait_queue_head_t wq; /* List of event waiters. */ 65f3a39818SAndrew Lewycky 66f3a39818SAndrew Lewycky /* Only for signal events. */ 67f3a39818SAndrew Lewycky uint64_t __user *user_signal_address; 6859d3e8beSAlexey Skidanov 6959d3e8beSAlexey Skidanov /* type specific data */ 7059d3e8beSAlexey Skidanov union { 7159d3e8beSAlexey Skidanov struct kfd_hsa_memory_exception_data memory_exception_data; 72e42051d2SShaoyun Liu struct kfd_hsa_hw_exception_data hw_exception_data; 7359d3e8beSAlexey Skidanov }; 7434d292d5SFelix Kuehling 7534d292d5SFelix Kuehling struct rcu_head rcu; /* for asynchronous kfree_rcu */ 76f3a39818SAndrew Lewycky }; 77f3a39818SAndrew Lewycky 78f3a39818SAndrew Lewycky #define KFD_EVENT_TIMEOUT_IMMEDIATE 0 79f3a39818SAndrew Lewycky #define KFD_EVENT_TIMEOUT_INFINITE 0xFFFFFFFFu 80f3a39818SAndrew Lewycky 81f3a39818SAndrew Lewycky /* Matching HSA_EVENTTYPE */ 82f3a39818SAndrew Lewycky #define KFD_EVENT_TYPE_SIGNAL 0 83930c5ff4SAlexey Skidanov #define KFD_EVENT_TYPE_HW_EXCEPTION 3 84f3a39818SAndrew Lewycky #define KFD_EVENT_TYPE_DEBUG 5 8559d3e8beSAlexey Skidanov #define KFD_EVENT_TYPE_MEMORY 8 86f3a39818SAndrew Lewycky 87c7b6bac9SFenghua Yu extern void kfd_signal_event_interrupt(u32 pasid, uint32_t partial_id, 88f3a39818SAndrew Lewycky uint32_t valid_id_bits); 89f3a39818SAndrew Lewycky 90f3a39818SAndrew Lewycky #endif 91