habanalabs_drv.c 13.1 KB
Newer Older
O
Oded Gabbay 已提交
1 2 3 4 5 6 7 8
// SPDX-License-Identifier: GPL-2.0

/*
 * Copyright 2016-2019 HabanaLabs, Ltd.
 * All Rights Reserved.
 *
 */

9 10
#define pr_fmt(fmt)		"habanalabs: " fmt

O
Oded Gabbay 已提交
11 12 13
#include "habanalabs.h"

#include <linux/pci.h>
14
#include <linux/aer.h>
O
Oded Gabbay 已提交
15 16 17 18 19 20 21 22 23 24 25 26
#include <linux/module.h>

#define HL_DRIVER_AUTHOR	"HabanaLabs Kernel Driver Team"

#define HL_DRIVER_DESC		"Driver for HabanaLabs's AI Accelerators"

MODULE_AUTHOR(HL_DRIVER_AUTHOR);
MODULE_DESCRIPTION(HL_DRIVER_DESC);
MODULE_LICENSE("GPL v2");

static int hl_major;
static struct class *hl_class;
27 28
static DEFINE_IDR(hl_devs_idr);
static DEFINE_MUTEX(hl_devs_idr_lock);
O
Oded Gabbay 已提交
29

30 31
static int timeout_locked = 5;
static int reset_on_lockup = 1;
32
static int memory_scrub = 1;
33 34 35 36 37 38 39 40 41

module_param(timeout_locked, int, 0444);
MODULE_PARM_DESC(timeout_locked,
	"Device lockup timeout in seconds (0 = disabled, default 5s)");

module_param(reset_on_lockup, int, 0444);
MODULE_PARM_DESC(reset_on_lockup,
	"Do device reset on lockup (0 = no, 1 = yes, default yes)");

42 43 44 45
module_param(memory_scrub, int, 0444);
MODULE_PARM_DESC(memory_scrub,
	"Scrub device memory in various states (0 = no, 1 = yes, default yes)");

O
Oded Gabbay 已提交
46 47 48
#define PCI_VENDOR_ID_HABANALABS	0x1da3

#define PCI_IDS_GOYA			0x0001
49
#define PCI_IDS_GAUDI			0x1000
O
Oded Gabbay 已提交
50 51 52

static const struct pci_device_id ids[] = {
	{ PCI_DEVICE(PCI_VENDOR_ID_HABANALABS, PCI_IDS_GOYA), },
53
	{ PCI_DEVICE(PCI_VENDOR_ID_HABANALABS, PCI_IDS_GAUDI), },
O
Oded Gabbay 已提交
54 55
	{ 0, }
};
56
MODULE_DEVICE_TABLE(pci, ids);
O
Oded Gabbay 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

/*
 * get_asic_type - translate device id to asic type
 *
 * @device: id of the PCI device
 *
 * Translate device id to asic type.
 * In case of unidentified device, return -1
 */
static enum hl_asic_type get_asic_type(u16 device)
{
	enum hl_asic_type asic_type;

	switch (device) {
	case PCI_IDS_GOYA:
		asic_type = ASIC_GOYA;
		break;
74 75 76
	case PCI_IDS_GAUDI:
		asic_type = ASIC_GAUDI;
		break;
O
Oded Gabbay 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	default:
		asic_type = ASIC_INVALID;
		break;
	}

	return asic_type;
}

/*
 * hl_device_open - open function for habanalabs device
 *
 * @inode: pointer to inode structure
 * @filp: pointer to file structure
 *
 * Called when process opens an habanalabs device.
 */
int hl_device_open(struct inode *inode, struct file *filp)
{
	struct hl_device *hdev;
	struct hl_fpriv *hpriv;
97
	int rc;
O
Oded Gabbay 已提交
98 99 100 101 102 103 104 105 106 107 108

	mutex_lock(&hl_devs_idr_lock);
	hdev = idr_find(&hl_devs_idr, iminor(inode));
	mutex_unlock(&hl_devs_idr_lock);

	if (!hdev) {
		pr_err("Couldn't find device %d:%d\n",
			imajor(inode), iminor(inode));
		return -ENXIO;
	}

109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
	hpriv = kzalloc(sizeof(*hpriv), GFP_KERNEL);
	if (!hpriv)
		return -ENOMEM;

	hpriv->hdev = hdev;
	filp->private_data = hpriv;
	hpriv->filp = filp;
	mutex_init(&hpriv->restore_phase_mutex);
	kref_init(&hpriv->refcount);
	nonseekable_open(inode, filp);

	hl_cb_mgr_init(&hpriv->cb_mgr);
	hl_ctx_mgr_init(&hpriv->ctx_mgr);

	hpriv->taskpid = find_get_pid(current->pid);

	mutex_lock(&hdev->fpriv_list_lock);
126

127
	if (hl_device_disabled_or_in_reset(hdev)) {
128
		dev_err_ratelimited(hdev->dev,
129
			"Can't open %s because it is disabled or in reset\n",
130
			dev_name(hdev->dev));
131 132
		rc = -EPERM;
		goto out_err;
133 134
	}

135 136 137 138
	if (hdev->in_debug) {
		dev_err_ratelimited(hdev->dev,
			"Can't open %s because it is being debugged by another user\n",
			dev_name(hdev->dev));
139 140
		rc = -EPERM;
		goto out_err;
141 142
	}

143
	if (hdev->compute_ctx) {
144
		dev_dbg_ratelimited(hdev->dev,
145
			"Can't open %s because another user is working on it\n",
146
			dev_name(hdev->dev));
147 148
		rc = -EBUSY;
		goto out_err;
149
	}
O
Oded Gabbay 已提交
150

151 152
	rc = hl_ctx_create(hdev, hpriv);
	if (rc) {
153
		dev_err(hdev->dev, "Failed to create context %d\n", rc);
154 155 156
		goto out_err;
	}

157 158 159 160
	/* Device is IDLE at this point so it is legal to change PLLs.
	 * There is no need to check anything because if the PLL is
	 * already HIGH, the set function will return without doing
	 * anything
161 162 163
	 */
	hl_device_set_frequency(hdev, PLL_HIGH);

164 165 166
	list_add(&hpriv->dev_node, &hdev->fpriv_list);
	mutex_unlock(&hdev->fpriv_list_lock);

O
Oded Gabbay 已提交
167 168
	hl_debugfs_add_file(hpriv);

O
Oded Gabbay 已提交
169
	return 0;
170 171

out_err:
172 173
	mutex_unlock(&hdev->fpriv_list_lock);

174
	hl_cb_mgr_fini(hpriv->hdev, &hpriv->cb_mgr);
175 176
	hl_ctx_mgr_fini(hpriv->hdev, &hpriv->ctx_mgr);
	filp->private_data = NULL;
177
	mutex_destroy(&hpriv->restore_phase_mutex);
178
	put_pid(hpriv->taskpid);
179

180
	kfree(hpriv);
181

182
	return rc;
O
Oded Gabbay 已提交
183 184
}

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
int hl_device_open_ctrl(struct inode *inode, struct file *filp)
{
	struct hl_device *hdev;
	struct hl_fpriv *hpriv;
	int rc;

	mutex_lock(&hl_devs_idr_lock);
	hdev = idr_find(&hl_devs_idr, iminor(inode));
	mutex_unlock(&hl_devs_idr_lock);

	if (!hdev) {
		pr_err("Couldn't find device %d:%d\n",
			imajor(inode), iminor(inode));
		return -ENXIO;
	}

	hpriv = kzalloc(sizeof(*hpriv), GFP_KERNEL);
	if (!hpriv)
		return -ENOMEM;

	mutex_lock(&hdev->fpriv_list_lock);

	if (hl_device_disabled_or_in_reset(hdev)) {
		dev_err_ratelimited(hdev->dev_ctrl,
			"Can't open %s because it is disabled or in reset\n",
			dev_name(hdev->dev_ctrl));
		rc = -EPERM;
		goto out_err;
	}

	list_add(&hpriv->dev_node, &hdev->fpriv_list);
	mutex_unlock(&hdev->fpriv_list_lock);

	hpriv->hdev = hdev;
	filp->private_data = hpriv;
	hpriv->filp = filp;
	hpriv->is_control = true;
	nonseekable_open(inode, filp);

	hpriv->taskpid = find_get_pid(current->pid);

	return 0;

out_err:
	mutex_unlock(&hdev->fpriv_list_lock);
	kfree(hpriv);
	return rc;
}

234 235 236 237 238 239 240
static void set_driver_behavior_per_device(struct hl_device *hdev)
{
	hdev->mmu_enable = 1;
	hdev->cpu_enable = 1;
	hdev->fw_loading = 1;
	hdev->cpu_queues_enable = 1;
	hdev->heartbeat = 1;
241
	hdev->clock_gating_mask = ULONG_MAX;
242 243

	hdev->reset_pcilink = 0;
244 245 246 247 248
	hdev->axi_drain = 0;
	hdev->sram_scrambler_enable = 1;
	hdev->dram_scrambler_enable = 1;
	hdev->bmc_enable = 1;
	hdev->hard_reset_on_fw_events = 1;
249
	hdev->fw_loading = FW_TYPE_ALL_TYPES;
250 251
}

O
Oded Gabbay 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
/*
 * create_hdev - create habanalabs device instance
 *
 * @dev: will hold the pointer to the new habanalabs device structure
 * @pdev: pointer to the pci device
 * @asic_type: in case of simulator device, which device is it
 * @minor: in case of simulator device, the minor of the device
 *
 * Allocate memory for habanalabs device and initialize basic fields
 * Identify the ASIC type
 * Allocate ID (minor) for the device (only for real devices)
 */
int create_hdev(struct hl_device **dev, struct pci_dev *pdev,
		enum hl_asic_type asic_type, int minor)
{
	struct hl_device *hdev;
268
	int rc, main_id, ctrl_id = 0;
O
Oded Gabbay 已提交
269 270 271 272 273 274 275

	*dev = NULL;

	hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
	if (!hdev)
		return -ENOMEM;

276 277 278 279 280 281 282 283 284 285 286 287 288 289
	/* First, we must find out which ASIC are we handling. This is needed
	 * to configure the behavior of the driver (kernel parameters)
	 */
	if (pdev) {
		hdev->asic_type = get_asic_type(pdev->device);
		if (hdev->asic_type == ASIC_INVALID) {
			dev_err(&pdev->dev, "Unsupported ASIC\n");
			rc = -ENODEV;
			goto free_hdev;
		}
	} else {
		hdev->asic_type = asic_type;
	}

O
Oded Gabbay 已提交
290
	hdev->major = hl_major;
291
	hdev->reset_on_lockup = reset_on_lockup;
292
	hdev->memory_scrub = memory_scrub;
293
	hdev->pldm = 0;
O
Oded Gabbay 已提交
294

295
	set_driver_behavior_per_device(hdev);
296

297 298 299 300 301
	if (timeout_locked)
		hdev->timeout_jiffies = msecs_to_jiffies(timeout_locked * 1000);
	else
		hdev->timeout_jiffies = MAX_SCHEDULE_TIMEOUT;

O
Oded Gabbay 已提交
302 303 304
	hdev->disabled = true;
	hdev->pdev = pdev; /* can be NULL in case of simulator device */

305 306 307
	/* Set default DMA mask to 32 bits */
	hdev->dma_mask = 32;

O
Oded Gabbay 已提交
308 309
	mutex_lock(&hl_devs_idr_lock);

310 311 312 313
	/* Always save 2 numbers, 1 for main device and 1 for control.
	 * They must be consecutive
	 */
	main_id = idr_alloc(&hl_devs_idr, hdev, 0, HL_MAX_MINORS,
O
Oded Gabbay 已提交
314 315
				GFP_KERNEL);

316 317 318
	if (main_id >= 0)
		ctrl_id = idr_alloc(&hl_devs_idr, hdev, main_id + 1,
					main_id + 2, GFP_KERNEL);
O
Oded Gabbay 已提交
319 320 321

	mutex_unlock(&hl_devs_idr_lock);

322 323
	if ((main_id < 0) || (ctrl_id < 0)) {
		if ((main_id == -ENOSPC) || (ctrl_id == -ENOSPC))
O
Oded Gabbay 已提交
324
			pr_err("too many devices in the system\n");
325 326 327 328 329

		if (main_id >= 0) {
			mutex_lock(&hl_devs_idr_lock);
			idr_remove(&hl_devs_idr, main_id);
			mutex_unlock(&hl_devs_idr_lock);
O
Oded Gabbay 已提交
330
		}
331 332

		rc = -EBUSY;
O
Oded Gabbay 已提交
333 334 335
		goto free_hdev;
	}

336 337
	hdev->id = main_id;
	hdev->id_control = ctrl_id;
O
Oded Gabbay 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358

	*dev = hdev;

	return 0;

free_hdev:
	kfree(hdev);
	return rc;
}

/*
 * destroy_hdev - destroy habanalabs device instance
 *
 * @dev: pointer to the habanalabs device structure
 *
 */
void destroy_hdev(struct hl_device *hdev)
{
	/* Remove device from the device list */
	mutex_lock(&hl_devs_idr_lock);
	idr_remove(&hl_devs_idr, hdev->id);
359
	idr_remove(&hl_devs_idr, hdev->id_control);
O
Oded Gabbay 已提交
360 361 362 363 364 365 366
	mutex_unlock(&hl_devs_idr_lock);

	kfree(hdev);
}

static int hl_pmops_suspend(struct device *dev)
{
C
Chuhong Yuan 已提交
367
	struct hl_device *hdev = dev_get_drvdata(dev);
O
Oded Gabbay 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380

	pr_debug("Going to suspend PCI device\n");

	if (!hdev) {
		pr_err("device pointer is NULL in suspend\n");
		return 0;
	}

	return hl_device_suspend(hdev);
}

static int hl_pmops_resume(struct device *dev)
{
C
Chuhong Yuan 已提交
381
	struct hl_device *hdev = dev_get_drvdata(dev);
O
Oded Gabbay 已提交
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412

	pr_debug("Going to resume PCI device\n");

	if (!hdev) {
		pr_err("device pointer is NULL in resume\n");
		return 0;
	}

	return hl_device_resume(hdev);
}

/*
 * hl_pci_probe - probe PCI habanalabs devices
 *
 * @pdev: pointer to pci device
 * @id: pointer to pci device id structure
 *
 * Standard PCI probe function for habanalabs device.
 * Create a new habanalabs device and initialize it according to the
 * device's type
 */
static int hl_pci_probe(struct pci_dev *pdev,
				const struct pci_device_id *id)
{
	struct hl_device *hdev;
	int rc;

	dev_info(&pdev->dev, HL_NAME
		 " device found [%04x:%04x] (rev %x)\n",
		 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);

413
	rc = create_hdev(&hdev, pdev, ASIC_INVALID, -1);
O
Oded Gabbay 已提交
414 415 416 417 418
	if (rc)
		return rc;

	pci_set_drvdata(pdev, hdev);

419 420
	pci_enable_pcie_error_reporting(pdev);

O
Oded Gabbay 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
	rc = hl_device_init(hdev, hl_class);
	if (rc) {
		dev_err(&pdev->dev, "Fatal error during habanalabs device init\n");
		rc = -ENODEV;
		goto disable_device;
	}

	return 0;

disable_device:
	pci_set_drvdata(pdev, NULL);
	destroy_hdev(hdev);

	return rc;
}

/*
 * hl_pci_remove - remove PCI habanalabs devices
 *
 * @pdev: pointer to pci device
 *
 * Standard PCI remove function for habanalabs device
 */
static void hl_pci_remove(struct pci_dev *pdev)
{
	struct hl_device *hdev;

	hdev = pci_get_drvdata(pdev);
	if (!hdev)
		return;

	hl_device_fini(hdev);
453
	pci_disable_pcie_error_reporting(pdev);
O
Oded Gabbay 已提交
454 455 456 457
	pci_set_drvdata(pdev, NULL);
	destroy_hdev(hdev);
}

458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
/**
 * hl_pci_err_detected - a PCI bus error detected on this device
 *
 * @pdev: pointer to pci device
 * @state: PCI error type
 *
 * Called by the PCI subsystem whenever a non-correctable
 * PCI bus error is detected
 */
static pci_ers_result_t
hl_pci_err_detected(struct pci_dev *pdev, pci_channel_state_t state)
{
	struct hl_device *hdev = pci_get_drvdata(pdev);
	enum pci_ers_result result;

	switch (state) {
	case pci_channel_io_normal:
		return PCI_ERS_RESULT_CAN_RECOVER;

	case pci_channel_io_frozen:
		dev_warn(hdev->dev, "frozen state error detected\n");
		result = PCI_ERS_RESULT_NEED_RESET;
		break;

	case pci_channel_io_perm_failure:
		dev_warn(hdev->dev, "failure state error detected\n");
		result = PCI_ERS_RESULT_DISCONNECT;
		break;

	default:
		result = PCI_ERS_RESULT_NONE;
	}

	hdev->asic_funcs->halt_engines(hdev, true);

	return result;
}

/**
 * hl_pci_err_resume - resume after a PCI slot reset
 *
 * @pdev: pointer to pci device
 *
 */
static void hl_pci_err_resume(struct pci_dev *pdev)
{
	struct hl_device *hdev = pci_get_drvdata(pdev);

	dev_warn(hdev->dev, "Resuming device after PCI slot reset\n");
	hl_device_resume(hdev);
}

/**
 * hl_pci_err_slot_reset - a PCI slot reset has just happened
 *
 * @pdev: pointer to pci device
 *
 * Determine if the driver can recover from the PCI slot reset
 */
static pci_ers_result_t hl_pci_err_slot_reset(struct pci_dev *pdev)
{
	return PCI_ERS_RESULT_RECOVERED;
}

O
Oded Gabbay 已提交
522 523 524 525 526
static const struct dev_pm_ops hl_pm_ops = {
	.suspend = hl_pmops_suspend,
	.resume = hl_pmops_resume,
};

527 528 529 530 531 532
static const struct pci_error_handlers hl_pci_err_handler = {
	.error_detected = hl_pci_err_detected,
	.slot_reset = hl_pci_err_slot_reset,
	.resume = hl_pci_err_resume,
};

O
Oded Gabbay 已提交
533 534 535 536 537 538
static struct pci_driver hl_pci_driver = {
	.name = HL_NAME,
	.id_table = ids,
	.probe = hl_pci_probe,
	.remove = hl_pci_remove,
	.driver.pm = &hl_pm_ops,
539
	.err_handler = &hl_pci_err_handler,
O
Oded Gabbay 已提交
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
};

/*
 * hl_init - Initialize the habanalabs kernel driver
 */
static int __init hl_init(void)
{
	int rc;
	dev_t dev;

	pr_info("loading driver\n");

	rc = alloc_chrdev_region(&dev, 0, HL_MAX_MINORS, HL_NAME);
	if (rc < 0) {
		pr_err("unable to get major\n");
		return rc;
	}

	hl_major = MAJOR(dev);

	hl_class = class_create(THIS_MODULE, HL_NAME);
	if (IS_ERR(hl_class)) {
		pr_err("failed to allocate class\n");
		rc = PTR_ERR(hl_class);
		goto remove_major;
	}

O
Oded Gabbay 已提交
567 568
	hl_debugfs_init();

O
Oded Gabbay 已提交
569 570 571
	rc = pci_register_driver(&hl_pci_driver);
	if (rc) {
		pr_err("failed to register pci device\n");
O
Oded Gabbay 已提交
572
		goto remove_debugfs;
O
Oded Gabbay 已提交
573 574 575 576 577 578
	}

	pr_debug("driver loaded\n");

	return 0;

O
Oded Gabbay 已提交
579 580
remove_debugfs:
	hl_debugfs_fini();
O
Oded Gabbay 已提交
581 582 583 584 585 586 587 588 589 590 591 592 593
	class_destroy(hl_class);
remove_major:
	unregister_chrdev_region(MKDEV(hl_major, 0), HL_MAX_MINORS);
	return rc;
}

/*
 * hl_exit - Release all resources of the habanalabs kernel driver
 */
static void __exit hl_exit(void)
{
	pci_unregister_driver(&hl_pci_driver);

O
Oded Gabbay 已提交
594 595 596 597 598 599 600
	/*
	 * Removing debugfs must be after all devices or simulator devices
	 * have been removed because otherwise we get a bug in the
	 * debugfs module for referencing NULL objects
	 */
	hl_debugfs_fini();

O
Oded Gabbay 已提交
601 602 603 604 605 606 607 608 609 610
	class_destroy(hl_class);
	unregister_chrdev_region(MKDEV(hl_major, 0), HL_MAX_MINORS);

	idr_destroy(&hl_devs_idr);

	pr_debug("driver removed\n");
}

module_init(hl_init);
module_exit(hl_exit);