blob: 95d5af138e6e7f2bcbd8d76351f7e12827031189 [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#include <linux/module.h>
24#include <linux/sched.h>
Oded Gabbay4a488a72014-07-16 21:08:55 +030025#include <linux/moduleparam.h>
26#include <linux/device.h>
27#include "kfd_priv.h"
28
29#define KFD_DRIVER_AUTHOR "AMD Inc. and others"
30
31#define KFD_DRIVER_DESC "Standalone HSA driver for AMD's GPUs"
32#define KFD_DRIVER_DATE "20141113"
33#define KFD_DRIVER_MAJOR 0
34#define KFD_DRIVER_MINOR 7
35#define KFD_DRIVER_PATCHLEVEL 0
36
37const struct kfd2kgd_calls *kfd2kgd;
38static const struct kgd2kfd_calls kgd2kfd = {
39 .exit = kgd2kfd_exit,
40 .probe = kgd2kfd_probe,
41 .device_init = kgd2kfd_device_init,
42 .device_exit = kgd2kfd_device_exit,
43 .interrupt = kgd2kfd_interrupt,
44 .suspend = kgd2kfd_suspend,
45 .resume = kgd2kfd_resume,
46};
47
Ben Goz31c21fe2014-07-17 00:48:28 +030048int sched_policy = KFD_SCHED_POLICY_HWS;
49module_param(sched_policy, int, 0444);
50MODULE_PARM_DESC(sched_policy,
51 "Kernel cmdline parameter that defines the amdkfd scheduling policy");
52
Oded Gabbay19f6d2a2014-07-16 23:25:31 +030053int max_num_of_processes = KFD_MAX_NUM_OF_PROCESSES_DEFAULT;
54module_param(max_num_of_processes, int, 0444);
55MODULE_PARM_DESC(max_num_of_processes,
56 "Kernel cmdline parameter that defines the amdkfd maximum number of supported processes");
57
58int max_num_of_queues_per_process = KFD_MAX_NUM_OF_QUEUES_PER_PROCESS_DEFAULT;
59module_param(max_num_of_queues_per_process, int, 0444);
60MODULE_PARM_DESC(max_num_of_queues_per_process,
61 "Kernel cmdline parameter that defines the amdkfd maximum number of supported queues per process");
62
Oded Gabbay4a488a72014-07-16 21:08:55 +030063bool kgd2kfd_init(unsigned interface_version,
64 const struct kfd2kgd_calls *f2g,
65 const struct kgd2kfd_calls **g2f)
66{
67 /*
68 * Only one interface version is supported,
69 * no kfd/kgd version skew allowed.
70 */
71 if (interface_version != KFD_INTERFACE_VERSION)
72 return false;
73
Oded Gabbay19f6d2a2014-07-16 23:25:31 +030074 /* Protection against multiple amd kgd loads */
75 if (kfd2kgd)
76 return true;
77
Oded Gabbay4a488a72014-07-16 21:08:55 +030078 kfd2kgd = f2g;
79 *g2f = &kgd2kfd;
80
81 return true;
82}
83EXPORT_SYMBOL(kgd2kfd_init);
84
85void kgd2kfd_exit(void)
86{
87}
88
89static int __init kfd_module_init(void)
90{
91 int err;
92
Oded Gabbay19f6d2a2014-07-16 23:25:31 +030093 kfd2kgd = NULL;
94
95 /* Verify module parameters */
Ben Goz31c21fe2014-07-17 00:48:28 +030096 if ((sched_policy < KFD_SCHED_POLICY_HWS) ||
97 (sched_policy > KFD_SCHED_POLICY_NO_HWS)) {
98 pr_err("kfd: sched_policy has invalid value\n");
99 return -1;
100 }
101
102 /* Verify module parameters */
Oded Gabbay19f6d2a2014-07-16 23:25:31 +0300103 if ((max_num_of_processes < 0) ||
104 (max_num_of_processes > KFD_MAX_NUM_OF_PROCESSES)) {
105 pr_err("kfd: max_num_of_processes must be between 0 to KFD_MAX_NUM_OF_PROCESSES\n");
106 return -1;
107 }
108
109 if ((max_num_of_queues_per_process < 0) ||
110 (max_num_of_queues_per_process >
111 KFD_MAX_NUM_OF_QUEUES_PER_PROCESS)) {
112 pr_err("kfd: max_num_of_queues_per_process must be between 0 to KFD_MAX_NUM_OF_QUEUES_PER_PROCESS\n");
113 return -1;
114 }
115
116 err = kfd_pasid_init();
117 if (err < 0)
118 goto err_pasid;
119
Oded Gabbay4a488a72014-07-16 21:08:55 +0300120 err = kfd_chardev_init();
121 if (err < 0)
122 goto err_ioctl;
123
Evgeny Pinchuk5b5c4e42014-07-16 21:22:32 +0300124 err = kfd_topology_init();
125 if (err < 0)
126 goto err_topology;
127
Oded Gabbay19f6d2a2014-07-16 23:25:31 +0300128 kfd_process_create_wq();
129
Oded Gabbay4a488a72014-07-16 21:08:55 +0300130 dev_info(kfd_device, "Initialized module\n");
131
132 return 0;
133
Evgeny Pinchuk5b5c4e42014-07-16 21:22:32 +0300134err_topology:
135 kfd_chardev_exit();
Oded Gabbay4a488a72014-07-16 21:08:55 +0300136err_ioctl:
Oded Gabbay19f6d2a2014-07-16 23:25:31 +0300137 kfd_pasid_exit();
138err_pasid:
Oded Gabbay4a488a72014-07-16 21:08:55 +0300139 return err;
140}
141
142static void __exit kfd_module_exit(void)
143{
Oded Gabbay19f6d2a2014-07-16 23:25:31 +0300144 kfd_process_destroy_wq();
Evgeny Pinchuk5b5c4e42014-07-16 21:22:32 +0300145 kfd_topology_shutdown();
Oded Gabbay4a488a72014-07-16 21:08:55 +0300146 kfd_chardev_exit();
Oded Gabbay19f6d2a2014-07-16 23:25:31 +0300147 kfd_pasid_exit();
Oded Gabbay4a488a72014-07-16 21:08:55 +0300148 dev_info(kfd_device, "Removed module\n");
149}
150
151module_init(kfd_module_init);
152module_exit(kfd_module_exit);
153
154MODULE_AUTHOR(KFD_DRIVER_AUTHOR);
155MODULE_DESCRIPTION(KFD_DRIVER_DESC);
156MODULE_LICENSE("GPL and additional rights");
157MODULE_VERSION(__stringify(KFD_DRIVER_MAJOR) "."
158 __stringify(KFD_DRIVER_MINOR) "."
159 __stringify(KFD_DRIVER_PATCHLEVEL));