mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
13
drivers/scsi/pm8001/Makefile
Normal file
13
drivers/scsi/pm8001/Makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
#
|
||||
# Kernel configuration file for the PM8001 SAS/SATA 8x6G based HBA driver
|
||||
#
|
||||
# Copyright (C) 2008-2009 USI Co., Ltd.
|
||||
|
||||
|
||||
obj-$(CONFIG_SCSI_PM8001) += pm80xx.o
|
||||
pm80xx-y += pm8001_init.o \
|
||||
pm8001_sas.o \
|
||||
pm8001_ctl.o \
|
||||
pm8001_hwi.o \
|
||||
pm80xx_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, __le32 val)
|
||||
{
|
||||
*((__le32 *)(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_ */
|
||||
|
753
drivers/scsi/pm8001/pm8001_ctl.c
Normal file
753
drivers/scsi/pm8001/pm8001_ctl.c
Normal file
|
@ -0,0 +1,753 @@
|
|||
/*
|
||||
* PMC-Sierra 8001/8081/8088/8089 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 <linux/slab.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;
|
||||
|
||||
if (pm8001_ha->chip_id == chip_8001) {
|
||||
return snprintf(buf, PAGE_SIZE, "%d\n",
|
||||
pm8001_ha->main_cfg_tbl.pm8001_tbl.interface_rev);
|
||||
} else {
|
||||
return snprintf(buf, PAGE_SIZE, "%d\n",
|
||||
pm8001_ha->main_cfg_tbl.pm80xx_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;
|
||||
|
||||
if (pm8001_ha->chip_id == chip_8001) {
|
||||
return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x.%02x\n",
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm8001_tbl.firmware_rev >> 24),
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm8001_tbl.firmware_rev >> 16),
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm8001_tbl.firmware_rev >> 8),
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm8001_tbl.firmware_rev));
|
||||
} else {
|
||||
return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x.%02x\n",
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm80xx_tbl.firmware_rev >> 24),
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm80xx_tbl.firmware_rev >> 16),
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm80xx_tbl.firmware_rev >> 8),
|
||||
(u8)(pm8001_ha->main_cfg_tbl.pm80xx_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;
|
||||
|
||||
if (pm8001_ha->chip_id == chip_8001) {
|
||||
return snprintf(buf, PAGE_SIZE, "%d\n",
|
||||
pm8001_ha->main_cfg_tbl.pm8001_tbl.max_out_io);
|
||||
} else {
|
||||
return snprintf(buf, PAGE_SIZE, "%d\n",
|
||||
pm8001_ha->main_cfg_tbl.pm80xx_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;
|
||||
|
||||
if (pm8001_ha->chip_id == chip_8001) {
|
||||
return snprintf(buf, PAGE_SIZE, "%04d\n",
|
||||
(u16)(pm8001_ha->main_cfg_tbl.pm8001_tbl.max_sgl >> 16)
|
||||
);
|
||||
} else {
|
||||
return snprintf(buf, PAGE_SIZE, "%04d\n",
|
||||
(u16)(pm8001_ha->main_cfg_tbl.pm80xx_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;
|
||||
|
||||
if (pm8001_ha->chip_id == chip_8001) {
|
||||
return snprintf(buf, PAGE_SIZE, "%04d\n",
|
||||
pm8001_ha->main_cfg_tbl.pm8001_tbl.max_sgl & 0x0000FFFF
|
||||
);
|
||||
} else {
|
||||
return snprintf(buf, PAGE_SIZE, "%04d\n",
|
||||
pm8001_ha->main_cfg_tbl.pm80xx_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;
|
||||
/* fe000000 means supports SAS2.1 */
|
||||
if (pm8001_ha->chip_id == chip_8001)
|
||||
mode = (pm8001_ha->main_cfg_tbl.pm8001_tbl.ctrl_cap_flag &
|
||||
0xfe000000)>>25;
|
||||
else
|
||||
/* fe000000 means supports SAS2.1 */
|
||||
mode = (pm8001_ha->main_cfg_tbl.pm80xx_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_ib_queue_log_show - Out bound Queue log
|
||||
* @cdev:pointer to embedded class device
|
||||
* @buf: the buffer returned
|
||||
* A sysfs 'read-only' shost attribute.
|
||||
*/
|
||||
static ssize_t pm8001_ctl_ib_queue_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 offset;
|
||||
char *str = buf;
|
||||
int start = 0;
|
||||
#define IB_MEMMAP(c) \
|
||||
(*(u32 *)((u8 *)pm8001_ha-> \
|
||||
memoryMap.region[IB].virt_ptr + \
|
||||
pm8001_ha->evtlog_ib_offset + (c)))
|
||||
|
||||
for (offset = 0; offset < IB_OB_READ_TIMES; offset++) {
|
||||
str += sprintf(str, "0x%08x\n", IB_MEMMAP(start));
|
||||
start = start + 4;
|
||||
}
|
||||
pm8001_ha->evtlog_ib_offset += SYSFS_OFFSET;
|
||||
if (((pm8001_ha->evtlog_ib_offset) % (PM80XX_IB_OB_QUEUE_SIZE)) == 0)
|
||||
pm8001_ha->evtlog_ib_offset = 0;
|
||||
|
||||
return str - buf;
|
||||
}
|
||||
|
||||
static DEVICE_ATTR(ib_log, S_IRUGO, pm8001_ctl_ib_queue_log_show, NULL);
|
||||
/**
|
||||
* pm8001_ctl_ob_queue_log_show - Out bound Queue log
|
||||
* @cdev:pointer to embedded class device
|
||||
* @buf: the buffer returned
|
||||
* A sysfs 'read-only' shost attribute.
|
||||
*/
|
||||
|
||||
static ssize_t pm8001_ctl_ob_queue_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 offset;
|
||||
char *str = buf;
|
||||
int start = 0;
|
||||
#define OB_MEMMAP(c) \
|
||||
(*(u32 *)((u8 *)pm8001_ha-> \
|
||||
memoryMap.region[OB].virt_ptr + \
|
||||
pm8001_ha->evtlog_ob_offset + (c)))
|
||||
|
||||
for (offset = 0; offset < IB_OB_READ_TIMES; offset++) {
|
||||
str += sprintf(str, "0x%08x\n", OB_MEMMAP(start));
|
||||
start = start + 4;
|
||||
}
|
||||
pm8001_ha->evtlog_ob_offset += SYSFS_OFFSET;
|
||||
if (((pm8001_ha->evtlog_ob_offset) % (PM80XX_IB_OB_QUEUE_SIZE)) == 0)
|
||||
pm8001_ha->evtlog_ob_offset = 0;
|
||||
|
||||
return str - buf;
|
||||
}
|
||||
static DEVICE_ATTR(ob_log, S_IRUGO, pm8001_ctl_ob_queue_log_show, NULL);
|
||||
/**
|
||||
* pm8001_ctl_bios_version_show - Bios version Display
|
||||
* @cdev:pointer to embedded class device
|
||||
* @buf:the buffer returned
|
||||
* A sysfs 'read-only' shost attribute.
|
||||
*/
|
||||
static ssize_t pm8001_ctl_bios_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;
|
||||
char *str = buf;
|
||||
int bios_index;
|
||||
DECLARE_COMPLETION_ONSTACK(completion);
|
||||
struct pm8001_ioctl_payload payload;
|
||||
|
||||
pm8001_ha->nvmd_completion = &completion;
|
||||
payload.minor_function = 7;
|
||||
payload.offset = 0;
|
||||
payload.length = 4096;
|
||||
payload.func_specific = kzalloc(4096, GFP_KERNEL);
|
||||
if (!payload.func_specific)
|
||||
return -ENOMEM;
|
||||
if (PM8001_CHIP_DISP->get_nvmd_req(pm8001_ha, &payload)) {
|
||||
kfree(payload.func_specific);
|
||||
return -ENOMEM;
|
||||
}
|
||||
wait_for_completion(&completion);
|
||||
for (bios_index = BIOSOFFSET; bios_index < BIOS_OFFSET_LIMIT;
|
||||
bios_index++)
|
||||
str += sprintf(str, "%c",
|
||||
*(payload.func_specific+bios_index));
|
||||
kfree(payload.func_specific);
|
||||
return str - buf;
|
||||
}
|
||||
static DEVICE_ATTR(bios_version, S_IRUGO, pm8001_ctl_bios_version_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);
|
||||
|
||||
/**
|
||||
** pm8001_ctl_fatal_log_show - fatal error logging
|
||||
** @cdev:pointer to embedded class device
|
||||
** @buf: the buffer returned
|
||||
**
|
||||
** A sysfs 'read-only' shost attribute.
|
||||
**/
|
||||
|
||||
static ssize_t pm8001_ctl_fatal_log_show(struct device *cdev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
{
|
||||
ssize_t count;
|
||||
|
||||
count = pm80xx_get_fatal_dump(cdev, attr, buf);
|
||||
return count;
|
||||
}
|
||||
|
||||
static DEVICE_ATTR(fatal_log, S_IRUGO, pm8001_ctl_fatal_log_show, NULL);
|
||||
|
||||
|
||||
/**
|
||||
** pm8001_ctl_gsm_log_show - gsm dump collection
|
||||
** @cdev:pointer to embedded class device
|
||||
** @buf: the buffer returned
|
||||
**A sysfs 'read-only' shost attribute.
|
||||
**/
|
||||
static ssize_t pm8001_ctl_gsm_log_show(struct device *cdev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
{
|
||||
ssize_t count;
|
||||
|
||||
count = pm8001_get_gsm_dump(cdev, SYSFS_OFFSET, buf);
|
||||
return count;
|
||||
}
|
||||
|
||||
static DEVICE_ATTR(gsm_log, S_IRUGO, pm8001_ctl_gsm_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;
|
||||
u32 ret;
|
||||
u32 length = 1024 * 5 + sizeof(*payload) - 1;
|
||||
|
||||
if (pm8001_ha->fw_image->size > 4096) {
|
||||
pm8001_ha->fw_status = FAIL_FILE_SIZE;
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
ioctlbuffer = kzalloc(length, GFP_KERNEL);
|
||||
if (!ioctlbuffer) {
|
||||
pm8001_ha->fw_status = FAIL_OUT_MEMORY;
|
||||
return -ENOMEM;
|
||||
}
|
||||
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;
|
||||
payload->minor_function = 0x1;
|
||||
pm8001_ha->nvmd_completion = &completion;
|
||||
ret = PM8001_CHIP_DISP->set_nvmd_req(pm8001_ha, payload);
|
||||
if (ret) {
|
||||
pm8001_ha->fw_status = FAIL_OUT_MEMORY;
|
||||
goto out;
|
||||
}
|
||||
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;
|
||||
struct fw_control_info *fwControl;
|
||||
u32 partitionSize, partitionSizeTmp;
|
||||
u32 loopNumber, loopcount;
|
||||
struct pm8001_fw_image_header *image_hdr;
|
||||
u32 sizeRead = 0;
|
||||
u32 ret = 0;
|
||||
u32 length = 1024 * 16 + sizeof(*payload) - 1;
|
||||
|
||||
if (pm8001_ha->fw_image->size < 28) {
|
||||
pm8001_ha->fw_status = FAIL_FILE_SIZE;
|
||||
return -EFAULT;
|
||||
}
|
||||
ioctlbuffer = kzalloc(length, GFP_KERNEL);
|
||||
if (!ioctlbuffer) {
|
||||
pm8001_ha->fw_status = FAIL_OUT_MEMORY;
|
||||
return -ENOMEM;
|
||||
}
|
||||
image_hdr = (struct pm8001_fw_image_header *)pm8001_ha->fw_image->data;
|
||||
while (sizeRead < pm8001_ha->fw_image->size) {
|
||||
partitionSizeTmp =
|
||||
*(u32 *)((u8 *)&image_hdr->image_length + sizeRead);
|
||||
partitionSize = be32_to_cpu(partitionSizeTmp);
|
||||
loopcount = DIV_ROUND_UP(partitionSize + HEADER_LEN,
|
||||
IOCTL_BUF_SIZE);
|
||||
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);
|
||||
if (ret) {
|
||||
pm8001_ha->fw_status = FAIL_OUT_MEMORY;
|
||||
goto out;
|
||||
}
|
||||
wait_for_completion(&completion);
|
||||
if (fwControl->retcode > FLASH_UPDATE_IN_PROGRESS) {
|
||||
pm8001_ha->fw_status = fwControl->retcode;
|
||||
ret = -EFAULT;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
}
|
||||
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 ret;
|
||||
|
||||
if (!capable(CAP_SYS_ADMIN))
|
||||
return -EACCES;
|
||||
|
||||
/* this test protects us from running two flash processes at once,
|
||||
* so we should start with this test */
|
||||
if (pm8001_ha->fw_status == FLASH_IN_PROGRESS)
|
||||
return -EINPROGRESS;
|
||||
pm8001_ha->fw_status = FLASH_IN_PROGRESS;
|
||||
|
||||
cmd_ptr = kzalloc(count*2, GFP_KERNEL);
|
||||
if (!cmd_ptr) {
|
||||
pm8001_ha->fw_status = FAIL_OUT_MEMORY;
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
filename_ptr = cmd_ptr + count;
|
||||
res = sscanf(buf, "%s %s", cmd_ptr, filename_ptr);
|
||||
if (res != 2) {
|
||||
pm8001_ha->fw_status = FAIL_PARAMETERS;
|
||||
ret = -EINVAL;
|
||||
goto out;
|
||||
}
|
||||
|
||||
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) {
|
||||
pm8001_ha->fw_status = FAIL_PARAMETERS;
|
||||
ret = -EINVAL;
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = request_firmware(&pm8001_ha->fw_image,
|
||||
filename_ptr,
|
||||
pm8001_ha->dev);
|
||||
|
||||
if (ret) {
|
||||
PM8001_FAIL_DBG(pm8001_ha,
|
||||
pm8001_printk(
|
||||
"Failed to load firmware image file %s, error %d\n",
|
||||
filename_ptr, ret));
|
||||
pm8001_ha->fw_status = FAIL_OPEN_BIOS_FILE;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (FLASH_CMD_UPDATE == flash_command)
|
||||
ret = pm8001_update_flash(pm8001_ha);
|
||||
else
|
||||
ret = pm8001_set_nvmd(pm8001_ha);
|
||||
|
||||
release_firmware(pm8001_ha->fw_image);
|
||||
out:
|
||||
kfree(cmd_ptr);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
pm8001_ha->fw_status = FLASH_OK;
|
||||
return count;
|
||||
}
|
||||
|
||||
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_IWUSR|S_IWGRP,
|
||||
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_fatal_log,
|
||||
&dev_attr_gsm_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,
|
||||
&dev_attr_bios_version,
|
||||
&dev_attr_ib_log,
|
||||
&dev_attr_ob_log,
|
||||
NULL,
|
||||
};
|
||||
|
63
drivers/scsi/pm8001/pm8001_ctl.h
Normal file
63
drivers/scsi/pm8001/pm8001_ctl.h
Normal file
|
@ -0,0 +1,63 @@
|
|||
/*
|
||||
* 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
|
||||
|
||||
#define BIOSOFFSET 56
|
||||
#define BIOS_OFFSET_LIMIT 61
|
||||
|
||||
#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
|
||||
|
||||
#define IB_OB_READ_TIMES 256
|
||||
#define SYSFS_OFFSET 1024
|
||||
#define PM80XX_IB_OB_QUEUE_SIZE (32 * 1024)
|
||||
#define PM8001_IB_OB_QUEUE_SIZE (16 * 1024)
|
||||
#endif /* PM8001_CTL_H_INCLUDED */
|
||||
|
131
drivers/scsi/pm8001/pm8001_defs.h
Normal file
131
drivers/scsi/pm8001/pm8001_defs.h
Normal file
|
@ -0,0 +1,131 @@
|
|||
/*
|
||||
* PMC-Sierra 8001/8081/8088/8089 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,
|
||||
chip_8008,
|
||||
chip_8009,
|
||||
chip_8018,
|
||||
chip_8019,
|
||||
chip_8074,
|
||||
chip_8076,
|
||||
chip_8077
|
||||
};
|
||||
|
||||
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_MPI_QUEUE 1024 /* maximum mpi queue entries */
|
||||
#define PM8001_MAX_INB_NUM 1
|
||||
#define PM8001_MAX_OUTB_NUM 1
|
||||
#define PM8001_MAX_SPCV_INB_NUM 1
|
||||
#define PM8001_MAX_SPCV_OUTB_NUM 4
|
||||
#define PM8001_CAN_QUEUE 508 /* SCSI Queue depth */
|
||||
|
||||
/* Inbound/Outbound queue size */
|
||||
#define IOMB_SIZE_SPC 64
|
||||
#define IOMB_SIZE_SPCV 128
|
||||
|
||||
/* unchangeable hardware details */
|
||||
#define PM8001_MAX_PHYS 16 /* max. possible phys */
|
||||
#define PM8001_MAX_PORTS 16 /* max. possible ports */
|
||||
#define PM8001_MAX_DEVICES 2048 /* max supported device */
|
||||
#define PM8001_MAX_MSIX_VEC 64 /* max msi-x int for spcv/ve */
|
||||
|
||||
#define USI_MAX_MEMCNT_BASE 5
|
||||
#define IB (USI_MAX_MEMCNT_BASE + 1)
|
||||
#define CI (IB + PM8001_MAX_SPCV_INB_NUM)
|
||||
#define OB (CI + PM8001_MAX_SPCV_INB_NUM)
|
||||
#define PI (OB + PM8001_MAX_SPCV_OUTB_NUM)
|
||||
#define USI_MAX_MEMCNT (PI + PM8001_MAX_SPCV_OUTB_NUM)
|
||||
#define PM8001_MAX_DMA_SG SG_ALL
|
||||
enum memory_region_num {
|
||||
AAP1 = 0x0, /* application acceleration processor */
|
||||
IOP, /* IO processor */
|
||||
NVMD, /* NVM device */
|
||||
DEV_MEM, /* memory for devices */
|
||||
CCB_MEM, /* memory for command control block */
|
||||
FW_FLASH, /* memory for fw flash update */
|
||||
FORENSIC_MEM /* memory for fw forensic data */
|
||||
};
|
||||
#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
|
5125
drivers/scsi/pm8001/pm8001_hwi.c
Normal file
5125
drivers/scsi/pm8001/pm8001_hwi.c
Normal file
File diff suppressed because it is too large
Load diff
1038
drivers/scsi/pm8001/pm8001_hwi.h
Normal file
1038
drivers/scsi/pm8001/pm8001_hwi.h
Normal file
File diff suppressed because it is too large
Load diff
1227
drivers/scsi/pm8001/pm8001_init.c
Normal file
1227
drivers/scsi/pm8001/pm8001_init.c
Normal file
File diff suppressed because it is too large
Load diff
1270
drivers/scsi/pm8001/pm8001_sas.c
Normal file
1270
drivers/scsi/pm8001/pm8001_sas.c
Normal file
File diff suppressed because it is too large
Load diff
724
drivers/scsi/pm8001/pm8001_sas.h
Normal file
724
drivers/scsi/pm8001/pm8001_sas.h
Normal file
|
@ -0,0 +1,724 @@
|
|||
/*
|
||||
* PMC-Sierra PM8001/8081/8088/8089 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/workqueue.h>
|
||||
#include <scsi/libsas.h>
|
||||
#include <scsi/scsi_tcq.h>
|
||||
#include <scsi/sas_ata.h>
|
||||
#include <linux/atomic.h>
|
||||
#include "pm8001_defs.h"
|
||||
|
||||
#define DRV_NAME "pm80xx"
|
||||
#define DRV_VERSION "0.1.37"
|
||||
#define PM8001_FAIL_LOGGING 0x01 /* Error message 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 /* libsas EH function 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 "pm80xx %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 PM8001_READ_VPD
|
||||
|
||||
|
||||
#define DEV_IS_EXPANDER(type) ((type == SAS_EDGE_EXPANDER_DEVICE) || (type == SAS_FANOUT_EXPANDER_DEVICE))
|
||||
#define IS_SPCV_12G(dev) ((dev->device == 0X8074) \
|
||||
|| (dev->device == 0X8076) \
|
||||
|| (dev->device == 0X8077))
|
||||
|
||||
#define PM8001_NAME_LENGTH 32/* generic length of strings */
|
||||
extern struct list_head hba_list;
|
||||
extern const struct pm8001_dispatch pm8001_8001_dispatch;
|
||||
extern const struct pm8001_dispatch pm8001_80xx_dispatch;
|
||||
|
||||
struct pm8001_hba_info;
|
||||
struct pm8001_ccb_info;
|
||||
struct pm8001_device;
|
||||
/* define task management IU */
|
||||
struct pm8001_tmf_task {
|
||||
u8 tmf;
|
||||
u32 tag_of_task_to_be_managed;
|
||||
};
|
||||
struct pm8001_ioctl_payload {
|
||||
u32 signature;
|
||||
u16 major_function;
|
||||
u16 minor_function;
|
||||
u16 length;
|
||||
u16 status;
|
||||
u16 offset;
|
||||
u16 id;
|
||||
u8 *func_specific;
|
||||
};
|
||||
|
||||
#define MPI_FATAL_ERROR_TABLE_OFFSET_MASK 0xFFFFFF
|
||||
#define MPI_FATAL_ERROR_TABLE_SIZE(value) ((0xFF000000 & value) >> SHIFT24)
|
||||
#define MPI_FATAL_EDUMP_TABLE_LO_OFFSET 0x00 /* HNFBUFL */
|
||||
#define MPI_FATAL_EDUMP_TABLE_HI_OFFSET 0x04 /* HNFBUFH */
|
||||
#define MPI_FATAL_EDUMP_TABLE_LENGTH 0x08 /* HNFBLEN */
|
||||
#define MPI_FATAL_EDUMP_TABLE_HANDSHAKE 0x0C /* FDDHSHK */
|
||||
#define MPI_FATAL_EDUMP_TABLE_STATUS 0x10 /* FDDTSTAT */
|
||||
#define MPI_FATAL_EDUMP_TABLE_ACCUM_LEN 0x14 /* ACCDDLEN */
|
||||
#define MPI_FATAL_EDUMP_HANDSHAKE_RDY 0x1
|
||||
#define MPI_FATAL_EDUMP_HANDSHAKE_BUSY 0x0
|
||||
#define MPI_FATAL_EDUMP_TABLE_STAT_RSVD 0x0
|
||||
#define MPI_FATAL_EDUMP_TABLE_STAT_DMA_FAILED 0x1
|
||||
#define MPI_FATAL_EDUMP_TABLE_STAT_NF_SUCCESS_MORE_DATA 0x2
|
||||
#define MPI_FATAL_EDUMP_TABLE_STAT_NF_SUCCESS_DONE 0x3
|
||||
#define TYPE_GSM_SPACE 1
|
||||
#define TYPE_QUEUE 2
|
||||
#define TYPE_FATAL 3
|
||||
#define TYPE_NON_FATAL 4
|
||||
#define TYPE_INBOUND 1
|
||||
#define TYPE_OUTBOUND 2
|
||||
struct forensic_data {
|
||||
u32 data_type;
|
||||
union {
|
||||
struct {
|
||||
u32 direct_len;
|
||||
u32 direct_offset;
|
||||
void *direct_data;
|
||||
} gsm_buf;
|
||||
struct {
|
||||
u16 queue_type;
|
||||
u16 queue_index;
|
||||
u32 direct_len;
|
||||
void *direct_data;
|
||||
} queue_buf;
|
||||
struct {
|
||||
u32 direct_len;
|
||||
u32 direct_offset;
|
||||
u32 read_len;
|
||||
void *direct_data;
|
||||
} data_buf;
|
||||
};
|
||||
};
|
||||
|
||||
/* bit31-26 - mask bar */
|
||||
#define SCRATCH_PAD0_BAR_MASK 0xFC000000
|
||||
/* bit25-0 - offset mask */
|
||||
#define SCRATCH_PAD0_OFFSET_MASK 0x03FFFFFF
|
||||
/* if AAP error state */
|
||||
#define SCRATCH_PAD0_AAPERR_MASK 0xFFFFFFFF
|
||||
/* Inbound doorbell bit7 */
|
||||
#define SPCv_MSGU_CFG_TABLE_NONFATAL_DUMP 0x80
|
||||
/* Inbound doorbell bit7 SPCV */
|
||||
#define SPCV_MSGU_CFG_TABLE_TRANSFER_DEBUG_INFO 0x80
|
||||
#define MAIN_MERRDCTO_MERRDCES 0xA0/* DWORD 0x28) */
|
||||
|
||||
struct pm8001_dispatch {
|
||||
char *name;
|
||||
int (*chip_init)(struct pm8001_hba_info *pm8001_ha);
|
||||
int (*chip_soft_rst)(struct pm8001_hba_info *pm8001_ha);
|
||||
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);
|
||||
irqreturn_t (*isr)(struct pm8001_hba_info *pm8001_ha, u8 vec);
|
||||
u32 (*is_our_interupt)(struct pm8001_hba_info *pm8001_ha);
|
||||
int (*isr_process_oq)(struct pm8001_hba_info *pm8001_ha, u8 vec);
|
||||
void (*interrupt_enable)(struct pm8001_hba_info *pm8001_ha, u8 vec);
|
||||
void (*interrupt_disable)(struct pm8001_hba_info *pm8001_ha, u8 vec);
|
||||
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);
|
||||
int (*sas_re_init_req)(struct pm8001_hba_info *pm8001_ha);
|
||||
};
|
||||
|
||||
struct pm8001_chip_info {
|
||||
u32 encrypt;
|
||||
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;
|
||||
u8 port_attached;
|
||||
u8 wide_port_phymap;
|
||||
u8 port_state;
|
||||
struct list_head list;
|
||||
};
|
||||
|
||||
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_device_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;
|
||||
u8 open_retry;
|
||||
};
|
||||
|
||||
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 encrypt {
|
||||
u32 cipher_mode;
|
||||
u32 sec_mode;
|
||||
u32 status;
|
||||
u32 flag;
|
||||
};
|
||||
|
||||
struct sas_phy_attribute_table {
|
||||
u32 phystart1_16[16];
|
||||
u32 outbound_hw_event_pid1_16[16];
|
||||
};
|
||||
|
||||
union main_cfg_table {
|
||||
struct {
|
||||
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;
|
||||
u32 rsvd[4];
|
||||
} pm8001_tbl;
|
||||
|
||||
struct {
|
||||
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 rsvd[8];
|
||||
u32 crc_core_dump;
|
||||
u32 rsvd1;
|
||||
u32 upper_event_log_addr;
|
||||
u32 lower_event_log_addr;
|
||||
u32 event_log_size;
|
||||
u32 event_log_severity;
|
||||
u32 upper_pcs_event_log_addr;
|
||||
u32 lower_pcs_event_log_addr;
|
||||
u32 pcs_event_log_size;
|
||||
u32 pcs_event_log_severity;
|
||||
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 gpio_led_mapping;
|
||||
u32 analog_setup_table_offset;
|
||||
u32 int_vec_table_offset;
|
||||
u32 phy_attr_table_offset;
|
||||
u32 port_recovery_timer;
|
||||
u32 interrupt_reassertion_delay;
|
||||
u32 fatal_n_non_fatal_dump; /* 0x28 */
|
||||
} pm80xx_tbl;
|
||||
};
|
||||
|
||||
union general_status_table {
|
||||
struct {
|
||||
u32 gst_len_mpistate;
|
||||
u32 iq_freeze_state0;
|
||||
u32 iq_freeze_state1;
|
||||
u32 msgu_tcnt;
|
||||
u32 iop_tcnt;
|
||||
u32 rsvd;
|
||||
u32 phy_state[8];
|
||||
u32 gpio_input_val;
|
||||
u32 rsvd1[2];
|
||||
u32 recover_err_info[8];
|
||||
} pm8001_tbl;
|
||||
struct {
|
||||
u32 gst_len_mpistate;
|
||||
u32 iq_freeze_state0;
|
||||
u32 iq_freeze_state1;
|
||||
u32 msgu_tcnt;
|
||||
u32 iop_tcnt;
|
||||
u32 rsvd[9];
|
||||
u32 gpio_input_val;
|
||||
u32 rsvd1[2];
|
||||
u32 recover_err_info[8];
|
||||
} pm80xx_tbl;
|
||||
};
|
||||
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 isr_param {
|
||||
struct pm8001_hba_info *drv_inst;
|
||||
u32 irq_id;
|
||||
};
|
||||
struct pm8001_hba_info {
|
||||
char name[PM8001_NAME_LENGTH];
|
||||
struct list_head list;
|
||||
unsigned long flags;
|
||||
spinlock_t lock;/* host-wide lock */
|
||||
spinlock_t bitmap_lock;
|
||||
struct pci_dev *pdev;/* our device */
|
||||
struct device *dev;
|
||||
struct pm8001_hba_memspace io_mem[6];
|
||||
struct mpi_mem_req memoryMap;
|
||||
struct encrypt encrypt_info; /* support encryption */
|
||||
struct forensic_data forensic_info;
|
||||
u32 fatal_bar_loc;
|
||||
u32 forensic_last_offset;
|
||||
u32 fatal_forensic_shift_offset;
|
||||
u32 forensic_fatal_step;
|
||||
u32 evtlog_ib_offset;
|
||||
u32 evtlog_ob_offset;
|
||||
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*/
|
||||
void __iomem *pspa_q_tbl_addr;
|
||||
/*MPI SAS PHY attributes Queue Config Table Addr*/
|
||||
void __iomem *ivt_tbl_addr; /*MPI IVT Table Addr */
|
||||
void __iomem *fatal_tbl_addr; /*MPI IVT Table Addr */
|
||||
union main_cfg_table main_cfg_tbl;
|
||||
union general_status_table gs_tbl;
|
||||
struct inbound_queue_table inbnd_q_tbl[PM8001_MAX_SPCV_INB_NUM];
|
||||
struct outbound_queue_table outbnd_q_tbl[PM8001_MAX_SPCV_OUTB_NUM];
|
||||
struct sas_phy_attribute_table phy_attr_table;
|
||||
/* MPI SAS PHY attributes */
|
||||
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;
|
||||
u32 iomb_size; /* SPC and SPCV IOMB size */
|
||||
struct pm8001_device *devices;
|
||||
struct pm8001_ccb_info *ccb_info;
|
||||
#ifdef PM8001_USE_MSIX
|
||||
struct msix_entry msix_entries[PM8001_MAX_MSIX_VEC];
|
||||
/*for msi-x interrupt*/
|
||||
int number_of_intr;/*will be used in remove()*/
|
||||
#endif
|
||||
#ifdef PM8001_USE_TASKLET
|
||||
struct tasklet_struct tasklet[PM8001_MAX_MSIX_VEC];
|
||||
#endif
|
||||
u32 logging_level;
|
||||
u32 fw_status;
|
||||
u32 smp_exp_mode;
|
||||
const struct firmware *fw_image;
|
||||
struct isr_param irq_vector[PM8001_MAX_MSIX_VEC];
|
||||
};
|
||||
|
||||
struct pm8001_work {
|
||||
struct work_struct work;
|
||||
struct pm8001_hba_info *pm8001_ha;
|
||||
void *data;
|
||||
int handler;
|
||||
};
|
||||
|
||||
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)));
|
||||
|
||||
|
||||
/**
|
||||
* 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
|
||||
|
||||
#define NCQ_READ_LOG_FLAG 0x80000000
|
||||
#define NCQ_ABORT_ALL_FLAG 0x40000000
|
||||
#define NCQ_2ND_RLE_FLAG 0x20000000
|
||||
/**
|
||||
* 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 response 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;
|
||||
};
|
||||
|
||||
/* pm8001 workqueue */
|
||||
extern struct workqueue_struct *pm8001_wq;
|
||||
|
||||
/******************** 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_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);
|
||||
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_I_T_nexus_event_handler(struct domain_device *dev);
|
||||
int pm8001_query_task(struct sas_task *task);
|
||||
void pm8001_open_reject_retry(
|
||||
struct pm8001_hba_info *pm8001_ha,
|
||||
struct sas_task *task_to_close,
|
||||
struct pm8001_device *device_to_close);
|
||||
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);
|
||||
|
||||
void pm8001_chip_iounmap(struct pm8001_hba_info *pm8001_ha);
|
||||
int pm8001_mpi_build_cmd(struct pm8001_hba_info *pm8001_ha,
|
||||
struct inbound_queue_table *circularQ,
|
||||
u32 opCode, void *payload, u32 responseQueue);
|
||||
int pm8001_mpi_msg_free_get(struct inbound_queue_table *circularQ,
|
||||
u16 messageSize, void **messagePtr);
|
||||
u32 pm8001_mpi_msg_free_set(struct pm8001_hba_info *pm8001_ha, void *pMsg,
|
||||
struct outbound_queue_table *circularQ, u8 bc);
|
||||
u32 pm8001_mpi_msg_consume(struct pm8001_hba_info *pm8001_ha,
|
||||
struct outbound_queue_table *circularQ,
|
||||
void **messagePtr1, u8 *pBC);
|
||||
int pm8001_chip_set_dev_state_req(struct pm8001_hba_info *pm8001_ha,
|
||||
struct pm8001_device *pm8001_dev, u32 state);
|
||||
int pm8001_chip_fw_flash_update_req(struct pm8001_hba_info *pm8001_ha,
|
||||
void *payload);
|
||||
int pm8001_chip_fw_flash_update_build(struct pm8001_hba_info *pm8001_ha,
|
||||
void *fw_flash_updata_info, u32 tag);
|
||||
int pm8001_chip_set_nvmd_req(struct pm8001_hba_info *pm8001_ha, void *payload);
|
||||
int pm8001_chip_get_nvmd_req(struct pm8001_hba_info *pm8001_ha, void *payload);
|
||||
int pm8001_chip_ssp_tm_req(struct pm8001_hba_info *pm8001_ha,
|
||||
struct pm8001_ccb_info *ccb,
|
||||
struct pm8001_tmf_task *tmf);
|
||||
int pm8001_chip_abort_task(struct pm8001_hba_info *pm8001_ha,
|
||||
struct pm8001_device *pm8001_dev,
|
||||
u8 flag, u32 task_tag, u32 cmd_tag);
|
||||
int pm8001_chip_dereg_dev_req(struct pm8001_hba_info *pm8001_ha, u32 device_id);
|
||||
void pm8001_chip_make_sg(struct scatterlist *scatter, int nr, void *prd);
|
||||
void pm8001_work_fn(struct work_struct *work);
|
||||
int pm8001_handle_event(struct pm8001_hba_info *pm8001_ha,
|
||||
void *data, int handler);
|
||||
void pm8001_mpi_set_dev_state_resp(struct pm8001_hba_info *pm8001_ha,
|
||||
void *piomb);
|
||||
void pm8001_mpi_set_nvmd_resp(struct pm8001_hba_info *pm8001_ha,
|
||||
void *piomb);
|
||||
void pm8001_mpi_get_nvmd_resp(struct pm8001_hba_info *pm8001_ha,
|
||||
void *piomb);
|
||||
int pm8001_mpi_local_phy_ctl(struct pm8001_hba_info *pm8001_ha,
|
||||
void *piomb);
|
||||
void pm8001_get_lrate_mode(struct pm8001_phy *phy, u8 link_rate);
|
||||
void pm8001_get_attached_sas_addr(struct pm8001_phy *phy, u8 *sas_addr);
|
||||
void pm8001_bytes_dmaed(struct pm8001_hba_info *pm8001_ha, int i);
|
||||
int pm8001_mpi_reg_resp(struct pm8001_hba_info *pm8001_ha, void *piomb);
|
||||
int pm8001_mpi_dereg_resp(struct pm8001_hba_info *pm8001_ha, void *piomb);
|
||||
int pm8001_mpi_fw_flash_update_resp(struct pm8001_hba_info *pm8001_ha,
|
||||
void *piomb);
|
||||
int pm8001_mpi_general_event(struct pm8001_hba_info *pm8001_ha , void *piomb);
|
||||
int pm8001_mpi_task_abort_resp(struct pm8001_hba_info *pm8001_ha, void *piomb);
|
||||
struct sas_task *pm8001_alloc_task(void);
|
||||
void pm8001_task_done(struct sas_task *task);
|
||||
void pm8001_free_task(struct sas_task *task);
|
||||
void pm8001_tag_free(struct pm8001_hba_info *pm8001_ha, u32 tag);
|
||||
struct pm8001_device *pm8001_find_dev(struct pm8001_hba_info *pm8001_ha,
|
||||
u32 device_id);
|
||||
int pm80xx_set_thermal_config(struct pm8001_hba_info *pm8001_ha);
|
||||
|
||||
int pm8001_bar4_shift(struct pm8001_hba_info *pm8001_ha, u32 shiftValue);
|
||||
void pm8001_set_phy_profile(struct pm8001_hba_info *pm8001_ha,
|
||||
u32 length, u8 *buf);
|
||||
int pm80xx_bar4_shift(struct pm8001_hba_info *pm8001_ha, u32 shiftValue);
|
||||
ssize_t pm80xx_get_fatal_dump(struct device *cdev,
|
||||
struct device_attribute *attr, char *buf);
|
||||
ssize_t pm8001_get_gsm_dump(struct device *cdev, u32, char *buf);
|
||||
/* ctl shared API */
|
||||
extern struct device_attribute *pm8001_host_attrs[];
|
||||
|
||||
static inline void
|
||||
pm8001_ccb_task_free_done(struct pm8001_hba_info *pm8001_ha,
|
||||
struct sas_task *task, struct pm8001_ccb_info *ccb,
|
||||
u32 ccb_idx)
|
||||
{
|
||||
pm8001_ccb_task_free(pm8001_ha, task, ccb, ccb_idx);
|
||||
smp_mb(); /*in order to force CPU ordering*/
|
||||
spin_unlock(&pm8001_ha->lock);
|
||||
task->task_done(task);
|
||||
spin_lock(&pm8001_ha->lock);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
4551
drivers/scsi/pm8001/pm80xx_hwi.c
Normal file
4551
drivers/scsi/pm8001/pm80xx_hwi.c
Normal file
File diff suppressed because it is too large
Load diff
1532
drivers/scsi/pm8001/pm80xx_hwi.h
Normal file
1532
drivers/scsi/pm8001/pm80xx_hwi.h
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue