]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blobdiff - drivers/scsi/hisi_sas/hisi_sas.h
scsi: hisi_sas: Try wait commands before before controller reset
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / hisi_sas / hisi_sas.h
index 83357b0367d82a2f4fa68364a427e93a6b5459d5..521d05e6287935b6edc947a5eca15eae4a8967a8 100644 (file)
@@ -99,12 +99,43 @@ struct hisi_sas_hw_error {
        const struct hisi_sas_hw_error *sub;
 };
 
+struct hisi_sas_rst {
+       struct hisi_hba *hisi_hba;
+       struct completion *completion;
+       struct work_struct work;
+       bool done;
+};
+
+#define HISI_SAS_RST_WORK_INIT(r, c) \
+       {       .hisi_hba = hisi_hba, \
+               .completion = &c, \
+               .work = __WORK_INITIALIZER(r.work, \
+                               hisi_sas_sync_rst_work_handler), \
+               .done = false, \
+               }
+
+#define HISI_SAS_DECLARE_RST_WORK_ON_STACK(r) \
+       DECLARE_COMPLETION_ONSTACK(c); \
+       DECLARE_WORK(w, hisi_sas_sync_rst_work_handler); \
+       struct hisi_sas_rst r = HISI_SAS_RST_WORK_INIT(r, c)
+
+enum hisi_sas_bit_err_type {
+       HISI_SAS_ERR_SINGLE_BIT_ECC = 0x0,
+       HISI_SAS_ERR_MULTI_BIT_ECC = 0x1,
+};
+
+enum hisi_sas_phy_event {
+       HISI_PHYE_PHY_UP   = 0U,
+       HISI_PHYE_LINK_RESET,
+       HISI_PHYES_NUM,
+};
+
 struct hisi_sas_phy {
+       struct work_struct      works[HISI_PHYES_NUM];
        struct hisi_hba *hisi_hba;
        struct hisi_sas_port    *port;
        struct asd_sas_phy      sas_phy;
        struct sas_identify     identify;
-       struct work_struct      phyup_ws;
        u64             port_id; /* from hw */
        u64             dev_sas_addr;
        u64             frame_rcvd_size;
@@ -131,7 +162,7 @@ struct hisi_sas_cq {
 
 struct hisi_sas_dq {
        struct hisi_hba *hisi_hba;
-       struct hisi_sas_slot    *slot_prep;
+       struct list_head list;
        spinlock_t lock;
        int     wr_point;
        int     id;
@@ -144,7 +175,6 @@ struct hisi_sas_device {
        struct hisi_sas_dq      *dq;
        struct list_head        list;
        u64 attached_phy;
-       atomic64_t running_req;
        enum sas_device_type    dev_type;
        int device_id;
        int sata_idx;
@@ -153,6 +183,7 @@ struct hisi_sas_device {
 
 struct hisi_sas_slot {
        struct list_head entry;
+       struct list_head delivery;
        struct sas_task *task;
        struct hisi_sas_port    *port;
        u64     n_elem;
@@ -162,12 +193,14 @@ struct hisi_sas_slot {
        int     cmplt_queue_slot;
        int     idx;
        int     abort;
+       int     ready;
        void    *buf;
        dma_addr_t buf_dma;
        void    *cmd_hdr;
        dma_addr_t cmd_hdr_dma;
        struct work_struct abort_slot;
        struct timer_list internal_abort_timer;
+       bool is_internal;
 };
 
 struct hisi_sas_tmf_task {
@@ -185,14 +218,14 @@ struct hisi_sas_hw {
        void (*sl_notify)(struct hisi_hba *hisi_hba, int phy_no);
        int (*get_free_slot)(struct hisi_hba *hisi_hba, struct hisi_sas_dq *dq);
        void (*start_delivery)(struct hisi_sas_dq *dq);
-       int (*prep_ssp)(struct hisi_hba *hisi_hba,
+       void (*prep_ssp)(struct hisi_hba *hisi_hba,
                        struct hisi_sas_slot *slot, int is_tmf,
                        struct hisi_sas_tmf_task *tmf);
-       int (*prep_smp)(struct hisi_hba *hisi_hba,
+       void (*prep_smp)(struct hisi_hba *hisi_hba,
                        struct hisi_sas_slot *slot);
-       int (*prep_stp)(struct hisi_hba *hisi_hba,
+       void (*prep_stp)(struct hisi_hba *hisi_hba,
                        struct hisi_sas_slot *slot);
-       int (*prep_abort)(struct hisi_hba *hisi_hba,
+       void (*prep_abort)(struct hisi_hba *hisi_hba,
                          struct hisi_sas_slot *slot,
                          int device_id, int abort_flag, int tag_to_abort);
        int (*slot_complete)(struct hisi_hba *hisi_hba,
@@ -205,15 +238,21 @@ struct hisi_sas_hw {
        void (*phy_set_linkrate)(struct hisi_hba *hisi_hba, int phy_no,
                        struct sas_phy_linkrates *linkrates);
        enum sas_linkrate (*phy_get_max_linkrate)(void);
-       void (*free_device)(struct hisi_hba *hisi_hba,
+       void (*clear_itct)(struct hisi_hba *hisi_hba,
                            struct hisi_sas_device *dev);
+       void (*free_device)(struct hisi_sas_device *sas_dev);
        int (*get_wideport_bitmap)(struct hisi_hba *hisi_hba, int port_id);
        void (*dereg_device)(struct hisi_hba *hisi_hba,
                                struct domain_device *device);
        int (*soft_reset)(struct hisi_hba *hisi_hba);
        u32 (*get_phys_state)(struct hisi_hba *hisi_hba);
+       int (*write_gpio)(struct hisi_hba *hisi_hba, u8 reg_type,
+                               u8 reg_index, u8 reg_count, u8 *write_data);
+       void (*wait_cmds_complete_timeout)(struct hisi_hba *hisi_hba,
+                                          int delay_ms, int timeout_ms);
        int max_command_entries;
        int complete_hdr_size;
+       struct scsi_host_template *sht;
 };
 
 struct hisi_hba {
@@ -225,6 +264,7 @@ struct hisi_hba {
        struct device *dev;
 
        void __iomem *regs;
+       void __iomem *sgpio_regs;
        struct regmap *ctrl;
        u32 ctrl_reset_reg;
        u32 ctrl_reset_sts_reg;
@@ -239,6 +279,8 @@ struct hisi_hba {
        struct workqueue_struct *wq;
 
        int slot_index_count;
+       int last_slot_index;
+       int last_dev_id;
        unsigned long *slot_index_tags;
        unsigned long reject_stp_links_msk;
 
@@ -377,7 +419,7 @@ struct hisi_sas_command_table_ssp {
        union {
                struct {
                        struct ssp_command_iu task;
-                       u32 prot[6];
+                       u32 prot[7];
                };
                struct ssp_tmf_iu ssp_task;
                struct xfer_rdy_iu xfer_rdy;
@@ -403,13 +445,12 @@ struct hisi_sas_slot_buf_table {
 };
 
 extern struct scsi_transport_template *hisi_sas_stt;
-extern struct scsi_host_template *hisi_sas_sht;
-
 extern void hisi_sas_stop_phys(struct hisi_hba *hisi_hba);
 extern void hisi_sas_init_add(struct hisi_hba *hisi_hba);
 extern int hisi_sas_alloc(struct hisi_hba *hisi_hba, struct Scsi_Host *shost);
 extern void hisi_sas_free(struct hisi_hba *hisi_hba);
-extern u8 hisi_sas_get_ata_protocol(u8 cmd, int direction);
+extern u8 hisi_sas_get_ata_protocol(struct host_to_dev_fis *fis,
+                               int direction);
 extern struct hisi_sas_port *to_hisi_sas_port(struct asd_sas_port *sas_port);
 extern void hisi_sas_sata_done(struct sas_task *task,
                            struct hisi_sas_slot *slot);
@@ -419,11 +460,21 @@ extern int hisi_sas_probe(struct platform_device *pdev,
                          const struct hisi_sas_hw *ops);
 extern int hisi_sas_remove(struct platform_device *pdev);
 
+extern int hisi_sas_slave_configure(struct scsi_device *sdev);
+extern int hisi_sas_scan_finished(struct Scsi_Host *shost, unsigned long time);
+extern void hisi_sas_scan_start(struct Scsi_Host *shost);
+extern struct device_attribute *host_attrs[];
+extern int hisi_sas_host_reset(struct Scsi_Host *shost, int reset_type);
 extern void hisi_sas_phy_down(struct hisi_hba *hisi_hba, int phy_no, int rdy);
 extern void hisi_sas_slot_task_free(struct hisi_hba *hisi_hba,
                                    struct sas_task *task,
                                    struct hisi_sas_slot *slot);
 extern void hisi_sas_init_mem(struct hisi_hba *hisi_hba);
 extern void hisi_sas_rst_work_handler(struct work_struct *work);
+extern void hisi_sas_sync_rst_work_handler(struct work_struct *work);
 extern void hisi_sas_kill_tasklets(struct hisi_hba *hisi_hba);
+extern bool hisi_sas_notify_phy_event(struct hisi_sas_phy *phy,
+                               enum hisi_sas_phy_event event);
+extern void hisi_sas_release_tasks(struct hisi_hba *hisi_hba);
+extern u8 hisi_sas_get_prog_phy_linkrate_mask(enum sas_linkrate max);
 #endif