1d87f36a0SRajneesh Bhardwaj // SPDX-License-Identifier: GPL-2.0 OR MIT
24a488a7aSOded Gabbay /*
3d87f36a0SRajneesh Bhardwaj * Copyright 2014-2022 Advanced Micro Devices, Inc.
44a488a7aSOded Gabbay *
54a488a7aSOded Gabbay * Permission is hereby granted, free of charge, to any person obtaining a
64a488a7aSOded Gabbay * copy of this software and associated documentation files (the "Software"),
74a488a7aSOded Gabbay * to deal in the Software without restriction, including without limitation
84a488a7aSOded Gabbay * the rights to use, copy, modify, merge, publish, distribute, sublicense,
94a488a7aSOded Gabbay * and/or sell copies of the Software, and to permit persons to whom the
104a488a7aSOded Gabbay * Software is furnished to do so, subject to the following conditions:
114a488a7aSOded Gabbay *
124a488a7aSOded Gabbay * The above copyright notice and this permission notice shall be included in
134a488a7aSOded Gabbay * all copies or substantial portions of the Software.
144a488a7aSOded Gabbay *
154a488a7aSOded Gabbay * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
164a488a7aSOded Gabbay * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
174a488a7aSOded Gabbay * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
184a488a7aSOded Gabbay * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
194a488a7aSOded Gabbay * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
204a488a7aSOded Gabbay * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
214a488a7aSOded Gabbay * OTHER DEALINGS IN THE SOFTWARE.
224a488a7aSOded Gabbay */
234a488a7aSOded Gabbay
244a488a7aSOded Gabbay #include <linux/sched.h>
254a488a7aSOded Gabbay #include <linux/device.h>
264a488a7aSOded Gabbay #include "kfd_priv.h"
272d3d25b6SAmber Lin #include "amdgpu_amdkfd.h"
284a488a7aSOded Gabbay
kfd_init(void)2904d5e276SAmber Lin static int kfd_init(void)
304a488a7aSOded Gabbay {
314a488a7aSOded Gabbay int err;
324a488a7aSOded Gabbay
3319f6d2a6SOded Gabbay /* Verify module parameters */
3431c21fecSBen Goz if ((sched_policy < KFD_SCHED_POLICY_HWS) ||
3531c21fecSBen Goz (sched_policy > KFD_SCHED_POLICY_NO_HWS)) {
3679775b62SKent Russell pr_err("sched_policy has invalid value\n");
3704d5e276SAmber Lin return -EINVAL;
3831c21fecSBen Goz }
3931c21fecSBen Goz
4031c21fecSBen Goz /* Verify module parameters */
41ca400b2aSOded Gabbay if ((max_num_of_queues_per_device < 1) ||
42b8cbab04SOded Gabbay (max_num_of_queues_per_device >
43b8cbab04SOded Gabbay KFD_MAX_NUM_OF_QUEUES_PER_DEVICE)) {
4479775b62SKent Russell pr_err("max_num_of_queues_per_device must be between 1 to KFD_MAX_NUM_OF_QUEUES_PER_DEVICE\n");
4504d5e276SAmber Lin return -EINVAL;
4619f6d2a6SOded Gabbay }
4719f6d2a6SOded Gabbay
484a488a7aSOded Gabbay err = kfd_chardev_init();
494a488a7aSOded Gabbay if (err < 0)
504a488a7aSOded Gabbay goto err_ioctl;
514a488a7aSOded Gabbay
525b5c4e40SEvgeny Pinchuk err = kfd_topology_init();
535b5c4e40SEvgeny Pinchuk if (err < 0)
545b5c4e40SEvgeny Pinchuk goto err_topology;
555b5c4e40SEvgeny Pinchuk
561679ae8fSFelix Kuehling err = kfd_process_create_wq();
571679ae8fSFelix Kuehling if (err < 0)
581679ae8fSFelix Kuehling goto err_create_wq;
5919f6d2a6SOded Gabbay
60de9f26bbSKent Russell /* Ignore the return value, so that we can continue
61de9f26bbSKent Russell * to init the KFD, even if procfs isn't craated
62de9f26bbSKent Russell */
63de9f26bbSKent Russell kfd_procfs_init();
64de9f26bbSKent Russell
65851a645eSFelix Kuehling kfd_debugfs_init();
66851a645eSFelix Kuehling
674a488a7aSOded Gabbay return 0;
684a488a7aSOded Gabbay
691679ae8fSFelix Kuehling err_create_wq:
701679ae8fSFelix Kuehling kfd_topology_shutdown();
715b5c4e40SEvgeny Pinchuk err_topology:
725b5c4e40SEvgeny Pinchuk kfd_chardev_exit();
734a488a7aSOded Gabbay err_ioctl:
74c7651b73SFelix Kuehling pr_err("KFD is disabled due to module initialization failure\n");
754a488a7aSOded Gabbay return err;
764a488a7aSOded Gabbay }
774a488a7aSOded Gabbay
kfd_exit(void)7804d5e276SAmber Lin static void kfd_exit(void)
794a488a7aSOded Gabbay {
80*20bc9f76SDavid Belanger kfd_cleanup_processes();
81851a645eSFelix Kuehling kfd_debugfs_fini();
8219f6d2a6SOded Gabbay kfd_process_destroy_wq();
83de9f26bbSKent Russell kfd_procfs_shutdown();
845b5c4e40SEvgeny Pinchuk kfd_topology_shutdown();
854a488a7aSOded Gabbay kfd_chardev_exit();
864a488a7aSOded Gabbay }
874a488a7aSOded Gabbay
kgd2kfd_init(void)8863617d8bSColin Ian King int kgd2kfd_init(void)
8904d5e276SAmber Lin {
90308176d6SAmber Lin return kfd_init();
9104d5e276SAmber Lin }
9204d5e276SAmber Lin
kgd2kfd_exit(void)9304d5e276SAmber Lin void kgd2kfd_exit(void)
9404d5e276SAmber Lin {
9504d5e276SAmber Lin kfd_exit();
9604d5e276SAmber Lin }
97