blob: 219a0d3340f6706a27170bc55026deadfeef7abc [file] [log] [blame]
Oded Gabbay4a488a72014-07-16 21:08:55 +03001/*
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
35struct kfd_device_info {
36 unsigned int max_pasid_bits;
37 size_t ih_ring_entry_size;
38};
39
40struct 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 */
55void kgd2kfd_exit(void);
56struct kfd_dev *kgd2kfd_probe(struct kgd_dev *kgd, struct pci_dev *pdev);
57bool kgd2kfd_device_init(struct kfd_dev *kfd,
58 const struct kgd2kfd_shared_resources *gpu_resources);
59void kgd2kfd_device_exit(struct kfd_dev *kfd);
60
61extern const struct kfd2kgd_calls *kfd2kgd;
62
63/* Character device interface */
64int kfd_chardev_init(void);
65void kfd_chardev_exit(void);
66struct device *kfd_chardev(void);
67
68/* Process data */
69struct kfd_process {
70};
71
72extern struct device *kfd_device;
73
74/* Interrupts */
75void kgd2kfd_interrupt(struct kfd_dev *dev, const void *ih_ring_entry);
76
77/* Power Management */
78void kgd2kfd_suspend(struct kfd_dev *dev);
79int kgd2kfd_resume(struct kfd_dev *dev);
80
81#endif