Thomas Gleixner | c82ee6d | 2019-05-19 15:51:48 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Adaptec AAC series RAID controller driver |
Alan Cox | fa195af | 2008-10-27 15:16:36 +0000 | [diff] [blame] | 4 | * (c) Copyright 2001 Red Hat Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * based on the old aacraid driver that is.. |
| 7 | * Adaptec aacraid device driver for Linux. |
| 8 | * |
Mahesh Rajashekhara | e8b12f0 | 2011-03-17 02:10:32 -0700 | [diff] [blame] | 9 | * Copyright (c) 2000-2010 Adaptec, Inc. |
Raghava Aditya Renukunta | f4babba | 2017-02-02 15:53:36 -0800 | [diff] [blame] | 10 | * 2010-2015 PMC-Sierra, Inc. (aacraid@pmc-sierra.com) |
| 11 | * 2016-2017 Microsemi Corp. (aacraid@microsemi.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * Module Name: |
| 14 | * rkt.c |
| 15 | * |
| 16 | * Abstract: Hardware miniport for Drawbridge specific hardware functions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/blkdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | #include <scsi/scsi_host.h> |
| 22 | |
| 23 | #include "aacraid.h" |
| 24 | |
Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 25 | #define AAC_NUM_IO_FIB_RKT (246 - AAC_NUM_MGT_FIB) |
| 26 | |
| 27 | /** |
| 28 | * aac_rkt_select_comm - Select communications method |
| 29 | * @dev: Adapter |
| 30 | * @comm: communications method |
| 31 | */ |
| 32 | |
| 33 | static int aac_rkt_select_comm(struct aac_dev *dev, int comm) |
| 34 | { |
| 35 | int retval; |
Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 36 | retval = aac_rx_select_comm(dev, comm); |
| 37 | if (comm == AAC_COMM_MESSAGE) { |
| 38 | /* |
| 39 | * FIB Setup has already been done, but we can minimize the |
| 40 | * damage by at least ensuring the OS never issues more |
| 41 | * commands than we can handle. The Rocket adapters currently |
| 42 | * can only handle 246 commands and 8 AIFs at the same time, |
| 43 | * and in fact do notify us accordingly if we negotiate the |
| 44 | * FIB size. The problem that causes us to add this check is |
| 45 | * to ensure that we do not overdo it with the adapter when a |
| 46 | * hard coded FIB override is being utilized. This special |
| 47 | * case warrants this half baked, but convenient, check here. |
| 48 | */ |
| 49 | if (dev->scsi_host_ptr->can_queue > AAC_NUM_IO_FIB_RKT) { |
Raghava Aditya Renukunta | d1ef4da | 2017-02-02 15:53:17 -0800 | [diff] [blame] | 50 | dev->init->r7.max_io_commands = |
Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 51 | cpu_to_le32(AAC_NUM_IO_FIB_RKT + AAC_NUM_MGT_FIB); |
| 52 | dev->scsi_host_ptr->can_queue = AAC_NUM_IO_FIB_RKT; |
| 53 | } |
| 54 | } |
| 55 | return retval; |
| 56 | } |
| 57 | |
Mark Haverkamp | 76a7f8f | 2006-09-19 09:00:02 -0700 | [diff] [blame] | 58 | /** |
| 59 | * aac_rkt_ioremap |
| 60 | * @size: mapping resize request |
| 61 | * |
| 62 | */ |
| 63 | static int aac_rkt_ioremap(struct aac_dev * dev, u32 size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Mark Haverkamp | 76a7f8f | 2006-09-19 09:00:02 -0700 | [diff] [blame] | 65 | if (!size) { |
| 66 | iounmap(dev->regs.rkt); |
| 67 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
Ben Collins | ff08784 | 2012-06-11 14:05:02 -0400 | [diff] [blame] | 69 | dev->base = dev->regs.rkt = ioremap(dev->base_start, size); |
Mark Haverkamp | 76a7f8f | 2006-09-19 09:00:02 -0700 | [diff] [blame] | 70 | if (dev->base == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | return -1; |
Mark Haverkamp | 76a7f8f | 2006-09-19 09:00:02 -0700 | [diff] [blame] | 72 | dev->IndexRegs = &dev->regs.rkt->IndexRegs; |
Mark Haverkamp | 8c23cd7 | 2006-08-08 08:52:14 -0700 | [diff] [blame] | 73 | return 0; |
| 74 | } |
| 75 | |
Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 76 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | * aac_rkt_init - initialize an i960 based AAC card |
| 78 | * @dev: device to configure |
| 79 | * |
| 80 | * Allocate and set up resources for the i960 based AAC variants. The |
| 81 | * device_interface in the commregion will be allocated and linked |
| 82 | * to the comm region. |
| 83 | */ |
| 84 | |
| 85 | int aac_rkt_init(struct aac_dev *dev) |
| 86 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* |
| 88 | * Fill in the function dispatch table. |
| 89 | */ |
Mark Haverkamp | 76a7f8f | 2006-09-19 09:00:02 -0700 | [diff] [blame] | 90 | dev->a_ops.adapter_ioremap = aac_rkt_ioremap; |
Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 91 | dev->a_ops.adapter_comm = aac_rkt_select_comm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 93 | return _aac_rx_init(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |