mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	[SCSI] pm8001: add SAS/SATA HBA driver
This driver supports PMC-Sierra PCIe SAS/SATA 8x6G SPC 8001 chip based host adapters. Signed-off-by: Jack Wang <jack_wang@usish.com> Signed-off-by: Lindar Liu <lindar_liu@usish.com> Signed-off-by: Tom Peng <tom_peng@usish.com> Signed-off-by: Kevin Ao <aoqingyun@usish.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
		
							parent
							
								
									35e6601903
								
							
						
					
					
						commit
						dbf9bfe615
					
				
					 14 changed files with 8725 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -4116,6 +4116,13 @@ W:	http://www.pmc-sierra.com/
 | 
			
		|||
S:	Supported
 | 
			
		||||
F:	drivers/scsi/pmcraid.*
 | 
			
		||||
 | 
			
		||||
PMC SIERRA PM8001 DRIVER
 | 
			
		||||
M:	jack_wang@usish.com
 | 
			
		||||
M:	lindar_liu@usish.com
 | 
			
		||||
L:	linux-scsi@vger.kernel.org
 | 
			
		||||
S:	Supported
 | 
			
		||||
F:	drivers/scsi/pm8001/
 | 
			
		||||
 | 
			
		||||
POSIX CLOCKS and TIMERS
 | 
			
		||||
M:	Thomas Gleixner <tglx@linutronix.de>
 | 
			
		||||
S:	Supported
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1818,6 +1818,14 @@ config SCSI_PMCRAID
 | 
			
		|||
	---help---
 | 
			
		||||
	  This driver supports the PMC SIERRA MaxRAID adapters.
 | 
			
		||||
 | 
			
		||||
config SCSI_PM8001
 | 
			
		||||
	tristate "PMC-Sierra SPC 8001 SAS/SATA Based Host Adapter driver"
 | 
			
		||||
	depends on PCI && SCSI
 | 
			
		||||
	select SCSI_SAS_LIBSAS
 | 
			
		||||
	help
 | 
			
		||||
	  This driver supports PMC-Sierra PCIE SAS/SATA 8x6G SPC 8001 chip
 | 
			
		||||
	  based host adapters.
 | 
			
		||||
 | 
			
		||||
config SCSI_SRP
 | 
			
		||||
	tristate "SCSI RDMA Protocol helper library"
 | 
			
		||||
	depends on SCSI && PCI
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -70,6 +70,7 @@ obj-$(CONFIG_SCSI_AIC79XX)	+= aic7xxx/
 | 
			
		|||
obj-$(CONFIG_SCSI_AACRAID)	+= aacraid/
 | 
			
		||||
obj-$(CONFIG_SCSI_AIC7XXX_OLD)	+= aic7xxx_old.o
 | 
			
		||||
obj-$(CONFIG_SCSI_AIC94XX)	+= aic94xx/
 | 
			
		||||
obj-$(CONFIG_SCSI_PM8001)	+= pm8001/
 | 
			
		||||
obj-$(CONFIG_SCSI_IPS)		+= ips.o
 | 
			
		||||
obj-$(CONFIG_SCSI_FD_MCS)	+= fd_mcs.o
 | 
			
		||||
obj-$(CONFIG_SCSI_FUTURE_DOMAIN)+= fdomain.o
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										12
									
								
								drivers/scsi/pm8001/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								drivers/scsi/pm8001/Makefile
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,12 @@
 | 
			
		|||
#
 | 
			
		||||
# Kernel configuration file for the PM8001 SAS/SATA 8x6G based HBA driver
 | 
			
		||||
#
 | 
			
		||||
# Copyright (C) 2008-2009  USI Co., Ltd.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
obj-$(CONFIG_SCSI_PM8001) += pm8001.o
 | 
			
		||||
pm8001-y += pm8001_init.o \
 | 
			
		||||
		pm8001_sas.o  \
 | 
			
		||||
		pm8001_ctl.o  \
 | 
			
		||||
		pm8001_hwi.o
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										89
									
								
								drivers/scsi/pm8001/pm8001_chips.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										89
									
								
								drivers/scsi/pm8001/pm8001_chips.h
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,89 @@
 | 
			
		|||
/*
 | 
			
		||||
 * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (c) 2008-2009 USI Co., Ltd.
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 * 1. Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions, and the following disclaimer,
 | 
			
		||||
 *    without modification.
 | 
			
		||||
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 | 
			
		||||
 *    substantially similar to the "NO WARRANTY" disclaimer below
 | 
			
		||||
 *    ("Disclaimer") and any redistribution must be conditioned upon
 | 
			
		||||
 *    including a substantially similar Disclaimer requirement for further
 | 
			
		||||
 *    binary redistribution.
 | 
			
		||||
 * 3. Neither the names of the above-listed copyright holders nor the names
 | 
			
		||||
 *    of any contributors may be used to endorse or promote products derived
 | 
			
		||||
 *    from this software without specific prior written permission.
 | 
			
		||||
 *
 | 
			
		||||
 * Alternatively, this software may be distributed under the terms of the
 | 
			
		||||
 * GNU General Public License ("GPL") version 2 as published by the Free
 | 
			
		||||
 * Software Foundation.
 | 
			
		||||
 *
 | 
			
		||||
 * NO WARRANTY
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 | 
			
		||||
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 | 
			
		||||
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | 
			
		||||
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 | 
			
		||||
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 | 
			
		||||
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 | 
			
		||||
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 | 
			
		||||
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
			
		||||
 * POSSIBILITY OF SUCH DAMAGES.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef _PM8001_CHIPS_H_
 | 
			
		||||
#define _PM8001_CHIPS_H_
 | 
			
		||||
 | 
			
		||||
static inline u32 pm8001_read_32(void *virt_addr)
 | 
			
		||||
{
 | 
			
		||||
	return *((u32 *)virt_addr);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static inline void pm8001_write_32(void *addr, u32 offset, u32 val)
 | 
			
		||||
{
 | 
			
		||||
	*((u32 *)(addr + offset)) = val;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static inline u32 pm8001_cr32(struct pm8001_hba_info *pm8001_ha, u32 bar,
 | 
			
		||||
		u32 offset)
 | 
			
		||||
{
 | 
			
		||||
	return readl(pm8001_ha->io_mem[bar].memvirtaddr + offset);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static inline void pm8001_cw32(struct pm8001_hba_info *pm8001_ha, u32 bar,
 | 
			
		||||
		u32 addr, u32 val)
 | 
			
		||||
{
 | 
			
		||||
	writel(val, pm8001_ha->io_mem[bar].memvirtaddr + addr);
 | 
			
		||||
}
 | 
			
		||||
static inline u32 pm8001_mr32(void __iomem *addr, u32 offset)
 | 
			
		||||
{
 | 
			
		||||
	return readl(addr + offset);
 | 
			
		||||
}
 | 
			
		||||
static inline void pm8001_mw32(void __iomem *addr, u32 offset, u32 val)
 | 
			
		||||
{
 | 
			
		||||
	writel(val, addr + offset);
 | 
			
		||||
}
 | 
			
		||||
static inline u32 get_pci_bar_index(u32 pcibar)
 | 
			
		||||
{
 | 
			
		||||
		switch (pcibar) {
 | 
			
		||||
		case 0x18:
 | 
			
		||||
		case 0x1C:
 | 
			
		||||
			return 1;
 | 
			
		||||
		case 0x20:
 | 
			
		||||
			return 2;
 | 
			
		||||
		case 0x24:
 | 
			
		||||
			return 3;
 | 
			
		||||
		default:
 | 
			
		||||
			return 0;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#endif  /* _PM8001_CHIPS_H_ */
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										573
									
								
								drivers/scsi/pm8001/pm8001_ctl.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										573
									
								
								drivers/scsi/pm8001/pm8001_ctl.c
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,573 @@
 | 
			
		|||
/*
 | 
			
		||||
 * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (c) 2008-2009 USI Co., Ltd.
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 * 1. Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions, and the following disclaimer,
 | 
			
		||||
 *    without modification.
 | 
			
		||||
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 | 
			
		||||
 *    substantially similar to the "NO WARRANTY" disclaimer below
 | 
			
		||||
 *    ("Disclaimer") and any redistribution must be conditioned upon
 | 
			
		||||
 *    including a substantially similar Disclaimer requirement for further
 | 
			
		||||
 *    binary redistribution.
 | 
			
		||||
 * 3. Neither the names of the above-listed copyright holders nor the names
 | 
			
		||||
 *    of any contributors may be used to endorse or promote products derived
 | 
			
		||||
 *    from this software without specific prior written permission.
 | 
			
		||||
 *
 | 
			
		||||
 * Alternatively, this software may be distributed under the terms of the
 | 
			
		||||
 * GNU General Public License ("GPL") version 2 as published by the Free
 | 
			
		||||
 * Software Foundation.
 | 
			
		||||
 *
 | 
			
		||||
 * NO WARRANTY
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 | 
			
		||||
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 | 
			
		||||
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | 
			
		||||
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 | 
			
		||||
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 | 
			
		||||
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 | 
			
		||||
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 | 
			
		||||
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
			
		||||
 * POSSIBILITY OF SUCH DAMAGES.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
#include <linux/firmware.h>
 | 
			
		||||
#include "pm8001_sas.h"
 | 
			
		||||
#include "pm8001_ctl.h"
 | 
			
		||||
 | 
			
		||||
/* scsi host attributes */
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_mpi_interface_rev_show - MPI interface revision number
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_mpi_interface_rev_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "%d\n",
 | 
			
		||||
		pm8001_ha->main_cfg_tbl.interface_rev);
 | 
			
		||||
}
 | 
			
		||||
static
 | 
			
		||||
DEVICE_ATTR(interface_rev, S_IRUGO, pm8001_ctl_mpi_interface_rev_show, NULL);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_fw_version_show - firmware version
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_fw_version_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x.%02x\n",
 | 
			
		||||
		       (u8)(pm8001_ha->main_cfg_tbl.firmware_rev >> 24),
 | 
			
		||||
		       (u8)(pm8001_ha->main_cfg_tbl.firmware_rev >> 16),
 | 
			
		||||
		       (u8)(pm8001_ha->main_cfg_tbl.firmware_rev >> 8),
 | 
			
		||||
		       (u8)(pm8001_ha->main_cfg_tbl.firmware_rev));
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(fw_version, S_IRUGO, pm8001_ctl_fw_version_show, NULL);
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_max_out_io_show - max outstanding io supported
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_max_out_io_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "%d\n",
 | 
			
		||||
			pm8001_ha->main_cfg_tbl.max_out_io);
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(max_out_io, S_IRUGO, pm8001_ctl_max_out_io_show, NULL);
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_max_devices_show - max devices support
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_max_devices_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "%04d\n",
 | 
			
		||||
			(u16)(pm8001_ha->main_cfg_tbl.max_sgl >> 16));
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(max_devices, S_IRUGO, pm8001_ctl_max_devices_show, NULL);
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_max_sg_list_show - max sg list supported iff not 0.0 for no
 | 
			
		||||
 * hardware limitation
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_max_sg_list_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "%04d\n",
 | 
			
		||||
			pm8001_ha->main_cfg_tbl.max_sgl & 0x0000FFFF);
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(max_sg_list, S_IRUGO, pm8001_ctl_max_sg_list_show, NULL);
 | 
			
		||||
 | 
			
		||||
#define SAS_1_0 0x1
 | 
			
		||||
#define SAS_1_1 0x2
 | 
			
		||||
#define SAS_2_0 0x4
 | 
			
		||||
 | 
			
		||||
static ssize_t
 | 
			
		||||
show_sas_spec_support_status(unsigned int mode, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	ssize_t len = 0;
 | 
			
		||||
 | 
			
		||||
	if (mode & SAS_1_1)
 | 
			
		||||
		len = sprintf(buf, "%s", "SAS1.1");
 | 
			
		||||
	if (mode & SAS_2_0)
 | 
			
		||||
		len += sprintf(buf + len, "%s%s", len ? ", " : "", "SAS2.0");
 | 
			
		||||
	len += sprintf(buf + len, "\n");
 | 
			
		||||
 | 
			
		||||
	return len;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_sas_spec_support_show - sas spec supported
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_sas_spec_support_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	unsigned int mode;
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	mode = (pm8001_ha->main_cfg_tbl.ctrl_cap_flag & 0xfe000000)>>25;
 | 
			
		||||
	return show_sas_spec_support_status(mode, buf);
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(sas_spec_support, S_IRUGO,
 | 
			
		||||
		   pm8001_ctl_sas_spec_support_show, NULL);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_sas_address_show - sas address
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * This is the controller sas address
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_host_sas_address_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "0x%016llx\n",
 | 
			
		||||
			be64_to_cpu(*(__be64 *)pm8001_ha->sas_addr));
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(host_sas_address, S_IRUGO,
 | 
			
		||||
		   pm8001_ctl_host_sas_address_show, NULL);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_logging_level_show - logging level
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read/write' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_logging_level_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "%08xh\n", pm8001_ha->logging_level);
 | 
			
		||||
}
 | 
			
		||||
static ssize_t pm8001_ctl_logging_level_store(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, const char *buf, size_t count)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	int val = 0;
 | 
			
		||||
 | 
			
		||||
	if (sscanf(buf, "%x", &val) != 1)
 | 
			
		||||
		return -EINVAL;
 | 
			
		||||
 | 
			
		||||
	pm8001_ha->logging_level = val;
 | 
			
		||||
	return strlen(buf);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static DEVICE_ATTR(logging_level, S_IRUGO | S_IWUSR,
 | 
			
		||||
	pm8001_ctl_logging_level_show, pm8001_ctl_logging_level_store);
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_aap_log_show - aap1 event log
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_aap_log_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	int i;
 | 
			
		||||
#define AAP1_MEMMAP(r, c) \
 | 
			
		||||
	(*(u32 *)((u8*)pm8001_ha->memoryMap.region[AAP1].virt_ptr + (r) * 32 \
 | 
			
		||||
	+ (c)))
 | 
			
		||||
 | 
			
		||||
	char *str = buf;
 | 
			
		||||
	int max = 2;
 | 
			
		||||
	for (i = 0; i < max; i++) {
 | 
			
		||||
		str += sprintf(str, "0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x"
 | 
			
		||||
			       "0x%08x 0x%08x\n",
 | 
			
		||||
			       AAP1_MEMMAP(i, 0),
 | 
			
		||||
			       AAP1_MEMMAP(i, 4),
 | 
			
		||||
			       AAP1_MEMMAP(i, 8),
 | 
			
		||||
			       AAP1_MEMMAP(i, 12),
 | 
			
		||||
			       AAP1_MEMMAP(i, 16),
 | 
			
		||||
			       AAP1_MEMMAP(i, 20),
 | 
			
		||||
			       AAP1_MEMMAP(i, 24),
 | 
			
		||||
			       AAP1_MEMMAP(i, 28));
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return str - buf;
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(aap_log, S_IRUGO, pm8001_ctl_aap_log_show, NULL);
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ctl_aap_log_show - IOP event log
 | 
			
		||||
 * @cdev: pointer to embedded class device
 | 
			
		||||
 * @buf: the buffer returned
 | 
			
		||||
 *
 | 
			
		||||
 * A sysfs 'read-only' shost attribute.
 | 
			
		||||
 */
 | 
			
		||||
static ssize_t pm8001_ctl_iop_log_show(struct device *cdev,
 | 
			
		||||
	struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
#define IOP_MEMMAP(r, c) \
 | 
			
		||||
	(*(u32 *)((u8*)pm8001_ha->memoryMap.region[IOP].virt_ptr + (r) * 32 \
 | 
			
		||||
	+ (c)))
 | 
			
		||||
	int i;
 | 
			
		||||
	char *str = buf;
 | 
			
		||||
	int max = 2;
 | 
			
		||||
	for (i = 0; i < max; i++) {
 | 
			
		||||
		str += sprintf(str, "0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x"
 | 
			
		||||
			       "0x%08x 0x%08x\n",
 | 
			
		||||
			       IOP_MEMMAP(i, 0),
 | 
			
		||||
			       IOP_MEMMAP(i, 4),
 | 
			
		||||
			       IOP_MEMMAP(i, 8),
 | 
			
		||||
			       IOP_MEMMAP(i, 12),
 | 
			
		||||
			       IOP_MEMMAP(i, 16),
 | 
			
		||||
			       IOP_MEMMAP(i, 20),
 | 
			
		||||
			       IOP_MEMMAP(i, 24),
 | 
			
		||||
			       IOP_MEMMAP(i, 28));
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return str - buf;
 | 
			
		||||
}
 | 
			
		||||
static DEVICE_ATTR(iop_log, S_IRUGO, pm8001_ctl_iop_log_show, NULL);
 | 
			
		||||
 | 
			
		||||
#define FLASH_CMD_NONE      0x00
 | 
			
		||||
#define FLASH_CMD_UPDATE    0x01
 | 
			
		||||
#define FLASH_CMD_SET_NVMD    0x02
 | 
			
		||||
 | 
			
		||||
struct flash_command {
 | 
			
		||||
     u8      command[8];
 | 
			
		||||
     int     code;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static struct flash_command flash_command_table[] =
 | 
			
		||||
{
 | 
			
		||||
     {"set_nvmd",    FLASH_CMD_SET_NVMD},
 | 
			
		||||
     {"update",      FLASH_CMD_UPDATE},
 | 
			
		||||
     {"",            FLASH_CMD_NONE} /* Last entry should be NULL. */
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct error_fw {
 | 
			
		||||
     char    *reason;
 | 
			
		||||
     int     err_code;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static struct error_fw flash_error_table[] =
 | 
			
		||||
{
 | 
			
		||||
     {"Failed to open fw image file",	FAIL_OPEN_BIOS_FILE},
 | 
			
		||||
     {"image header mismatch",		FLASH_UPDATE_HDR_ERR},
 | 
			
		||||
     {"image offset mismatch",		FLASH_UPDATE_OFFSET_ERR},
 | 
			
		||||
     {"image CRC Error",		FLASH_UPDATE_CRC_ERR},
 | 
			
		||||
     {"image length Error.",		FLASH_UPDATE_LENGTH_ERR},
 | 
			
		||||
     {"Failed to program flash chip",	FLASH_UPDATE_HW_ERR},
 | 
			
		||||
     {"Flash chip not supported.",	FLASH_UPDATE_DNLD_NOT_SUPPORTED},
 | 
			
		||||
     {"Flash update disabled.",		FLASH_UPDATE_DISABLED},
 | 
			
		||||
     {"Flash in progress",		FLASH_IN_PROGRESS},
 | 
			
		||||
     {"Image file size Error",		FAIL_FILE_SIZE},
 | 
			
		||||
     {"Input parameter error",		FAIL_PARAMETERS},
 | 
			
		||||
     {"Out of memory",			FAIL_OUT_MEMORY},
 | 
			
		||||
     {"OK", 0}	/* Last entry err_code = 0. */
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static int pm8001_set_nvmd(struct pm8001_hba_info *pm8001_ha)
 | 
			
		||||
{
 | 
			
		||||
	struct pm8001_ioctl_payload	*payload;
 | 
			
		||||
	DECLARE_COMPLETION_ONSTACK(completion);
 | 
			
		||||
	u8		*ioctlbuffer = NULL;
 | 
			
		||||
	u32		length = 0;
 | 
			
		||||
	u32		ret = 0;
 | 
			
		||||
 | 
			
		||||
	length = 1024 * 5 + sizeof(*payload) - 1;
 | 
			
		||||
	ioctlbuffer = kzalloc(length, GFP_KERNEL);
 | 
			
		||||
	if (!ioctlbuffer)
 | 
			
		||||
		return -ENOMEM;
 | 
			
		||||
	if ((pm8001_ha->fw_image->size <= 0) ||
 | 
			
		||||
	    (pm8001_ha->fw_image->size > 4096)) {
 | 
			
		||||
		ret = FAIL_FILE_SIZE;
 | 
			
		||||
		goto out;
 | 
			
		||||
	}
 | 
			
		||||
	payload = (struct pm8001_ioctl_payload *)ioctlbuffer;
 | 
			
		||||
	memcpy((u8 *)payload->func_specific, (u8 *)pm8001_ha->fw_image->data,
 | 
			
		||||
				pm8001_ha->fw_image->size);
 | 
			
		||||
	payload->length = pm8001_ha->fw_image->size;
 | 
			
		||||
	payload->id = 0;
 | 
			
		||||
	pm8001_ha->nvmd_completion = &completion;
 | 
			
		||||
	ret = PM8001_CHIP_DISP->set_nvmd_req(pm8001_ha, payload);
 | 
			
		||||
	wait_for_completion(&completion);
 | 
			
		||||
out:
 | 
			
		||||
	kfree(ioctlbuffer);
 | 
			
		||||
	return ret;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static int pm8001_update_flash(struct pm8001_hba_info *pm8001_ha)
 | 
			
		||||
{
 | 
			
		||||
	struct pm8001_ioctl_payload	*payload;
 | 
			
		||||
	DECLARE_COMPLETION_ONSTACK(completion);
 | 
			
		||||
	u8		*ioctlbuffer = NULL;
 | 
			
		||||
	u32		length = 0;
 | 
			
		||||
	struct fw_control_info	*fwControl;
 | 
			
		||||
	u32		loopNumber, loopcount = 0;
 | 
			
		||||
	u32		sizeRead = 0;
 | 
			
		||||
	u32		partitionSize, partitionSizeTmp;
 | 
			
		||||
	u32		ret = 0;
 | 
			
		||||
	u32		partitionNumber = 0;
 | 
			
		||||
	struct pm8001_fw_image_header *image_hdr;
 | 
			
		||||
 | 
			
		||||
	length = 1024 * 16 + sizeof(*payload) - 1;
 | 
			
		||||
	ioctlbuffer = kzalloc(length, GFP_KERNEL);
 | 
			
		||||
	image_hdr = (struct pm8001_fw_image_header *)pm8001_ha->fw_image->data;
 | 
			
		||||
	if (!ioctlbuffer)
 | 
			
		||||
		return -ENOMEM;
 | 
			
		||||
	if (pm8001_ha->fw_image->size < 28) {
 | 
			
		||||
		ret = FAIL_FILE_SIZE;
 | 
			
		||||
		goto out;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	while (sizeRead < pm8001_ha->fw_image->size) {
 | 
			
		||||
		partitionSizeTmp =
 | 
			
		||||
			*(u32 *)((u8 *)&image_hdr->image_length + sizeRead);
 | 
			
		||||
		partitionSize = be32_to_cpu(partitionSizeTmp);
 | 
			
		||||
		loopcount = (partitionSize + HEADER_LEN)/IOCTL_BUF_SIZE;
 | 
			
		||||
		if (loopcount % IOCTL_BUF_SIZE)
 | 
			
		||||
			loopcount++;
 | 
			
		||||
		if (loopcount == 0)
 | 
			
		||||
			loopcount++;
 | 
			
		||||
		for (loopNumber = 0; loopNumber < loopcount; loopNumber++) {
 | 
			
		||||
			payload = (struct pm8001_ioctl_payload *)ioctlbuffer;
 | 
			
		||||
			payload->length = 1024*16;
 | 
			
		||||
			payload->id = 0;
 | 
			
		||||
			fwControl =
 | 
			
		||||
			      (struct fw_control_info *)payload->func_specific;
 | 
			
		||||
			fwControl->len = IOCTL_BUF_SIZE;   /* IN */
 | 
			
		||||
			fwControl->size = partitionSize + HEADER_LEN;/* IN */
 | 
			
		||||
			fwControl->retcode = 0;/* OUT */
 | 
			
		||||
			fwControl->offset = loopNumber * IOCTL_BUF_SIZE;/*OUT */
 | 
			
		||||
 | 
			
		||||
		/* for the last chunk of data in case file size is not even with
 | 
			
		||||
		4k, load only the rest*/
 | 
			
		||||
		if (((loopcount-loopNumber) == 1) &&
 | 
			
		||||
			((partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE)) {
 | 
			
		||||
			fwControl->len =
 | 
			
		||||
				(partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE;
 | 
			
		||||
			memcpy((u8 *)fwControl->buffer,
 | 
			
		||||
				(u8 *)pm8001_ha->fw_image->data + sizeRead,
 | 
			
		||||
				(partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE);
 | 
			
		||||
			sizeRead +=
 | 
			
		||||
				(partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE;
 | 
			
		||||
		} else {
 | 
			
		||||
			memcpy((u8 *)fwControl->buffer,
 | 
			
		||||
				(u8 *)pm8001_ha->fw_image->data + sizeRead,
 | 
			
		||||
				IOCTL_BUF_SIZE);
 | 
			
		||||
			sizeRead += IOCTL_BUF_SIZE;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		pm8001_ha->nvmd_completion = &completion;
 | 
			
		||||
		ret = PM8001_CHIP_DISP->fw_flash_update_req(pm8001_ha, payload);
 | 
			
		||||
		wait_for_completion(&completion);
 | 
			
		||||
		if (ret || (fwControl->retcode > FLASH_UPDATE_IN_PROGRESS)) {
 | 
			
		||||
			ret = fwControl->retcode;
 | 
			
		||||
			kfree(ioctlbuffer);
 | 
			
		||||
			ioctlbuffer = NULL;
 | 
			
		||||
			break;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	if (ret)
 | 
			
		||||
		break;
 | 
			
		||||
	partitionNumber++;
 | 
			
		||||
}
 | 
			
		||||
out:
 | 
			
		||||
	kfree(ioctlbuffer);
 | 
			
		||||
	return ret;
 | 
			
		||||
}
 | 
			
		||||
static ssize_t pm8001_store_update_fw(struct device *cdev,
 | 
			
		||||
				      struct device_attribute *attr,
 | 
			
		||||
				      const char *buf, size_t count)
 | 
			
		||||
{
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	char *cmd_ptr, *filename_ptr;
 | 
			
		||||
	int res, i;
 | 
			
		||||
	int flash_command = FLASH_CMD_NONE;
 | 
			
		||||
	int err = 0;
 | 
			
		||||
	if (!capable(CAP_SYS_ADMIN))
 | 
			
		||||
		return -EACCES;
 | 
			
		||||
 | 
			
		||||
	cmd_ptr = kzalloc(count*2, GFP_KERNEL);
 | 
			
		||||
 | 
			
		||||
	if (!cmd_ptr) {
 | 
			
		||||
		err = FAIL_OUT_MEMORY;
 | 
			
		||||
		goto out;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	filename_ptr = cmd_ptr + count;
 | 
			
		||||
	res = sscanf(buf, "%s %s", cmd_ptr, filename_ptr);
 | 
			
		||||
	if (res != 2) {
 | 
			
		||||
		err = FAIL_PARAMETERS;
 | 
			
		||||
		goto out1;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	for (i = 0; flash_command_table[i].code != FLASH_CMD_NONE; i++) {
 | 
			
		||||
		if (!memcmp(flash_command_table[i].command,
 | 
			
		||||
				 cmd_ptr, strlen(cmd_ptr))) {
 | 
			
		||||
			flash_command = flash_command_table[i].code;
 | 
			
		||||
			break;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	if (flash_command == FLASH_CMD_NONE) {
 | 
			
		||||
		err = FAIL_PARAMETERS;
 | 
			
		||||
		goto out1;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (pm8001_ha->fw_status == FLASH_IN_PROGRESS) {
 | 
			
		||||
		err = FLASH_IN_PROGRESS;
 | 
			
		||||
		goto out1;
 | 
			
		||||
	}
 | 
			
		||||
	err = request_firmware(&pm8001_ha->fw_image,
 | 
			
		||||
			       filename_ptr,
 | 
			
		||||
			       pm8001_ha->dev);
 | 
			
		||||
 | 
			
		||||
	if (err) {
 | 
			
		||||
		PM8001_FAIL_DBG(pm8001_ha,
 | 
			
		||||
			pm8001_printk("Failed to load firmware image file %s,"
 | 
			
		||||
			" error %d\n", filename_ptr, err));
 | 
			
		||||
		err = FAIL_OPEN_BIOS_FILE;
 | 
			
		||||
		goto out1;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	switch (flash_command) {
 | 
			
		||||
	case FLASH_CMD_UPDATE:
 | 
			
		||||
		pm8001_ha->fw_status = FLASH_IN_PROGRESS;
 | 
			
		||||
		err = pm8001_update_flash(pm8001_ha);
 | 
			
		||||
		break;
 | 
			
		||||
	case FLASH_CMD_SET_NVMD:
 | 
			
		||||
		pm8001_ha->fw_status = FLASH_IN_PROGRESS;
 | 
			
		||||
		err = pm8001_set_nvmd(pm8001_ha);
 | 
			
		||||
		break;
 | 
			
		||||
	default:
 | 
			
		||||
		pm8001_ha->fw_status = FAIL_PARAMETERS;
 | 
			
		||||
		err = FAIL_PARAMETERS;
 | 
			
		||||
		break;
 | 
			
		||||
	}
 | 
			
		||||
	release_firmware(pm8001_ha->fw_image);
 | 
			
		||||
out1:
 | 
			
		||||
	kfree(cmd_ptr);
 | 
			
		||||
out:
 | 
			
		||||
	pm8001_ha->fw_status = err;
 | 
			
		||||
 | 
			
		||||
	if (!err)
 | 
			
		||||
		return count;
 | 
			
		||||
	else
 | 
			
		||||
		return -err;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static ssize_t pm8001_show_update_fw(struct device *cdev,
 | 
			
		||||
				     struct device_attribute *attr, char *buf)
 | 
			
		||||
{
 | 
			
		||||
	int i;
 | 
			
		||||
	struct Scsi_Host *shost = class_to_shost(cdev);
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
 | 
			
		||||
 | 
			
		||||
	for (i = 0; flash_error_table[i].err_code != 0; i++) {
 | 
			
		||||
		if (flash_error_table[i].err_code == pm8001_ha->fw_status)
 | 
			
		||||
			break;
 | 
			
		||||
	}
 | 
			
		||||
	if (pm8001_ha->fw_status != FLASH_IN_PROGRESS)
 | 
			
		||||
		pm8001_ha->fw_status = FLASH_OK;
 | 
			
		||||
 | 
			
		||||
	return snprintf(buf, PAGE_SIZE, "status=%x %s\n",
 | 
			
		||||
			flash_error_table[i].err_code,
 | 
			
		||||
			flash_error_table[i].reason);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static DEVICE_ATTR(update_fw, S_IRUGO|S_IWUGO,
 | 
			
		||||
	pm8001_show_update_fw, pm8001_store_update_fw);
 | 
			
		||||
struct device_attribute *pm8001_host_attrs[] = {
 | 
			
		||||
	&dev_attr_interface_rev,
 | 
			
		||||
	&dev_attr_fw_version,
 | 
			
		||||
	&dev_attr_update_fw,
 | 
			
		||||
	&dev_attr_aap_log,
 | 
			
		||||
	&dev_attr_iop_log,
 | 
			
		||||
	&dev_attr_max_out_io,
 | 
			
		||||
	&dev_attr_max_devices,
 | 
			
		||||
	&dev_attr_max_sg_list,
 | 
			
		||||
	&dev_attr_sas_spec_support,
 | 
			
		||||
	&dev_attr_logging_level,
 | 
			
		||||
	&dev_attr_host_sas_address,
 | 
			
		||||
	NULL,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										67
									
								
								drivers/scsi/pm8001/pm8001_ctl.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								drivers/scsi/pm8001/pm8001_ctl.h
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,67 @@
 | 
			
		|||
 /*
 | 
			
		||||
  * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver
 | 
			
		||||
  *
 | 
			
		||||
  * Copyright (c) 2008-2009 USI Co., Ltd.
 | 
			
		||||
  * All rights reserved.
 | 
			
		||||
  *
 | 
			
		||||
  * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
  * modification, are permitted provided that the following conditions
 | 
			
		||||
  * are met:
 | 
			
		||||
  * 1. Redistributions of source code must retain the above copyright
 | 
			
		||||
  *    notice, this list of conditions, and the following disclaimer,
 | 
			
		||||
  *    without modification.
 | 
			
		||||
  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 | 
			
		||||
  *    substantially similar to the "NO WARRANTY" disclaimer below
 | 
			
		||||
  *    ("Disclaimer") and any redistribution must be conditioned upon
 | 
			
		||||
  *    including a substantially similar Disclaimer requirement for further
 | 
			
		||||
  *    binary redistribution.
 | 
			
		||||
  * 3. Neither the names of the above-listed copyright holders nor the names
 | 
			
		||||
  *    of any contributors may be used to endorse or promote products derived
 | 
			
		||||
  *    from this software without specific prior written permission.
 | 
			
		||||
  *
 | 
			
		||||
  * Alternatively, this software may be distributed under the terms of the
 | 
			
		||||
  * GNU General Public License ("GPL") version 2 as published by the Free
 | 
			
		||||
  * Software Foundation.
 | 
			
		||||
  *
 | 
			
		||||
  * NO WARRANTY
 | 
			
		||||
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 | 
			
		||||
  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 | 
			
		||||
  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | 
			
		||||
  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 | 
			
		||||
  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 | 
			
		||||
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 | 
			
		||||
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 | 
			
		||||
  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
			
		||||
  * POSSIBILITY OF SUCH DAMAGES.
 | 
			
		||||
  *
 | 
			
		||||
  */
 | 
			
		||||
 | 
			
		||||
#ifndef PM8001_CTL_H_INCLUDED
 | 
			
		||||
#define PM8001_CTL_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#define IOCTL_BUF_SIZE		4096
 | 
			
		||||
#define HEADER_LEN			28
 | 
			
		||||
#define SIZE_OFFSET			16
 | 
			
		||||
 | 
			
		||||
struct pm8001_ioctl_payload {
 | 
			
		||||
	u32	signature;
 | 
			
		||||
	u16	major_function;
 | 
			
		||||
	u16	minor_function;
 | 
			
		||||
	u16	length;
 | 
			
		||||
	u16	status;
 | 
			
		||||
	u16	offset;
 | 
			
		||||
	u16	id;
 | 
			
		||||
	u8	func_specific[1];
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#define FLASH_OK                        0x000000
 | 
			
		||||
#define FAIL_OPEN_BIOS_FILE             0x000100
 | 
			
		||||
#define FAIL_FILE_SIZE                  0x000a00
 | 
			
		||||
#define FAIL_PARAMETERS                 0x000b00
 | 
			
		||||
#define FAIL_OUT_MEMORY                 0x000c00
 | 
			
		||||
#define FLASH_IN_PROGRESS               0x001000
 | 
			
		||||
 | 
			
		||||
#endif /* PM8001_CTL_H_INCLUDED */
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										112
									
								
								drivers/scsi/pm8001/pm8001_defs.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										112
									
								
								drivers/scsi/pm8001/pm8001_defs.h
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,112 @@
 | 
			
		|||
/*
 | 
			
		||||
 * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (c) 2008-2009 USI Co., Ltd.
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 * 1. Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions, and the following disclaimer,
 | 
			
		||||
 *    without modification.
 | 
			
		||||
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 | 
			
		||||
 *    substantially similar to the "NO WARRANTY" disclaimer below
 | 
			
		||||
 *    ("Disclaimer") and any redistribution must be conditioned upon
 | 
			
		||||
 *    including a substantially similar Disclaimer requirement for further
 | 
			
		||||
 *    binary redistribution.
 | 
			
		||||
 * 3. Neither the names of the above-listed copyright holders nor the names
 | 
			
		||||
 *    of any contributors may be used to endorse or promote products derived
 | 
			
		||||
 *    from this software without specific prior written permission.
 | 
			
		||||
 *
 | 
			
		||||
 * Alternatively, this software may be distributed under the terms of the
 | 
			
		||||
 * GNU General Public License ("GPL") version 2 as published by the Free
 | 
			
		||||
 * Software Foundation.
 | 
			
		||||
 *
 | 
			
		||||
 * NO WARRANTY
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 | 
			
		||||
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 | 
			
		||||
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | 
			
		||||
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 | 
			
		||||
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 | 
			
		||||
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 | 
			
		||||
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 | 
			
		||||
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
			
		||||
 * POSSIBILITY OF SUCH DAMAGES.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef _PM8001_DEFS_H_
 | 
			
		||||
#define _PM8001_DEFS_H_
 | 
			
		||||
 | 
			
		||||
enum chip_flavors {
 | 
			
		||||
	chip_8001,
 | 
			
		||||
};
 | 
			
		||||
#define USI_MAX_MEMCNT			9
 | 
			
		||||
#define PM8001_MAX_DMA_SG		SG_ALL
 | 
			
		||||
enum phy_speed {
 | 
			
		||||
	PHY_SPEED_15 = 0x01,
 | 
			
		||||
	PHY_SPEED_30 = 0x02,
 | 
			
		||||
	PHY_SPEED_60 = 0x04,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
enum data_direction {
 | 
			
		||||
	DATA_DIR_NONE = 0x0,	/* NO TRANSFER */
 | 
			
		||||
	DATA_DIR_IN = 0x01,	/* INBOUND */
 | 
			
		||||
	DATA_DIR_OUT = 0x02,	/* OUTBOUND */
 | 
			
		||||
	DATA_DIR_BYRECIPIENT = 0x04, /* UNSPECIFIED */
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
enum port_type {
 | 
			
		||||
	PORT_TYPE_SAS = (1L << 1),
 | 
			
		||||
	PORT_TYPE_SATA = (1L << 0),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/* driver compile-time configuration */
 | 
			
		||||
#define	PM8001_MAX_CCB		 512	/* max ccbs supported */
 | 
			
		||||
#define	PM8001_MAX_INB_NUM	 1
 | 
			
		||||
#define	PM8001_MAX_OUTB_NUM	 1
 | 
			
		||||
#define	PM8001_CAN_QUEUE	 128	/* SCSI Queue depth */
 | 
			
		||||
 | 
			
		||||
/* unchangeable hardware details */
 | 
			
		||||
#define	PM8001_MAX_PHYS		 8	/* max. possible phys */
 | 
			
		||||
#define	PM8001_MAX_PORTS	 8	/* max. possible ports */
 | 
			
		||||
#define	PM8001_MAX_DEVICES	 1024	/* max supported device */
 | 
			
		||||
 | 
			
		||||
enum memory_region_num {
 | 
			
		||||
	AAP1 = 0x0, /* application acceleration processor */
 | 
			
		||||
	IOP,	    /* IO processor */
 | 
			
		||||
	CI,	    /* consumer index */
 | 
			
		||||
	PI,	    /* producer index */
 | 
			
		||||
	IB,	    /* inbound queue */
 | 
			
		||||
	OB,	    /* outbound queue */
 | 
			
		||||
	NVMD,	    /* NVM device */
 | 
			
		||||
	DEV_MEM,    /* memory for devices */
 | 
			
		||||
	CCB_MEM,    /* memory for command control block */
 | 
			
		||||
};
 | 
			
		||||
#define	PM8001_EVENT_LOG_SIZE	 (128 * 1024)
 | 
			
		||||
 | 
			
		||||
/*error code*/
 | 
			
		||||
enum mpi_err {
 | 
			
		||||
	MPI_IO_STATUS_SUCCESS = 0x0,
 | 
			
		||||
	MPI_IO_STATUS_BUSY = 0x01,
 | 
			
		||||
	MPI_IO_STATUS_FAIL = 0x02,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Phy Control constants
 | 
			
		||||
 */
 | 
			
		||||
enum phy_control_type {
 | 
			
		||||
	PHY_LINK_RESET = 0x01,
 | 
			
		||||
	PHY_HARD_RESET = 0x02,
 | 
			
		||||
	PHY_NOTIFY_ENABLE_SPINUP = 0x10,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
enum pm8001_hba_info_flags {
 | 
			
		||||
	PM8001F_INIT_TIME	= (1U << 0),
 | 
			
		||||
	PM8001F_RUN_TIME	= (1U << 1),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										4371
									
								
								drivers/scsi/pm8001/pm8001_hwi.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4371
									
								
								drivers/scsi/pm8001/pm8001_hwi.c
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							
							
								
								
									
										1011
									
								
								drivers/scsi/pm8001/pm8001_hwi.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1011
									
								
								drivers/scsi/pm8001/pm8001_hwi.h
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							
							
								
								
									
										888
									
								
								drivers/scsi/pm8001/pm8001_init.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										888
									
								
								drivers/scsi/pm8001/pm8001_init.c
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,888 @@
 | 
			
		|||
/*
 | 
			
		||||
 * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (c) 2008-2009 USI Co., Ltd.
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 * 1. Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions, and the following disclaimer,
 | 
			
		||||
 *    without modification.
 | 
			
		||||
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 | 
			
		||||
 *    substantially similar to the "NO WARRANTY" disclaimer below
 | 
			
		||||
 *    ("Disclaimer") and any redistribution must be conditioned upon
 | 
			
		||||
 *    including a substantially similar Disclaimer requirement for further
 | 
			
		||||
 *    binary redistribution.
 | 
			
		||||
 * 3. Neither the names of the above-listed copyright holders nor the names
 | 
			
		||||
 *    of any contributors may be used to endorse or promote products derived
 | 
			
		||||
 *    from this software without specific prior written permission.
 | 
			
		||||
 *
 | 
			
		||||
 * Alternatively, this software may be distributed under the terms of the
 | 
			
		||||
 * GNU General Public License ("GPL") version 2 as published by the Free
 | 
			
		||||
 * Software Foundation.
 | 
			
		||||
 *
 | 
			
		||||
 * NO WARRANTY
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 | 
			
		||||
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 | 
			
		||||
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | 
			
		||||
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 | 
			
		||||
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 | 
			
		||||
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 | 
			
		||||
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 | 
			
		||||
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
			
		||||
 * POSSIBILITY OF SUCH DAMAGES.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include "pm8001_sas.h"
 | 
			
		||||
#include "pm8001_chips.h"
 | 
			
		||||
 | 
			
		||||
static struct scsi_transport_template *pm8001_stt;
 | 
			
		||||
 | 
			
		||||
static const struct pm8001_chip_info pm8001_chips[] = {
 | 
			
		||||
	[chip_8001] = {  8, &pm8001_8001_dispatch,},
 | 
			
		||||
};
 | 
			
		||||
static int pm8001_id;
 | 
			
		||||
 | 
			
		||||
LIST_HEAD(hba_list);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * The main structure which LLDD must register for scsi core.
 | 
			
		||||
 */
 | 
			
		||||
static struct scsi_host_template pm8001_sht = {
 | 
			
		||||
	.module			= THIS_MODULE,
 | 
			
		||||
	.name			= DRV_NAME,
 | 
			
		||||
	.queuecommand		= sas_queuecommand,
 | 
			
		||||
	.target_alloc		= sas_target_alloc,
 | 
			
		||||
	.slave_configure	= pm8001_slave_configure,
 | 
			
		||||
	.slave_destroy		= sas_slave_destroy,
 | 
			
		||||
	.scan_finished		= pm8001_scan_finished,
 | 
			
		||||
	.scan_start		= pm8001_scan_start,
 | 
			
		||||
	.change_queue_depth	= sas_change_queue_depth,
 | 
			
		||||
	.change_queue_type	= sas_change_queue_type,
 | 
			
		||||
	.bios_param		= sas_bios_param,
 | 
			
		||||
	.can_queue		= 1,
 | 
			
		||||
	.cmd_per_lun		= 1,
 | 
			
		||||
	.this_id		= -1,
 | 
			
		||||
	.sg_tablesize		= SG_ALL,
 | 
			
		||||
	.max_sectors		= SCSI_DEFAULT_MAX_SECTORS,
 | 
			
		||||
	.use_clustering		= ENABLE_CLUSTERING,
 | 
			
		||||
	.eh_device_reset_handler = sas_eh_device_reset_handler,
 | 
			
		||||
	.eh_bus_reset_handler	= sas_eh_bus_reset_handler,
 | 
			
		||||
	.slave_alloc		= pm8001_slave_alloc,
 | 
			
		||||
	.target_destroy		= sas_target_destroy,
 | 
			
		||||
	.ioctl			= sas_ioctl,
 | 
			
		||||
	.shost_attrs		= pm8001_host_attrs,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Sas layer call this function to execute specific task.
 | 
			
		||||
 */
 | 
			
		||||
static struct sas_domain_function_template pm8001_transport_ops = {
 | 
			
		||||
	.lldd_dev_found		= pm8001_dev_found,
 | 
			
		||||
	.lldd_dev_gone		= pm8001_dev_gone,
 | 
			
		||||
 | 
			
		||||
	.lldd_execute_task	= pm8001_queue_command,
 | 
			
		||||
	.lldd_control_phy	= pm8001_phy_control,
 | 
			
		||||
 | 
			
		||||
	.lldd_abort_task	= pm8001_abort_task,
 | 
			
		||||
	.lldd_abort_task_set	= pm8001_abort_task_set,
 | 
			
		||||
	.lldd_clear_aca		= pm8001_clear_aca,
 | 
			
		||||
	.lldd_clear_task_set	= pm8001_clear_task_set,
 | 
			
		||||
	.lldd_I_T_nexus_reset   = pm8001_I_T_nexus_reset,
 | 
			
		||||
	.lldd_lu_reset		= pm8001_lu_reset,
 | 
			
		||||
	.lldd_query_task	= pm8001_query_task,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *pm8001_phy_init - initiate our adapter phys
 | 
			
		||||
 *@pm8001_ha: our hba structure.
 | 
			
		||||
 *@phy_id: phy id.
 | 
			
		||||
 */
 | 
			
		||||
static void __devinit pm8001_phy_init(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
	int phy_id)
 | 
			
		||||
{
 | 
			
		||||
	struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
 | 
			
		||||
	struct asd_sas_phy *sas_phy = &phy->sas_phy;
 | 
			
		||||
	phy->phy_state = 0;
 | 
			
		||||
	phy->pm8001_ha = pm8001_ha;
 | 
			
		||||
	sas_phy->enabled = (phy_id < pm8001_ha->chip->n_phy) ? 1 : 0;
 | 
			
		||||
	sas_phy->class = SAS;
 | 
			
		||||
	sas_phy->iproto = SAS_PROTOCOL_ALL;
 | 
			
		||||
	sas_phy->tproto = 0;
 | 
			
		||||
	sas_phy->type = PHY_TYPE_PHYSICAL;
 | 
			
		||||
	sas_phy->role = PHY_ROLE_INITIATOR;
 | 
			
		||||
	sas_phy->oob_mode = OOB_NOT_CONNECTED;
 | 
			
		||||
	sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
 | 
			
		||||
	sas_phy->id = phy_id;
 | 
			
		||||
	sas_phy->sas_addr = &pm8001_ha->sas_addr[0];
 | 
			
		||||
	sas_phy->frame_rcvd = &phy->frame_rcvd[0];
 | 
			
		||||
	sas_phy->ha = (struct sas_ha_struct *)pm8001_ha->shost->hostdata;
 | 
			
		||||
	sas_phy->lldd_phy = phy;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *pm8001_free - free hba
 | 
			
		||||
 *@pm8001_ha:	our hba structure.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
static void pm8001_free(struct pm8001_hba_info *pm8001_ha)
 | 
			
		||||
{
 | 
			
		||||
	int i;
 | 
			
		||||
	struct pm8001_wq *wq;
 | 
			
		||||
 | 
			
		||||
	if (!pm8001_ha)
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	for (i = 0; i < USI_MAX_MEMCNT; i++) {
 | 
			
		||||
		if (pm8001_ha->memoryMap.region[i].virt_ptr != NULL) {
 | 
			
		||||
			pci_free_consistent(pm8001_ha->pdev,
 | 
			
		||||
				pm8001_ha->memoryMap.region[i].element_size,
 | 
			
		||||
				pm8001_ha->memoryMap.region[i].virt_ptr,
 | 
			
		||||
				pm8001_ha->memoryMap.region[i].phys_addr);
 | 
			
		||||
			}
 | 
			
		||||
	}
 | 
			
		||||
	PM8001_CHIP_DISP->chip_iounmap(pm8001_ha);
 | 
			
		||||
	if (pm8001_ha->shost)
 | 
			
		||||
		scsi_host_put(pm8001_ha->shost);
 | 
			
		||||
	list_for_each_entry(wq, &pm8001_ha->wq_list, entry)
 | 
			
		||||
		cancel_delayed_work(&wq->work_q);
 | 
			
		||||
	kfree(pm8001_ha->tags);
 | 
			
		||||
	kfree(pm8001_ha);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef PM8001_USE_TASKLET
 | 
			
		||||
static void pm8001_tasklet(unsigned long opaque)
 | 
			
		||||
{
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	pm8001_ha = (struct pm8001_hba_info *)opaque;;
 | 
			
		||||
	if (unlikely(!pm8001_ha))
 | 
			
		||||
		BUG_ON(1);
 | 
			
		||||
	PM8001_CHIP_DISP->isr(pm8001_ha);
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 /**
 | 
			
		||||
  * pm8001_interrupt - when HBA originate a interrupt,we should invoke this
 | 
			
		||||
  * dispatcher to handle each case.
 | 
			
		||||
  * @irq: irq number.
 | 
			
		||||
  * @opaque: the passed general host adapter struct
 | 
			
		||||
  */
 | 
			
		||||
static irqreturn_t pm8001_interrupt(int irq, void *opaque)
 | 
			
		||||
{
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	irqreturn_t ret = IRQ_HANDLED;
 | 
			
		||||
	struct sas_ha_struct *sha = opaque;
 | 
			
		||||
	pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	if (unlikely(!pm8001_ha))
 | 
			
		||||
		return IRQ_NONE;
 | 
			
		||||
	if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha))
 | 
			
		||||
		return IRQ_NONE;
 | 
			
		||||
#ifdef PM8001_USE_TASKLET
 | 
			
		||||
	tasklet_schedule(&pm8001_ha->tasklet);
 | 
			
		||||
#else
 | 
			
		||||
	ret = PM8001_CHIP_DISP->isr(pm8001_ha);
 | 
			
		||||
#endif
 | 
			
		||||
	return ret;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_alloc - initiate our hba structure and 6 DMAs area.
 | 
			
		||||
 * @pm8001_ha:our hba structure.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
static int __devinit pm8001_alloc(struct pm8001_hba_info *pm8001_ha)
 | 
			
		||||
{
 | 
			
		||||
	int i;
 | 
			
		||||
	spin_lock_init(&pm8001_ha->lock);
 | 
			
		||||
	for (i = 0; i < pm8001_ha->chip->n_phy; i++)
 | 
			
		||||
		pm8001_phy_init(pm8001_ha, i);
 | 
			
		||||
 | 
			
		||||
	pm8001_ha->tags = kmalloc(sizeof(*pm8001_ha->tags)*PM8001_MAX_DEVICES,
 | 
			
		||||
		GFP_KERNEL);
 | 
			
		||||
 | 
			
		||||
	/* MPI Memory region 1 for AAP Event Log for fw */
 | 
			
		||||
	pm8001_ha->memoryMap.region[AAP1].num_elements = 1;
 | 
			
		||||
	pm8001_ha->memoryMap.region[AAP1].element_size = PM8001_EVENT_LOG_SIZE;
 | 
			
		||||
	pm8001_ha->memoryMap.region[AAP1].total_len = PM8001_EVENT_LOG_SIZE;
 | 
			
		||||
	pm8001_ha->memoryMap.region[AAP1].alignment = 32;
 | 
			
		||||
 | 
			
		||||
	/* MPI Memory region 2 for IOP Event Log for fw */
 | 
			
		||||
	pm8001_ha->memoryMap.region[IOP].num_elements = 1;
 | 
			
		||||
	pm8001_ha->memoryMap.region[IOP].element_size = PM8001_EVENT_LOG_SIZE;
 | 
			
		||||
	pm8001_ha->memoryMap.region[IOP].total_len = PM8001_EVENT_LOG_SIZE;
 | 
			
		||||
	pm8001_ha->memoryMap.region[IOP].alignment = 32;
 | 
			
		||||
 | 
			
		||||
	/* MPI Memory region 3 for consumer Index of inbound queues */
 | 
			
		||||
	pm8001_ha->memoryMap.region[CI].num_elements = 1;
 | 
			
		||||
	pm8001_ha->memoryMap.region[CI].element_size = 4;
 | 
			
		||||
	pm8001_ha->memoryMap.region[CI].total_len = 4;
 | 
			
		||||
	pm8001_ha->memoryMap.region[CI].alignment = 4;
 | 
			
		||||
 | 
			
		||||
	/* MPI Memory region 4 for producer Index of outbound queues */
 | 
			
		||||
	pm8001_ha->memoryMap.region[PI].num_elements = 1;
 | 
			
		||||
	pm8001_ha->memoryMap.region[PI].element_size = 4;
 | 
			
		||||
	pm8001_ha->memoryMap.region[PI].total_len = 4;
 | 
			
		||||
	pm8001_ha->memoryMap.region[PI].alignment = 4;
 | 
			
		||||
 | 
			
		||||
	/* MPI Memory region 5 inbound queues */
 | 
			
		||||
	pm8001_ha->memoryMap.region[IB].num_elements = 256;
 | 
			
		||||
	pm8001_ha->memoryMap.region[IB].element_size = 64;
 | 
			
		||||
	pm8001_ha->memoryMap.region[IB].total_len = 256 * 64;
 | 
			
		||||
	pm8001_ha->memoryMap.region[IB].alignment = 64;
 | 
			
		||||
 | 
			
		||||
	/* MPI Memory region 6 inbound queues */
 | 
			
		||||
	pm8001_ha->memoryMap.region[OB].num_elements = 256;
 | 
			
		||||
	pm8001_ha->memoryMap.region[OB].element_size = 64;
 | 
			
		||||
	pm8001_ha->memoryMap.region[OB].total_len = 256 * 64;
 | 
			
		||||
	pm8001_ha->memoryMap.region[OB].alignment = 64;
 | 
			
		||||
 | 
			
		||||
	/* Memory region write DMA*/
 | 
			
		||||
	pm8001_ha->memoryMap.region[NVMD].num_elements = 1;
 | 
			
		||||
	pm8001_ha->memoryMap.region[NVMD].element_size = 4096;
 | 
			
		||||
	pm8001_ha->memoryMap.region[NVMD].total_len = 4096;
 | 
			
		||||
	/* Memory region for devices*/
 | 
			
		||||
	pm8001_ha->memoryMap.region[DEV_MEM].num_elements = 1;
 | 
			
		||||
	pm8001_ha->memoryMap.region[DEV_MEM].element_size = PM8001_MAX_DEVICES *
 | 
			
		||||
		sizeof(struct pm8001_device);
 | 
			
		||||
	pm8001_ha->memoryMap.region[DEV_MEM].total_len = PM8001_MAX_DEVICES *
 | 
			
		||||
		sizeof(struct pm8001_device);
 | 
			
		||||
 | 
			
		||||
	/* Memory region for ccb_info*/
 | 
			
		||||
	pm8001_ha->memoryMap.region[CCB_MEM].num_elements = 1;
 | 
			
		||||
	pm8001_ha->memoryMap.region[CCB_MEM].element_size = PM8001_MAX_CCB *
 | 
			
		||||
		sizeof(struct pm8001_ccb_info);
 | 
			
		||||
	pm8001_ha->memoryMap.region[CCB_MEM].total_len = PM8001_MAX_CCB *
 | 
			
		||||
		sizeof(struct pm8001_ccb_info);
 | 
			
		||||
 | 
			
		||||
	for (i = 0; i < USI_MAX_MEMCNT; i++) {
 | 
			
		||||
		if (pm8001_mem_alloc(pm8001_ha->pdev,
 | 
			
		||||
			&pm8001_ha->memoryMap.region[i].virt_ptr,
 | 
			
		||||
			&pm8001_ha->memoryMap.region[i].phys_addr,
 | 
			
		||||
			&pm8001_ha->memoryMap.region[i].phys_addr_hi,
 | 
			
		||||
			&pm8001_ha->memoryMap.region[i].phys_addr_lo,
 | 
			
		||||
			pm8001_ha->memoryMap.region[i].total_len,
 | 
			
		||||
			pm8001_ha->memoryMap.region[i].alignment) != 0) {
 | 
			
		||||
				PM8001_FAIL_DBG(pm8001_ha,
 | 
			
		||||
					pm8001_printk("Mem%d alloc failed\n",
 | 
			
		||||
					i));
 | 
			
		||||
				goto err_out;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	pm8001_ha->devices = pm8001_ha->memoryMap.region[DEV_MEM].virt_ptr;
 | 
			
		||||
	for (i = 0; i < PM8001_MAX_DEVICES; i++) {
 | 
			
		||||
		pm8001_ha->devices[i].dev_type = NO_DEVICE;
 | 
			
		||||
		pm8001_ha->devices[i].id = i;
 | 
			
		||||
		pm8001_ha->devices[i].device_id = PM8001_MAX_DEVICES;
 | 
			
		||||
		pm8001_ha->devices[i].running_req = 0;
 | 
			
		||||
	}
 | 
			
		||||
	pm8001_ha->ccb_info = pm8001_ha->memoryMap.region[CCB_MEM].virt_ptr;
 | 
			
		||||
	for (i = 0; i < PM8001_MAX_CCB; i++) {
 | 
			
		||||
		pm8001_ha->ccb_info[i].ccb_dma_handle =
 | 
			
		||||
			pm8001_ha->memoryMap.region[CCB_MEM].phys_addr +
 | 
			
		||||
			i * sizeof(struct pm8001_ccb_info);
 | 
			
		||||
		++pm8001_ha->tags_num;
 | 
			
		||||
	}
 | 
			
		||||
	pm8001_ha->flags = PM8001F_INIT_TIME;
 | 
			
		||||
	/* Initialize tags */
 | 
			
		||||
	pm8001_tag_init(pm8001_ha);
 | 
			
		||||
	return 0;
 | 
			
		||||
err_out:
 | 
			
		||||
	return 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_ioremap - remap the pci high physical address to kernal virtual
 | 
			
		||||
 * address so that we can access them.
 | 
			
		||||
 * @pm8001_ha:our hba structure.
 | 
			
		||||
 */
 | 
			
		||||
static int pm8001_ioremap(struct pm8001_hba_info *pm8001_ha)
 | 
			
		||||
{
 | 
			
		||||
	u32 bar;
 | 
			
		||||
	u32 logicalBar = 0;
 | 
			
		||||
	struct pci_dev *pdev;
 | 
			
		||||
 | 
			
		||||
	pdev = pm8001_ha->pdev;
 | 
			
		||||
	/* map pci mem (PMC pci base 0-3)*/
 | 
			
		||||
	for (bar = 0; bar < 6; bar++) {
 | 
			
		||||
		/*
 | 
			
		||||
		** logical BARs for SPC:
 | 
			
		||||
		** bar 0 and 1 - logical BAR0
 | 
			
		||||
		** bar 2 and 3 - logical BAR1
 | 
			
		||||
		** bar4 - logical BAR2
 | 
			
		||||
		** bar5 - logical BAR3
 | 
			
		||||
		** Skip the appropriate assignments:
 | 
			
		||||
		*/
 | 
			
		||||
		if ((bar == 1) || (bar == 3))
 | 
			
		||||
			continue;
 | 
			
		||||
		if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
 | 
			
		||||
			pm8001_ha->io_mem[logicalBar].membase =
 | 
			
		||||
				pci_resource_start(pdev, bar);
 | 
			
		||||
			pm8001_ha->io_mem[logicalBar].membase &=
 | 
			
		||||
				(u32)PCI_BASE_ADDRESS_MEM_MASK;
 | 
			
		||||
			pm8001_ha->io_mem[logicalBar].memsize =
 | 
			
		||||
				pci_resource_len(pdev, bar);
 | 
			
		||||
			pm8001_ha->io_mem[logicalBar].memvirtaddr =
 | 
			
		||||
				ioremap(pm8001_ha->io_mem[logicalBar].membase,
 | 
			
		||||
				pm8001_ha->io_mem[logicalBar].memsize);
 | 
			
		||||
			PM8001_INIT_DBG(pm8001_ha,
 | 
			
		||||
				pm8001_printk("PCI: bar %d, logicalBar %d "
 | 
			
		||||
				"virt_addr=%lx,len=%d\n", bar, logicalBar,
 | 
			
		||||
				(unsigned long)
 | 
			
		||||
				pm8001_ha->io_mem[logicalBar].memvirtaddr,
 | 
			
		||||
				pm8001_ha->io_mem[logicalBar].memsize));
 | 
			
		||||
		} else {
 | 
			
		||||
			pm8001_ha->io_mem[logicalBar].membase	= 0;
 | 
			
		||||
			pm8001_ha->io_mem[logicalBar].memsize	= 0;
 | 
			
		||||
			pm8001_ha->io_mem[logicalBar].memvirtaddr = 0;
 | 
			
		||||
		}
 | 
			
		||||
		logicalBar++;
 | 
			
		||||
	}
 | 
			
		||||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_pci_alloc - initialize our ha card structure
 | 
			
		||||
 * @pdev: pci device.
 | 
			
		||||
 * @ent: ent
 | 
			
		||||
 * @shost: scsi host struct which has been initialized before.
 | 
			
		||||
 */
 | 
			
		||||
static struct pm8001_hba_info *__devinit
 | 
			
		||||
pm8001_pci_alloc(struct pci_dev *pdev, u32 chip_id, struct Scsi_Host *shost)
 | 
			
		||||
{
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
	pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	if (!pm8001_ha)
 | 
			
		||||
		return NULL;
 | 
			
		||||
 | 
			
		||||
	pm8001_ha->pdev = pdev;
 | 
			
		||||
	pm8001_ha->dev = &pdev->dev;
 | 
			
		||||
	pm8001_ha->chip_id = chip_id;
 | 
			
		||||
	pm8001_ha->chip = &pm8001_chips[pm8001_ha->chip_id];
 | 
			
		||||
	pm8001_ha->irq = pdev->irq;
 | 
			
		||||
	pm8001_ha->sas = sha;
 | 
			
		||||
	pm8001_ha->shost = shost;
 | 
			
		||||
	pm8001_ha->id = pm8001_id++;
 | 
			
		||||
	INIT_LIST_HEAD(&pm8001_ha->wq_list);
 | 
			
		||||
	pm8001_ha->logging_level = 0x01;
 | 
			
		||||
	sprintf(pm8001_ha->name, "%s%d", DRV_NAME, pm8001_ha->id);
 | 
			
		||||
#ifdef PM8001_USE_TASKLET
 | 
			
		||||
	tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet,
 | 
			
		||||
		(unsigned long)pm8001_ha);
 | 
			
		||||
#endif
 | 
			
		||||
	pm8001_ioremap(pm8001_ha);
 | 
			
		||||
	if (!pm8001_alloc(pm8001_ha))
 | 
			
		||||
		return pm8001_ha;
 | 
			
		||||
	pm8001_free(pm8001_ha);
 | 
			
		||||
	return NULL;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pci_go_44 - pm8001 specified, its DMA is 44 bit rather than 64 bit
 | 
			
		||||
 * @pdev: pci device.
 | 
			
		||||
 */
 | 
			
		||||
static int pci_go_44(struct pci_dev *pdev)
 | 
			
		||||
{
 | 
			
		||||
	int rc;
 | 
			
		||||
 | 
			
		||||
	if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(44))) {
 | 
			
		||||
		rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(44));
 | 
			
		||||
		if (rc) {
 | 
			
		||||
			rc = pci_set_consistent_dma_mask(pdev,
 | 
			
		||||
				DMA_BIT_MASK(32));
 | 
			
		||||
			if (rc) {
 | 
			
		||||
				dev_printk(KERN_ERR, &pdev->dev,
 | 
			
		||||
					"44-bit DMA enable failed\n");
 | 
			
		||||
				return rc;
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	} else {
 | 
			
		||||
		rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
 | 
			
		||||
		if (rc) {
 | 
			
		||||
			dev_printk(KERN_ERR, &pdev->dev,
 | 
			
		||||
				"32-bit DMA enable failed\n");
 | 
			
		||||
			return rc;
 | 
			
		||||
		}
 | 
			
		||||
		rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
 | 
			
		||||
		if (rc) {
 | 
			
		||||
			dev_printk(KERN_ERR, &pdev->dev,
 | 
			
		||||
				"32-bit consistent DMA enable failed\n");
 | 
			
		||||
			return rc;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return rc;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_prep_sas_ha_init - allocate memory in general hba struct && init them.
 | 
			
		||||
 * @shost: scsi host which has been allocated outside.
 | 
			
		||||
 * @chip_info: our ha struct.
 | 
			
		||||
 */
 | 
			
		||||
static int __devinit pm8001_prep_sas_ha_init(struct Scsi_Host * shost,
 | 
			
		||||
	const struct pm8001_chip_info *chip_info)
 | 
			
		||||
{
 | 
			
		||||
	int phy_nr, port_nr;
 | 
			
		||||
	struct asd_sas_phy **arr_phy;
 | 
			
		||||
	struct asd_sas_port **arr_port;
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
 | 
			
		||||
	phy_nr = chip_info->n_phy;
 | 
			
		||||
	port_nr = phy_nr;
 | 
			
		||||
	memset(sha, 0x00, sizeof(*sha));
 | 
			
		||||
	arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
 | 
			
		||||
	if (!arr_phy)
 | 
			
		||||
		goto exit;
 | 
			
		||||
	arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
 | 
			
		||||
	if (!arr_port)
 | 
			
		||||
		goto exit_free2;
 | 
			
		||||
 | 
			
		||||
	sha->sas_phy = arr_phy;
 | 
			
		||||
	sha->sas_port = arr_port;
 | 
			
		||||
	sha->lldd_ha = kzalloc(sizeof(struct pm8001_hba_info), GFP_KERNEL);
 | 
			
		||||
	if (!sha->lldd_ha)
 | 
			
		||||
		goto exit_free1;
 | 
			
		||||
 | 
			
		||||
	shost->transportt = pm8001_stt;
 | 
			
		||||
	shost->max_id = PM8001_MAX_DEVICES;
 | 
			
		||||
	shost->max_lun = 8;
 | 
			
		||||
	shost->max_channel = 0;
 | 
			
		||||
	shost->unique_id = pm8001_id;
 | 
			
		||||
	shost->max_cmd_len = 16;
 | 
			
		||||
	shost->can_queue = PM8001_CAN_QUEUE;
 | 
			
		||||
	shost->cmd_per_lun = 32;
 | 
			
		||||
	return 0;
 | 
			
		||||
exit_free1:
 | 
			
		||||
	kfree(arr_port);
 | 
			
		||||
exit_free2:
 | 
			
		||||
	kfree(arr_phy);
 | 
			
		||||
exit:
 | 
			
		||||
	return -1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_post_sas_ha_init - initialize general hba struct defined in libsas
 | 
			
		||||
 * @shost: scsi host which has been allocated outside
 | 
			
		||||
 * @chip_info: our ha struct.
 | 
			
		||||
 */
 | 
			
		||||
static void  __devinit pm8001_post_sas_ha_init(struct Scsi_Host *shost,
 | 
			
		||||
	const struct pm8001_chip_info *chip_info)
 | 
			
		||||
{
 | 
			
		||||
	int i = 0;
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
 | 
			
		||||
 | 
			
		||||
	pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	for (i = 0; i < chip_info->n_phy; i++) {
 | 
			
		||||
		sha->sas_phy[i] = &pm8001_ha->phy[i].sas_phy;
 | 
			
		||||
		sha->sas_port[i] = &pm8001_ha->port[i].sas_port;
 | 
			
		||||
	}
 | 
			
		||||
	sha->sas_ha_name = DRV_NAME;
 | 
			
		||||
	sha->dev = pm8001_ha->dev;
 | 
			
		||||
 | 
			
		||||
	sha->lldd_module = THIS_MODULE;
 | 
			
		||||
	sha->sas_addr = &pm8001_ha->sas_addr[0];
 | 
			
		||||
	sha->num_phys = chip_info->n_phy;
 | 
			
		||||
	sha->lldd_max_execute_num = 1;
 | 
			
		||||
	sha->lldd_queue_size = PM8001_CAN_QUEUE;
 | 
			
		||||
	sha->core.shost = shost;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_init_sas_add - initialize sas address
 | 
			
		||||
 * @chip_info: our ha struct.
 | 
			
		||||
 *
 | 
			
		||||
 * Currently we just set the fixed SAS address to our HBA,for manufacture,
 | 
			
		||||
 * it should read from the EEPROM
 | 
			
		||||
 */
 | 
			
		||||
static void pm8001_init_sas_add(struct pm8001_hba_info *pm8001_ha)
 | 
			
		||||
{
 | 
			
		||||
	u8 i;
 | 
			
		||||
#ifdef PM8001_READ_VPD
 | 
			
		||||
	DECLARE_COMPLETION_ONSTACK(completion);
 | 
			
		||||
	pm8001_ha->nvmd_completion = &completion;
 | 
			
		||||
	PM8001_CHIP_DISP->get_nvmd_req(pm8001_ha, 0, 0);
 | 
			
		||||
	wait_for_completion(&completion);
 | 
			
		||||
	for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
 | 
			
		||||
		memcpy(&pm8001_ha->phy[i].dev_sas_addr, pm8001_ha->sas_addr,
 | 
			
		||||
			SAS_ADDR_SIZE);
 | 
			
		||||
		PM8001_INIT_DBG(pm8001_ha,
 | 
			
		||||
			pm8001_printk("phy %d sas_addr = %x \n", i,
 | 
			
		||||
			(u64)pm8001_ha->phy[i].dev_sas_addr));
 | 
			
		||||
	}
 | 
			
		||||
#else
 | 
			
		||||
	for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
 | 
			
		||||
		pm8001_ha->phy[i].dev_sas_addr = 0x500e004010000004ULL;
 | 
			
		||||
		pm8001_ha->phy[i].dev_sas_addr =
 | 
			
		||||
			cpu_to_be64((u64)
 | 
			
		||||
				(*(u64 *)&pm8001_ha->phy[i].dev_sas_addr));
 | 
			
		||||
	}
 | 
			
		||||
	memcpy(pm8001_ha->sas_addr, &pm8001_ha->phy[0].dev_sas_addr,
 | 
			
		||||
		SAS_ADDR_SIZE);
 | 
			
		||||
#endif
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef PM8001_USE_MSIX
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_setup_msix - enable MSI-X interrupt
 | 
			
		||||
 * @chip_info: our ha struct.
 | 
			
		||||
 * @irq_handler: irq_handler
 | 
			
		||||
 */
 | 
			
		||||
static u32 pm8001_setup_msix(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
	irq_handler_t irq_handler)
 | 
			
		||||
{
 | 
			
		||||
	u32 i = 0, j = 0;
 | 
			
		||||
	u32 number_of_intr = 1;
 | 
			
		||||
	int flag = 0;
 | 
			
		||||
	u32 max_entry;
 | 
			
		||||
	int rc;
 | 
			
		||||
	max_entry = sizeof(pm8001_ha->msix_entries) /
 | 
			
		||||
		sizeof(pm8001_ha->msix_entries[0]);
 | 
			
		||||
	flag |= IRQF_DISABLED;
 | 
			
		||||
	for (i = 0; i < max_entry ; i++)
 | 
			
		||||
		pm8001_ha->msix_entries[i].entry = i;
 | 
			
		||||
	rc = pci_enable_msix(pm8001_ha->pdev, pm8001_ha->msix_entries,
 | 
			
		||||
		number_of_intr);
 | 
			
		||||
	pm8001_ha->number_of_intr = number_of_intr;
 | 
			
		||||
	if (!rc) {
 | 
			
		||||
		for (i = 0; i < number_of_intr; i++) {
 | 
			
		||||
			if (request_irq(pm8001_ha->msix_entries[i].vector,
 | 
			
		||||
				irq_handler, flag, DRV_NAME,
 | 
			
		||||
				SHOST_TO_SAS_HA(pm8001_ha->shost))) {
 | 
			
		||||
				for (j = 0; j < i; j++)
 | 
			
		||||
					free_irq(
 | 
			
		||||
					pm8001_ha->msix_entries[j].vector,
 | 
			
		||||
					SHOST_TO_SAS_HA(pm8001_ha->shost));
 | 
			
		||||
				pci_disable_msix(pm8001_ha->pdev);
 | 
			
		||||
				break;
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return rc;
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_request_irq - register interrupt
 | 
			
		||||
 * @chip_info: our ha struct.
 | 
			
		||||
 */
 | 
			
		||||
static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha)
 | 
			
		||||
{
 | 
			
		||||
	struct pci_dev *pdev;
 | 
			
		||||
	irq_handler_t irq_handler = pm8001_interrupt;
 | 
			
		||||
	u32 rc;
 | 
			
		||||
 | 
			
		||||
	pdev = pm8001_ha->pdev;
 | 
			
		||||
 | 
			
		||||
#ifdef PM8001_USE_MSIX
 | 
			
		||||
	if (pci_find_capability(pdev, PCI_CAP_ID_MSIX))
 | 
			
		||||
		return pm8001_setup_msix(pm8001_ha, irq_handler);
 | 
			
		||||
	else
 | 
			
		||||
		goto intx;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
intx:
 | 
			
		||||
	/* intialize the INT-X interrupt */
 | 
			
		||||
	rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED, DRV_NAME,
 | 
			
		||||
		SHOST_TO_SAS_HA(pm8001_ha->shost));
 | 
			
		||||
	return rc;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_pci_probe - probe supported device
 | 
			
		||||
 * @pdev: pci device which kernel has been prepared for.
 | 
			
		||||
 * @ent: pci device id
 | 
			
		||||
 *
 | 
			
		||||
 * This function is the main initialization function, when register a new
 | 
			
		||||
 * pci driver it is invoked, all struct an hardware initilization should be done
 | 
			
		||||
 * here, also, register interrupt
 | 
			
		||||
 */
 | 
			
		||||
static int __devinit pm8001_pci_probe(struct pci_dev *pdev,
 | 
			
		||||
	const struct pci_device_id *ent)
 | 
			
		||||
{
 | 
			
		||||
	unsigned int rc;
 | 
			
		||||
	u32	pci_reg;
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	struct Scsi_Host *shost = NULL;
 | 
			
		||||
	const struct pm8001_chip_info *chip;
 | 
			
		||||
 | 
			
		||||
	dev_printk(KERN_INFO, &pdev->dev,
 | 
			
		||||
		"pm8001: driver version %s\n", DRV_VERSION);
 | 
			
		||||
	rc = pci_enable_device(pdev);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_enable;
 | 
			
		||||
	pci_set_master(pdev);
 | 
			
		||||
	/*
 | 
			
		||||
	 * Enable pci slot busmaster by setting pci command register.
 | 
			
		||||
	 * This is required by FW for Cyclone card.
 | 
			
		||||
	 */
 | 
			
		||||
 | 
			
		||||
	pci_read_config_dword(pdev, PCI_COMMAND, &pci_reg);
 | 
			
		||||
	pci_reg |= 0x157;
 | 
			
		||||
	pci_write_config_dword(pdev, PCI_COMMAND, pci_reg);
 | 
			
		||||
	rc = pci_request_regions(pdev, DRV_NAME);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_disable;
 | 
			
		||||
	rc = pci_go_44(pdev);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_regions;
 | 
			
		||||
 | 
			
		||||
	shost = scsi_host_alloc(&pm8001_sht, sizeof(void *));
 | 
			
		||||
	if (!shost) {
 | 
			
		||||
		rc = -ENOMEM;
 | 
			
		||||
		goto err_out_regions;
 | 
			
		||||
	}
 | 
			
		||||
	chip = &pm8001_chips[ent->driver_data];
 | 
			
		||||
	SHOST_TO_SAS_HA(shost) =
 | 
			
		||||
		kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
 | 
			
		||||
	if (!SHOST_TO_SAS_HA(shost)) {
 | 
			
		||||
		rc = -ENOMEM;
 | 
			
		||||
		goto err_out_free_host;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	rc = pm8001_prep_sas_ha_init(shost, chip);
 | 
			
		||||
	if (rc) {
 | 
			
		||||
		rc = -ENOMEM;
 | 
			
		||||
		goto err_out_free;
 | 
			
		||||
	}
 | 
			
		||||
	pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
 | 
			
		||||
	pm8001_ha = pm8001_pci_alloc(pdev, chip_8001, shost);
 | 
			
		||||
	if (!pm8001_ha) {
 | 
			
		||||
		rc = -ENOMEM;
 | 
			
		||||
		goto err_out_free;
 | 
			
		||||
	}
 | 
			
		||||
	list_add_tail(&pm8001_ha->list, &hba_list);
 | 
			
		||||
	PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha, 0x252acbcd);
 | 
			
		||||
	rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_ha_free;
 | 
			
		||||
 | 
			
		||||
	rc = scsi_add_host(shost, &pdev->dev);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_ha_free;
 | 
			
		||||
	rc = pm8001_request_irq(pm8001_ha);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_shost;
 | 
			
		||||
 | 
			
		||||
	PM8001_CHIP_DISP->interrupt_enable(pm8001_ha);
 | 
			
		||||
	pm8001_init_sas_add(pm8001_ha);
 | 
			
		||||
	pm8001_post_sas_ha_init(shost, chip);
 | 
			
		||||
	rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_shost;
 | 
			
		||||
	scsi_scan_host(pm8001_ha->shost);
 | 
			
		||||
	return 0;
 | 
			
		||||
 | 
			
		||||
err_out_shost:
 | 
			
		||||
	scsi_remove_host(pm8001_ha->shost);
 | 
			
		||||
err_out_ha_free:
 | 
			
		||||
	pm8001_free(pm8001_ha);
 | 
			
		||||
err_out_free:
 | 
			
		||||
	kfree(SHOST_TO_SAS_HA(shost));
 | 
			
		||||
err_out_free_host:
 | 
			
		||||
	kfree(shost);
 | 
			
		||||
err_out_regions:
 | 
			
		||||
	pci_release_regions(pdev);
 | 
			
		||||
err_out_disable:
 | 
			
		||||
	pci_disable_device(pdev);
 | 
			
		||||
err_out_enable:
 | 
			
		||||
	return rc;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void __devexit pm8001_pci_remove(struct pci_dev *pdev)
 | 
			
		||||
{
 | 
			
		||||
	struct sas_ha_struct *sha = pci_get_drvdata(pdev);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	int i;
 | 
			
		||||
	pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	pci_set_drvdata(pdev, NULL);
 | 
			
		||||
	sas_unregister_ha(sha);
 | 
			
		||||
	sas_remove_host(pm8001_ha->shost);
 | 
			
		||||
	list_del(&pm8001_ha->list);
 | 
			
		||||
	scsi_remove_host(pm8001_ha->shost);
 | 
			
		||||
	PM8001_CHIP_DISP->interrupt_disable(pm8001_ha);
 | 
			
		||||
	PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha, 0x252acbcd);
 | 
			
		||||
 | 
			
		||||
#ifdef PM8001_USE_MSIX
 | 
			
		||||
	for (i = 0; i < pm8001_ha->number_of_intr; i++)
 | 
			
		||||
		synchronize_irq(pm8001_ha->msix_entries[i].vector);
 | 
			
		||||
	for (i = 0; i < pm8001_ha->number_of_intr; i++)
 | 
			
		||||
		free_irq(pm8001_ha->msix_entries[i].vector, sha);
 | 
			
		||||
	pci_disable_msix(pdev);
 | 
			
		||||
#else
 | 
			
		||||
	free_irq(pm8001_ha->irq, sha);
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef PM8001_USE_TASKLET
 | 
			
		||||
	tasklet_kill(&pm8001_ha->tasklet);
 | 
			
		||||
#endif
 | 
			
		||||
	pm8001_free(pm8001_ha);
 | 
			
		||||
	kfree(sha->sas_phy);
 | 
			
		||||
	kfree(sha->sas_port);
 | 
			
		||||
	kfree(sha);
 | 
			
		||||
	pci_release_regions(pdev);
 | 
			
		||||
	pci_disable_device(pdev);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_pci_suspend - power management suspend main entry point
 | 
			
		||||
 * @pdev: PCI device struct
 | 
			
		||||
 * @state: PM state change to (usually PCI_D3)
 | 
			
		||||
 *
 | 
			
		||||
 * Returns 0 success, anything else error.
 | 
			
		||||
 */
 | 
			
		||||
static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state)
 | 
			
		||||
{
 | 
			
		||||
	struct sas_ha_struct *sha = pci_get_drvdata(pdev);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	int i , pos;
 | 
			
		||||
	u32 device_state;
 | 
			
		||||
	pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	flush_scheduled_work();
 | 
			
		||||
	scsi_block_requests(pm8001_ha->shost);
 | 
			
		||||
	pos = pci_find_capability(pdev, PCI_CAP_ID_PM);
 | 
			
		||||
	if (pos == 0) {
 | 
			
		||||
		printk(KERN_ERR " PCI PM not supported\n");
 | 
			
		||||
		return -ENODEV;
 | 
			
		||||
	}
 | 
			
		||||
	PM8001_CHIP_DISP->interrupt_disable(pm8001_ha);
 | 
			
		||||
	PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha, 0x252acbcd);
 | 
			
		||||
#ifdef PM8001_USE_MSIX
 | 
			
		||||
	for (i = 0; i < pm8001_ha->number_of_intr; i++)
 | 
			
		||||
		synchronize_irq(pm8001_ha->msix_entries[i].vector);
 | 
			
		||||
	for (i = 0; i < pm8001_ha->number_of_intr; i++)
 | 
			
		||||
		free_irq(pm8001_ha->msix_entries[i].vector, sha);
 | 
			
		||||
	pci_disable_msix(pdev);
 | 
			
		||||
#else
 | 
			
		||||
	free_irq(pm8001_ha->irq, sha);
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef PM8001_USE_TASKLET
 | 
			
		||||
	tasklet_kill(&pm8001_ha->tasklet);
 | 
			
		||||
#endif
 | 
			
		||||
	device_state = pci_choose_state(pdev, state);
 | 
			
		||||
	pm8001_printk("pdev=0x%p, slot=%s, entering "
 | 
			
		||||
		      "operating state [D%d]\n", pdev,
 | 
			
		||||
		      pm8001_ha->name, device_state);
 | 
			
		||||
	pci_save_state(pdev);
 | 
			
		||||
	pci_disable_device(pdev);
 | 
			
		||||
	pci_set_power_state(pdev, device_state);
 | 
			
		||||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * pm8001_pci_resume - power management resume main entry point
 | 
			
		||||
 * @pdev: PCI device struct
 | 
			
		||||
 *
 | 
			
		||||
 * Returns 0 success, anything else error.
 | 
			
		||||
 */
 | 
			
		||||
static int pm8001_pci_resume(struct pci_dev *pdev)
 | 
			
		||||
{
 | 
			
		||||
	struct sas_ha_struct *sha = pci_get_drvdata(pdev);
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	int rc;
 | 
			
		||||
	u32 device_state;
 | 
			
		||||
	pm8001_ha = sha->lldd_ha;
 | 
			
		||||
	device_state = pdev->current_state;
 | 
			
		||||
 | 
			
		||||
	pm8001_printk("pdev=0x%p, slot=%s, resuming from previous "
 | 
			
		||||
		"operating state [D%d]\n", pdev, pm8001_ha->name, device_state);
 | 
			
		||||
 | 
			
		||||
	pci_set_power_state(pdev, PCI_D0);
 | 
			
		||||
	pci_enable_wake(pdev, PCI_D0, 0);
 | 
			
		||||
	pci_restore_state(pdev);
 | 
			
		||||
	rc = pci_enable_device(pdev);
 | 
			
		||||
	if (rc) {
 | 
			
		||||
		pm8001_printk("slot=%s Enable device failed during resume\n",
 | 
			
		||||
			      pm8001_ha->name);
 | 
			
		||||
		goto err_out_enable;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	pci_set_master(pdev);
 | 
			
		||||
	rc = pci_go_44(pdev);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_disable;
 | 
			
		||||
 | 
			
		||||
	PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha, 0x252acbcd);
 | 
			
		||||
	rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_disable;
 | 
			
		||||
	PM8001_CHIP_DISP->interrupt_disable(pm8001_ha);
 | 
			
		||||
	rc = pm8001_request_irq(pm8001_ha);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out_disable;
 | 
			
		||||
	#ifdef PM8001_USE_TASKLET
 | 
			
		||||
	tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet,
 | 
			
		||||
		    (unsigned long)pm8001_ha);
 | 
			
		||||
	#endif
 | 
			
		||||
	PM8001_CHIP_DISP->interrupt_enable(pm8001_ha);
 | 
			
		||||
	scsi_unblock_requests(pm8001_ha->shost);
 | 
			
		||||
	return 0;
 | 
			
		||||
 | 
			
		||||
err_out_disable:
 | 
			
		||||
	scsi_remove_host(pm8001_ha->shost);
 | 
			
		||||
	pci_disable_device(pdev);
 | 
			
		||||
err_out_enable:
 | 
			
		||||
	return rc;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static struct pci_device_id __devinitdata pm8001_pci_table[] = {
 | 
			
		||||
	{
 | 
			
		||||
		PCI_VDEVICE(PMC_Sierra, 0x8001), chip_8001
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		PCI_DEVICE(0x117c, 0x0042),
 | 
			
		||||
		.driver_data = chip_8001
 | 
			
		||||
	},
 | 
			
		||||
	{} /* terminate list */
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static struct pci_driver pm8001_pci_driver = {
 | 
			
		||||
	.name		= DRV_NAME,
 | 
			
		||||
	.id_table	= pm8001_pci_table,
 | 
			
		||||
	.probe		= pm8001_pci_probe,
 | 
			
		||||
	.remove		= __devexit_p(pm8001_pci_remove),
 | 
			
		||||
	.suspend	= pm8001_pci_suspend,
 | 
			
		||||
	.resume		= pm8001_pci_resume,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *	pm8001_init - initialize scsi transport template
 | 
			
		||||
 */
 | 
			
		||||
static int __init pm8001_init(void)
 | 
			
		||||
{
 | 
			
		||||
	int rc;
 | 
			
		||||
	pm8001_id = 0;
 | 
			
		||||
	pm8001_stt = sas_domain_attach_transport(&pm8001_transport_ops);
 | 
			
		||||
	if (!pm8001_stt)
 | 
			
		||||
		return -ENOMEM;
 | 
			
		||||
	rc = pci_register_driver(&pm8001_pci_driver);
 | 
			
		||||
	if (rc)
 | 
			
		||||
		goto err_out;
 | 
			
		||||
	return 0;
 | 
			
		||||
err_out:
 | 
			
		||||
	sas_release_transport(pm8001_stt);
 | 
			
		||||
	return rc;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void __exit pm8001_exit(void)
 | 
			
		||||
{
 | 
			
		||||
	pci_unregister_driver(&pm8001_pci_driver);
 | 
			
		||||
	sas_release_transport(pm8001_stt);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
module_init(pm8001_init);
 | 
			
		||||
module_exit(pm8001_exit);
 | 
			
		||||
 | 
			
		||||
MODULE_AUTHOR("Jack Wang <jack_wang@usish.com>");
 | 
			
		||||
MODULE_DESCRIPTION("PMC-Sierra PM8001 SAS/SATA controller driver");
 | 
			
		||||
MODULE_VERSION(DRV_VERSION);
 | 
			
		||||
MODULE_LICENSE("GPL");
 | 
			
		||||
MODULE_DEVICE_TABLE(pci, pm8001_pci_table);
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1104
									
								
								drivers/scsi/pm8001/pm8001_sas.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1104
									
								
								drivers/scsi/pm8001/pm8001_sas.c
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							
							
								
								
									
										480
									
								
								drivers/scsi/pm8001/pm8001_sas.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										480
									
								
								drivers/scsi/pm8001/pm8001_sas.h
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,480 @@
 | 
			
		|||
/*
 | 
			
		||||
 * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (c) 2008-2009 USI Co., Ltd.
 | 
			
		||||
 * All rights reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Redistribution and use in source and binary forms, with or without
 | 
			
		||||
 * modification, are permitted provided that the following conditions
 | 
			
		||||
 * are met:
 | 
			
		||||
 * 1. Redistributions of source code must retain the above copyright
 | 
			
		||||
 *    notice, this list of conditions, and the following disclaimer,
 | 
			
		||||
 *    without modification.
 | 
			
		||||
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 | 
			
		||||
 *    substantially similar to the "NO WARRANTY" disclaimer below
 | 
			
		||||
 *    ("Disclaimer") and any redistribution must be conditioned upon
 | 
			
		||||
 *    including a substantially similar Disclaimer requirement for further
 | 
			
		||||
 *    binary redistribution.
 | 
			
		||||
 * 3. Neither the names of the above-listed copyright holders nor the names
 | 
			
		||||
 *    of any contributors may be used to endorse or promote products derived
 | 
			
		||||
 *    from this software without specific prior written permission.
 | 
			
		||||
 *
 | 
			
		||||
 * Alternatively, this software may be distributed under the terms of the
 | 
			
		||||
 * GNU General Public License ("GPL") version 2 as published by the Free
 | 
			
		||||
 * Software Foundation.
 | 
			
		||||
 *
 | 
			
		||||
 * NO WARRANTY
 | 
			
		||||
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 | 
			
		||||
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 | 
			
		||||
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | 
			
		||||
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 | 
			
		||||
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 | 
			
		||||
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 | 
			
		||||
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 | 
			
		||||
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
			
		||||
 * POSSIBILITY OF SUCH DAMAGES.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef _PM8001_SAS_H_
 | 
			
		||||
#define _PM8001_SAS_H_
 | 
			
		||||
 | 
			
		||||
#include <linux/kernel.h>
 | 
			
		||||
#include <linux/module.h>
 | 
			
		||||
#include <linux/spinlock.h>
 | 
			
		||||
#include <linux/delay.h>
 | 
			
		||||
#include <linux/types.h>
 | 
			
		||||
#include <linux/ctype.h>
 | 
			
		||||
#include <linux/dma-mapping.h>
 | 
			
		||||
#include <linux/pci.h>
 | 
			
		||||
#include <linux/interrupt.h>
 | 
			
		||||
#include <linux/smp_lock.h>
 | 
			
		||||
#include <scsi/libsas.h>
 | 
			
		||||
#include <scsi/scsi_tcq.h>
 | 
			
		||||
#include <scsi/sas_ata.h>
 | 
			
		||||
#include <asm/atomic.h>
 | 
			
		||||
#include "pm8001_defs.h"
 | 
			
		||||
 | 
			
		||||
#define DRV_NAME		"pm8001"
 | 
			
		||||
#define DRV_VERSION		"0.1.36"
 | 
			
		||||
#define PM8001_FAIL_LOGGING	0x01 /* libsas EH function logging */
 | 
			
		||||
#define PM8001_INIT_LOGGING	0x02 /* driver init logging */
 | 
			
		||||
#define PM8001_DISC_LOGGING	0x04 /* discovery layer logging */
 | 
			
		||||
#define PM8001_IO_LOGGING	0x08 /* I/O path logging */
 | 
			
		||||
#define PM8001_EH_LOGGING	0x10 /* Error message logging */
 | 
			
		||||
#define PM8001_IOCTL_LOGGING	0x20 /* IOCTL message logging */
 | 
			
		||||
#define PM8001_MSG_LOGGING	0x40 /* misc message logging */
 | 
			
		||||
#define pm8001_printk(format, arg...)	printk(KERN_INFO "%s %d:" format,\
 | 
			
		||||
				__func__, __LINE__, ## arg)
 | 
			
		||||
#define PM8001_CHECK_LOGGING(HBA, LEVEL, CMD)	\
 | 
			
		||||
do {						\
 | 
			
		||||
	if (unlikely(HBA->logging_level & LEVEL))	\
 | 
			
		||||
		do {					\
 | 
			
		||||
			CMD;				\
 | 
			
		||||
		} while (0);				\
 | 
			
		||||
} while (0);
 | 
			
		||||
 | 
			
		||||
#define PM8001_EH_DBG(HBA, CMD)			\
 | 
			
		||||
	PM8001_CHECK_LOGGING(HBA, PM8001_EH_LOGGING, CMD)
 | 
			
		||||
 | 
			
		||||
#define PM8001_INIT_DBG(HBA, CMD)		\
 | 
			
		||||
	PM8001_CHECK_LOGGING(HBA, PM8001_INIT_LOGGING, CMD)
 | 
			
		||||
 | 
			
		||||
#define PM8001_DISC_DBG(HBA, CMD)		\
 | 
			
		||||
	PM8001_CHECK_LOGGING(HBA, PM8001_DISC_LOGGING, CMD)
 | 
			
		||||
 | 
			
		||||
#define PM8001_IO_DBG(HBA, CMD)		\
 | 
			
		||||
	PM8001_CHECK_LOGGING(HBA, PM8001_IO_LOGGING, CMD)
 | 
			
		||||
 | 
			
		||||
#define PM8001_FAIL_DBG(HBA, CMD)		\
 | 
			
		||||
	PM8001_CHECK_LOGGING(HBA, PM8001_FAIL_LOGGING, CMD)
 | 
			
		||||
 | 
			
		||||
#define PM8001_IOCTL_DBG(HBA, CMD)		\
 | 
			
		||||
	PM8001_CHECK_LOGGING(HBA, PM8001_IOCTL_LOGGING, CMD)
 | 
			
		||||
 | 
			
		||||
#define PM8001_MSG_DBG(HBA, CMD)		\
 | 
			
		||||
	PM8001_CHECK_LOGGING(HBA, PM8001_MSG_LOGGING, CMD)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#define PM8001_USE_TASKLET
 | 
			
		||||
#define PM8001_USE_MSIX
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#define DEV_IS_EXPANDER(type)	((type == EDGE_DEV) || (type == FANOUT_DEV))
 | 
			
		||||
 | 
			
		||||
#define PM8001_NAME_LENGTH		32/* generic length of strings */
 | 
			
		||||
extern struct list_head hba_list;
 | 
			
		||||
extern const struct pm8001_dispatch pm8001_8001_dispatch;
 | 
			
		||||
 | 
			
		||||
struct pm8001_hba_info;
 | 
			
		||||
struct pm8001_ccb_info;
 | 
			
		||||
struct pm8001_device;
 | 
			
		||||
struct pm8001_tmf_task;
 | 
			
		||||
struct pm8001_dispatch {
 | 
			
		||||
	char *name;
 | 
			
		||||
	int (*chip_init)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	int (*chip_soft_rst)(struct pm8001_hba_info *pm8001_ha, u32 signature);
 | 
			
		||||
	void (*chip_rst)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	int (*chip_ioremap)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	void (*chip_iounmap)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	void (*isr)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	u32 (*is_our_interupt)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	int (*isr_process_oq)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	void (*interrupt_enable)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	void (*interrupt_disable)(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
	void (*make_prd)(struct scatterlist *scatter, int nr, void *prd);
 | 
			
		||||
	int (*smp_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		struct pm8001_ccb_info *ccb);
 | 
			
		||||
	int (*ssp_io_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		struct pm8001_ccb_info *ccb);
 | 
			
		||||
	int (*sata_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		struct pm8001_ccb_info *ccb);
 | 
			
		||||
	int (*phy_start_req)(struct pm8001_hba_info *pm8001_ha,	u8 phy_id);
 | 
			
		||||
	int (*phy_stop_req)(struct pm8001_hba_info *pm8001_ha, u8 phy_id);
 | 
			
		||||
	int (*reg_dev_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		struct pm8001_device *pm8001_dev, u32 flag);
 | 
			
		||||
	int (*dereg_dev_req)(struct pm8001_hba_info *pm8001_ha, u32 device_id);
 | 
			
		||||
	int (*phy_ctl_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		u32 phy_id, u32 phy_op);
 | 
			
		||||
	int (*task_abort)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		struct pm8001_device *pm8001_dev, u8 flag, u32 task_tag,
 | 
			
		||||
		u32 cmd_tag);
 | 
			
		||||
	int (*ssp_tm_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		struct pm8001_ccb_info *ccb, struct pm8001_tmf_task *tmf);
 | 
			
		||||
	int (*get_nvmd_req)(struct pm8001_hba_info *pm8001_ha, void *payload);
 | 
			
		||||
	int (*set_nvmd_req)(struct pm8001_hba_info *pm8001_ha, void *payload);
 | 
			
		||||
	int (*fw_flash_update_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		void *payload);
 | 
			
		||||
	int (*set_dev_state_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		struct pm8001_device *pm8001_dev, u32 state);
 | 
			
		||||
	int (*sas_diag_start_end_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		u32 state);
 | 
			
		||||
	int (*sas_diag_execute_req)(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
		u32 state);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pm8001_chip_info {
 | 
			
		||||
	u32	n_phy;
 | 
			
		||||
	const struct pm8001_dispatch	*dispatch;
 | 
			
		||||
};
 | 
			
		||||
#define PM8001_CHIP_DISP	(pm8001_ha->chip->dispatch)
 | 
			
		||||
 | 
			
		||||
struct pm8001_port {
 | 
			
		||||
	struct asd_sas_port	sas_port;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pm8001_phy {
 | 
			
		||||
	struct pm8001_hba_info	*pm8001_ha;
 | 
			
		||||
	struct pm8001_port	*port;
 | 
			
		||||
	struct asd_sas_phy	sas_phy;
 | 
			
		||||
	struct sas_identify	identify;
 | 
			
		||||
	struct scsi_device	*sdev;
 | 
			
		||||
	u64			dev_sas_addr;
 | 
			
		||||
	u32			phy_type;
 | 
			
		||||
	struct completion	*enable_completion;
 | 
			
		||||
	u32			frame_rcvd_size;
 | 
			
		||||
	u8			frame_rcvd[32];
 | 
			
		||||
	u8			phy_attached;
 | 
			
		||||
	u8			phy_state;
 | 
			
		||||
	enum sas_linkrate	minimum_linkrate;
 | 
			
		||||
	enum sas_linkrate	maximum_linkrate;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pm8001_device {
 | 
			
		||||
	enum sas_dev_type	dev_type;
 | 
			
		||||
	struct domain_device	*sas_device;
 | 
			
		||||
	u32			attached_phy;
 | 
			
		||||
	u32			id;
 | 
			
		||||
	struct completion	*dcompletion;
 | 
			
		||||
	struct completion	*setds_completion;
 | 
			
		||||
	u32			device_id;
 | 
			
		||||
	u32			running_req;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pm8001_prd_imt {
 | 
			
		||||
	__le32			len;
 | 
			
		||||
	__le32			e;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pm8001_prd {
 | 
			
		||||
	__le64			addr;		/* 64-bit buffer address */
 | 
			
		||||
	struct pm8001_prd_imt	im_len;		/* 64-bit length */
 | 
			
		||||
} __attribute__ ((packed));
 | 
			
		||||
/*
 | 
			
		||||
 * CCB(Command Control Block)
 | 
			
		||||
 */
 | 
			
		||||
struct pm8001_ccb_info {
 | 
			
		||||
	struct list_head	entry;
 | 
			
		||||
	struct sas_task		*task;
 | 
			
		||||
	u32			n_elem;
 | 
			
		||||
	u32			ccb_tag;
 | 
			
		||||
	dma_addr_t		ccb_dma_handle;
 | 
			
		||||
	struct pm8001_device	*device;
 | 
			
		||||
	struct pm8001_prd	buf_prd[PM8001_MAX_DMA_SG];
 | 
			
		||||
	struct fw_control_ex	*fw_control_context;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct mpi_mem {
 | 
			
		||||
	void			*virt_ptr;
 | 
			
		||||
	dma_addr_t		phys_addr;
 | 
			
		||||
	u32			phys_addr_hi;
 | 
			
		||||
	u32			phys_addr_lo;
 | 
			
		||||
	u32			total_len;
 | 
			
		||||
	u32			num_elements;
 | 
			
		||||
	u32			element_size;
 | 
			
		||||
	u32			alignment;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct mpi_mem_req {
 | 
			
		||||
	/* The number of element in the  mpiMemory array */
 | 
			
		||||
	u32			count;
 | 
			
		||||
	/* The array of structures that define memroy regions*/
 | 
			
		||||
	struct mpi_mem		region[USI_MAX_MEMCNT];
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct main_cfg_table {
 | 
			
		||||
	u32			signature;
 | 
			
		||||
	u32			interface_rev;
 | 
			
		||||
	u32			firmware_rev;
 | 
			
		||||
	u32			max_out_io;
 | 
			
		||||
	u32			max_sgl;
 | 
			
		||||
	u32			ctrl_cap_flag;
 | 
			
		||||
	u32			gst_offset;
 | 
			
		||||
	u32			inbound_queue_offset;
 | 
			
		||||
	u32			outbound_queue_offset;
 | 
			
		||||
	u32			inbound_q_nppd_hppd;
 | 
			
		||||
	u32			outbound_hw_event_pid0_3;
 | 
			
		||||
	u32			outbound_hw_event_pid4_7;
 | 
			
		||||
	u32			outbound_ncq_event_pid0_3;
 | 
			
		||||
	u32			outbound_ncq_event_pid4_7;
 | 
			
		||||
	u32			outbound_tgt_ITNexus_event_pid0_3;
 | 
			
		||||
	u32			outbound_tgt_ITNexus_event_pid4_7;
 | 
			
		||||
	u32			outbound_tgt_ssp_event_pid0_3;
 | 
			
		||||
	u32			outbound_tgt_ssp_event_pid4_7;
 | 
			
		||||
	u32			outbound_tgt_smp_event_pid0_3;
 | 
			
		||||
	u32			outbound_tgt_smp_event_pid4_7;
 | 
			
		||||
	u32			upper_event_log_addr;
 | 
			
		||||
	u32			lower_event_log_addr;
 | 
			
		||||
	u32			event_log_size;
 | 
			
		||||
	u32			event_log_option;
 | 
			
		||||
	u32			upper_iop_event_log_addr;
 | 
			
		||||
	u32			lower_iop_event_log_addr;
 | 
			
		||||
	u32			iop_event_log_size;
 | 
			
		||||
	u32			iop_event_log_option;
 | 
			
		||||
	u32			fatal_err_interrupt;
 | 
			
		||||
	u32			fatal_err_dump_offset0;
 | 
			
		||||
	u32			fatal_err_dump_length0;
 | 
			
		||||
	u32			fatal_err_dump_offset1;
 | 
			
		||||
	u32			fatal_err_dump_length1;
 | 
			
		||||
	u32			hda_mode_flag;
 | 
			
		||||
	u32			anolog_setup_table_offset;
 | 
			
		||||
};
 | 
			
		||||
struct general_status_table {
 | 
			
		||||
	u32			gst_len_mpistate;
 | 
			
		||||
	u32			iq_freeze_state0;
 | 
			
		||||
	u32			iq_freeze_state1;
 | 
			
		||||
	u32			msgu_tcnt;
 | 
			
		||||
	u32			iop_tcnt;
 | 
			
		||||
	u32			reserved;
 | 
			
		||||
	u32			phy_state[8];
 | 
			
		||||
	u32			reserved1;
 | 
			
		||||
	u32			reserved2;
 | 
			
		||||
	u32			reserved3;
 | 
			
		||||
	u32			recover_err_info[8];
 | 
			
		||||
};
 | 
			
		||||
struct inbound_queue_table {
 | 
			
		||||
	u32			element_pri_size_cnt;
 | 
			
		||||
	u32			upper_base_addr;
 | 
			
		||||
	u32			lower_base_addr;
 | 
			
		||||
	u32			ci_upper_base_addr;
 | 
			
		||||
	u32			ci_lower_base_addr;
 | 
			
		||||
	u32			pi_pci_bar;
 | 
			
		||||
	u32			pi_offset;
 | 
			
		||||
	u32			total_length;
 | 
			
		||||
	void			*base_virt;
 | 
			
		||||
	void			*ci_virt;
 | 
			
		||||
	u32			reserved;
 | 
			
		||||
	__le32			consumer_index;
 | 
			
		||||
	u32			producer_idx;
 | 
			
		||||
};
 | 
			
		||||
struct outbound_queue_table {
 | 
			
		||||
	u32			element_size_cnt;
 | 
			
		||||
	u32			upper_base_addr;
 | 
			
		||||
	u32			lower_base_addr;
 | 
			
		||||
	void			*base_virt;
 | 
			
		||||
	u32			pi_upper_base_addr;
 | 
			
		||||
	u32			pi_lower_base_addr;
 | 
			
		||||
	u32			ci_pci_bar;
 | 
			
		||||
	u32			ci_offset;
 | 
			
		||||
	u32			total_length;
 | 
			
		||||
	void			*pi_virt;
 | 
			
		||||
	u32			interrup_vec_cnt_delay;
 | 
			
		||||
	u32			dinterrup_to_pci_offset;
 | 
			
		||||
	__le32			producer_index;
 | 
			
		||||
	u32			consumer_idx;
 | 
			
		||||
};
 | 
			
		||||
struct pm8001_hba_memspace {
 | 
			
		||||
	void __iomem  		*memvirtaddr;
 | 
			
		||||
	u64			membase;
 | 
			
		||||
	u32			memsize;
 | 
			
		||||
};
 | 
			
		||||
struct pm8001_hba_info {
 | 
			
		||||
	char			name[PM8001_NAME_LENGTH];
 | 
			
		||||
	struct list_head	list;
 | 
			
		||||
	unsigned long		flags;
 | 
			
		||||
	spinlock_t		lock;/* host-wide lock */
 | 
			
		||||
	struct pci_dev		*pdev;/* our device */
 | 
			
		||||
	struct device		*dev;
 | 
			
		||||
	struct pm8001_hba_memspace io_mem[6];
 | 
			
		||||
	struct mpi_mem_req	memoryMap;
 | 
			
		||||
	void __iomem	*msg_unit_tbl_addr;/*Message Unit Table Addr*/
 | 
			
		||||
	void __iomem	*main_cfg_tbl_addr;/*Main Config Table Addr*/
 | 
			
		||||
	void __iomem	*general_stat_tbl_addr;/*General Status Table Addr*/
 | 
			
		||||
	void __iomem	*inbnd_q_tbl_addr;/*Inbound Queue Config Table Addr*/
 | 
			
		||||
	void __iomem	*outbnd_q_tbl_addr;/*Outbound Queue Config Table Addr*/
 | 
			
		||||
	struct main_cfg_table	main_cfg_tbl;
 | 
			
		||||
	struct general_status_table	gs_tbl;
 | 
			
		||||
	struct inbound_queue_table	inbnd_q_tbl[PM8001_MAX_INB_NUM];
 | 
			
		||||
	struct outbound_queue_table	outbnd_q_tbl[PM8001_MAX_OUTB_NUM];
 | 
			
		||||
	u8			sas_addr[SAS_ADDR_SIZE];
 | 
			
		||||
	struct sas_ha_struct	*sas;/* SCSI/SAS glue */
 | 
			
		||||
	struct Scsi_Host	*shost;
 | 
			
		||||
	u32			chip_id;
 | 
			
		||||
	const struct pm8001_chip_info	*chip;
 | 
			
		||||
	struct completion	*nvmd_completion;
 | 
			
		||||
	int			tags_num;
 | 
			
		||||
	unsigned long		*tags;
 | 
			
		||||
	struct pm8001_phy	phy[PM8001_MAX_PHYS];
 | 
			
		||||
	struct pm8001_port	port[PM8001_MAX_PHYS];
 | 
			
		||||
	u32			id;
 | 
			
		||||
	u32			irq;
 | 
			
		||||
	struct pm8001_device	*devices;
 | 
			
		||||
	struct pm8001_ccb_info	*ccb_info;
 | 
			
		||||
#ifdef PM8001_USE_MSIX
 | 
			
		||||
	struct msix_entry	msix_entries[16];/*for msi-x interrupt*/
 | 
			
		||||
	int			number_of_intr;/*will be used in remove()*/
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef PM8001_USE_TASKLET
 | 
			
		||||
	struct tasklet_struct	tasklet;
 | 
			
		||||
#endif
 | 
			
		||||
	struct list_head 	wq_list;
 | 
			
		||||
	u32			logging_level;
 | 
			
		||||
	u32			fw_status;
 | 
			
		||||
	const struct firmware 	*fw_image;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pm8001_wq {
 | 
			
		||||
	struct delayed_work work_q;
 | 
			
		||||
	struct pm8001_hba_info *pm8001_ha;
 | 
			
		||||
	void *data;
 | 
			
		||||
	int handler;
 | 
			
		||||
	struct list_head entry;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct pm8001_fw_image_header {
 | 
			
		||||
	u8 vender_id[8];
 | 
			
		||||
	u8 product_id;
 | 
			
		||||
	u8 hardware_rev;
 | 
			
		||||
	u8 dest_partition;
 | 
			
		||||
	u8 reserved;
 | 
			
		||||
	u8 fw_rev[4];
 | 
			
		||||
	__be32  image_length;
 | 
			
		||||
	__be32 image_crc;
 | 
			
		||||
	__be32 startup_entry;
 | 
			
		||||
} __attribute__((packed, aligned(4)));
 | 
			
		||||
 | 
			
		||||
/* define task management IU */
 | 
			
		||||
struct pm8001_tmf_task {
 | 
			
		||||
	u8	tmf;
 | 
			
		||||
	u32	tag_of_task_to_be_managed;
 | 
			
		||||
};
 | 
			
		||||
/**
 | 
			
		||||
 * FW Flash Update status values
 | 
			
		||||
 */
 | 
			
		||||
#define FLASH_UPDATE_COMPLETE_PENDING_REBOOT	0x00
 | 
			
		||||
#define FLASH_UPDATE_IN_PROGRESS		0x01
 | 
			
		||||
#define FLASH_UPDATE_HDR_ERR			0x02
 | 
			
		||||
#define FLASH_UPDATE_OFFSET_ERR			0x03
 | 
			
		||||
#define FLASH_UPDATE_CRC_ERR			0x04
 | 
			
		||||
#define FLASH_UPDATE_LENGTH_ERR			0x05
 | 
			
		||||
#define FLASH_UPDATE_HW_ERR			0x06
 | 
			
		||||
#define FLASH_UPDATE_DNLD_NOT_SUPPORTED		0x10
 | 
			
		||||
#define FLASH_UPDATE_DISABLED			0x11
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * brief param structure for firmware flash update.
 | 
			
		||||
 */
 | 
			
		||||
struct fw_flash_updata_info {
 | 
			
		||||
	u32			cur_image_offset;
 | 
			
		||||
	u32			cur_image_len;
 | 
			
		||||
	u32			total_image_len;
 | 
			
		||||
	struct pm8001_prd	sgl;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct fw_control_info {
 | 
			
		||||
	u32			retcode;/*ret code (status)*/
 | 
			
		||||
	u32			phase;/*ret code phase*/
 | 
			
		||||
	u32			phaseCmplt;/*percent complete for the current
 | 
			
		||||
	update phase */
 | 
			
		||||
	u32			version;/*Hex encoded firmware version number*/
 | 
			
		||||
	u32			offset;/*Used for downloading firmware	*/
 | 
			
		||||
	u32			len; /*len of buffer*/
 | 
			
		||||
	u32			size;/* Used in OS VPD and Trace get size
 | 
			
		||||
	operations.*/
 | 
			
		||||
	u32			reserved;/* padding required for 64 bit
 | 
			
		||||
	alignment */
 | 
			
		||||
	u8			buffer[1];/* Start of buffer */
 | 
			
		||||
};
 | 
			
		||||
struct fw_control_ex {
 | 
			
		||||
	struct fw_control_info *fw_control;
 | 
			
		||||
	void			*buffer;/* keep buffer pointer to be
 | 
			
		||||
	freed when the responce comes*/
 | 
			
		||||
	void			*virtAddr;/* keep virtual address of the data */
 | 
			
		||||
	void			*usrAddr;/* keep virtual address of the
 | 
			
		||||
	user data */
 | 
			
		||||
	dma_addr_t		phys_addr;
 | 
			
		||||
	u32			len; /* len of buffer  */
 | 
			
		||||
	void			*payload; /* pointer to IOCTL Payload */
 | 
			
		||||
	u8			inProgress;/*if 1 - the IOCTL request is in
 | 
			
		||||
	progress */
 | 
			
		||||
	void			*param1;
 | 
			
		||||
	void			*param2;
 | 
			
		||||
	void			*param3;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/******************** function prototype *********************/
 | 
			
		||||
int pm8001_tag_alloc(struct pm8001_hba_info *pm8001_ha, u32 *tag_out);
 | 
			
		||||
void pm8001_tag_init(struct pm8001_hba_info *pm8001_ha);
 | 
			
		||||
u32 pm8001_get_ncq_tag(struct sas_task *task, u32 *tag);
 | 
			
		||||
void pm8001_ccb_free(struct pm8001_hba_info *pm8001_ha, u32 ccb_idx);
 | 
			
		||||
void pm8001_ccb_task_free(struct pm8001_hba_info *pm8001_ha,
 | 
			
		||||
	struct sas_task *task, struct pm8001_ccb_info *ccb, u32 ccb_idx);
 | 
			
		||||
int pm8001_phy_control(struct asd_sas_phy *sas_phy, enum phy_func func,
 | 
			
		||||
	void *funcdata);
 | 
			
		||||
int pm8001_slave_alloc(struct scsi_device *scsi_dev);
 | 
			
		||||
int pm8001_slave_configure(struct scsi_device *sdev);
 | 
			
		||||
void pm8001_scan_start(struct Scsi_Host *shost);
 | 
			
		||||
int pm8001_scan_finished(struct Scsi_Host *shost, unsigned long time);
 | 
			
		||||
int pm8001_queue_command(struct sas_task *task, const int num,
 | 
			
		||||
	gfp_t gfp_flags);
 | 
			
		||||
int pm8001_abort_task(struct sas_task *task);
 | 
			
		||||
int pm8001_abort_task_set(struct domain_device *dev, u8 *lun);
 | 
			
		||||
int pm8001_clear_aca(struct domain_device *dev, u8 *lun);
 | 
			
		||||
int pm8001_clear_task_set(struct domain_device *dev, u8 *lun);
 | 
			
		||||
int pm8001_dev_found(struct domain_device *dev);
 | 
			
		||||
void pm8001_dev_gone(struct domain_device *dev);
 | 
			
		||||
int pm8001_lu_reset(struct domain_device *dev, u8 *lun);
 | 
			
		||||
int pm8001_I_T_nexus_reset(struct domain_device *dev);
 | 
			
		||||
int pm8001_query_task(struct sas_task *task);
 | 
			
		||||
int pm8001_mem_alloc(struct pci_dev *pdev, void **virt_addr,
 | 
			
		||||
	dma_addr_t *pphys_addr, u32 *pphys_addr_hi, u32 *pphys_addr_lo,
 | 
			
		||||
	u32 mem_size, u32 align);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/* ctl shared API */
 | 
			
		||||
extern struct device_attribute *pm8001_host_attrs[];
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1586,6 +1586,8 @@
 | 
			
		|||
#define PCI_VENDOR_ID_COMPEX		0x11f6
 | 
			
		||||
#define PCI_DEVICE_ID_COMPEX_ENET100VG4	0x0112
 | 
			
		||||
 | 
			
		||||
#define PCI_VENDOR_ID_PMC_Sierra	0x11f8
 | 
			
		||||
 | 
			
		||||
#define PCI_VENDOR_ID_RP		0x11fe
 | 
			
		||||
#define PCI_DEVICE_ID_RP32INTF		0x0001
 | 
			
		||||
#define PCI_DEVICE_ID_RP8INTF		0x0002
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue