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 | |
| 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>
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_dbg.h | 7 | ||||
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_def.h | 151 | ||||
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_gbl.h | 4 | ||||
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_gs.c | 564 | ||||
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 6 | ||||
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_isr.c | 2 | ||||
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_mbx.c | 2 | ||||
| -rw-r--r-- | drivers/scsi/qla2xxx/qla_os.c | 10 |
8 files changed, 741 insertions, 5 deletions
diff --git a/drivers/scsi/qla2xxx/qla_dbg.h b/drivers/scsi/qla2xxx/qla_dbg.h index b8d90e97e017..9684e7a91fa9 100644 --- a/drivers/scsi/qla2xxx/qla_dbg.h +++ b/drivers/scsi/qla2xxx/qla_dbg.h | |||
| @@ -81,6 +81,7 @@ | |||
| 81 | #define DEBUG2_3_11(x) do {x;} while (0); | 81 | #define DEBUG2_3_11(x) do {x;} while (0); |
| 82 | #define DEBUG2_9_10(x) do {x;} while (0); | 82 | #define DEBUG2_9_10(x) do {x;} while (0); |
| 83 | #define DEBUG2_11(x) do {x;} while (0); | 83 | #define DEBUG2_11(x) do {x;} while (0); |
| 84 | #define DEBUG2_13(x) do {x;} while (0); | ||
| 84 | #else | 85 | #else |
| 85 | #define DEBUG2(x) do {} while (0); | 86 | #define DEBUG2(x) do {} while (0); |
| 86 | #endif | 87 | #endif |
| @@ -169,8 +170,14 @@ | |||
| 169 | 170 | ||
| 170 | #if defined(QL_DEBUG_LEVEL_13) | 171 | #if defined(QL_DEBUG_LEVEL_13) |
| 171 | #define DEBUG13(x) do {x;} while (0) | 172 | #define DEBUG13(x) do {x;} while (0) |
| 173 | #if !defined(DEBUG2_13) | ||
| 174 | #define DEBUG2_13(x) do {x;} while(0) | ||
| 175 | #endif | ||
| 172 | #else | 176 | #else |
| 173 | #define DEBUG13(x) do {} while (0) | 177 | #define DEBUG13(x) do {} while (0) |
| 178 | #if !defined(QL_DEBUG_LEVEL_2) | ||
| 179 | #define DEBUG2_13(x) do {} while(0) | ||
| 180 | #endif | ||
| 174 | #endif | 181 | #endif |
| 175 | 182 | ||
| 176 | #if defined(QL_DEBUG_LEVEL_14) | 183 | #if defined(QL_DEBUG_LEVEL_14) |
diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h index 38848c38ad8d..cdef86e49c60 100644 --- a/drivers/scsi/qla2xxx/qla_def.h +++ b/drivers/scsi/qla2xxx/qla_def.h | |||
| @@ -214,6 +214,7 @@ | |||
| 214 | * valid range of an N-PORT id is 0 through 0x7ef. | 214 | * valid range of an N-PORT id is 0 through 0x7ef. |
| 215 | */ | 215 | */ |
| 216 | #define NPH_LAST_HANDLE 0x7ef | 216 | #define NPH_LAST_HANDLE 0x7ef |
| 217 | #define NPH_MGMT_SERVER 0x7fa /* FFFFFA */ | ||
| 217 | #define NPH_SNS 0x7fc /* FFFFFC */ | 218 | #define NPH_SNS 0x7fc /* FFFFFC */ |
| 218 | #define NPH_FABRIC_CONTROLLER 0x7fd /* FFFFFD */ | 219 | #define NPH_FABRIC_CONTROLLER 0x7fd /* FFFFFD */ |
| 219 | #define NPH_F_PORT 0x7fe /* FFFFFE */ | 220 | #define NPH_F_PORT 0x7fe /* FFFFFE */ |
| @@ -1131,10 +1132,7 @@ typedef struct { | |||
| 1131 | 1132 | ||
| 1132 | uint8_t link_down_timeout; | 1133 | uint8_t link_down_timeout; |
| 1133 | 1134 | ||
| 1134 | uint8_t adapter_id_0[4]; | 1135 | uint8_t adapter_id[16]; |
| 1135 | uint8_t adapter_id_1[4]; | ||
| 1136 | uint8_t adapter_id_2[4]; | ||
| 1137 | uint8_t adapter_id_3[4]; | ||
| 1138 | 1136 | ||
| 1139 | uint8_t alt1_boot_node_name[WWN_SIZE]; | 1137 | uint8_t alt1_boot_node_name[WWN_SIZE]; |
| 1140 | uint16_t alt1_boot_lun_number; | 1138 | uint16_t alt1_boot_lun_number; |
| @@ -1728,6 +1726,8 @@ typedef struct fc_port { | |||
| 1728 | 1726 | ||
| 1729 | #define CT_REJECT_RESPONSE 0x8001 | 1727 | #define CT_REJECT_RESPONSE 0x8001 |
| 1730 | #define CT_ACCEPT_RESPONSE 0x8002 | 1728 | #define CT_ACCEPT_RESPONSE 0x8002 |
| 1729 | #define CT_REASON_CANNOT_PERFORM 0x09 | ||
| 1730 | #define CT_EXPL_ALREADY_REGISTERED 0x10 | ||
| 1731 | 1731 | ||
| 1732 | #define NS_N_PORT_TYPE 0x01 | 1732 | #define NS_N_PORT_TYPE 0x01 |
| 1733 | #define NS_NL_PORT_TYPE 0x02 | 1733 | #define NS_NL_PORT_TYPE 0x02 |
| @@ -1769,6 +1769,100 @@ typedef struct fc_port { | |||
| 1769 | #define RSNN_NN_REQ_SIZE (16 + 8 + 1 + 255) | 1769 | #define RSNN_NN_REQ_SIZE (16 + 8 + 1 + 255) |
| 1770 | #define RSNN_NN_RSP_SIZE 16 | 1770 | #define RSNN_NN_RSP_SIZE 16 |
| 1771 | 1771 | ||
| 1772 | /* | ||
| 1773 | * HBA attribute types. | ||
| 1774 | */ | ||
| 1775 | #define FDMI_HBA_ATTR_COUNT 9 | ||
| 1776 | #define FDMI_HBA_NODE_NAME 1 | ||
| 1777 | #define FDMI_HBA_MANUFACTURER 2 | ||
| 1778 | #define FDMI_HBA_SERIAL_NUMBER 3 | ||
| 1779 | #define FDMI_HBA_MODEL 4 | ||
| 1780 | #define FDMI_HBA_MODEL_DESCRIPTION 5 | ||
| 1781 | #define FDMI_HBA_HARDWARE_VERSION 6 | ||
| 1782 | #define FDMI_HBA_DRIVER_VERSION 7 | ||
| 1783 | #define FDMI_HBA_OPTION_ROM_VERSION 8 | ||
| 1784 | #define FDMI_HBA_FIRMWARE_VERSION 9 | ||
| 1785 | #define FDMI_HBA_OS_NAME_AND_VERSION 0xa | ||
| 1786 | #define FDMI_HBA_MAXIMUM_CT_PAYLOAD_LENGTH 0xb | ||
| 1787 | |||
| 1788 | struct ct_fdmi_hba_attr { | ||
| 1789 | uint16_t type; | ||
| 1790 | uint16_t len; | ||
| 1791 | union { | ||
| 1792 | uint8_t node_name[WWN_SIZE]; | ||
| 1793 | uint8_t manufacturer[32]; | ||
| 1794 | uint8_t serial_num[8]; | ||
| 1795 | uint8_t model[16]; | ||
| 1796 | uint8_t model_desc[80]; | ||
| 1797 | uint8_t hw_version[16]; | ||
| 1798 | uint8_t driver_version[32]; | ||
| 1799 | uint8_t orom_version[16]; | ||
| 1800 | uint8_t fw_version[16]; | ||
| 1801 | uint8_t os_version[128]; | ||
| 1802 | uint8_t max_ct_len[4]; | ||
| 1803 | } a; | ||
| 1804 | }; | ||
| 1805 | |||
| 1806 | struct ct_fdmi_hba_attributes { | ||
| 1807 | uint32_t count; | ||
| 1808 | struct ct_fdmi_hba_attr entry[FDMI_HBA_ATTR_COUNT]; | ||
| 1809 | }; | ||
| 1810 | |||
| 1811 | /* | ||
| 1812 | * Port attribute types. | ||
| 1813 | */ | ||
| 1814 | #define FDMI_PORT_ATTR_COUNT 5 | ||
| 1815 | #define FDMI_PORT_FC4_TYPES 1 | ||
| 1816 | #define FDMI_PORT_SUPPORT_SPEED 2 | ||
| 1817 | #define FDMI_PORT_CURRENT_SPEED 3 | ||
| 1818 | #define FDMI_PORT_MAX_FRAME_SIZE 4 | ||
| 1819 | #define FDMI_PORT_OS_DEVICE_NAME 5 | ||
| 1820 | #define FDMI_PORT_HOST_NAME 6 | ||
| 1821 | |||
| 1822 | struct ct_fdmi_port_attr { | ||
| 1823 | uint16_t type; | ||
| 1824 | uint16_t len; | ||
| 1825 | union { | ||
| 1826 | uint8_t fc4_types[32]; | ||
| 1827 | uint32_t sup_speed; | ||
| 1828 | uint32_t cur_speed; | ||
| 1829 | uint32_t max_frame_size; | ||
| 1830 | uint8_t os_dev_name[32]; | ||
| 1831 | uint8_t host_name[32]; | ||
| 1832 | } a; | ||
| 1833 | }; | ||
| 1834 | |||
| 1835 | /* | ||
| 1836 | * Port Attribute Block. | ||
| 1837 | */ | ||
| 1838 | struct ct_fdmi_port_attributes { | ||
| 1839 | uint32_t count; | ||
| 1840 | struct ct_fdmi_port_attr entry[FDMI_PORT_ATTR_COUNT]; | ||
| 1841 | }; | ||
| 1842 | |||
| 1843 | /* FDMI definitions. */ | ||
| 1844 | #define GRHL_CMD 0x100 | ||
| 1845 | #define GHAT_CMD 0x101 | ||
| 1846 | #define GRPL_CMD 0x102 | ||
| 1847 | #define GPAT_CMD 0x110 | ||
| 1848 | |||
| 1849 | #define RHBA_CMD 0x200 | ||
| 1850 | #define RHBA_RSP_SIZE 16 | ||
| 1851 | |||
| 1852 | #define RHAT_CMD 0x201 | ||
| 1853 | #define RPRT_CMD 0x210 | ||
| 1854 | |||
| 1855 | #define RPA_CMD 0x211 | ||
| 1856 | #define RPA_RSP_SIZE 16 | ||
| 1857 | |||
| 1858 | #define DHBA_CMD 0x300 | ||
| 1859 | #define DHBA_REQ_SIZE (16 + 8) | ||
| 1860 | #define DHBA_RSP_SIZE 16 | ||
| 1861 | |||
| 1862 | #define DHAT_CMD 0x301 | ||
| 1863 | #define DPRT_CMD 0x310 | ||
| 1864 | #define DPA_CMD 0x311 | ||
| 1865 | |||
| 1772 | /* CT command header -- request/response common fields */ | 1866 | /* CT command header -- request/response common fields */ |
| 1773 | struct ct_cmd_hdr { | 1867 | struct ct_cmd_hdr { |
| 1774 | uint8_t revision; | 1868 | uint8_t revision; |
| @@ -1826,6 +1920,43 @@ struct ct_sns_req { | |||
| 1826 | uint8_t name_len; | 1920 | uint8_t name_len; |
| 1827 | uint8_t sym_node_name[255]; | 1921 | uint8_t sym_node_name[255]; |
| 1828 | } rsnn_nn; | 1922 | } rsnn_nn; |
| 1923 | |||
| 1924 | struct { | ||
| 1925 | uint8_t hba_indentifier[8]; | ||
| 1926 | } ghat; | ||
| 1927 | |||
| 1928 | struct { | ||
| 1929 | uint8_t hba_identifier[8]; | ||
| 1930 | uint32_t entry_count; | ||
| 1931 | uint8_t port_name[8]; | ||
| 1932 | struct ct_fdmi_hba_attributes attrs; | ||
| 1933 | } rhba; | ||
| 1934 | |||
| 1935 | struct { | ||
| 1936 | uint8_t hba_identifier[8]; | ||
| 1937 | struct ct_fdmi_hba_attributes attrs; | ||
| 1938 | } rhat; | ||
| 1939 | |||
| 1940 | struct { | ||
| 1941 | uint8_t port_name[8]; | ||
| 1942 | struct ct_fdmi_port_attributes attrs; | ||
| 1943 | } rpa; | ||
| 1944 | |||
| 1945 | struct { | ||
| 1946 | uint8_t port_name[8]; | ||
| 1947 | } dhba; | ||
| 1948 | |||
| 1949 | struct { | ||
| 1950 | uint8_t port_name[8]; | ||
| 1951 | } dhat; | ||
| 1952 | |||
| 1953 | struct { | ||
| 1954 | uint8_t port_name[8]; | ||
| 1955 | } dprt; | ||
| 1956 | |||
| 1957 | struct { | ||
| 1958 | uint8_t port_name[8]; | ||
| 1959 | } dpa; | ||
| 1829 | } req; | 1960 | } req; |
| 1830 | }; | 1961 | }; |
| 1831 | 1962 | ||
| @@ -1883,6 +2014,12 @@ struct ct_sns_rsp { | |||
| 1883 | struct { | 2014 | struct { |
| 1884 | uint8_t fc4_types[32]; | 2015 | uint8_t fc4_types[32]; |
| 1885 | } gft_id; | 2016 | } gft_id; |
| 2017 | |||
| 2018 | struct { | ||
| 2019 | uint32_t entry_count; | ||
| 2020 | uint8_t port_name[8]; | ||
| 2021 | struct ct_fdmi_hba_attributes attrs; | ||
| 2022 | } ghat; | ||
| 1886 | } rsp; | 2023 | } rsp; |
| 1887 | }; | 2024 | }; |
| 1888 | 2025 | ||
| @@ -2033,6 +2170,8 @@ struct isp_operations { | |||
| 2033 | uint16_t (*calc_req_entries) (uint16_t); | 2170 | uint16_t (*calc_req_entries) (uint16_t); |
| 2034 | void (*build_iocbs) (srb_t *, cmd_entry_t *, uint16_t); | 2171 | void (*build_iocbs) (srb_t *, cmd_entry_t *, uint16_t); |
| 2035 | void * (*prep_ms_iocb) (struct scsi_qla_host *, uint32_t, uint32_t); | 2172 | void * (*prep_ms_iocb) (struct scsi_qla_host *, uint32_t, uint32_t); |
| 2173 | void * (*prep_ms_fdmi_iocb) (struct scsi_qla_host *, uint32_t, | ||
| 2174 | uint32_t); | ||
| 2036 | 2175 | ||
| 2037 | uint8_t * (*read_nvram) (struct scsi_qla_host *, uint8_t *, | 2176 | uint8_t * (*read_nvram) (struct scsi_qla_host *, uint8_t *, |
| 2038 | uint32_t, uint32_t); | 2177 | uint32_t, uint32_t); |
| @@ -2112,6 +2251,7 @@ typedef struct scsi_qla_host { | |||
| 2112 | #define IOCTL_ERROR_RECOVERY 23 | 2251 | #define IOCTL_ERROR_RECOVERY 23 |
| 2113 | #define LOOP_RESET_NEEDED 24 | 2252 | #define LOOP_RESET_NEEDED 24 |
| 2114 | #define BEACON_BLINK_NEEDED 25 | 2253 | #define BEACON_BLINK_NEEDED 25 |
| 2254 | #define REGISTER_FDMI_NEEDED 26 | ||
| 2115 | 2255 | ||
| 2116 | uint32_t device_flags; | 2256 | uint32_t device_flags; |
| 2117 | #define DFLG_LOCAL_DEVICES BIT_0 | 2257 | #define DFLG_LOCAL_DEVICES BIT_0 |
| @@ -2205,6 +2345,7 @@ typedef struct scsi_qla_host { | |||
| 2205 | int port_down_retry_count; | 2345 | int port_down_retry_count; |
| 2206 | uint8_t mbx_count; | 2346 | uint8_t mbx_count; |
| 2207 | uint16_t last_loop_id; | 2347 | uint16_t last_loop_id; |
| 2348 | uint16_t mgmt_svr_loop_id; | ||
| 2208 | 2349 | ||
| 2209 | uint32_t login_retry_count; | 2350 | uint32_t login_retry_count; |
| 2210 | 2351 | ||
| @@ -2319,6 +2460,7 @@ typedef struct scsi_qla_host { | |||
| 2319 | uint8_t model_number[16+1]; | 2460 | uint8_t model_number[16+1]; |
| 2320 | #define BINZERO "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" | 2461 | #define BINZERO "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
| 2321 | char *model_desc; | 2462 | char *model_desc; |
| 2463 | uint8_t adapter_id[16+1]; | ||
| 2322 | 2464 | ||
| 2323 | uint8_t *node_name; | 2465 | uint8_t *node_name; |
| 2324 | uint8_t *port_name; | 2466 | uint8_t *port_name; |
| @@ -2378,6 +2520,7 @@ typedef struct scsi_qla_host { | |||
| 2378 | #define QLA_SUSPENDED 0x106 | 2520 | #define QLA_SUSPENDED 0x106 |
| 2379 | #define QLA_BUSY 0x107 | 2521 | #define QLA_BUSY 0x107 |
| 2380 | #define QLA_RSCNS_HANDLED 0x108 | 2522 | #define QLA_RSCNS_HANDLED 0x108 |
| 2523 | #define QLA_ALREADY_REGISTERED 0x109 | ||
| 2381 | 2524 | ||
| 2382 | /* | 2525 | /* |
| 2383 | * Stat info for all adpaters | 2526 | * Stat info for all adpaters |
diff --git a/drivers/scsi/qla2xxx/qla_gbl.h b/drivers/scsi/qla2xxx/qla_gbl.h index 665c203e0675..3e1e5fe850a0 100644 --- a/drivers/scsi/qla2xxx/qla_gbl.h +++ b/drivers/scsi/qla2xxx/qla_gbl.h | |||
| @@ -79,6 +79,7 @@ extern int ql2xplogiabsentdevice; | |||
| 79 | extern int ql2xenablezio; | 79 | extern int ql2xenablezio; |
| 80 | extern int ql2xintrdelaytimer; | 80 | extern int ql2xintrdelaytimer; |
| 81 | extern int ql2xloginretrycount; | 81 | extern int ql2xloginretrycount; |
| 82 | extern int ql2xfdmienable; | ||
| 82 | 83 | ||
| 83 | extern void qla2x00_sp_compl(scsi_qla_host_t *, srb_t *); | 84 | extern void qla2x00_sp_compl(scsi_qla_host_t *, srb_t *); |
| 84 | 85 | ||
| @@ -269,6 +270,9 @@ extern int qla2x00_rft_id(scsi_qla_host_t *); | |||
| 269 | extern int qla2x00_rff_id(scsi_qla_host_t *); | 270 | extern int qla2x00_rff_id(scsi_qla_host_t *); |
| 270 | extern int qla2x00_rnn_id(scsi_qla_host_t *); | 271 | extern int qla2x00_rnn_id(scsi_qla_host_t *); |
| 271 | extern int qla2x00_rsnn_nn(scsi_qla_host_t *); | 272 | extern int qla2x00_rsnn_nn(scsi_qla_host_t *); |
| 273 | extern void *qla2x00_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t); | ||
| 274 | extern void *qla24xx_prep_ms_fdmi_iocb(scsi_qla_host_t *, uint32_t, uint32_t); | ||
| 275 | extern int qla2x00_fdmi_register(scsi_qla_host_t *); | ||
| 272 | 276 | ||
| 273 | /* | 277 | /* |
| 274 | * Global Function Prototypes in qla_rscn.c source file. | 278 | * Global Function Prototypes in qla_rscn.c source file. |
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 | } | ||
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 09b23f70fd66..e38d0cf73637 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
| @@ -88,6 +88,7 @@ qla2x00_initialize_adapter(scsi_qla_host_t *ha) | |||
| 88 | ha->mbx_flags = 0; | 88 | ha->mbx_flags = 0; |
| 89 | ha->isp_abort_cnt = 0; | 89 | ha->isp_abort_cnt = 0; |
| 90 | ha->beacon_blink_led = 0; | 90 | ha->beacon_blink_led = 0; |
| 91 | set_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags); | ||
| 91 | 92 | ||
| 92 | qla_printk(KERN_INFO, ha, "Configuring PCI space...\n"); | 93 | qla_printk(KERN_INFO, ha, "Configuring PCI space...\n"); |
| 93 | rval = ha->isp_ops.pci_config(ha); | 94 | rval = ha->isp_ops.pci_config(ha); |
| @@ -2132,6 +2133,11 @@ qla2x00_configure_fabric(scsi_qla_host_t *ha) | |||
| 2132 | return (QLA_SUCCESS); | 2133 | return (QLA_SUCCESS); |
| 2133 | } | 2134 | } |
| 2134 | do { | 2135 | do { |
| 2136 | /* FDMI support. */ | ||
| 2137 | if (ql2xfdmienable && | ||
| 2138 | test_and_clear_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags)) | ||
| 2139 | qla2x00_fdmi_register(ha); | ||
| 2140 | |||
| 2135 | /* Ensure we are logged into the SNS. */ | 2141 | /* Ensure we are logged into the SNS. */ |
| 2136 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) | 2142 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) |
| 2137 | loop_id = NPH_SNS; | 2143 | loop_id = NPH_SNS; |
diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index f910de6dd437..c255bb0268a9 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c | |||
| @@ -451,6 +451,8 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
| 451 | 451 | ||
| 452 | ha->flags.management_server_logged_in = 0; | 452 | ha->flags.management_server_logged_in = 0; |
| 453 | ha->link_data_rate = 0; | 453 | ha->link_data_rate = 0; |
| 454 | if (ql2xfdmienable) | ||
| 455 | set_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags); | ||
| 454 | 456 | ||
| 455 | /* Update AEN queue. */ | 457 | /* Update AEN queue. */ |
| 456 | qla2x00_enqueue_aen(ha, MBA_LOOP_DOWN, NULL); | 458 | qla2x00_enqueue_aen(ha, MBA_LOOP_DOWN, NULL); |
diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c index 774309a77c05..284eb847e50f 100644 --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c | |||
| @@ -252,7 +252,7 @@ qla2x00_mailbox_command(scsi_qla_host_t *ha, mbx_cmd_t *mcp) | |||
| 252 | mb0 = RD_REG_WORD(®->isp24.mailbox0); | 252 | mb0 = RD_REG_WORD(®->isp24.mailbox0); |
| 253 | ictrl = RD_REG_DWORD(®->isp24.ictrl); | 253 | ictrl = RD_REG_DWORD(®->isp24.ictrl); |
| 254 | } else { | 254 | } else { |
| 255 | mb0 = RD_MAILBOX_REG(ha, reg->isp, 0); | 255 | mb0 = RD_MAILBOX_REG(ha, ®->isp, 0); |
| 256 | ictrl = RD_REG_WORD(®->isp.ictrl); | 256 | ictrl = RD_REG_WORD(®->isp.ictrl); |
| 257 | } | 257 | } |
| 258 | printk("%s(%ld): **** MB Command Timeout for cmd %x ****\n", | 258 | printk("%s(%ld): **** MB Command Timeout for cmd %x ****\n", |
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 995e521b07de..0fc37d810e05 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
| @@ -88,6 +88,12 @@ static void qla2x00_free_device(scsi_qla_host_t *); | |||
| 88 | 88 | ||
| 89 | static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha); | 89 | static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha); |
| 90 | 90 | ||
| 91 | int ql2xfdmienable; | ||
| 92 | module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR); | ||
| 93 | MODULE_PARM_DESC(ql2xfdmienable, | ||
| 94 | "Enables FDMI registratons " | ||
| 95 | "Default is 0 - no FDMI. 1 - perfom FDMI."); | ||
| 96 | |||
| 91 | /* | 97 | /* |
| 92 | * SCSI host template entry points | 98 | * SCSI host template entry points |
| 93 | */ | 99 | */ |
| @@ -1303,6 +1309,7 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
| 1303 | ha->prev_topology = 0; | 1309 | ha->prev_topology = 0; |
| 1304 | ha->ports = MAX_BUSES; | 1310 | ha->ports = MAX_BUSES; |
| 1305 | ha->init_cb_size = sizeof(init_cb_t); | 1311 | ha->init_cb_size = sizeof(init_cb_t); |
| 1312 | ha->mgmt_svr_loop_id = MANAGEMENT_SERVER; | ||
| 1306 | 1313 | ||
| 1307 | /* Assign ISP specific operations. */ | 1314 | /* Assign ISP specific operations. */ |
| 1308 | ha->isp_ops.pci_config = qla2100_pci_config; | 1315 | ha->isp_ops.pci_config = qla2100_pci_config; |
| @@ -1325,6 +1332,7 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
| 1325 | ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_32; | 1332 | ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_32; |
| 1326 | ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_32; | 1333 | ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_32; |
| 1327 | ha->isp_ops.prep_ms_iocb = qla2x00_prep_ms_iocb; | 1334 | ha->isp_ops.prep_ms_iocb = qla2x00_prep_ms_iocb; |
| 1335 | ha->isp_ops.prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb; | ||
| 1328 | ha->isp_ops.read_nvram = qla2x00_read_nvram_data; | 1336 | ha->isp_ops.read_nvram = qla2x00_read_nvram_data; |
| 1329 | ha->isp_ops.write_nvram = qla2x00_write_nvram_data; | 1337 | ha->isp_ops.write_nvram = qla2x00_write_nvram_data; |
| 1330 | ha->isp_ops.fw_dump = qla2100_fw_dump; | 1338 | ha->isp_ops.fw_dump = qla2100_fw_dump; |
| @@ -1362,6 +1370,7 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
| 1362 | ha->response_q_length = RESPONSE_ENTRY_CNT_2300; | 1370 | ha->response_q_length = RESPONSE_ENTRY_CNT_2300; |
| 1363 | ha->last_loop_id = SNS_LAST_LOOP_ID_2300; | 1371 | ha->last_loop_id = SNS_LAST_LOOP_ID_2300; |
| 1364 | ha->init_cb_size = sizeof(struct init_cb_24xx); | 1372 | ha->init_cb_size = sizeof(struct init_cb_24xx); |
| 1373 | ha->mgmt_svr_loop_id = 10; | ||
| 1365 | ha->isp_ops.pci_config = qla24xx_pci_config; | 1374 | ha->isp_ops.pci_config = qla24xx_pci_config; |
| 1366 | ha->isp_ops.reset_chip = qla24xx_reset_chip; | 1375 | ha->isp_ops.reset_chip = qla24xx_reset_chip; |
| 1367 | ha->isp_ops.chip_diag = qla24xx_chip_diag; | 1376 | ha->isp_ops.chip_diag = qla24xx_chip_diag; |
| @@ -1382,6 +1391,7 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
| 1382 | ha->isp_ops.fabric_login = qla24xx_login_fabric; | 1391 | ha->isp_ops.fabric_login = qla24xx_login_fabric; |
| 1383 | ha->isp_ops.fabric_logout = qla24xx_fabric_logout; | 1392 | ha->isp_ops.fabric_logout = qla24xx_fabric_logout; |
| 1384 | ha->isp_ops.prep_ms_iocb = qla24xx_prep_ms_iocb; | 1393 | ha->isp_ops.prep_ms_iocb = qla24xx_prep_ms_iocb; |
| 1394 | ha->isp_ops.prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb; | ||
| 1385 | ha->isp_ops.read_nvram = qla24xx_read_nvram_data; | 1395 | ha->isp_ops.read_nvram = qla24xx_read_nvram_data; |
| 1386 | ha->isp_ops.write_nvram = qla24xx_write_nvram_data; | 1396 | ha->isp_ops.write_nvram = qla24xx_write_nvram_data; |
| 1387 | ha->isp_ops.fw_dump = qla24xx_fw_dump; | 1397 | ha->isp_ops.fw_dump = qla24xx_fw_dump; |
