Oded Gabbay | 4a488a7 | 2014-07-16 21:08:55 +0300 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2014 Advanced Micro Devices, Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | */ |
| 22 | |
| 23 | #ifndef KFD_PRIV_H_INCLUDED |
| 24 | #define KFD_PRIV_H_INCLUDED |
| 25 | |
| 26 | #include <linux/hashtable.h> |
| 27 | #include <linux/mmu_notifier.h> |
| 28 | #include <linux/mutex.h> |
| 29 | #include <linux/types.h> |
| 30 | #include <linux/atomic.h> |
| 31 | #include <linux/workqueue.h> |
| 32 | #include <linux/spinlock.h> |
| 33 | #include <kgd_kfd_interface.h> |
| 34 | |
| 35 | struct kfd_device_info { |
| 36 | unsigned int max_pasid_bits; |
| 37 | size_t ih_ring_entry_size; |
| 38 | }; |
| 39 | |
| 40 | struct kfd_dev { |
| 41 | struct kgd_dev *kgd; |
| 42 | |
| 43 | const struct kfd_device_info *device_info; |
| 44 | struct pci_dev *pdev; |
| 45 | |
| 46 | unsigned int id; /* topology stub index */ |
| 47 | |
| 48 | struct kgd2kfd_shared_resources shared_resources; |
| 49 | |
| 50 | bool init_complete; |
| 51 | |
| 52 | }; |
| 53 | |
| 54 | /* KGD2KFD callbacks */ |
| 55 | void kgd2kfd_exit(void); |
| 56 | struct kfd_dev *kgd2kfd_probe(struct kgd_dev *kgd, struct pci_dev *pdev); |
| 57 | bool kgd2kfd_device_init(struct kfd_dev *kfd, |
| 58 | const struct kgd2kfd_shared_resources *gpu_resources); |
| 59 | void kgd2kfd_device_exit(struct kfd_dev *kfd); |
| 60 | |
| 61 | extern const struct kfd2kgd_calls *kfd2kgd; |
| 62 | |
| 63 | /* Character device interface */ |
| 64 | int kfd_chardev_init(void); |
| 65 | void kfd_chardev_exit(void); |
| 66 | struct device *kfd_chardev(void); |
| 67 | |
| 68 | /* Process data */ |
| 69 | struct kfd_process { |
| 70 | }; |
| 71 | |
| 72 | extern struct device *kfd_device; |
| 73 | |
| 74 | /* Interrupts */ |
| 75 | void kgd2kfd_interrupt(struct kfd_dev *dev, const void *ih_ring_entry); |
| 76 | |
| 77 | /* Power Management */ |
| 78 | void kgd2kfd_suspend(struct kfd_dev *dev); |
| 79 | int kgd2kfd_resume(struct kfd_dev *dev); |
| 80 | |
| 81 | #endif |