18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * QLogic iSCSI HBA Driver 48c2ecf20Sopenharmony_ci * Copyright (c) 2003-2013 QLogic Corporation 58c2ecf20Sopenharmony_ci */ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#ifndef __QLA4x_GBL_H 88c2ecf20Sopenharmony_ci#define __QLA4x_GBL_H 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_cistruct iscsi_cls_conn; 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ciint qla4xxx_hw_reset(struct scsi_qla_host *ha); 138c2ecf20Sopenharmony_ciint ql4xxx_lock_drvr_wait(struct scsi_qla_host *a); 148c2ecf20Sopenharmony_ciint qla4xxx_send_command_to_isp(struct scsi_qla_host *ha, struct srb *srb); 158c2ecf20Sopenharmony_ciint qla4xxx_initialize_adapter(struct scsi_qla_host *ha, int is_reset); 168c2ecf20Sopenharmony_ciint qla4xxx_soft_reset(struct scsi_qla_host *ha); 178c2ecf20Sopenharmony_ciirqreturn_t qla4xxx_intr_handler(int irq, void *dev_id); 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_civoid qla4xxx_free_ddb(struct scsi_qla_host *ha, struct ddb_entry *ddb_entry); 208c2ecf20Sopenharmony_civoid qla4xxx_process_aen(struct scsi_qla_host *ha, uint8_t process_aen); 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ciint qla4xxx_get_dhcp_ip_address(struct scsi_qla_host *ha); 238c2ecf20Sopenharmony_ciint qla4xxx_abort_task(struct scsi_qla_host *ha, struct srb *srb); 248c2ecf20Sopenharmony_ciint qla4xxx_reset_lun(struct scsi_qla_host *ha, struct ddb_entry *ddb_entry, 258c2ecf20Sopenharmony_ci uint64_t lun); 268c2ecf20Sopenharmony_ciint qla4xxx_reset_target(struct scsi_qla_host *ha, 278c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry); 288c2ecf20Sopenharmony_ciint qla4xxx_get_flash(struct scsi_qla_host *ha, dma_addr_t dma_addr, 298c2ecf20Sopenharmony_ci uint32_t offset, uint32_t len); 308c2ecf20Sopenharmony_ciint qla4xxx_get_firmware_status(struct scsi_qla_host *ha); 318c2ecf20Sopenharmony_ciint qla4xxx_get_firmware_state(struct scsi_qla_host *ha); 328c2ecf20Sopenharmony_ciint qla4xxx_initialize_fw_cb(struct scsi_qla_host *ha); 338c2ecf20Sopenharmony_ci 348c2ecf20Sopenharmony_ci/* FIXME: Goodness! this really wants a small struct to hold the 358c2ecf20Sopenharmony_ci * parameters. On x86 the args will get passed on the stack! */ 368c2ecf20Sopenharmony_ciint qla4xxx_get_fwddb_entry(struct scsi_qla_host *ha, 378c2ecf20Sopenharmony_ci uint16_t fw_ddb_index, 388c2ecf20Sopenharmony_ci struct dev_db_entry *fw_ddb_entry, 398c2ecf20Sopenharmony_ci dma_addr_t fw_ddb_entry_dma, 408c2ecf20Sopenharmony_ci uint32_t *num_valid_ddb_entries, 418c2ecf20Sopenharmony_ci uint32_t *next_ddb_index, 428c2ecf20Sopenharmony_ci uint32_t *fw_ddb_device_state, 438c2ecf20Sopenharmony_ci uint32_t *conn_err_detail, 448c2ecf20Sopenharmony_ci uint16_t *tcp_source_port_num, 458c2ecf20Sopenharmony_ci uint16_t *connection_id); 468c2ecf20Sopenharmony_ci 478c2ecf20Sopenharmony_ciint qla4xxx_set_ddb_entry(struct scsi_qla_host * ha, uint16_t fw_ddb_index, 488c2ecf20Sopenharmony_ci dma_addr_t fw_ddb_entry_dma, uint32_t *mbx_sts); 498c2ecf20Sopenharmony_ciuint8_t qla4xxx_get_ifcb(struct scsi_qla_host *ha, uint32_t *mbox_cmd, 508c2ecf20Sopenharmony_ci uint32_t *mbox_sts, dma_addr_t init_fw_cb_dma); 518c2ecf20Sopenharmony_ciint qla4xxx_conn_close_sess_logout(struct scsi_qla_host *ha, 528c2ecf20Sopenharmony_ci uint16_t fw_ddb_index, 538c2ecf20Sopenharmony_ci uint16_t connection_id, 548c2ecf20Sopenharmony_ci uint16_t option); 558c2ecf20Sopenharmony_ciint qla4xxx_disable_acb(struct scsi_qla_host *ha); 568c2ecf20Sopenharmony_ciint qla4xxx_set_acb(struct scsi_qla_host *ha, uint32_t *mbox_cmd, 578c2ecf20Sopenharmony_ci uint32_t *mbox_sts, dma_addr_t acb_dma); 588c2ecf20Sopenharmony_ciint qla4xxx_get_acb(struct scsi_qla_host *ha, dma_addr_t acb_dma, 598c2ecf20Sopenharmony_ci uint32_t acb_type, uint32_t len); 608c2ecf20Sopenharmony_ciint qla4xxx_get_ip_state(struct scsi_qla_host *ha, uint32_t acb_idx, 618c2ecf20Sopenharmony_ci uint32_t ip_idx, uint32_t *sts); 628c2ecf20Sopenharmony_civoid qla4xxx_mark_device_missing(struct iscsi_cls_session *cls_session); 638c2ecf20Sopenharmony_ciu16 rd_nvram_word(struct scsi_qla_host *ha, int offset); 648c2ecf20Sopenharmony_ciu8 rd_nvram_byte(struct scsi_qla_host *ha, int offset); 658c2ecf20Sopenharmony_civoid qla4xxx_get_crash_record(struct scsi_qla_host *ha); 668c2ecf20Sopenharmony_ciint qla4xxx_is_nvram_configuration_valid(struct scsi_qla_host *ha); 678c2ecf20Sopenharmony_ciint qla4xxx_about_firmware(struct scsi_qla_host *ha); 688c2ecf20Sopenharmony_civoid qla4xxx_interrupt_service_routine(struct scsi_qla_host *ha, 698c2ecf20Sopenharmony_ci uint32_t intr_status); 708c2ecf20Sopenharmony_ciint qla4xxx_init_rings(struct scsi_qla_host *ha); 718c2ecf20Sopenharmony_civoid qla4xxx_srb_compl(struct kref *ref); 728c2ecf20Sopenharmony_cistruct srb *qla4xxx_del_from_active_array(struct scsi_qla_host *ha, 738c2ecf20Sopenharmony_ci uint32_t index); 748c2ecf20Sopenharmony_ciint qla4xxx_process_ddb_changed(struct scsi_qla_host *ha, uint32_t fw_ddb_index, 758c2ecf20Sopenharmony_ci uint32_t state, uint32_t conn_error); 768c2ecf20Sopenharmony_civoid qla4xxx_dump_buffer(void *b, uint32_t size); 778c2ecf20Sopenharmony_ciint qla4xxx_send_marker_iocb(struct scsi_qla_host *ha, 788c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry, uint64_t lun, uint16_t mrkr_mod); 798c2ecf20Sopenharmony_ciint qla4xxx_set_flash(struct scsi_qla_host *ha, dma_addr_t dma_addr, 808c2ecf20Sopenharmony_ci uint32_t offset, uint32_t length, uint32_t options); 818c2ecf20Sopenharmony_ciint qla4xxx_mailbox_command(struct scsi_qla_host *ha, uint8_t inCount, 828c2ecf20Sopenharmony_ci uint8_t outCount, uint32_t *mbx_cmd, uint32_t *mbx_sts); 838c2ecf20Sopenharmony_ciint qla4xxx_get_chap_index(struct scsi_qla_host *ha, char *username, 848c2ecf20Sopenharmony_ci char *password, int bidi, uint16_t *chap_index); 858c2ecf20Sopenharmony_ciint qla4xxx_set_chap(struct scsi_qla_host *ha, char *username, char *password, 868c2ecf20Sopenharmony_ci uint16_t idx, int bidi); 878c2ecf20Sopenharmony_ci 888c2ecf20Sopenharmony_civoid qla4xxx_queue_iocb(struct scsi_qla_host *ha); 898c2ecf20Sopenharmony_civoid qla4xxx_complete_iocb(struct scsi_qla_host *ha); 908c2ecf20Sopenharmony_ciint qla4xxx_get_sys_info(struct scsi_qla_host *ha); 918c2ecf20Sopenharmony_ciint qla4xxx_iospace_config(struct scsi_qla_host *ha); 928c2ecf20Sopenharmony_civoid qla4xxx_pci_config(struct scsi_qla_host *ha); 938c2ecf20Sopenharmony_ciint qla4xxx_start_firmware(struct scsi_qla_host *ha); 948c2ecf20Sopenharmony_ciirqreturn_t qla4xxx_intr_handler(int irq, void *dev_id); 958c2ecf20Sopenharmony_ciuint16_t qla4xxx_rd_shdw_req_q_out(struct scsi_qla_host *ha); 968c2ecf20Sopenharmony_ciuint16_t qla4xxx_rd_shdw_rsp_q_in(struct scsi_qla_host *ha); 978c2ecf20Sopenharmony_ciint qla4xxx_request_irqs(struct scsi_qla_host *ha); 988c2ecf20Sopenharmony_civoid qla4xxx_free_irqs(struct scsi_qla_host *ha); 998c2ecf20Sopenharmony_civoid qla4xxx_process_response_queue(struct scsi_qla_host *ha); 1008c2ecf20Sopenharmony_civoid qla4xxx_wake_dpc(struct scsi_qla_host *ha); 1018c2ecf20Sopenharmony_civoid qla4xxx_get_conn_event_log(struct scsi_qla_host *ha); 1028c2ecf20Sopenharmony_civoid qla4xxx_mailbox_premature_completion(struct scsi_qla_host *ha); 1038c2ecf20Sopenharmony_civoid qla4xxx_dump_registers(struct scsi_qla_host *ha); 1048c2ecf20Sopenharmony_ciuint8_t qla4xxx_update_local_ifcb(struct scsi_qla_host *ha, 1058c2ecf20Sopenharmony_ci uint32_t *mbox_cmd, 1068c2ecf20Sopenharmony_ci uint32_t *mbox_sts, 1078c2ecf20Sopenharmony_ci struct addr_ctrl_blk *init_fw_cb, 1088c2ecf20Sopenharmony_ci dma_addr_t init_fw_cb_dma); 1098c2ecf20Sopenharmony_ci 1108c2ecf20Sopenharmony_civoid qla4_8xxx_pci_config(struct scsi_qla_host *); 1118c2ecf20Sopenharmony_ciint qla4_8xxx_iospace_config(struct scsi_qla_host *ha); 1128c2ecf20Sopenharmony_ciint qla4_8xxx_load_risc(struct scsi_qla_host *); 1138c2ecf20Sopenharmony_ciirqreturn_t qla4_82xx_intr_handler(int irq, void *dev_id); 1148c2ecf20Sopenharmony_civoid qla4_82xx_queue_iocb(struct scsi_qla_host *ha); 1158c2ecf20Sopenharmony_civoid qla4_82xx_complete_iocb(struct scsi_qla_host *ha); 1168c2ecf20Sopenharmony_ci 1178c2ecf20Sopenharmony_ciint qla4_82xx_crb_win_lock(struct scsi_qla_host *); 1188c2ecf20Sopenharmony_civoid qla4_82xx_crb_win_unlock(struct scsi_qla_host *); 1198c2ecf20Sopenharmony_ciint qla4_82xx_pci_get_crb_addr_2M(struct scsi_qla_host *, ulong *); 1208c2ecf20Sopenharmony_civoid qla4_82xx_wr_32(struct scsi_qla_host *, ulong, u32); 1218c2ecf20Sopenharmony_ciuint32_t qla4_82xx_rd_32(struct scsi_qla_host *, ulong); 1228c2ecf20Sopenharmony_ciint qla4_82xx_pci_mem_read_2M(struct scsi_qla_host *, u64, void *, int); 1238c2ecf20Sopenharmony_ciint qla4_82xx_pci_mem_write_2M(struct scsi_qla_host *ha, u64, void *, int); 1248c2ecf20Sopenharmony_ciint qla4_82xx_isp_reset(struct scsi_qla_host *ha); 1258c2ecf20Sopenharmony_civoid qla4_82xx_interrupt_service_routine(struct scsi_qla_host *ha, 1268c2ecf20Sopenharmony_ci uint32_t intr_status); 1278c2ecf20Sopenharmony_ciuint16_t qla4_82xx_rd_shdw_req_q_out(struct scsi_qla_host *ha); 1288c2ecf20Sopenharmony_ciuint16_t qla4_82xx_rd_shdw_rsp_q_in(struct scsi_qla_host *ha); 1298c2ecf20Sopenharmony_ciint qla4_8xxx_get_sys_info(struct scsi_qla_host *ha); 1308c2ecf20Sopenharmony_civoid qla4_8xxx_watchdog(struct scsi_qla_host *ha); 1318c2ecf20Sopenharmony_ciint qla4_8xxx_stop_firmware(struct scsi_qla_host *ha); 1328c2ecf20Sopenharmony_ciint qla4_8xxx_get_flash_info(struct scsi_qla_host *ha); 1338c2ecf20Sopenharmony_civoid qla4_82xx_enable_intrs(struct scsi_qla_host *ha); 1348c2ecf20Sopenharmony_civoid qla4_82xx_disable_intrs(struct scsi_qla_host *ha); 1358c2ecf20Sopenharmony_ciint qla4_8xxx_enable_msix(struct scsi_qla_host *ha); 1368c2ecf20Sopenharmony_ciirqreturn_t qla4_8xxx_msi_handler(int irq, void *dev_id); 1378c2ecf20Sopenharmony_ciirqreturn_t qla4_8xxx_default_intr_handler(int irq, void *dev_id); 1388c2ecf20Sopenharmony_ciirqreturn_t qla4_8xxx_msix_rsp_q(int irq, void *dev_id); 1398c2ecf20Sopenharmony_civoid qla4xxx_mark_all_devices_missing(struct scsi_qla_host *ha); 1408c2ecf20Sopenharmony_civoid qla4xxx_dead_adapter_cleanup(struct scsi_qla_host *ha); 1418c2ecf20Sopenharmony_ciint qla4_82xx_idc_lock(struct scsi_qla_host *ha); 1428c2ecf20Sopenharmony_civoid qla4_82xx_idc_unlock(struct scsi_qla_host *ha); 1438c2ecf20Sopenharmony_ciint qla4_8xxx_device_state_handler(struct scsi_qla_host *ha); 1448c2ecf20Sopenharmony_civoid qla4_8xxx_need_qsnt_handler(struct scsi_qla_host *ha); 1458c2ecf20Sopenharmony_civoid qla4_8xxx_clear_drv_active(struct scsi_qla_host *ha); 1468c2ecf20Sopenharmony_civoid qla4_8xxx_set_drv_active(struct scsi_qla_host *ha); 1478c2ecf20Sopenharmony_ciint qla4xxx_conn_open(struct scsi_qla_host *ha, uint16_t fw_ddb_index); 1488c2ecf20Sopenharmony_ciint qla4xxx_set_param_ddbentry(struct scsi_qla_host *ha, 1498c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry, 1508c2ecf20Sopenharmony_ci struct iscsi_cls_conn *cls_conn, 1518c2ecf20Sopenharmony_ci uint32_t *mbx_sts); 1528c2ecf20Sopenharmony_ciint qla4xxx_session_logout_ddb(struct scsi_qla_host *ha, 1538c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry, int options); 1548c2ecf20Sopenharmony_ciint qla4xxx_req_ddb_entry(struct scsi_qla_host *ha, uint32_t fw_ddb_index, 1558c2ecf20Sopenharmony_ci uint32_t *mbx_sts); 1568c2ecf20Sopenharmony_ciint qla4xxx_clear_ddb_entry(struct scsi_qla_host *ha, uint32_t fw_ddb_index); 1578c2ecf20Sopenharmony_ciint qla4xxx_send_passthru0(struct iscsi_task *task); 1588c2ecf20Sopenharmony_civoid qla4xxx_free_ddb_index(struct scsi_qla_host *ha); 1598c2ecf20Sopenharmony_ciint qla4xxx_get_mgmt_data(struct scsi_qla_host *ha, uint16_t fw_ddb_index, 1608c2ecf20Sopenharmony_ci uint16_t stats_size, dma_addr_t stats_dma); 1618c2ecf20Sopenharmony_civoid qla4xxx_update_session_conn_param(struct scsi_qla_host *ha, 1628c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry); 1638c2ecf20Sopenharmony_civoid qla4xxx_update_session_conn_fwddb_param(struct scsi_qla_host *ha, 1648c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry); 1658c2ecf20Sopenharmony_ciint qla4xxx_bootdb_by_index(struct scsi_qla_host *ha, 1668c2ecf20Sopenharmony_ci struct dev_db_entry *fw_ddb_entry, 1678c2ecf20Sopenharmony_ci dma_addr_t fw_ddb_entry_dma, uint16_t ddb_index); 1688c2ecf20Sopenharmony_ciint qla4xxx_get_chap(struct scsi_qla_host *ha, char *username, 1698c2ecf20Sopenharmony_ci char *password, uint16_t idx); 1708c2ecf20Sopenharmony_ciint qla4xxx_get_nvram(struct scsi_qla_host *ha, dma_addr_t nvram_dma, 1718c2ecf20Sopenharmony_ci uint32_t offset, uint32_t size); 1728c2ecf20Sopenharmony_ciint qla4xxx_set_nvram(struct scsi_qla_host *ha, dma_addr_t nvram_dma, 1738c2ecf20Sopenharmony_ci uint32_t offset, uint32_t size); 1748c2ecf20Sopenharmony_ciint qla4xxx_restore_factory_defaults(struct scsi_qla_host *ha, 1758c2ecf20Sopenharmony_ci uint32_t region, uint32_t field0, 1768c2ecf20Sopenharmony_ci uint32_t field1); 1778c2ecf20Sopenharmony_ciint qla4xxx_get_ddb_index(struct scsi_qla_host *ha, uint16_t *ddb_index); 1788c2ecf20Sopenharmony_civoid qla4xxx_login_flash_ddb(struct iscsi_cls_session *cls_session); 1798c2ecf20Sopenharmony_ciint qla4xxx_unblock_ddb(struct iscsi_cls_session *cls_session); 1808c2ecf20Sopenharmony_ciint qla4xxx_unblock_flash_ddb(struct iscsi_cls_session *cls_session); 1818c2ecf20Sopenharmony_ciint qla4xxx_flash_ddb_change(struct scsi_qla_host *ha, uint32_t fw_ddb_index, 1828c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry, uint32_t state); 1838c2ecf20Sopenharmony_ciint qla4xxx_ddb_change(struct scsi_qla_host *ha, uint32_t fw_ddb_index, 1848c2ecf20Sopenharmony_ci struct ddb_entry *ddb_entry, uint32_t state); 1858c2ecf20Sopenharmony_civoid qla4xxx_build_ddb_list(struct scsi_qla_host *ha, int is_reset); 1868c2ecf20Sopenharmony_ciint qla4xxx_post_aen_work(struct scsi_qla_host *ha, 1878c2ecf20Sopenharmony_ci enum iscsi_host_event_code aen_code, 1888c2ecf20Sopenharmony_ci uint32_t data_size, uint8_t *data); 1898c2ecf20Sopenharmony_ciint qla4xxx_ping_iocb(struct scsi_qla_host *ha, uint32_t options, 1908c2ecf20Sopenharmony_ci uint32_t payload_size, uint32_t pid, uint8_t *ipaddr); 1918c2ecf20Sopenharmony_ciint qla4xxx_post_ping_evt_work(struct scsi_qla_host *ha, 1928c2ecf20Sopenharmony_ci uint32_t status, uint32_t pid, 1938c2ecf20Sopenharmony_ci uint32_t data_size, uint8_t *data); 1948c2ecf20Sopenharmony_ciint qla4xxx_flashdb_by_index(struct scsi_qla_host *ha, 1958c2ecf20Sopenharmony_ci struct dev_db_entry *fw_ddb_entry, 1968c2ecf20Sopenharmony_ci dma_addr_t fw_ddb_entry_dma, uint16_t ddb_index); 1978c2ecf20Sopenharmony_ci 1988c2ecf20Sopenharmony_ci/* BSG Functions */ 1998c2ecf20Sopenharmony_ciint qla4xxx_bsg_request(struct bsg_job *bsg_job); 2008c2ecf20Sopenharmony_ciint qla4xxx_process_vendor_specific(struct bsg_job *bsg_job); 2018c2ecf20Sopenharmony_ci 2028c2ecf20Sopenharmony_civoid qla4xxx_arm_relogin_timer(struct ddb_entry *ddb_entry); 2038c2ecf20Sopenharmony_ciint qla4xxx_get_minidump_template(struct scsi_qla_host *ha, 2048c2ecf20Sopenharmony_ci dma_addr_t phys_addr); 2058c2ecf20Sopenharmony_ciint qla4xxx_req_template_size(struct scsi_qla_host *ha); 2068c2ecf20Sopenharmony_civoid qla4_8xxx_alloc_sysfs_attr(struct scsi_qla_host *ha); 2078c2ecf20Sopenharmony_civoid qla4_8xxx_free_sysfs_attr(struct scsi_qla_host *ha); 2088c2ecf20Sopenharmony_civoid qla4xxx_alloc_fw_dump(struct scsi_qla_host *ha); 2098c2ecf20Sopenharmony_ciint qla4_82xx_try_start_fw(struct scsi_qla_host *ha); 2108c2ecf20Sopenharmony_ciint qla4_8xxx_need_reset(struct scsi_qla_host *ha); 2118c2ecf20Sopenharmony_ciint qla4_82xx_md_rd_32(struct scsi_qla_host *ha, uint32_t off, uint32_t *data); 2128c2ecf20Sopenharmony_ciint qla4_82xx_md_wr_32(struct scsi_qla_host *ha, uint32_t off, uint32_t data); 2138c2ecf20Sopenharmony_civoid qla4_82xx_rom_lock_recovery(struct scsi_qla_host *ha); 2148c2ecf20Sopenharmony_civoid qla4_82xx_queue_mbox_cmd(struct scsi_qla_host *ha, uint32_t *mbx_cmd, 2158c2ecf20Sopenharmony_ci int incount); 2168c2ecf20Sopenharmony_civoid qla4_82xx_process_mbox_intr(struct scsi_qla_host *ha, int outcount); 2178c2ecf20Sopenharmony_civoid qla4xxx_queue_mbox_cmd(struct scsi_qla_host *ha, uint32_t *mbx_cmd, 2188c2ecf20Sopenharmony_ci int incount); 2198c2ecf20Sopenharmony_civoid qla4xxx_process_mbox_intr(struct scsi_qla_host *ha, int outcount); 2208c2ecf20Sopenharmony_civoid qla4_8xxx_dump_peg_reg(struct scsi_qla_host *ha); 2218c2ecf20Sopenharmony_civoid qla4_83xx_disable_intrs(struct scsi_qla_host *ha); 2228c2ecf20Sopenharmony_civoid qla4_83xx_enable_intrs(struct scsi_qla_host *ha); 2238c2ecf20Sopenharmony_ciint qla4_83xx_start_firmware(struct scsi_qla_host *ha); 2248c2ecf20Sopenharmony_ciirqreturn_t qla4_83xx_intr_handler(int irq, void *dev_id); 2258c2ecf20Sopenharmony_civoid qla4_83xx_interrupt_service_routine(struct scsi_qla_host *ha, 2268c2ecf20Sopenharmony_ci uint32_t intr_status); 2278c2ecf20Sopenharmony_ciint qla4_83xx_isp_reset(struct scsi_qla_host *ha); 2288c2ecf20Sopenharmony_civoid qla4_83xx_queue_iocb(struct scsi_qla_host *ha); 2298c2ecf20Sopenharmony_civoid qla4_83xx_complete_iocb(struct scsi_qla_host *ha); 2308c2ecf20Sopenharmony_ciuint32_t qla4_83xx_rd_reg(struct scsi_qla_host *ha, ulong addr); 2318c2ecf20Sopenharmony_civoid qla4_83xx_wr_reg(struct scsi_qla_host *ha, ulong addr, uint32_t val); 2328c2ecf20Sopenharmony_ciint qla4_83xx_rd_reg_indirect(struct scsi_qla_host *ha, uint32_t addr, 2338c2ecf20Sopenharmony_ci uint32_t *data); 2348c2ecf20Sopenharmony_ciint qla4_83xx_wr_reg_indirect(struct scsi_qla_host *ha, uint32_t addr, 2358c2ecf20Sopenharmony_ci uint32_t data); 2368c2ecf20Sopenharmony_ciint qla4_83xx_drv_lock(struct scsi_qla_host *ha); 2378c2ecf20Sopenharmony_civoid qla4_83xx_drv_unlock(struct scsi_qla_host *ha); 2388c2ecf20Sopenharmony_civoid qla4_83xx_rom_lock_recovery(struct scsi_qla_host *ha); 2398c2ecf20Sopenharmony_civoid qla4_83xx_queue_mbox_cmd(struct scsi_qla_host *ha, uint32_t *mbx_cmd, 2408c2ecf20Sopenharmony_ci int incount); 2418c2ecf20Sopenharmony_civoid qla4_83xx_process_mbox_intr(struct scsi_qla_host *ha, int outcount); 2428c2ecf20Sopenharmony_civoid qla4_83xx_read_reset_template(struct scsi_qla_host *ha); 2438c2ecf20Sopenharmony_civoid qla4_83xx_set_idc_dontreset(struct scsi_qla_host *ha); 2448c2ecf20Sopenharmony_ciint qla4_83xx_idc_dontreset(struct scsi_qla_host *ha); 2458c2ecf20Sopenharmony_ciint qla4_83xx_lockless_flash_read_u32(struct scsi_qla_host *ha, 2468c2ecf20Sopenharmony_ci uint32_t flash_addr, uint8_t *p_data, 2478c2ecf20Sopenharmony_ci int u32_word_count); 2488c2ecf20Sopenharmony_civoid qla4_83xx_clear_idc_dontreset(struct scsi_qla_host *ha); 2498c2ecf20Sopenharmony_civoid qla4_83xx_need_reset_handler(struct scsi_qla_host *ha); 2508c2ecf20Sopenharmony_ciint qla4_83xx_flash_read_u32(struct scsi_qla_host *ha, uint32_t flash_addr, 2518c2ecf20Sopenharmony_ci uint8_t *p_data, int u32_word_count); 2528c2ecf20Sopenharmony_civoid qla4_83xx_get_idc_param(struct scsi_qla_host *ha); 2538c2ecf20Sopenharmony_civoid qla4_8xxx_set_rst_ready(struct scsi_qla_host *ha); 2548c2ecf20Sopenharmony_civoid qla4_8xxx_clear_rst_ready(struct scsi_qla_host *ha); 2558c2ecf20Sopenharmony_ciint qla4_8xxx_device_bootstrap(struct scsi_qla_host *ha); 2568c2ecf20Sopenharmony_civoid qla4_8xxx_get_minidump(struct scsi_qla_host *ha); 2578c2ecf20Sopenharmony_ciint qla4_8xxx_intr_disable(struct scsi_qla_host *ha); 2588c2ecf20Sopenharmony_ciint qla4_8xxx_intr_enable(struct scsi_qla_host *ha); 2598c2ecf20Sopenharmony_ciint qla4_8xxx_set_param(struct scsi_qla_host *ha, int param); 2608c2ecf20Sopenharmony_ciint qla4_8xxx_update_idc_reg(struct scsi_qla_host *ha); 2618c2ecf20Sopenharmony_ciint qla4_83xx_post_idc_ack(struct scsi_qla_host *ha); 2628c2ecf20Sopenharmony_civoid qla4_83xx_disable_pause(struct scsi_qla_host *ha); 2638c2ecf20Sopenharmony_civoid qla4_83xx_enable_mbox_intrs(struct scsi_qla_host *ha); 2648c2ecf20Sopenharmony_ciint qla4_83xx_can_perform_reset(struct scsi_qla_host *ha); 2658c2ecf20Sopenharmony_ciint qla4xxx_get_default_ddb(struct scsi_qla_host *ha, uint32_t options, 2668c2ecf20Sopenharmony_ci dma_addr_t dma_addr); 2678c2ecf20Sopenharmony_ciint qla4xxx_get_uni_chap_at_index(struct scsi_qla_host *ha, char *username, 2688c2ecf20Sopenharmony_ci char *password, uint16_t chap_index); 2698c2ecf20Sopenharmony_ciint qla4xxx_disable_acb(struct scsi_qla_host *ha); 2708c2ecf20Sopenharmony_ciint qla4xxx_set_acb(struct scsi_qla_host *ha, uint32_t *mbox_cmd, 2718c2ecf20Sopenharmony_ci uint32_t *mbox_sts, dma_addr_t acb_dma); 2728c2ecf20Sopenharmony_ciint qla4xxx_get_acb(struct scsi_qla_host *ha, dma_addr_t acb_dma, 2738c2ecf20Sopenharmony_ci uint32_t acb_type, uint32_t len); 2748c2ecf20Sopenharmony_ciint qla4_84xx_config_acb(struct scsi_qla_host *ha, int acb_config); 2758c2ecf20Sopenharmony_ciint qla4_8xxx_ms_mem_write_128b(struct scsi_qla_host *ha, 2768c2ecf20Sopenharmony_ci uint64_t addr, uint32_t *data, uint32_t count); 2778c2ecf20Sopenharmony_ciuint8_t qla4xxx_set_ipaddr_state(uint8_t fw_ipaddr_state); 2788c2ecf20Sopenharmony_ciint qla4_83xx_get_port_config(struct scsi_qla_host *ha, uint32_t *config); 2798c2ecf20Sopenharmony_ciint qla4_83xx_set_port_config(struct scsi_qla_host *ha, uint32_t *config); 2808c2ecf20Sopenharmony_ciint qla4_8xxx_check_init_adapter_retry(struct scsi_qla_host *ha); 2818c2ecf20Sopenharmony_ciint qla4_83xx_is_detached(struct scsi_qla_host *ha); 2828c2ecf20Sopenharmony_ciint qla4xxx_sysfs_ddb_export(struct scsi_qla_host *ha); 2838c2ecf20Sopenharmony_ci 2848c2ecf20Sopenharmony_ciextern int ql4xextended_error_logging; 2858c2ecf20Sopenharmony_ciextern int ql4xdontresethba; 2868c2ecf20Sopenharmony_ciextern int ql4xenablemsix; 2878c2ecf20Sopenharmony_ciextern int ql4xmdcapmask; 2888c2ecf20Sopenharmony_ciextern int ql4xenablemd; 2898c2ecf20Sopenharmony_ci 2908c2ecf20Sopenharmony_ciextern struct device_attribute *qla4xxx_host_attrs[]; 2918c2ecf20Sopenharmony_ci#endif /* _QLA4x_GBL_H */ 292