0002-scsi-hpsa-Support-HBA-mode-on-HP-Smart-Array-P410i-c.patch

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium 2024-08-19 18:13:39 +02:00
parent 2c7e8079c2
commit 405f7c7706
2 changed files with 97 additions and 4 deletions

View File

@ -107,6 +107,11 @@ module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
MODULE_PARM_DESC(hpsa_simple_mode, MODULE_PARM_DESC(hpsa_simple_mode,
"Use 'simple mode' rather than 'performant mode'"); "Use 'simple mode' rather than 'performant mode'");
static bool hpsa_use_nvram_hba_flag;
module_param(hpsa_use_nvram_hba_flag, bool, 0444);
MODULE_PARM_DESC(hpsa_use_nvram_hba_flag,
"Use flag from NVRAM to enable HBA mode");
/* define the PCI info for the cards we can control */ /* define the PCI info for the cards we can control */
static const struct pci_device_id hpsa_pci_device_id[] = { static const struct pci_device_id hpsa_pci_device_id[] = {
{PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241}, {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
@ -3095,6 +3100,37 @@ out:
return rc; return rc;
} }
static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
struct bmic_controller_parameters *buf)
{
int rc = IO_OK;
struct CommandList *c;
struct ErrorInfo *ei;
c = cmd_alloc(h);
if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, sizeof(*buf),
0, RAID_CTLR_LUNID, TYPE_CMD)) {
rc = -1;
goto out;
}
rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
NO_TIMEOUT);
if (rc)
goto out;
ei = c->err_info;
if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
hpsa_scsi_interpret_error(h, c);
rc = -1;
}
out:
cmd_free(h, c);
return rc;
}
static int hpsa_send_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev, static int hpsa_send_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
u8 reset_type, int reply_queue) u8 reset_type, int reply_queue)
{ {
@ -4347,6 +4383,50 @@ static bool hpsa_skip_device(struct ctlr_info *h, u8 *lunaddrbytes,
return false; return false;
} }
static int hpsa_nvram_hba_flag_enabled(struct ctlr_info *h, bool *flag_enabled)
{
int rc;
struct bmic_controller_parameters *ctlr_params;
ctlr_params = kzalloc(sizeof(*ctlr_params), GFP_KERNEL);
if (!ctlr_params) {
rc = -ENOMEM;
goto out;
}
rc = hpsa_bmic_ctrl_mode_sense(h, ctlr_params);
if (rc)
goto out;
*flag_enabled = ctlr_params->nvram_flags & HPSA_NVRAM_FLAG_HBA;
out:
kfree(ctlr_params);
return rc;
}
static int hpsa_update_nvram_hba_mode(struct ctlr_info *h)
{
int rc;
bool flag_enabled;
if (!hpsa_use_nvram_hba_flag)
return 0;
rc = hpsa_nvram_hba_flag_enabled(h, &flag_enabled);
if (rc == -ENOMEM)
dev_warn(&h->pdev->dev, "Out of memory.\n");
if (rc)
return rc;
dev_info(&h->pdev->dev, "NVRAM HBA flag: %s\n",
flag_enabled ? "enabled" : "disabled");
h->nvram_hba_mode_enabled = flag_enabled;
return 0;
}
static void hpsa_update_scsi_devices(struct ctlr_info *h) static void hpsa_update_scsi_devices(struct ctlr_info *h)
{ {
/* the idea here is we could get notified /* the idea here is we could get notified
@ -4403,6 +4483,11 @@ static void hpsa_update_scsi_devices(struct ctlr_info *h)
__func__); __func__);
} }
if (hpsa_update_nvram_hba_mode(h)) {
h->drv_req_rescan = 1;
goto out;
}
/* We might see up to the maximum number of logical and physical disks /* We might see up to the maximum number of logical and physical disks
* plus external target devices, and a device for the local RAID * plus external target devices, and a device for the local RAID
* controller. * controller.
@ -4489,11 +4574,16 @@ static void hpsa_update_scsi_devices(struct ctlr_info *h)
* Expose all devices except for physical devices that * Expose all devices except for physical devices that
* are masked. * are masked.
*/ */
if (MASKED_DEVICE(lunaddrbytes) && this_device->physical_device) if (MASKED_DEVICE(lunaddrbytes) &&
this_device->expose_device = 0; this_device->physical_device) {
else if (is_disk_or_zbc(this_device) &&
h->nvram_hba_mode_enabled)
this_device->expose_device = 1;
else
this_device->expose_device = 0;
} else {
this_device->expose_device = 1; this_device->expose_device = 1;
}
/* /*
* Get the SAS address for physical devices that are exposed. * Get the SAS address for physical devices that are exposed.

View File

@ -161,6 +161,8 @@ struct bmic_controller_parameters {
}; };
#pragma pack() #pragma pack()
#define HPSA_NVRAM_FLAG_HBA (1 << 3)
struct ctlr_info { struct ctlr_info {
unsigned int *reply_map; unsigned int *reply_map;
int ctlr; int ctlr;
@ -186,6 +188,7 @@ struct ctlr_info {
unsigned int msix_vectors; unsigned int msix_vectors;
int intr_mode; /* either PERF_MODE_INT or SIMPLE_MODE_INT */ int intr_mode; /* either PERF_MODE_INT or SIMPLE_MODE_INT */
struct access_method access; struct access_method access;
bool nvram_hba_mode_enabled;
/* queue and queue Info */ /* queue and queue Info */
unsigned int Qdepth; unsigned int Qdepth;