diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2005-08-26 22:08:30 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-09-04 20:53:07 -0400 |
commit | cca5335caf2d19ef8bd6b833445d2c6ca652a89b (patch) | |
tree | 74bb0b787d9feb1499ed2eafb2aa5a4317b6d3b5 /drivers/scsi/qla2xxx/qla_gs.c | |
parent | ad3e0edaceb9771be7ffbd7aa24fb444a7ed85bf (diff) |
[SCSI] qla2xxx: Add FDMI support.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_gs.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_gs.c | 564 |
1 files changed, 564 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_gs.c b/drivers/scsi/qla2xxx/qla_gs.c index 31ce4f62da13..e7b138c2e339 100644 --- a/drivers/scsi/qla2xxx/qla_gs.c +++ b/drivers/scsi/qla2xxx/qla_gs.c | |||
@@ -1099,3 +1099,567 @@ qla2x00_sns_rnn_id(scsi_qla_host_t *ha) | |||
1099 | 1099 | ||
1100 | return (rval); | 1100 | return (rval); |
1101 | } | 1101 | } |
1102 | |||
1103 | /** | ||
1104 | * qla2x00_mgmt_svr_login() - Login to fabric Managment Service. | ||
1105 | * @ha: HA context | ||
1106 | * | ||
1107 | * Returns 0 on success. | ||
1108 | */ | ||
1109 | static int | ||
1110 | qla2x00_mgmt_svr_login(scsi_qla_host_t *ha) | ||
1111 | { | ||
1112 | int ret; | ||
1113 | uint16_t mb[MAILBOX_REGISTER_COUNT]; | ||
1114 | |||
1115 | ret = QLA_SUCCESS; | ||
1116 | if (ha->flags.management_server_logged_in) | ||
1117 | return ret; | ||
1118 | |||
1119 | ha->isp_ops.fabric_login(ha, ha->mgmt_svr_loop_id, 0xff, 0xff, 0xfa, | ||
1120 | mb, BIT_1); | ||
1121 | if (mb[0] != MBS_COMMAND_COMPLETE) { | ||
1122 | DEBUG2_13(printk("%s(%ld): Failed MANAGEMENT_SERVER login: " | ||
1123 | "loop_id=%x mb[0]=%x mb[1]=%x mb[2]=%x mb[6]=%x mb[7]=%x\n", | ||
1124 | __func__, ha->host_no, ha->mgmt_svr_loop_id, mb[0], mb[1], | ||
1125 | mb[2], mb[6], mb[7])); | ||
1126 | ret = QLA_FUNCTION_FAILED; | ||
1127 | } else | ||
1128 | ha->flags.management_server_logged_in = 1; | ||
1129 | |||
1130 | return ret; | ||
1131 | } | ||
1132 | |||
1133 | /** | ||
1134 | * qla2x00_prep_ms_fdmi_iocb() - Prepare common MS IOCB fields for FDMI query. | ||
1135 | * @ha: HA context | ||
1136 | * @req_size: request size in bytes | ||
1137 | * @rsp_size: response size in bytes | ||
1138 | * | ||
1139 | * Returns a pointer to the @ha's ms_iocb. | ||
1140 | */ | ||
1141 | void * | ||
1142 | qla2x00_prep_ms_fdmi_iocb(scsi_qla_host_t *ha, uint32_t req_size, | ||
1143 | uint32_t rsp_size) | ||
1144 | { | ||
1145 | ms_iocb_entry_t *ms_pkt; | ||
1146 | |||
1147 | ms_pkt = ha->ms_iocb; | ||
1148 | memset(ms_pkt, 0, sizeof(ms_iocb_entry_t)); | ||
1149 | |||
1150 | ms_pkt->entry_type = MS_IOCB_TYPE; | ||
1151 | ms_pkt->entry_count = 1; | ||
1152 | SET_TARGET_ID(ha, ms_pkt->loop_id, ha->mgmt_svr_loop_id); | ||
1153 | ms_pkt->control_flags = __constant_cpu_to_le16(CF_READ | CF_HEAD_TAG); | ||
1154 | ms_pkt->timeout = __constant_cpu_to_le16(59); | ||
1155 | ms_pkt->cmd_dsd_count = __constant_cpu_to_le16(1); | ||
1156 | ms_pkt->total_dsd_count = __constant_cpu_to_le16(2); | ||
1157 | ms_pkt->rsp_bytecount = cpu_to_le32(rsp_size); | ||
1158 | ms_pkt->req_bytecount = cpu_to_le32(req_size); | ||
1159 | |||
1160 | ms_pkt->dseg_req_address[0] = cpu_to_le32(LSD(ha->ct_sns_dma)); | ||
1161 | ms_pkt->dseg_req_address[1] = cpu_to_le32(MSD(ha->ct_sns_dma)); | ||
1162 | ms_pkt->dseg_req_length = ms_pkt->req_bytecount; | ||
1163 | |||
1164 | ms_pkt->dseg_rsp_address[0] = cpu_to_le32(LSD(ha->ct_sns_dma)); | ||
1165 | ms_pkt->dseg_rsp_address[1] = cpu_to_le32(MSD(ha->ct_sns_dma)); | ||
1166 | ms_pkt->dseg_rsp_length = ms_pkt->rsp_bytecount; | ||
1167 | |||
1168 | return ms_pkt; | ||
1169 | } | ||
1170 | |||
1171 | /** | ||
1172 | * qla24xx_prep_ms_fdmi_iocb() - Prepare common MS IOCB fields for FDMI query. | ||
1173 | * @ha: HA context | ||
1174 | * @req_size: request size in bytes | ||
1175 | * @rsp_size: response size in bytes | ||
1176 | * | ||
1177 | * Returns a pointer to the @ha's ms_iocb. | ||
1178 | */ | ||
1179 | void * | ||
1180 | qla24xx_prep_ms_fdmi_iocb(scsi_qla_host_t *ha, uint32_t req_size, | ||
1181 | uint32_t rsp_size) | ||
1182 | { | ||
1183 | struct ct_entry_24xx *ct_pkt; | ||
1184 | |||
1185 | ct_pkt = (struct ct_entry_24xx *)ha->ms_iocb; | ||
1186 | memset(ct_pkt, 0, sizeof(struct ct_entry_24xx)); | ||
1187 | |||
1188 | ct_pkt->entry_type = CT_IOCB_TYPE; | ||
1189 | ct_pkt->entry_count = 1; | ||
1190 | ct_pkt->nport_handle = cpu_to_le16(ha->mgmt_svr_loop_id); | ||
1191 | ct_pkt->timeout = __constant_cpu_to_le16(59); | ||
1192 | ct_pkt->cmd_dsd_count = __constant_cpu_to_le16(1); | ||
1193 | ct_pkt->rsp_dsd_count = __constant_cpu_to_le16(1); | ||
1194 | ct_pkt->rsp_byte_count = cpu_to_le32(rsp_size); | ||
1195 | ct_pkt->cmd_byte_count = cpu_to_le32(req_size); | ||
1196 | |||
1197 | ct_pkt->dseg_0_address[0] = cpu_to_le32(LSD(ha->ct_sns_dma)); | ||
1198 | ct_pkt->dseg_0_address[1] = cpu_to_le32(MSD(ha->ct_sns_dma)); | ||
1199 | ct_pkt->dseg_0_len = ct_pkt->cmd_byte_count; | ||
1200 | |||
1201 | ct_pkt->dseg_1_address[0] = cpu_to_le32(LSD(ha->ct_sns_dma)); | ||
1202 | ct_pkt->dseg_1_address[1] = cpu_to_le32(MSD(ha->ct_sns_dma)); | ||
1203 | ct_pkt->dseg_1_len = ct_pkt->rsp_byte_count; | ||
1204 | |||
1205 | return ct_pkt; | ||
1206 | } | ||
1207 | |||
1208 | static inline ms_iocb_entry_t * | ||
1209 | qla2x00_update_ms_fdmi_iocb(scsi_qla_host_t *ha, uint32_t req_size) | ||
1210 | { | ||
1211 | ms_iocb_entry_t *ms_pkt = ha->ms_iocb; | ||
1212 | struct ct_entry_24xx *ct_pkt = (struct ct_entry_24xx *)ha->ms_iocb; | ||
1213 | |||
1214 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) { | ||
1215 | ct_pkt->cmd_byte_count = cpu_to_le32(req_size); | ||
1216 | ct_pkt->dseg_0_len = ct_pkt->cmd_byte_count; | ||
1217 | } else { | ||
1218 | ms_pkt->req_bytecount = cpu_to_le32(req_size); | ||
1219 | ms_pkt->dseg_req_length = ms_pkt->req_bytecount; | ||
1220 | } | ||
1221 | |||
1222 | return ms_pkt; | ||
1223 | } | ||
1224 | |||
1225 | /** | ||
1226 | * qla2x00_prep_ct_req() - Prepare common CT request fields for SNS query. | ||
1227 | * @ct_req: CT request buffer | ||
1228 | * @cmd: GS command | ||
1229 | * @rsp_size: response size in bytes | ||
1230 | * | ||
1231 | * Returns a pointer to the intitialized @ct_req. | ||
1232 | */ | ||
1233 | static inline struct ct_sns_req * | ||
1234 | qla2x00_prep_ct_fdmi_req(struct ct_sns_req *ct_req, uint16_t cmd, | ||
1235 | uint16_t rsp_size) | ||
1236 | { | ||
1237 | memset(ct_req, 0, sizeof(struct ct_sns_pkt)); | ||
1238 | |||
1239 | ct_req->header.revision = 0x01; | ||
1240 | ct_req->header.gs_type = 0xFA; | ||
1241 | ct_req->header.gs_subtype = 0x10; | ||
1242 | ct_req->command = cpu_to_be16(cmd); | ||
1243 | ct_req->max_rsp_size = cpu_to_be16((rsp_size - 16) / 4); | ||
1244 | |||
1245 | return ct_req; | ||
1246 | } | ||
1247 | |||
1248 | /** | ||
1249 | * qla2x00_fdmi_rhba() - | ||
1250 | * @ha: HA context | ||
1251 | * | ||
1252 | * Returns 0 on success. | ||
1253 | */ | ||
1254 | static int | ||
1255 | qla2x00_fdmi_rhba(scsi_qla_host_t *ha) | ||
1256 | { | ||
1257 | int rval, alen; | ||
1258 | uint32_t size, sn; | ||
1259 | |||
1260 | ms_iocb_entry_t *ms_pkt; | ||
1261 | struct ct_sns_req *ct_req; | ||
1262 | struct ct_sns_rsp *ct_rsp; | ||
1263 | uint8_t *entries; | ||
1264 | struct ct_fdmi_hba_attr *eiter; | ||
1265 | |||
1266 | /* Issue RHBA */ | ||
1267 | /* Prepare common MS IOCB */ | ||
1268 | /* Request size adjusted after CT preparation */ | ||
1269 | ms_pkt = ha->isp_ops.prep_ms_fdmi_iocb(ha, 0, RHBA_RSP_SIZE); | ||
1270 | |||
1271 | /* Prepare CT request */ | ||
1272 | ct_req = qla2x00_prep_ct_fdmi_req(&ha->ct_sns->p.req, RHBA_CMD, | ||
1273 | RHBA_RSP_SIZE); | ||
1274 | ct_rsp = &ha->ct_sns->p.rsp; | ||
1275 | |||
1276 | /* Prepare FDMI command arguments -- attribute block, attributes. */ | ||
1277 | memcpy(ct_req->req.rhba.hba_identifier, ha->port_name, WWN_SIZE); | ||
1278 | ct_req->req.rhba.entry_count = __constant_cpu_to_be32(1); | ||
1279 | memcpy(ct_req->req.rhba.port_name, ha->port_name, WWN_SIZE); | ||
1280 | size = 2 * WWN_SIZE + 4 + 4; | ||
1281 | |||
1282 | /* Attributes */ | ||
1283 | ct_req->req.rhba.attrs.count = | ||
1284 | __constant_cpu_to_be32(FDMI_HBA_ATTR_COUNT); | ||
1285 | entries = ct_req->req.rhba.hba_identifier; | ||
1286 | |||
1287 | /* Nodename. */ | ||
1288 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1289 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_NODE_NAME); | ||
1290 | eiter->len = __constant_cpu_to_be16(4 + WWN_SIZE); | ||
1291 | memcpy(eiter->a.node_name, ha->node_name, WWN_SIZE); | ||
1292 | size += 4 + WWN_SIZE; | ||
1293 | |||
1294 | DEBUG13(printk("%s(%ld): NODENAME=%02x%02x%02x%02x%02x%02x%02x%02x.\n", | ||
1295 | __func__, ha->host_no, | ||
1296 | eiter->a.node_name[0], eiter->a.node_name[1], eiter->a.node_name[2], | ||
1297 | eiter->a.node_name[3], eiter->a.node_name[4], eiter->a.node_name[5], | ||
1298 | eiter->a.node_name[6], eiter->a.node_name[7])); | ||
1299 | |||
1300 | /* Manufacturer. */ | ||
1301 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1302 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_MANUFACTURER); | ||
1303 | strcpy(eiter->a.manufacturer, "QLogic Corporation"); | ||
1304 | alen = strlen(eiter->a.manufacturer); | ||
1305 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1306 | eiter->len = cpu_to_be16(4 + alen); | ||
1307 | size += 4 + alen; | ||
1308 | |||
1309 | DEBUG13(printk("%s(%ld): MANUFACTURER=%s.\n", __func__, ha->host_no, | ||
1310 | eiter->a.manufacturer)); | ||
1311 | |||
1312 | /* Serial number. */ | ||
1313 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1314 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_SERIAL_NUMBER); | ||
1315 | sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1; | ||
1316 | sprintf(eiter->a.serial_num, "%c%05d", 'A' + sn / 100000, sn % 100000); | ||
1317 | alen = strlen(eiter->a.serial_num); | ||
1318 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1319 | eiter->len = cpu_to_be16(4 + alen); | ||
1320 | size += 4 + alen; | ||
1321 | |||
1322 | DEBUG13(printk("%s(%ld): SERIALNO=%s.\n", __func__, ha->host_no, | ||
1323 | eiter->a.serial_num)); | ||
1324 | |||
1325 | /* Model name. */ | ||
1326 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1327 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_MODEL); | ||
1328 | strcpy(eiter->a.model, ha->model_number); | ||
1329 | alen = strlen(eiter->a.model); | ||
1330 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1331 | eiter->len = cpu_to_be16(4 + alen); | ||
1332 | size += 4 + alen; | ||
1333 | |||
1334 | DEBUG13(printk("%s(%ld): MODEL_NAME=%s.\n", __func__, ha->host_no, | ||
1335 | eiter->a.model)); | ||
1336 | |||
1337 | /* Model description. */ | ||
1338 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1339 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_MODEL_DESCRIPTION); | ||
1340 | if (ha->model_desc) | ||
1341 | strncpy(eiter->a.model_desc, ha->model_desc, 80); | ||
1342 | alen = strlen(eiter->a.model_desc); | ||
1343 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1344 | eiter->len = cpu_to_be16(4 + alen); | ||
1345 | size += 4 + alen; | ||
1346 | |||
1347 | DEBUG13(printk("%s(%ld): MODEL_DESC=%s.\n", __func__, ha->host_no, | ||
1348 | eiter->a.model_desc)); | ||
1349 | |||
1350 | /* Hardware version. */ | ||
1351 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1352 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_HARDWARE_VERSION); | ||
1353 | strcpy(eiter->a.hw_version, ha->adapter_id); | ||
1354 | alen = strlen(eiter->a.hw_version); | ||
1355 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1356 | eiter->len = cpu_to_be16(4 + alen); | ||
1357 | size += 4 + alen; | ||
1358 | |||
1359 | DEBUG13(printk("%s(%ld): HARDWAREVER=%s.\n", __func__, ha->host_no, | ||
1360 | eiter->a.hw_version)); | ||
1361 | |||
1362 | /* Driver version. */ | ||
1363 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1364 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_DRIVER_VERSION); | ||
1365 | strcpy(eiter->a.driver_version, qla2x00_version_str); | ||
1366 | alen = strlen(eiter->a.driver_version); | ||
1367 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1368 | eiter->len = cpu_to_be16(4 + alen); | ||
1369 | size += 4 + alen; | ||
1370 | |||
1371 | DEBUG13(printk("%s(%ld): DRIVERVER=%s.\n", __func__, ha->host_no, | ||
1372 | eiter->a.driver_version)); | ||
1373 | |||
1374 | /* Option ROM version. */ | ||
1375 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1376 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_OPTION_ROM_VERSION); | ||
1377 | strcpy(eiter->a.orom_version, "0.00"); | ||
1378 | alen = strlen(eiter->a.orom_version); | ||
1379 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1380 | eiter->len = cpu_to_be16(4 + alen); | ||
1381 | size += 4 + alen; | ||
1382 | |||
1383 | DEBUG13(printk("%s(%ld): OPTROMVER=%s.\n", __func__, ha->host_no, | ||
1384 | eiter->a.orom_version)); | ||
1385 | |||
1386 | /* Firmware version */ | ||
1387 | eiter = (struct ct_fdmi_hba_attr *) (entries + size); | ||
1388 | eiter->type = __constant_cpu_to_be16(FDMI_HBA_FIRMWARE_VERSION); | ||
1389 | ha->isp_ops.fw_version_str(ha, eiter->a.fw_version); | ||
1390 | alen = strlen(eiter->a.fw_version); | ||
1391 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1392 | eiter->len = cpu_to_be16(4 + alen); | ||
1393 | size += 4 + alen; | ||
1394 | |||
1395 | DEBUG13(printk("%s(%ld): FIRMWAREVER=%s.\n", __func__, ha->host_no, | ||
1396 | eiter->a.fw_version)); | ||
1397 | |||
1398 | /* Update MS request size. */ | ||
1399 | qla2x00_update_ms_fdmi_iocb(ha, size + 16); | ||
1400 | |||
1401 | DEBUG13(printk("%s(%ld): RHBA identifier=" | ||
1402 | "%02x%02x%02x%02x%02x%02x%02x%02x size=%d.\n", __func__, | ||
1403 | ha->host_no, ct_req->req.rhba.hba_identifier[0], | ||
1404 | ct_req->req.rhba.hba_identifier[1], | ||
1405 | ct_req->req.rhba.hba_identifier[2], | ||
1406 | ct_req->req.rhba.hba_identifier[3], | ||
1407 | ct_req->req.rhba.hba_identifier[4], | ||
1408 | ct_req->req.rhba.hba_identifier[5], | ||
1409 | ct_req->req.rhba.hba_identifier[6], | ||
1410 | ct_req->req.rhba.hba_identifier[7], size)); | ||
1411 | DEBUG13(qla2x00_dump_buffer(entries, size)); | ||
1412 | |||
1413 | /* Execute MS IOCB */ | ||
1414 | rval = qla2x00_issue_iocb(ha, ha->ms_iocb, ha->ms_iocb_dma, | ||
1415 | sizeof(ms_iocb_entry_t)); | ||
1416 | if (rval != QLA_SUCCESS) { | ||
1417 | /*EMPTY*/ | ||
1418 | DEBUG2_3(printk("scsi(%ld): RHBA issue IOCB failed (%d).\n", | ||
1419 | ha->host_no, rval)); | ||
1420 | } else if (qla2x00_chk_ms_status(ha, ms_pkt, ct_rsp, "RHBA") != | ||
1421 | QLA_SUCCESS) { | ||
1422 | rval = QLA_FUNCTION_FAILED; | ||
1423 | if (ct_rsp->header.reason_code == CT_REASON_CANNOT_PERFORM && | ||
1424 | ct_rsp->header.explanation_code == | ||
1425 | CT_EXPL_ALREADY_REGISTERED) { | ||
1426 | DEBUG2_13(printk("%s(%ld): HBA already registered.\n", | ||
1427 | __func__, ha->host_no)); | ||
1428 | rval = QLA_ALREADY_REGISTERED; | ||
1429 | } | ||
1430 | } else { | ||
1431 | DEBUG2(printk("scsi(%ld): RHBA exiting normally.\n", | ||
1432 | ha->host_no)); | ||
1433 | } | ||
1434 | |||
1435 | return rval; | ||
1436 | } | ||
1437 | |||
1438 | /** | ||
1439 | * qla2x00_fdmi_dhba() - | ||
1440 | * @ha: HA context | ||
1441 | * | ||
1442 | * Returns 0 on success. | ||
1443 | */ | ||
1444 | static int | ||
1445 | qla2x00_fdmi_dhba(scsi_qla_host_t *ha) | ||
1446 | { | ||
1447 | int rval; | ||
1448 | |||
1449 | ms_iocb_entry_t *ms_pkt; | ||
1450 | struct ct_sns_req *ct_req; | ||
1451 | struct ct_sns_rsp *ct_rsp; | ||
1452 | |||
1453 | /* Issue RPA */ | ||
1454 | /* Prepare common MS IOCB */ | ||
1455 | ms_pkt = ha->isp_ops.prep_ms_fdmi_iocb(ha, DHBA_REQ_SIZE, | ||
1456 | DHBA_RSP_SIZE); | ||
1457 | |||
1458 | /* Prepare CT request */ | ||
1459 | ct_req = qla2x00_prep_ct_fdmi_req(&ha->ct_sns->p.req, DHBA_CMD, | ||
1460 | DHBA_RSP_SIZE); | ||
1461 | ct_rsp = &ha->ct_sns->p.rsp; | ||
1462 | |||
1463 | /* Prepare FDMI command arguments -- portname. */ | ||
1464 | memcpy(ct_req->req.dhba.port_name, ha->port_name, WWN_SIZE); | ||
1465 | |||
1466 | DEBUG13(printk("%s(%ld): DHBA portname=" | ||
1467 | "%02x%02x%02x%02x%02x%02x%02x%02x.\n", __func__, ha->host_no, | ||
1468 | ct_req->req.dhba.port_name[0], ct_req->req.dhba.port_name[1], | ||
1469 | ct_req->req.dhba.port_name[2], ct_req->req.dhba.port_name[3], | ||
1470 | ct_req->req.dhba.port_name[4], ct_req->req.dhba.port_name[5], | ||
1471 | ct_req->req.dhba.port_name[6], ct_req->req.dhba.port_name[7])); | ||
1472 | |||
1473 | /* Execute MS IOCB */ | ||
1474 | rval = qla2x00_issue_iocb(ha, ha->ms_iocb, ha->ms_iocb_dma, | ||
1475 | sizeof(ms_iocb_entry_t)); | ||
1476 | if (rval != QLA_SUCCESS) { | ||
1477 | /*EMPTY*/ | ||
1478 | DEBUG2_3(printk("scsi(%ld): DHBA issue IOCB failed (%d).\n", | ||
1479 | ha->host_no, rval)); | ||
1480 | } else if (qla2x00_chk_ms_status(ha, ms_pkt, ct_rsp, "DHBA") != | ||
1481 | QLA_SUCCESS) { | ||
1482 | rval = QLA_FUNCTION_FAILED; | ||
1483 | } else { | ||
1484 | DEBUG2(printk("scsi(%ld): DHBA exiting normally.\n", | ||
1485 | ha->host_no)); | ||
1486 | } | ||
1487 | |||
1488 | return rval; | ||
1489 | } | ||
1490 | |||
1491 | /** | ||
1492 | * qla2x00_fdmi_rpa() - | ||
1493 | * @ha: HA context | ||
1494 | * | ||
1495 | * Returns 0 on success. | ||
1496 | */ | ||
1497 | static int | ||
1498 | qla2x00_fdmi_rpa(scsi_qla_host_t *ha) | ||
1499 | { | ||
1500 | int rval, alen; | ||
1501 | uint32_t size, max_frame_size; | ||
1502 | |||
1503 | ms_iocb_entry_t *ms_pkt; | ||
1504 | struct ct_sns_req *ct_req; | ||
1505 | struct ct_sns_rsp *ct_rsp; | ||
1506 | uint8_t *entries; | ||
1507 | struct ct_fdmi_port_attr *eiter; | ||
1508 | struct init_cb_24xx *icb24 = (struct init_cb_24xx *)ha->init_cb; | ||
1509 | |||
1510 | /* Issue RPA */ | ||
1511 | /* Prepare common MS IOCB */ | ||
1512 | /* Request size adjusted after CT preparation */ | ||
1513 | ms_pkt = ha->isp_ops.prep_ms_fdmi_iocb(ha, 0, RPA_RSP_SIZE); | ||
1514 | |||
1515 | /* Prepare CT request */ | ||
1516 | ct_req = qla2x00_prep_ct_fdmi_req(&ha->ct_sns->p.req, RPA_CMD, | ||
1517 | RPA_RSP_SIZE); | ||
1518 | ct_rsp = &ha->ct_sns->p.rsp; | ||
1519 | |||
1520 | /* Prepare FDMI command arguments -- attribute block, attributes. */ | ||
1521 | memcpy(ct_req->req.rpa.port_name, ha->port_name, WWN_SIZE); | ||
1522 | size = WWN_SIZE + 4; | ||
1523 | |||
1524 | /* Attributes */ | ||
1525 | ct_req->req.rpa.attrs.count = | ||
1526 | __constant_cpu_to_be32(FDMI_PORT_ATTR_COUNT); | ||
1527 | entries = ct_req->req.rpa.port_name; | ||
1528 | |||
1529 | /* FC4 types. */ | ||
1530 | eiter = (struct ct_fdmi_port_attr *) (entries + size); | ||
1531 | eiter->type = __constant_cpu_to_be16(FDMI_PORT_FC4_TYPES); | ||
1532 | eiter->len = __constant_cpu_to_be16(4 + 32); | ||
1533 | eiter->a.fc4_types[2] = 0x01; | ||
1534 | size += 4 + 32; | ||
1535 | |||
1536 | DEBUG13(printk("%s(%ld): FC4_TYPES=%02x %02x.\n", __func__, ha->host_no, | ||
1537 | eiter->a.fc4_types[2], eiter->a.fc4_types[1])); | ||
1538 | |||
1539 | /* Supported speed. */ | ||
1540 | eiter = (struct ct_fdmi_port_attr *) (entries + size); | ||
1541 | eiter->type = __constant_cpu_to_be16(FDMI_PORT_SUPPORT_SPEED); | ||
1542 | eiter->len = __constant_cpu_to_be16(4 + 4); | ||
1543 | if (IS_QLA25XX(ha)) | ||
1544 | eiter->a.sup_speed = __constant_cpu_to_be32(4); | ||
1545 | else if (IS_QLA24XX(ha)) | ||
1546 | eiter->a.sup_speed = __constant_cpu_to_be32(8); | ||
1547 | else if (IS_QLA23XX(ha)) | ||
1548 | eiter->a.sup_speed = __constant_cpu_to_be32(2); | ||
1549 | else | ||
1550 | eiter->a.sup_speed = __constant_cpu_to_be32(1); | ||
1551 | size += 4 + 4; | ||
1552 | |||
1553 | DEBUG13(printk("%s(%ld): SUPPORTED_SPEED=%x.\n", __func__, ha->host_no, | ||
1554 | eiter->a.sup_speed)); | ||
1555 | |||
1556 | /* Current speed. */ | ||
1557 | eiter = (struct ct_fdmi_port_attr *) (entries + size); | ||
1558 | eiter->type = __constant_cpu_to_be16(FDMI_PORT_CURRENT_SPEED); | ||
1559 | eiter->len = __constant_cpu_to_be16(4 + 4); | ||
1560 | switch (ha->link_data_rate) { | ||
1561 | case 0: | ||
1562 | eiter->a.cur_speed = __constant_cpu_to_be32(1); | ||
1563 | break; | ||
1564 | case 1: | ||
1565 | eiter->a.cur_speed = __constant_cpu_to_be32(2); | ||
1566 | break; | ||
1567 | case 3: | ||
1568 | eiter->a.cur_speed = __constant_cpu_to_be32(8); | ||
1569 | break; | ||
1570 | case 4: | ||
1571 | eiter->a.cur_speed = __constant_cpu_to_be32(4); | ||
1572 | break; | ||
1573 | } | ||
1574 | size += 4 + 4; | ||
1575 | |||
1576 | DEBUG13(printk("%s(%ld): CURRENT_SPEED=%x.\n", __func__, ha->host_no, | ||
1577 | eiter->a.cur_speed)); | ||
1578 | |||
1579 | /* Max frame size. */ | ||
1580 | eiter = (struct ct_fdmi_port_attr *) (entries + size); | ||
1581 | eiter->type = __constant_cpu_to_be16(FDMI_PORT_MAX_FRAME_SIZE); | ||
1582 | eiter->len = __constant_cpu_to_be16(4 + 4); | ||
1583 | max_frame_size = IS_QLA24XX(ha) || IS_QLA25XX(ha) ? | ||
1584 | (uint32_t) icb24->frame_payload_size: | ||
1585 | (uint32_t) ha->init_cb->frame_payload_size; | ||
1586 | eiter->a.max_frame_size = cpu_to_be32(max_frame_size); | ||
1587 | size += 4 + 4; | ||
1588 | |||
1589 | DEBUG13(printk("%s(%ld): MAX_FRAME_SIZE=%x.\n", __func__, ha->host_no, | ||
1590 | eiter->a.max_frame_size)); | ||
1591 | |||
1592 | /* OS device name. */ | ||
1593 | eiter = (struct ct_fdmi_port_attr *) (entries + size); | ||
1594 | eiter->type = __constant_cpu_to_be16(FDMI_PORT_OS_DEVICE_NAME); | ||
1595 | sprintf(eiter->a.os_dev_name, "/proc/scsi/qla2xxx/%ld", ha->host_no); | ||
1596 | alen = strlen(eiter->a.os_dev_name); | ||
1597 | alen += (alen & 3) ? (4 - (alen & 3)) : 4; | ||
1598 | eiter->len = cpu_to_be16(4 + alen); | ||
1599 | size += 4 + alen; | ||
1600 | |||
1601 | DEBUG13(printk("%s(%ld): OS_DEVICE_NAME=%s.\n", __func__, ha->host_no, | ||
1602 | eiter->a.os_dev_name)); | ||
1603 | |||
1604 | /* Update MS request size. */ | ||
1605 | qla2x00_update_ms_fdmi_iocb(ha, size + 16); | ||
1606 | |||
1607 | DEBUG13(printk("%s(%ld): RPA portname=" | ||
1608 | "%02x%02x%02x%02x%02x%02x%02x%02x size=%d.\n", __func__, | ||
1609 | ha->host_no, ct_req->req.rpa.port_name[0], | ||
1610 | ct_req->req.rpa.port_name[1], ct_req->req.rpa.port_name[2], | ||
1611 | ct_req->req.rpa.port_name[3], ct_req->req.rpa.port_name[4], | ||
1612 | ct_req->req.rpa.port_name[5], ct_req->req.rpa.port_name[6], | ||
1613 | ct_req->req.rpa.port_name[7], size)); | ||
1614 | DEBUG13(qla2x00_dump_buffer(entries, size)); | ||
1615 | |||
1616 | /* Execute MS IOCB */ | ||
1617 | rval = qla2x00_issue_iocb(ha, ha->ms_iocb, ha->ms_iocb_dma, | ||
1618 | sizeof(ms_iocb_entry_t)); | ||
1619 | if (rval != QLA_SUCCESS) { | ||
1620 | /*EMPTY*/ | ||
1621 | DEBUG2_3(printk("scsi(%ld): RPA issue IOCB failed (%d).\n", | ||
1622 | ha->host_no, rval)); | ||
1623 | } else if (qla2x00_chk_ms_status(ha, ms_pkt, ct_rsp, "RPA") != | ||
1624 | QLA_SUCCESS) { | ||
1625 | rval = QLA_FUNCTION_FAILED; | ||
1626 | } else { | ||
1627 | DEBUG2(printk("scsi(%ld): RPA exiting normally.\n", | ||
1628 | ha->host_no)); | ||
1629 | } | ||
1630 | |||
1631 | return rval; | ||
1632 | } | ||
1633 | |||
1634 | /** | ||
1635 | * qla2x00_fdmi_register() - | ||
1636 | * @ha: HA context | ||
1637 | * | ||
1638 | * Returns 0 on success. | ||
1639 | */ | ||
1640 | int | ||
1641 | qla2x00_fdmi_register(scsi_qla_host_t *ha) | ||
1642 | { | ||
1643 | int rval; | ||
1644 | |||
1645 | rval = qla2x00_mgmt_svr_login(ha); | ||
1646 | if (rval) | ||
1647 | return rval; | ||
1648 | |||
1649 | rval = qla2x00_fdmi_rhba(ha); | ||
1650 | if (rval) { | ||
1651 | if (rval != QLA_ALREADY_REGISTERED) | ||
1652 | return rval; | ||
1653 | |||
1654 | rval = qla2x00_fdmi_dhba(ha); | ||
1655 | if (rval) | ||
1656 | return rval; | ||
1657 | |||
1658 | rval = qla2x00_fdmi_rhba(ha); | ||
1659 | if (rval) | ||
1660 | return rval; | ||
1661 | } | ||
1662 | rval = qla2x00_fdmi_rpa(ha); | ||
1663 | |||
1664 | return rval; | ||
1665 | } | ||